:root {
  --sage: #A7DAB9;
  --sage-dark: #8CBFA0;
  --navy: #1A3C5A;
  --cream: #F8F5F0;
  --gray: #6B7280;
  --white: #FFFFFF;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  padding: 2rem 0;
  background: linear-gradient(to bottom, rgba(167,218,185,0.15), transparent);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--navy);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--sage-dark);
}

.hero {
  padding: 3rem 0;
  text-align: center;
  background: linear-gradient(135deg, #e0f0e9 0%, #f0f7f4 100%);
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--navy);
}

.hero p {
  font-size: 1.35rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #3a5a6f;
}

.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0.6rem;
}

.btn-primary {
  background: var(--sage);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(167,218,185,0.35);
}

.btn-outline {
  border: 2px solid var(--sage);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--sage);
}

.btn-small {
  padding: 0.6rem 1.5rem !important;
  font-size: 1rem;
}

section {
  padding: 3rem 0;
}

h1 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--navy);
}

h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--navy);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin: 1rem 0 0.8rem;
  color: var(--navy);
}

.feature-icon {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  display: block;
}


.testimonials {
  background: linear-gradient(to bottom, #e8f5ef, #f5f9f7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
  font-style: italic;
  color: #444;
}

.testimonial p {
  margin-bottom: 1.2rem;
}

.author {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
}

.cta-final {
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0;
}

.cta-final h2 {
  color: var(--white);
}

.cta-final .btn-primary {
  background: var(--sage);
  color: var(--navy);
  font-size: 1.3rem;
  padding: 1.3rem 3rem;
}

footer {
  background: #0f253d;
  color: #a0c0d0;
  text-align: center;
  padding: 3rem 0;
  font-size: 0.95rem;
}

/* Pricing Page Styles */
.price-box {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 500px;
  margin: 0 auto 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  text-align: center;
}

.price {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 1rem 0;
}

.price sup {
  font-size: 1.8rem;
  top: -1.2rem;
}

.trial {
  font-size: 1.4rem;
  color: var(--sage-dark);
  font-weight: 600;
  margin: 1.5rem 0;
}

.price-box .features {
  list-style: none;
  font-size: 1.2rem;
  margin: 2rem 0;
  text-align: left;
  display: block;
}

.price-box .features li {
  margin: 1rem 0;
  padding-left: 2rem;
  position: relative;
}

.price-box .features li::before {
  content: "✓";
  color: var(--sage);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.cta {
  text-align: center;
  margin: 3rem 0;
}

.details {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #3a5a6f;
  text-align: center;
}

.details p {
  margin: 1.5rem 0;
}

/* Policy Pages Styles */
.policy-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  line-height: 1.8;
}

.policy-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--navy);
}

.policy-page h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.policy-page h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-page p {
  margin-bottom: 1.2rem;
  color: #3a5a6f;
}

.policy-page ul, .policy-page ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-page li {
  margin-bottom: 0.5rem;
}

.policy-page a {
  color: var(--sage-dark);
  text-decoration: underline;
}

.policy-page a:hover {
  color: var(--sage);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-link {
    display: none;
  }

  .btn-small {
    padding: 0.6rem 1.3rem;
    font-size: 0.95rem;
  }

  .hero {
    padding: 3rem 0;
  }
  section {
    padding: 3rem 0;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.3rem;
  }
  .price {
    font-size: 3.8rem;
  }
}
