/* ============================================
   SYROZEN — DESIGN SYSTEM
   Premium Website Design · SA Market
   Bonsai Zen — Forest Green + Cherry Blossom
   ============================================ */

:root {
  /* Primary — Bonsai Green */
  --green-deep:   #3B5E3B;
  --green-mid:    #5C7F5C;
  --green-light:  #9BBD9B;
  --green-pale:   #E4EEE4;

  /* Accent — Cherry Blossom */
  --pink-deep:    #C9607A;
  --pink-mid:     #E8829A;
  --pink-light:   #F7C5D0;
  --pink-pale:    #FDF0F3;

  /* Neutrals */
  --stone:        #F5F1EB;
  --cream:        #F8F5F0;
  --dark:         #1A2018;
  --gray:         #4E5A4C;
  --gray-light:   #8E9A8C;
  --white:        #FFFFFF;

  --border:       rgba(59, 94, 59, 0.15);
  --shadow-sm:    0 2px 12px rgba(59, 94, 59, 0.08);
  --shadow:       0 6px 28px rgba(59, 94, 59, 0.14);
  --shadow-lg:    0 16px 64px rgba(59, 94, 59, 0.20);
  --shadow-dark:  0 24px 80px rgba(0, 0, 0, 0.35);

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --max-w:        1120px;
  --nav-h:        68px;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-full:  999px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); background: var(--stone); color: var(--dark); overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============ PETAL ANIMATION ============ */
.petal-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -60px;
  border-radius: 0 60% 0 60%;
  opacity: 0;
  animation: petal-fall linear infinite;
}

@keyframes petal-fall {
  0%   { transform: translateY(-60px) translateX(0) rotate(0deg);       opacity: 0; }
  8%   { opacity: 0.5; }
  85%  { opacity: 0.2; }
  100% { transform: translateY(110vh) translateX(50px) rotate(560deg);  opacity: 0; }
}

/* Green-dominant petals — bonsai leaves + cherry blossom mix */
.p1  { left: 4%;   width: 12px; height: 12px; background: var(--green-light); animation-duration: 14s; animation-delay: 0s;    }
.p2  { left: 10%;  width: 18px; height: 18px; background: var(--pink-light);  animation-duration: 17s; animation-delay: 1.5s;  }
.p3  { left: 19%;  width: 10px; height: 10px; background: var(--green-pale);  animation-duration: 12s; animation-delay: 4s;    }
.p4  { left: 28%;  width: 20px; height: 20px; background: var(--green-light); animation-duration: 20s; animation-delay: 0.8s;  }
.p5  { left: 38%;  width: 9px;  height: 9px;  background: var(--pink-light);  animation-duration: 15s; animation-delay: 6s;    }
.p6  { left: 47%;  width: 15px; height: 15px; background: var(--green-mid);   animation-duration: 18s; animation-delay: 2.5s;  }
.p7  { left: 56%;  width: 11px; height: 11px; background: var(--pink-light);  animation-duration: 11s; animation-delay: 5s;    }
.p8  { left: 64%;  width: 22px; height: 22px; background: var(--green-pale);  animation-duration: 22s; animation-delay: 0.3s;  }
.p9  { left: 73%;  width: 10px; height: 10px; background: var(--green-light); animation-duration: 16s; animation-delay: 7.5s;  }
.p10 { left: 80%;  width: 16px; height: 16px; background: var(--pink-light);  animation-duration: 19s; animation-delay: 3s;    }
.p11 { left: 87%;  width: 12px; height: 12px; background: var(--green-mid);   animation-duration: 13s; animation-delay: 9s;    }
.p12 { left: 92%;  width: 8px;  height: 8px;  background: var(--green-light); animation-duration: 21s; animation-delay: 1s;    }
.p13 { left: 15%;  width: 14px; height: 14px; background: var(--pink-light);  animation-duration: 16s; animation-delay: 10s;   }
.p14 { left: 52%;  width: 10px; height: 10px; background: var(--green-pale);  animation-duration: 14s; animation-delay: 11s;   }
.p15 { left: 70%;  width: 17px; height: 17px; background: var(--green-light); animation-duration: 18s; animation-delay: 4.5s;  }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  z-index: 1000;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  box-shadow: var(--shadow-dark);
}

.toast.visible { transform: translateX(-50%) translateY(0); }
.toast-icon { color: var(--green-light); font-size: 0.65rem; }

/* ============ LAYOUT ============ */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section-header {
  text-align: center;
  margin-bottom: 68px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 18px;
}

