/* Queen Advance — Premium green theme */
:root {
  --green-950: #031510;
  --green-900: #083820;
  --green-800: #084028;
  --green-700: #105030;
  --green-600: #185038;
  --green-500: #1f6848;
  --green-400: #3aad72;
  --green-300: #6bc992;
  --green-200: #b8e0cc;
  --green-100: #e4f5ec;
  --green-50: #f2faf6;
  --accent: #4ade80;
  --white: #ffffff;
  --gray-700: #3d4f47;
  --gray-600: #5c6b63;
  --gray-400: #94a39b;
  --gray-200: #dce8e2;
  --gray-100: #eef4f1;
  --shadow-sm: 0 2px 8px rgba(8, 56, 32, 0.06);
  --shadow-md: 0 12px 40px rgba(8, 56, 32, 0.12);
  --shadow-lg: 0 24px 64px rgba(8, 56, 32, 0.18);
  --shadow-glow: 0 0 40px rgba(74, 222, 128, 0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.35s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--green-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--green-200);
  color: var(--green-900);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header--hero {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header--hero .nav__link { color: rgba(255,255,255,0.9); }
.header--hero .nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.header--hero .menu-toggle span { background: var(--white); }

.header--scrolled,
.header:not(.header--hero) {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header--scrolled .nav__link { color: var(--green-800); }
.header--scrolled .nav__link:hover { color: var(--green-600); background: var(--green-50); }
.header--scrolled .menu-toggle span { background: var(--green-800); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav__link {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all var(--transition);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  color: var(--white) !important;
  margin-left: 0.75rem;
  padding: 0.625rem 1.25rem;
  box-shadow: 0 4px 16px rgba(58, 173, 114, 0.35);
}

.nav__link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(58, 173, 114, 0.45);
  background: linear-gradient(135deg, var(--accent), var(--green-500));
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--green-400) 0%, var(--green-600) 100%);
  color: var(--white);
  border-color: transparent;
  transition: all var(--transition);
  position: relative;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(58, 173, 114, 0.5);
}

.btn--glow {
  box-shadow: 0 4px 24px rgba(74, 222, 128, 0.3);
}

.btn--glow:hover {
  box-shadow: 0 8px 40px rgba(74, 222, 128, 0.45);
}

.btn--outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn--ghost {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  border-color: var(--green-300);
  background: var(--green-50);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
}

.btn--white:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.btn--full { width: 100%; }
.btn--lg { padding: 1.125rem 2.25rem; font-size: 1.0625rem; }

.link-btn {
  color: var(--green-500);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  font-size: inherit;
  font-weight: 600;
}

.link-btn:hover { color: var(--green-700); }
.link-btn--light { color: var(--green-300); }
.link-btn--light:hover { color: var(--white); }

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 4rem) 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 120%, rgba(58, 173, 114, 0.2), transparent 60%),
    linear-gradient(165deg, var(--green-950) 0%, var(--green-900) 30%, var(--green-800) 65%, #0a5038 100%);
  z-index: -1;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(74, 222, 128, 0.18);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(24, 80, 56, 0.5);
  bottom: 10%;
  left: -8%;
  animation-delay: -3s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: rgba(106, 201, 146, 0.15);
  top: 40%;
  left: 30%;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-200);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--green-300) 0%, var(--accent) 50%, var(--green-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__text {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.25rem;
  max-width: 34rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__stat strong {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero__stat span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Form card */
.hero__form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.5),
    var(--shadow-lg),
    0 0 80px rgba(74, 222, 128, 0.08);
  position: relative;
}

.hero__form-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(74,222,128,0.4), rgba(255,255,255,0.2), rgba(58,173,114,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-card__header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.form-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-100), var(--green-50));
  border-radius: 12px;
  color: var(--green-600);
}

.form-card__icon svg { width: 22px; height: 22px; }

.form-card__title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--green-900);
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font: inherit;
  color: var(--green-900);
  transition: all var(--transition);
  background: var(--gray-100);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-400);
  box-shadow: 0 0 0 4px rgba(58, 173, 114, 0.2), inset 0 0 0 1px rgba(58, 173, 114, 0.1);
  background: var(--white);
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.6875rem;
  line-height: 1.55;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 0.15rem;
  accent-color: var(--green-500);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--green-100), var(--green-50));
  color: var(--green-800);
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  border: 1px solid var(--green-200);
}

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
  margin-top: -2rem;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-800);
}

.trust-bar__item svg {
  width: 22px;
  height: 22px;
  color: var(--green-500);
  flex-shrink: 0;
}

