/* ==========================================================================
   Palven - Variant A: Jungle Parallax
   Immersive, cinematic, layered SVG foliage with deep greens and fireflies.
   ========================================================================== */

/* --- Initial hidden states — prevent FOUC flash before GSAP takes over -- */
.variant-a .hero__eyebrow,
.variant-a .hero__title .reveal > span,
.variant-a .hero__sub,
.variant-a .hero__actions .btn,
.variant-a .hero__badges li,
.variant-a .hero__scroll {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .variant-a .hero__eyebrow,
  .variant-a .hero__title .reveal > span,
  .variant-a .hero__sub,
  .variant-a .hero__actions .btn,
  .variant-a .hero__badges li,
  .variant-a .hero__scroll {
    opacity: 1 !important;
  }
}

/* --- Base --------------------------------------------------------------- */
.variant-a {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.variant-a h1, .variant-a h2, .variant-a h3, .variant-a h4 { font-family: var(--font-heading); }
.variant-a img, .variant-a svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Section heads */
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 6px 14px;
  background: rgba(82, 183, 136, 0.12);
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-head__eyebrow--light { color: var(--color-accent-light); background: rgba(82, 183, 136, 0.18); }
.section-head__title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-head__sub {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.28s ease;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.35);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45, 106, 79, 0.45);
}
.btn--ghost {
  background: rgba(247, 245, 240, 0.1);
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: var(--color-primary); color: #fff; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--xl { padding: 20px 40px; font-size: 17px; }

/* --- Navbar ------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 900;
  transition: all 0.3s ease;
}
.navbar__inner {
  max-width: 1280px;
  margin: 16px auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(247, 245, 240, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  border: 1px solid rgba(45, 106, 79, 0.12);
  box-shadow: 0 10px 30px rgba(27, 67, 50, 0.08);
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.navbar__links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0 auto;
  padding: 0;
}
.navbar__links a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar__links a:hover { color: var(--color-primary); }
.navbar__cta { font-size: 14px; padding: 10px 20px; }

/* --- Hero - Jungle ------------------------------------------------------ */
.hero {
  position: relative;
  height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(45, 106, 79, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(82, 183, 136, 0.3) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(27, 67, 50, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(116, 198, 157, 0.2) 0%, transparent 40%),
    linear-gradient(160deg, #E8F0E8 0%, #D4E4D4 30%, #C5D9C0 60%, #E0ECE0 100%);
}

/* --- Hero parallax leaves (3-layer depth system) ------------------------ */
.hero__parallax {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__parallax .leaf {
  position: absolute;
  will-change: transform;
  animation: leafSway var(--sway-duration, 8s) ease-in-out infinite alternate;
}
@keyframes leafSway {
  0%   { transform: translate(var(--leaf-x, 0), var(--leaf-y, 0)) rotate(var(--leaf-rot, 0deg)) skewX(0deg); }
  100% { transform: translate(var(--leaf-x, 0), var(--leaf-y, 0)) rotate(calc(var(--leaf-rot, 0deg) + 5deg)) skewX(2deg); }
}

/* Back layer — large, blurred, slow parallax (z-index 1) */
.leaf--back { z-index: 1; filter: blur(6px); }
.hero__parallax .leaf--b1 {
  width: 340px; top: -5%; left: -4%;
  opacity: 0.18; --leaf-rot: -18deg; --sway-duration: 10s;
}
.hero__parallax .leaf--b2 {
  width: 380px; top: -8%; right: -6%;
  opacity: 0.15; --leaf-rot: 22deg; --sway-duration: 12s;
}
.hero__parallax .leaf--b3 {
  width: 300px; bottom: 5%; left: 30%;
  opacity: 0.2; --leaf-rot: 8deg; --sway-duration: 9s;
}
.hero__parallax .leaf--b4 {
  width: 280px; top: 35%; right: 20%;
  opacity: 0.16; --leaf-rot: -12deg; --sway-duration: 11s;
}

/* Mid layer — medium, subtle blur (z-index 2) */
.leaf--mid { z-index: 2; filter: blur(2px); }
.hero__parallax .leaf--m1 {
  width: 200px; top: 8%; left: 8%;
  opacity: 0.38; --leaf-rot: -14deg; --sway-duration: 7s;
}
.hero__parallax .leaf--m2 {
  width: 220px; top: 5%; right: 10%;
  opacity: 0.35; --leaf-rot: 20deg; --sway-duration: 8s;
}
.hero__parallax .leaf--m3 {
  width: 180px; bottom: 12%; left: 14%;
  opacity: 0.4; --leaf-rot: 12deg; --sway-duration: 9s;
}
.hero__parallax .leaf--m4 {
  width: 190px; top: 45%; right: 4%;
  opacity: 0.32; --leaf-rot: -22deg; --sway-duration: 7.5s;
}

/* Front layer — smaller, sharp, fast parallax (z-index 3) */
.leaf--front { z-index: 3; }
.hero__parallax .leaf--f1 {
  width: 120px; top: 15%; left: 2%;
  opacity: 0.65; --leaf-rot: -30deg; --sway-duration: 6s;
}
.hero__parallax .leaf--f2 {
  width: 100px; bottom: 8%; right: 3%;
  opacity: 0.7; --leaf-rot: 25deg; --sway-duration: 5.5s;
}
.hero__parallax .leaf--f3 {
  width: 90px; top: 60%; left: 50%;
  opacity: 0.55; --leaf-rot: 15deg; --sway-duration: 6.5s;
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 820px;
  text-align: center;
  color: var(--color-primary-dark);
  padding: 0 32px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 16px;
  background: rgba(247, 245, 240, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(27, 67, 50, 0.15);
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.reveal {
  display: block;
  overflow: hidden;
}
.reveal > span { display: block; }
.reveal--accent > span {
  background: linear-gradient(100deg, #1B4332 0%, #52B788 50%, #2D6A4F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero__sub {
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 24px;
  color: var(--color-primary-dark);
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__badges {
  list-style: none;
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.hero__badges li {
  font-size: 14px;
  color: var(--color-primary-dark);
  letter-spacing: 0.05em;
}
.hero__badges strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  opacity: 0.65;
}
.hero__scrollDot { animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* --- Pillars - Petal Cluster ------------------------------------------- */
.pillars {
  position: relative;
  padding: 140px 0;
  background: var(--color-bg);
}
.pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(82, 183, 136, 0.08), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(212, 163, 115, 0.1), transparent 40%);
  pointer-events: none;
}
.petals {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 720px;
  padding: 40px;
}
.petals__core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 12px 30px rgba(45, 106, 79, 0.35));
  animation: coreRotate 30s linear infinite;
}
@keyframes coreRotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.petal {
  position: absolute;
  width: 300px;
  min-height: 280px;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  background: var(--color-white);
  border-radius: 62% 38% 56% 44% / 44% 60% 40% 56%;
  border: 1px solid rgba(82, 183, 136, 0.2);
  box-shadow: 0 20px 45px rgba(27, 67, 50, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.petal:hover {
  transform: translate(var(--tx, 0), var(--ty, 0)) rotate(var(--r, 0deg)) scale(1.05) !important;
  box-shadow: 0 32px 60px rgba(27, 67, 50, 0.18);
}
.petal__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.petal h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--color-primary-dark);
  margin: 4px 0 6px;
  line-height: 1.25;
}
.petal p {
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

.petal--1 { top: 0%;   left: 15%; --tx: 0; --ty: 0; --r: -4deg; transform: rotate(-4deg); border-radius: 70% 30% 60% 40% / 40% 60% 40% 60%; }
.petal--2 { top: 0%;   right: 15%; --r: 5deg; transform: rotate(5deg); border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%; }
.petal--3 { top: 40%;  left: 0%;   --r: -7deg; transform: rotate(-7deg); border-radius: 55% 45% 40% 60% / 50% 50% 60% 40%; }
.petal--4 { top: 40%;  right: 0%;  --r: 8deg;  transform: rotate(8deg); border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%; }
.petal--5 { bottom: 0%; left: 15%; --r: 4deg;  transform: rotate(4deg); border-radius: 55% 45% 70% 30% / 35% 55% 45% 65%; }
.petal--6 { bottom: 0%; right: 15%; --r: -5deg; transform: rotate(-5deg); border-radius: 60% 40% 55% 45% / 65% 35% 65% 35%; }

/* --- Seasons - Horizontal Scroll --------------------------------------- */
.seasons {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--color-bg) 0%, #EAE6D8 50%, var(--color-bg) 100%);
}
.seasons__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 120px;
}
.seasons__head {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 0 32px;
}
.seasons__track {
  display: flex;
  gap: 32px;
  padding: 0 10vw;
  will-change: transform;
  flex: 1;
  align-items: center;
}
.season {
  flex: 0 0 420px;
  background: var(--color-white);
  padding: 40px;
  border-radius: 36px;
  box-shadow: 0 24px 60px rgba(27, 67, 50, 0.12);
  border: 1px solid rgba(82, 183, 136, 0.15);
  position: relative;
  overflow: hidden;
}
.season::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}
.season__icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(82, 183, 136, 0.15), rgba(212, 163, 115, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.season__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary-dark);
  margin-bottom: 10px;
}
.season h3 {
  font-size: 30px;
  color: var(--color-primary-dark);
  margin-bottom: 14px;
}
.season p {
  color: var(--color-text-secondary);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.season ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.season ul li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--color-text);
}
.season ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* --- Security - Dark Forest -------------------------------------------- */
.security {
  position: relative;
  padding: 140px 0;
  background: radial-gradient(ellipse at center, #0B2A20 0%, #051510 100%);
  color: #D8E8DC;
  overflow: hidden;
}
.security::before, .security::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
}
.security::before {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(82, 183, 136, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(64, 145, 108, 0.2), transparent 50%);
}
.security__particles { position: absolute; inset: 0; }
.security__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: center;
}
.security__shield { filter: drop-shadow(0 0 40px rgba(82, 183, 136, 0.6)); }
.security__content h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: #F7F5F0;
  margin: 20px 0 18px;
  line-height: 1.2;
}
.security__content p {
  color: #B5D4BE;
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 32px;
}
.security__grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 620px;
}
.security__grid li {
  padding: 20px;
  background: rgba(82, 183, 136, 0.08);
  border: 1px solid rgba(82, 183, 136, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(4px);
}
.security__grid strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-accent-light);
  margin-bottom: 4px;
}
.security__grid span { font-size: 14px; color: #A3B0AB; }

/* --- Pricing - Growing Plants ------------------------------------------ */
.pricing {
  padding: 140px 0;
  background: var(--color-bg);
  position: relative;
}
.plants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}
.plant {
  background: var(--color-white);
  padding: 40px 32px;
  border-radius: 32px;
  border: 1px solid rgba(82, 183, 136, 0.18);
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(27, 67, 50, 0.08);
}
.plant:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(27, 67, 50, 0.15);
}
.plant--featured {
  background: linear-gradient(180deg, #FFFFFF 0%, #EFF7F1 100%);
  border: 2px solid var(--color-primary);
  transform: scale(1.05);
  box-shadow: 0 24px 60px rgba(27, 67, 50, 0.18);
}
.plant--featured:hover { transform: scale(1.05) translateY(-6px); }
.plant__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.plant__illu { display: flex; justify-content: center; margin-bottom: 12px; }
.plant h3 { font-size: 26px; color: var(--color-primary-dark); margin-bottom: 6px; }
.plant__tag { font-size: 14px; color: var(--color-text-secondary); margin-bottom: 22px; }
.plant__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}
.plant__price .amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
}
.plant__price .unit { font-size: 14px; color: var(--color-text-secondary); }
.plant ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plant ul li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--color-text);
}
.plant ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent) 30%, var(--color-primary) 100%);
}
.plant .btn { width: 100%; }

