
/* Root Variables */
:root {
  --primary: #4F46E5;
  --primary-light: #6366F1;
  --primary-dark: #1E1B4B;
  --bg: #F8F9FF;
  --text: #111827;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --radius: 16px;
  --transition: 0.2s;
  --font: 'Inter', Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}


/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 56px 24px 56px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(79,70,229,0.03);
}


/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-size: 2.25rem;
  font-weight: 700;
  gap: 12px;
  color: var(--text);
}


nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}


nav ul li {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

nav ul li.active a,
nav ul li a:hover {
  color: var(--primary);
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border var(--transition);
}

.contact-btn {
  background: var(--primary);
  color: #fff;
  border: none;
}

.contact-btn:hover {
  background: var(--primary-light);
}


/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 72px 56px 40px 56px;
  background: #fff;
  gap: 48px;
}


.hero-left {
  flex: 1 1 50%;
  max-width: 650px;
}


.hero-left h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.08;
  letter-spacing: -0.5px;
}


.hero-left .highlight {
  color: var(--primary);
  position: relative;
  z-index: 1;
  text-underline-offset: 10px;
}


.subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 28px;
  font-weight: 400;
}


.hero-list {
  list-style: none;
  margin-bottom: 36px;
}


.hero-list li {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--text);
}


.check {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url('https://img.icons8.com/ios-filled/50/4F46E5/checkmark--v1.png') no-repeat center/contain;
  margin-right: 12px;
}


.hero-actions {
  display: flex;
  gap: 24px;
}


.btn.primary {
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 14px 36px;
}

.btn.primary:hover {
  background: var(--primary-light);
}


.btn.secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-size: 18px;
  padding: 14px 36px;
}

.btn.secondary:hover {
  background: var(--primary-light);
  color: #fff;
}


.hero-right {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Hero Illustration - pixel-perfect size for Group 21.png */
.hero-illustration img {
  width: 607px;
  height: 740px;
  max-width: 100%;
  border-radius: 0 0 40px 40px;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(79,70,229,0.08);
  background: #23223a;
}

.rating-card, .trusted-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(79,70,229,0.08);
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-illustration img {
  width: 607px;
  height: 740px;
  max-width: 100%;
  border-radius: 0;
  display: block;
  object-fit: contain;
  box-shadow: none;
  background: none;
}
.hero-left .highlight {
  color: var(--primary);
  position: relative;
  z-index: 1;
}
.hero-left .highlight::backdrop {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.22em;
  background: #c7d2fe;
  border-radius: 2px;
  z-index: -1;
}

.stars {
  color: #FBBF24;
  font-size: 1.1rem;
  margin-left: 4px;
}

.rating-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.trusted-card {
  bottom: 40px;
  left: 0;
  gap: 12px;
}

.trusted-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.trusted-value {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
}

.trusted-value span {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 400;
  margin-left: 2px;
}


/* Features Section */
.features {
  background: #fff;
  padding: 72px 56px;
}


.features-header h2 {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.1;
}

.features-header .highlight {
  color: var(--primary);
}


.features-desc {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 44px;
  max-width: 700px;
  font-weight: 400;
}


.features-body {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}


.features-image img {
  width: 500px;
  max-width: 100%;
  border-radius: 24px;
  display: block;
}

.features-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  background: #F8FAFC;
  border: 1px solid #E0E7FF;
  border-radius: 16px;
  padding: 24px 28px;
  gap: 18px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #EEF2FF;
  border-radius: 50%;
  margin-right: 10px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-light);
  font-size: 1rem;
}


/* Responsive Styles */
@media (max-width: 1200px) {
  .navbar, .hero, .features {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero {
    gap: 24px;
  }
  .features {
    padding: 56px 24px;
  }
  .features-body {
    gap: 32px;
  }
  .hero-illustration img {
    width: 420px;
    height: auto;
  }
  .features-image img {
    width: 320px;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 32px 8px 16px 8px;
  }
  .hero-left .highlight {
    color: var(--primary);
    position: relative;
    z-index: 1;
    text-decoration: none;
  }
  .features-image img {
    width: 220px;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 18px;
    padding: 18px 8px;
  }
  .navbar nav ul {
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero {
    padding: 16px 4px 8px 4px;
  }
  .hero-left h1 {
    font-size: 24px;
  }
  .subtitle, .features-desc {
    font-size: 14px;
  }
  .btn, .btn.primary, .btn.secondary {
    font-size: 14px;
    padding: 10px 18px;
  }
  .features {
    padding: 16px 4px;
  }
  .features-header h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .feature-card {
    padding: 10px 4px;
    gap: 6px;
  }
  .hero-illustration img {
    width: 180px;
    height: auto;
  }
  .features-image img {
    width: 120px;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 18px;
    padding: 18px 8px;
  }
  .navbar nav ul {
    gap: 18px;
    flex-wrap: wrap;
  }
  .hero {
    padding: 32px 8px 16px 8px;
  }
  .features {
    padding: 32px 8px;
  }
  .features-header h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .feature-card {
    padding: 16px 10px;
    gap: 10px;
  }
  .hero-left h1 {
    font-size: 2rem;
  }
}