/* Sections */
.section { padding: 6rem 0; }

.section-header { margin-bottom: 3.5rem; max-width: 640px; }
.section-header--center { text-align: center; margin-inline: auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-500);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-400), var(--green-300));
  border-radius: 2px;
}

.section-header--center .section-label::before { display: none; }

.section-label--light { color: var(--green-300); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--green-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-title--light { color: var(--white); }

/* Process */
.process {
  background: #f9fbfa;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-200), var(--green-400), var(--green-200));
  opacity: 0.5;
  display: none;
}

@media (min-width: 961px) {
  .steps::before { display: block; }
}

.step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
}

.step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.step__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(24, 80, 56, 0.25);
}

.step__icon svg { width: 24px; height: 24px; }

.step__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--green-100);
  line-height: 1;
}

.step__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.step__text { color: var(--gray-600); font-size: 0.9375rem; }

/* Benefits */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.benefits__content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

.benefits__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.benefits__visual {
  display: grid;
  gap: 1rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.stat-card:hover {
  transform: translateX(8px);
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
}

.stat-card:nth-child(2) { margin-left: 1.5rem; }
.stat-card:nth-child(3) { margin-left: 3rem; }

.stat-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--white);
  border-radius: 14px;
}

.stat-card__icon svg { width: 24px; height: 24px; }

.stat-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: 0.25rem;
}

.stat-card p { font-size: 0.875rem; color: var(--gray-600); }

/* Financing cards */
.financing {
  background: var(--green-950);
  position: relative;
  overflow: hidden;
}

.financing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(58, 173, 114, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(74, 222, 128, 0.06), transparent);
  pointer-events: none;
}

.financing .section-label { color: var(--green-400); }
.financing .section-title { color: var(--white); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-12px) scale(1.01);
  background: rgba(255,255,255,0.09);
  border-color: rgba(74, 222, 128, 0.4);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.card--featured {
  background: linear-gradient(160deg, rgba(58,173,114,0.25) 0%, rgba(255,255,255,0.06) 100%);
  border-color: rgba(74, 222, 128, 0.35);
  transform: scale(1.03);
}

.card--featured:hover {
  transform: scale(1.03) translateY(-10px);
}

.card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.3rem 0.875rem;
  background: linear-gradient(135deg, var(--accent), var(--green-400));
  color: var(--green-950);
  font-size: 0.6875rem;
  font-weight: 800;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 222, 128, 0.12);
  color: var(--green-300);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.card--featured .card__icon {
  background: rgba(74, 222, 128, 0.2);
  color: var(--accent);
}

.card__icon svg { width: 28px; height: 28px; }

.card__title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.card__text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  flex: 1;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.card__link {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--green-300);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all var(--transition);
}

.card__link span { transition: transform var(--transition); }
.card__link:hover { color: var(--accent); }
.card__link:hover span { transform: translateX(4px); }

/* Pricing Comparison */
.pricing {
  background: #fafbfc;
}

.comparison-table {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.table thead {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white);
}

.table th {
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
}

.table th:first-child {
  text-align: left;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
}

.table-header-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.table-header-cell span {
  font-size: 0.8125rem;
  opacity: 0.9;
  font-weight: 500;
}

.table-header-cell--featured {
  background: linear-gradient(135deg, var(--green-400), var(--green-500)) !important;
  padding: 1.75rem 1rem;
  position: relative;
  padding-top: 2rem;
}

.table-header-cell--featured strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
  color: var(--gray-600);
  font-size: 0.9375rem;
}

.table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--green-900);
  background: var(--green-50);
  width: 28%;
}

.table-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  color: var(--green-500);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.table tbody tr:hover td:not(:first-child) {
  background: var(--green-50);
  transition: background var(--transition);
}

.table tbody tr:last-child {
  border: none;
}

.table tbody tr:last-child td {
  border: none;
  padding: 1.5rem;
}

/* Pricing */
.testimonials {
  background: #f5f6f8;
  overflow: hidden;
}

.testimonial-slider {
  max-width: 800px;
  margin-inline: auto;
}

.testimonial-track {
  position: relative;
  min-height: 260px;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  text-align: center;
  pointer-events: none;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative;
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.testimonial__stars svg { width: 20px; height: 20px; fill: currentColor; }

.testimonial p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--green-900);
  margin-bottom: 2rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(24, 80, 56, 0.25);
}

.testimonial footer {
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1.4;
}

.testimonial footer span {
  display: block;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--green-800);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-btn:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--white);
  transform: scale(1.05);
}