/* --- Testimonials - Petal Ring ----------------------------------------- */
.testimonials {
  padding: 140px 0 160px;
  background: linear-gradient(180deg, var(--color-bg) 0%, #EFF7F1 100%);
  position: relative;
}
.testimony-ring {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 620px;
}
.testimony-ring__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(45, 106, 79, 0.3));
  animation: coreRotate 60s linear infinite reverse;
}
.testimony {
  position: absolute;
  width: 450px;
  padding: 44px 52px;
  background: var(--color-white);
  border-radius: 52% 48% 50% 50% / 48% 52% 48% 52%;
  border: 1px solid rgba(82, 183, 136, 0.2);
  box-shadow: 0 20px 50px rgba(27, 67, 50, 0.1);
  transition: transform 0.5s ease;
}
.testimony--top   { top: 0; left: 50%; transform: translateX(-50%) rotate(-2deg); }
.testimony--left  { bottom: 40px; left: 2%; transform: rotate(-4deg); }
.testimony--right { bottom: 40px; right: 2%; transform: rotate(4deg); }
.testimony:hover { transform: scale(1.04) translateX(-50%); }
.testimony--left:hover, .testimony--right:hover { transform: scale(1.04); }

.testimony__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.testimony__stars span {
  width: 18px;
  height: 18px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: var(--color-secondary);
}
.testimony blockquote {
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0 0 14px;
  font-style: italic;
}
.testimony footer strong { display: block; color: var(--color-primary-dark); font-size: 14px; }
.testimony footer span { font-size: 12px; color: var(--color-text-secondary); }