h2 em { font-style: italic; color: var(--pink-deep); }

.section-header > p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--green-deep);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 2px solid var(--green-deep);
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  transition: border-color 0.22s, color 0.22s;
}

.btn-ghost:hover { border-color: var(--green-mid); color: var(--green-deep); }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(253, 250, 246, 0);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(245, 241, 235, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
  position: relative;
  z-index: 201;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 400;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--dark);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: background 0.22s;
}

.nav-cta:hover { background: var(--green-deep); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  padding: 4px;
  position: relative;
  z-index: 201;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 64px) 28px 80px;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  padding: 6px 16px;
  background: var(--green-pale);
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 28px;
}

.hero-headline .h-line { display: block; overflow: hidden; }
.hero-headline em { font-style: italic; color: var(--pink-deep); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.78;
  margin-bottom: 40px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-proof {
  font-size: 0.76rem;
  color: var(--gray-light);
  letter-spacing: 0.05em;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--green-mid), transparent);
  margin: 0 auto;
  animation: cue-pulse 2.2s ease-in-out infinite;
}

@keyframes cue-pulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.9); }
  50%       { opacity: 0.75; transform: scaleY(1.1); }
}

/* ============ BROWSER MOCKUP ============ */
.hero-visual { display: flex; justify-content: center; }

.mockup-frame {
  width: 100%;
  max-width: 468px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  overflow: hidden;
  user-select: none;
}

.mockup-bar {
  height: 42px;
  background: var(--green-pale);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
}

.mockup-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-light);
}

.mockup-dots span:nth-child(2) { background: var(--pink-light); }
.mockup-dots span:nth-child(3) { background: var(--green-mid); opacity: 0.5; }

.mockup-url {
  flex: 1;
  height: 24px;
  background: rgba(255,255,255,0.75);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
  font-size: 0.62rem;
  color: var(--gray);
}

.url-lock { font-size: 0.58rem; }

.mockup-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Mock nav */
.mock-nav-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: rgba(253, 250, 246, 0.85);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.mock-logo-pill {
  width: 56px; height: 9px;
  border-radius: 4px;
  background: var(--dark);
  opacity: 0.55;
}

.mock-nav-items { display: flex; align-items: center; gap: 6px; }

.mock-nav-item {
  width: 28px; height: 5px;
  border-radius: 3px;
  background: var(--gray-light);
  opacity: 0.45;
}

.mock-cta-pill {
  width: 46px; height: 16px;
  border-radius: 99px;
  background: var(--dark);
  opacity: 0.65;
}

/* Mock hero split */
.mock-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--pink-pale) 100%);
  border-radius: var(--radius);
  min-height: 110px;
  align-items: center;
}

.mock-text-col { display: flex; flex-direction: column; gap: 5px; }

.mock-h {
  height: 9px;
  border-radius: 4px;
  background: var(--dark);
  opacity: 0.5;
}

.mock-p {
  height: 5px;
  border-radius: 3px;
  background: var(--gray-light);
  opacity: 0.38;
}

.mock-btn-row { display: flex; gap: 5px; margin-top: 3px; }

.mock-solid {
  width: 46px; height: 14px;
  border-radius: 99px;
  background: var(--green-deep);
  opacity: 0.65;
}

.mock-outline {
  width: 36px; height: 14px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  opacity: 0.55;
}

.w80 { width: 80%; }
.w60 { width: 60%; }
.w90 { width: 90%; }
.w72 { width: 72%; }

.mock-img-col {
  height: 76px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--pink-light) 100%);
  opacity: 0.35;
}

/* Mock pricing row */
.mock-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.mock-pc {
  height: 62px;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--border);
}

.mc-featured {
  background: var(--green-pale);
  border-color: var(--green-mid);
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

/* ============ TICKER ============ */
.ticker-bar {
  position: relative;
  z-index: 1;
  background: var(--dark);
  overflow: hidden;
  padding: 20px 0;
}

.ticker-track { overflow: hidden; }

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker-inner span {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
  flex-shrink: 0;
}

.tsep {
  color: var(--green-light) !important;
  font-size: 0.55rem !important;
  opacity: 0.75;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SERVICES ============ */
.services {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--stone);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}

.pricing-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.pricing-card.featured {
  background: var(--green-pale);
  border-color: var(--green-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-14px);
}

.pricing-card.featured:hover { transform: translateY(-18px); box-shadow: var(--shadow-lg); }

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-deep);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--radius-full);
}