.testimonial-btn svg { width: 20px; height: 20px; }

.testimonial-dots { display: flex; gap: 0.5rem; }

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-200);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--green-600);
  width: 28px;
  border-radius: 100px;
}

/* FAQ */
.faq {
  background: #f8f9fa;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.faq__item:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
}

.faq__item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
}

.faq__question {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  font-weight: 700;
  color: var(--green-900);
  font-size: 1rem;
  list-style: none;
  transition: all var(--transition);
  user-select: none;
}

.faq__question:hover {
  color: var(--green-600);
}

.faq__question span {
  text-align: left;
  flex: 1;
}

.faq__icon {
  width: 24px;
  height: 24px;
  color: var(--green-500);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
  animation: slideInUp 0.3s ease-out;
}

.faq__answer p {
  margin-bottom: 0.75rem;
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

/* CTA */
.cta {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 0% 50%, rgba(74, 222, 128, 0.15), transparent),
    linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 50%, var(--green-700) 100%);
  z-index: -1;
}

.cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta__text {
  color: rgba(255,255,255,0.85);
  margin-top: 0.875rem;
  max-width: 36rem;
  font-size: 1.0625rem;
}

/* Footer */
.footer {
  background: var(--green-950);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand img {
  height: 100px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer__tagline {
  font-size: 0.9375rem;
  max-width: 22rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer h4 {
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
}

.footer__nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav a,
.footer__contact a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.footer__nav a:hover,
.footer__contact a:hover { color: var(--accent); }

.footer__contact p { margin-bottom: 0.5rem; color: rgba(255,255,255,0.7); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  gap: 1rem;
}

.footer__legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__legal-links a + a::before {
  content: '—';
  margin-right: 0.75rem;
  opacity: 0.3;
  font-weight: 400;
}

.footer__legal-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer__legal-links a:hover {
  color: var(--accent);
}

/* Modal */
.modal {
  border: none;
  border-radius: var(--radius-xl);
  padding: 0;
  max-width: 680px;
  width: calc(100% - 2rem);
  max-height: 85vh;
  box-shadow: var(--shadow-lg);
}

.modal::backdrop {
  background: rgba(3, 21, 16, 0.7);
  backdrop-filter: blur(8px);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.75rem 0;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.modal__header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green-900);
}

.modal__close {
  font-size: 1.75rem;
  line-height: 1;
  color: var(--gray-600);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: background var(--transition);
}

.modal__close:hover { background: var(--green-50); }

.modal__body {
  padding: 1.75rem;
  overflow-y: auto;
  max-height: calc(85vh - 4.5rem);
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.modal__body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-900);
  margin: 1.5rem 0 0.75rem;
}

.modal__body p { margin-bottom: 0.75rem; }
.modal__body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.75rem; }
.modal__body li { margin-bottom: 0.25rem; }
.modal__body a { color: var(--green-600); font-weight: 600; }

/* Responsive */
@media (max-width: 960px) {
  .hero__grid,
  .benefits__grid,
  .cards,
  .steps,
  .trust-bar__inner,
  .faq__grid { grid-template-columns: 1fr; }

  .hero__grid { gap: 2.5rem; }
  .hero { min-height: auto; padding-bottom: 4rem; }
  .trust-bar { margin-top: 0; }
  .stat-card:nth-child(2),
  .stat-card:nth-child(3) { margin-left: 0; }
  .card--featured { transform: none; }
  .card--featured:hover { transform: translateY(-10px); }
  .cta__inner { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 1rem; }
  .hero__stat-divider { display: none; }
}

@media (max-width: 900px) {
  .section { padding: 4rem 0; }

  .menu-toggle { display: flex; }

  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1rem 1rem 1.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0s ease 0.15s;
    box-shadow: var(--shadow-lg);
    z-index: 200;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.15s ease, visibility 0s ease 0s;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav__link { display: block; padding: 0.875rem 1rem; color: var(--green-800) !important; }
  .nav__link--cta { display: block; margin-left: 0; margin-top: 0.75rem; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .testimonial { padding: 2rem 1.5rem; }

  .table th, .table td {
    padding: 1rem 0.5rem;
    font-size: 0.8rem;
  }

  .table th:first-child {
    width: 35%;
  }

  .table-header-cell span {
    font-size: 0.7rem;
  }

  .table-header-cell--featured strong {
    font-size: 0.875rem;
  }

  .faq__question {
    padding: 1.25rem;
  }

  .faq__answer {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