/* --- CTA --------------------------------------------------------------- */
.cta {
  position: relative;
  padding: 160px 0;
  background:
    linear-gradient(135deg, rgba(27, 67, 50, 0.95), rgba(45, 106, 79, 0.92)),
    radial-gradient(circle at 30% 20%, rgba(82, 183, 136, 0.6), transparent 60%);
  color: #fff;
  overflow: hidden;
}
.cta__leaves { position: absolute; inset: 0; pointer-events: none; }
.falling-leaf {
  position: absolute;
  left: var(--left);
  top: -40px;
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  border-radius: 0 100% 0 100%;
  opacity: 0.8;
  animation: fall 10s var(--delay) infinite linear;
}
@keyframes fall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.9; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}
.cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}
.cta h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta p { font-size: 19px; color: #D8E8DC; margin-bottom: 36px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta__small { font-size: 13px; color: #A3B0AB; }
.cta .btn--primary { background: #fff; color: var(--color-primary-dark); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.cta .btn--primary:hover { background: var(--color-accent-light); color: var(--color-primary-dark); }
.cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta .btn--ghost:hover { background: rgba(255,255,255,0.1); }

/* --- Footer ------------------------------------------------------------ */
.footer {
  position: relative;
  background: var(--color-primary-dark);
  color: #D8E8DC;
  padding: 120px 0 40px;
}
.footer__roots {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 120px;
  transform: translateY(-100%);
  pointer-events: none;
}
.footer__roots svg { width: 100%; height: 100%; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand p { font-size: 14px; color: #A3B0AB; max-width: 320px; line-height: 1.6; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer__col h4 {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li, .footer__col a { font-size: 14px; color: #A3B0AB; text-decoration: none; transition: color 0.2s; }
.footer__col a:hover { color: var(--color-accent-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: #6B7B75;
}
.footer__bottom ul { list-style: none; display: flex; gap: 22px; padding: 0; }
.footer__bottom a { color: #6B7B75; text-decoration: none; }
.footer__bottom a:hover { color: var(--color-accent-light); }

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 1024px) {
  .navbar__links { display: none; }
  .petals { min-height: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .petal { position: static; width: 100%; transform: none !important; }
  .plants { grid-template-columns: 1fr; }
  .plant--featured { transform: none; }
  .security__inner { grid-template-columns: 1fr; text-align: center; }
  .security__shield { margin: 0 auto; }
  .security__grid { grid-template-columns: 1fr; margin: 0 auto; }
  .testimony-ring { min-height: auto; display: flex; flex-direction: column; gap: 20px; }
  .testimony { position: static; width: 100%; transform: none !important; padding: 28px 30px; }
  .testimony-ring__center { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero__title { font-size: clamp(28px, 8vw, 44px); }
  .hero__badges { gap: 20px; }
  .petals { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; }
}
