* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

body {
  background: linear-gradient(135deg, #ffffff 0%, #e6f2ff 100%);
  color: #2d3436;
  line-height: 1.6;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

.shape-bg {
  position: fixed;
  top: 0;
  right: -20%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(110, 69, 226, 0.1) 0%,
    rgba(74, 144, 226, 0.1) 100%
  );
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  z-index: -1;
}

header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  font-size: 32px;
  font-weight: 700;
  margin-left: 12px;
  font-family: "Poppins", sans-serif;
}

.logo-icon {
  background: linear-gradient(135deg, #6e45e2 0%, #4a90e2 100%);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  transform: rotate(-5deg);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 35px;
}

nav ul li a {
  text-decoration: none;
  color: #2d3436;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  padding: 5px 0;
}

nav ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4a90e2, #6e45e2);
  transition: width 0.3s;
}

nav ul li a:hover:after {
  width: 100%;
}

nav ul li a:hover {
  color: #4a90e2;
}

.hero {
  padding: 180px 0 120px;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, #4a90e2, #6e45e2);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(78, 144, 226, 0.3);
}

.hero h2 {
  font-size: 3.8rem;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #2d3436, #4a90e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}

.hero p {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 90%;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, #4a90e2, #6e45e2);
  color: white;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(78, 144, 226, 0.4);
  position: relative;
  overflow: hidden;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn:hover:before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(78, 144, 226, 0.5);
}

.hero-image {
  position: relative;
  perspective: 1000px;
}

.phone-mockup {
  width: 300px;
  height: 580px;
  background: linear-gradient(135deg, #6e45e2 0%, #4a90e2 100%);
  border-radius: 40px;
  position: relative;
  transform: rotate3d(0.5, 1, 0, 15deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  overflow: hidden;
}

.phone-mockup:before {
  content: "";
  position: absolute;
  width: 90%;
  height: 96%;
  top: 2%;
  left: 5%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 35px;
}

.features {
  padding: 120px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-title h2 {
  font-size: 2.8rem;
  color: #4a90e2;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.section-title p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, #6e45e2 0%, #4a90e2 100%);
}

.feature-card:nth-child(1) {
  grid-column: span 4;
}

.feature-card:nth-child(2) {
  grid-column: span 4;
}

.feature-card:nth-child(3) {
  grid-column: span 4;
}


.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #6e45e2 0%, #4a90e2 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white;
  font-size: 28px;
  transform: rotate(-5deg);
}

.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #2d3436;
}

.feature-card p {
  color: #666;
  line-height: 1.8;
}

.screenshots {
  padding: 100px 0;
  position: relative;
}

.screenshot-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  perspective: 1000px;
}

.screenshot {
  width: 250px;
  height: 500px;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.4s;
  background: linear-gradient(135deg, #6e45e2 0%, #4a90e2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
}

.screenshot:nth-child(1) {
  transform: rotate(-5deg) translateY(40px);
}

.screenshot:nth-child(2) {
  transform: rotate(0deg) translateY(0);
  z-index: 2;
}

.screenshot:nth-child(3) {
  transform: rotate(5deg) translateY(40px);
}

.screenshot:hover {
  transform: rotate(0) translateY(-20px) scale(1.05);
  z-index: 3;
}

.community {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(110, 69, 226, 0.05) 0%,
    rgba(74, 144, 226, 0.05) 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.community-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.community p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.3rem;
  color: #555;
  line-height: 1.8;
}

footer {
  background: linear-gradient(135deg, #4a90e2 0%, #6e45e2 100%);
  color: white;
  padding: 60px 0 30px;
  text-align: center;
  position: relative;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  margin-bottom: 30px;
}

.contact {
  margin-bottom: 25px;
}

.contact a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.contact a i {
  margin-right: 12px;
  font-size: 1.4rem;
}

.contact a:hover {
  transform: translateY(-3px);
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copyright {
  font-size: 1rem;
  margin-top: 20px;
  opacity: 0.8;
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-card {
    grid-column: span 1 !important;
  }

  .screenshot-container {
    flex-direction: column;
    align-items: center;
  }

  .screenshot {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  nav ul li {
    margin: 10px 15px;
  }

  .hero h2 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .shape-bg {
    display: none;
  }
}