.card-top { display: flex; flex-direction: column; gap: 10px; }

.tier-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
}

.tier-price {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
}

.currency {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gray);
  margin-top: 9px;
}

.amount {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}

.tier-speed {
  font-size: 0.73rem;
  color: var(--green-mid);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.tier-features li {
  font-size: 0.875rem;
  color: var(--gray);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.tier-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-size: 0.5rem;
  top: 5px;
}

.featured .tier-features li::before { color: var(--green-mid); }

.btn-tier {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--dark);
  transition: all 0.22s;
}

.btn-tier:hover { border-color: var(--green-mid); color: var(--green-deep); transform: translateY(-1px); }

.btn-tier-featured {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

.btn-tier-featured:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}

.pricing-note {
  text-align: center;
  font-size: 0.73rem;
  color: var(--gray-light);
  margin-top: 48px;
  letter-spacing: 0.02em;
}

/* ============ PROCESS ============ */
.process {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--green-pale);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
}

.step {
  background: var(--stone);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(138, 154, 91, 0.2);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 600;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.78;
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 56px;
  gap: 2px;
}

.conn-line {
  width: 1px;
  height: 20px;
  background: var(--green-light);
  opacity: 0.6;
}

.conn-arrow {
  font-size: 1.1rem;
  color: var(--green-light);
}

/* ============ WHY SYROZEN ============ */
.why {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--stone);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.why-text .section-label { display: block; margin-bottom: 16px; }

.why-text p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.82;
  margin-bottom: 16px;
}

.why-list { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }

.why-list li { display: flex; gap: 16px; align-items: flex-start; }

.wi {
  color: var(--green-mid);
  font-size: 0.65rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.why-list strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 3px;
}

.why-list span {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Stats */
.why-stats { display: flex; flex-direction: column; gap: 20px; }

.stat-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: 2px 8px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.stat-card:hover { box-shadow: var(--shadow); transform: translateX(6px); }

.stat-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1;
}

.stat-suf {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--green-mid);
  align-self: flex-end;
  padding-bottom: 5px;
}

.stat-lbl {
  font-size: 0.82rem;
  color: var(--gray);
  grid-column: 1 / -1;
  margin-top: 6px;
}

/* ============ CONTACT ============ */
.contact {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--cream);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input, select, textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--stone);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  width: 100%;
  -webkit-appearance: none;
}

input::placeholder, textarea::placeholder { color: var(--gray-light); }

input:focus, select:focus, textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(92, 127, 92, 0.12);
  background: var(--white);
}

textarea { resize: vertical; min-height: 130px; }

.btn-submit {
  align-self: flex-start;
  border: none;
  font-size: 0.95rem;
  padding: 15px 42px;
}

.contact-note {
  max-width: 700px;
  margin: 18px auto 0;
  font-size: 0.76rem;
  color: var(--gray-light);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ============ FOOTER ============ */
.footer {
  position: relative;
  z-index: 1;
  background: var(--dark);
  padding: 60px 28px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: center;
}

.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo { color: var(--white); font-size: 1.6rem; }

.footer-tagline {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.32);
  max-width: 260px;
  line-height: 1.6;
}

.footer-nav { display: flex; gap: 32px; }

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--green-light); }

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.22);
}

/* ============ GSAP INITIAL STATES ============ */
.reveal, .reveal-card, .reveal-step, .reveal-stat {
  opacity: 0;
  transform: translateY(36px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner { gap: 48px; }
  .mockup-frame { max-width: 380px; }
  .why-inner { gap: 64px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 44px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 200;
  }

  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-link { font-size: 1.25rem; color: var(--dark); }
  .nav-cta { font-size: 1rem; padding: 14px 40px; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 0; }
  .hero-visual { display: none; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .scroll-cue { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }

  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .step-connector { flex-direction: row; padding-top: 0; justify-content: center; align-items: center; }
  .conn-line { width: 24px; height: 1px; }

  .why-inner { grid-template-columns: 1fr; gap: 56px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-legal { align-items: flex-start; }
}

@media (max-width: 600px) {
  .section-inner { padding: 0 20px; }
  .services, .process, .why, .contact { padding: 84px 0; }
  .hero { padding: calc(var(--nav-h) + 44px) 20px 60px; }
  h2 { font-size: 2rem; }
  .hero-headline { font-size: 2.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; gap: 20px; }
  .footer { padding: 48px 20px; }
}
