/* ─── Cado — CSS Bundle ───────────────────────────────────────────────────── */
/* Single file = 1 HTTP request instead of 14.                               */
/* Build order: variables → reset → utilities → header → hero → badges →    */
/*              value-prop → split → cta → trust → footer → subpages →      */
/*              tyc → responsive                                             */

/* ─── Variables & Design Tokens ─────────────────────────────────────────── */
:root {
  --green:       #49A35B;
  --green-mid:   #3D8F4D;
  --green-dark:  #2A6336;
  --green-faint: #EEF6F0;
  --green-light: #8CC297;
  --cream:       #FAFAF7;
  --cream-mid:   #F3F2ED;
  --ink:         #1B1C18;
  --ink-mid:     #4A4B46;
  --ink-light:   #9A9B96;
  --border:      #E4E3DC;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --max: 1160px;
  --gutter: clamp(20px, 5vw, 60px);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  scroll-behavior: smooth;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── Scroll Animations ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

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

/* ─── Container ──────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  padding: 13px 28px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 1px 2px rgba(73,163,91,0.15);
}
.btn-primary:hover {
  background: var(--green-mid);
  box-shadow: 0 8px 24px rgba(73,163,91,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-ghost:hover {
  background: var(--green-faint);
  box-shadow: 0 6px 20px rgba(73,163,91,0.15);
}

.btn-white {
  background: #fff;
  color: var(--green-dark);
  font-weight: 600;
}
.btn-white:hover {
  background: var(--green-faint);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.btn svg { flex-shrink: 0; transition: transform 0.25s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

/* ─── Section Header Shared Styles ──────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

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

.section-body {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
}

.pillar-icon-placeholder {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-faint) 0%, rgba(140, 194, 151, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 3px solid rgba(73, 163, 91, 0.15);
  box-shadow: 0 4px 20px rgba(73, 163, 91, 0.1), 0 0 0 6px rgba(73, 163, 91, 0.04);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.pillar:hover .pillar-icon-placeholder {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(73, 163, 91, 0.2), 0 0 0 8px rgba(73, 163, 91, 0.06);
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo img { height: 34px; width: auto; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-mid);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--green);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--green); }
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
  flex-shrink: 0;
}

.nav-login {
  font-size: 0.875rem;
  color: var(--ink-mid);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-login:hover { color: var(--ink); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  background: var(--cream);
  padding: 16px var(--gutter) 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 12px; }
.mobile-nav .btn { align-self: flex-start; margin-top: 8px; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: clamp(600px, 88vh, 880px);
  overflow: hidden;
}

.hero-text {
  padding-left: max(calc((100vw - var(--max)) / 2 + var(--gutter)), var(--gutter));
  padding-right: clamp(24px, 4vw, 64px);
  padding-top: clamp(72px, 9vw, 140px);
  padding-bottom: clamp(72px, 9vw, 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-faint);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  align-self: flex-start;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--green); }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-social-proof {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-sp-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
}
.hero-sp-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-sp-logos img {
  height: 28px;
  width: auto;
  max-width: 90px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: opacity 0.3s, filter 0.3s;
}
.hero-sp-logos img:hover { opacity: 0.85; filter: grayscale(0%); }

.hero-visual { position: relative; overflow: hidden; }

.hero-bg-shape {
  position: absolute;
  inset: -20% -10% -10% -20%;
  background: radial-gradient(ellipse at 55% 60%, var(--green-faint) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-phone-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 8%;
}
.hero-phone-wrap img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: drop-shadow(0 28px 56px rgba(0,0,0,0.16));
}

/* ─── Features / Benefits ────────────────────────────────────────────────── */
.badges {
  padding: clamp(64px, 8vw, 100px) 0;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.badges-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.badges-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--ink-light);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badges-label::before,
.badges-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--border);
}

.badges-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.badge-item {
  background: linear-gradient(160deg, #ffffff 0%, #f5fbf6 100%);
  border: 1px solid rgba(73, 163, 91, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 32px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  contain: layout style;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.35s;
}

/* Corner glow decoration */
.badge-item::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 163, 91, 0.07) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.5s var(--ease-out);
}
.badge-item:hover::after { transform: scale(1.3); }

/* Top accent bar */
.badge-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.badge-item:nth-child(1)::before { background: linear-gradient(90deg, #49A35B, #8CC297); }
.badge-item:nth-child(2)::before { background: linear-gradient(90deg, #2A6336, #49A35B); }
.badge-item:nth-child(3)::before { background: linear-gradient(90deg, #8CC297, #49A35B); }

.badge-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 72px rgba(73, 163, 91, 0.14), 0 8px 24px rgba(0,0,0,0.05);
  border-color: rgba(73, 163, 91, 0.28);
}
.badge-item:hover::before { opacity: 1; }

.badge-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(145deg, #eef6f0 0%, rgba(140, 194, 151, 0.28) 100%);
  border: 1.5px solid rgba(73, 163, 91, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(73, 163, 91, 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: background 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.3s;
}
.badge-item:hover .badge-icon {
  background: linear-gradient(145deg, #49A35B 0%, #3D8F4D 100%);
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 14px 36px rgba(73, 163, 91, 0.42);
  border-color: transparent;
}
.badge-icon svg { width: 24px; height: 24px; color: var(--green); transition: color 0.3s; }
.badge-item:hover .badge-icon svg { color: #fff; }

.badge-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  display: block;
  line-height: 1.2;
}
.badge-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.72;
}

/* ─── Value Proposition ──────────────────────────────────────────────────── */
.value-prop {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-mid);
}

.value-prop-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.value-prop-header .section-title { margin-bottom: 20px; }
.value-prop-header .section-body { max-width: 560px; margin-inline: auto; }

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

.pillar {
  background: #fff;
  border: 1px solid rgba(228, 227, 220, 0.85);
  border-radius: var(--radius-lg);
  padding: 40px 32px 44px;
  contain: layout style;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.35s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
}

/* Top gradient bar */
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

/* Corner glow */
.pillar::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 163, 91, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.5s var(--ease-out);
}
.pillar:hover::after { transform: scale(1.4); }

.pillar:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 68px rgba(73, 163, 91, 0.1), 0 8px 20px rgba(0,0,0,0.05);
  border-color: rgba(73, 163, 91, 0.22);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar-image {
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 28px;
  border: 3px solid rgba(73, 163, 91, 0.15);
  box-shadow: 0 4px 20px rgba(73, 163, 91, 0.14), 0 0 0 6px rgba(73, 163, 91, 0.05);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
}
.pillar:hover .pillar-image {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(73, 163, 91, 0.24), 0 0 0 8px rgba(73, 163, 91, 0.08);
  border-color: rgba(73, 163, 91, 0.3);
}

.pillar-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, var(--green-faint) 0%, rgba(73, 163, 91, 0.06) 100%);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(73, 163, 91, 0.15);
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pillar p {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── Split Sections ─────────────────────────────────────────────────────── */
.split { padding: clamp(80px, 10vw, 140px) 0; }
.split.alt { background: var(--cream-mid); }

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.split.reverse .split-inner { direction: rtl; }
.split.reverse .split-inner > * { direction: ltr; }

.split-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(73,163,91,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.split-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.split-image-wrap:hover img { transform: scale(1.03); }

.split-text { display: flex; flex-direction: column; gap: 20px; }
.split-text .section-title { margin-bottom: 4px; }
.split-text .section-body { margin-bottom: 8px; }

/* ─── CTA Section ────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner .section-tag { color: rgba(255,255,255,0.6); }
.cta-inner .section-title { color: #fff; margin-bottom: 20px; }
.cta-inner .section-body {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 40px;
}

/* ─── Trust / Social Proof ───────────────────────────────────────────────── */
.trust {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #fff;
}

.trust-header { text-align: center; margin-bottom: 48px; }
.trust-header p {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  font-weight: 500;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}
.logos-row img {
  max-height: 46px;
  max-width: 140px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: filter 0.4s, opacity 0.4s;
}
.logos-row img:hover { filter: grayscale(0%); opacity: 1; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-brand img { height: 32px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 280px;
  font-weight: 300;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8125rem; font-weight: 300; }
.footer-bottom a { color: var(--green-light); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--green); }

/* ─── Subpages — Shared Styles ───────────────────────────────────────────── */
.hero-sub-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(520px, 70vh, 720px);
  overflow: hidden;
  position: relative;
  background: var(--cream);
  padding-top: 88px;
}

.hero-sub-page .hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(40px, 6vw, 80px) 0;
  padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  gap: 0;
}

.hero-sub-page .hero-text > * + * { margin-top: 20px; }
.hero-sub-page .hero-text > *:last-child { margin-top: 32px; }

.hero-sub-page .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-faint);
  border: 1px solid rgba(73, 163, 91, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
}

.hero-sub-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.hero-sub-page h1 em { font-style: italic; color: var(--green); }

.hero-sub-page .hero-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 48ch;
  margin: 0;
}

.hero-sub-page .hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0;
}

.hero-sub-page .hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-sub-page .hero-bg-shape {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 90% at 60% 50%,
    rgba(73, 163, 91, 0.12) 0%,
    rgba(73, 163, 91, 0.04) 55%,
    transparent 100%);
  z-index: 0;
}

.hero-sub-page .hero-phone-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  padding: 40px 40px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-sub-page .hero-phone-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.18));
}

/* ─── Feature Cards Grid ─────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.features-grid.five-col { grid-template-columns: repeat(5, 1fr); }

.feature-card {
  background: linear-gradient(160deg, #ffffff 0%, #f5fbf6 100%);
  border: 1px solid rgba(73, 163, 91, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 26px 36px;
  position: relative;
  overflow: hidden;
  contain: layout style;
  transition: transform 0.38s var(--ease-out), box-shadow 0.38s var(--ease-out), border-color 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

/* Corner decoration */
.feature-card::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 163, 91, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.5s var(--ease-out);
}
.feature-card:hover::after { transform: scale(1.4); }

/* Top accent bar */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(73, 163, 91, 0.13), 0 8px 20px rgba(0, 0, 0, 0.05);
  border-color: rgba(73, 163, 91, 0.22);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: linear-gradient(145deg, #eef6f0 0%, rgba(140, 194, 151, 0.25) 100%);
  border: 1.5px solid rgba(73, 163, 91, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(73, 163, 91, 0.1), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: background 0.32s, transform 0.32s var(--ease-out), box-shadow 0.32s, border-color 0.28s;
}
.feature-card:hover .feature-card-icon {
  background: linear-gradient(145deg, #49A35B 0%, #3D8F4D 100%);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 30px rgba(73, 163, 91, 0.4);
  border-color: transparent;
}
.feature-card:hover .feature-card-icon svg { stroke: #fff; }

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.feature-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
  margin: 0;
}

/* ─── How It Works ───────────────────────────────────────────────────────── */
.how-it-works {
  background: var(--cream-mid);
  padding: clamp(60px, 8vw, 100px) 0;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.how-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(228, 227, 220, 0.9);
  contain: layout style;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.35s;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.04);
}
.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(73, 163, 91, 0.11), 0 8px 24px rgba(0, 0, 0, 0.07);
  border-color: rgba(73, 163, 91, 0.2);
}

.how-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--green-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* Subtle gradient overlay on card image */
.how-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(73, 163, 91, 0.04) 0%,
    rgba(0, 0, 0, 0.06) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.how-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.how-card:hover .how-card-image img { transform: scale(1.05); }

.how-card-body { padding: 32px 32px 36px; }

.how-card-num {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: linear-gradient(90deg, var(--green-faint) 0%, rgba(73, 163, 91, 0.06) 100%);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(73, 163, 91, 0.15);
  margin-bottom: 16px;
}

.how-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.how-card-body p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  margin: 0;
}

/* ─── Phone Showcase ─────────────────────────────────────────────────────── */
.phone-showcase { padding: clamp(60px, 8vw, 100px) 0; }
.phone-showcase.alt { background: var(--cream-mid); }

.phone-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.phone-showcase.reverse .phone-showcase-inner { direction: rtl; }
.phone-showcase.reverse .phone-showcase-inner > * { direction: ltr; }

.phone-showcase-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.phone-showcase-visual::before {
  content: '';
  position: absolute;
  width: 85%; height: 85%;
  background: radial-gradient(circle, rgba(73, 163, 91, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.phone-showcase-visual img {
  position: relative;
  z-index: 1;
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.16));
  transition: transform 0.4s var(--ease-out);
}
.phone-showcase:hover .phone-showcase-visual img { transform: translateY(-8px); }

.phone-showcase-text { display: flex; flex-direction: column; gap: 24px; }
.phone-showcase-text .section-tag { margin-bottom: 0; }
.phone-showcase-text .section-title { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }

.phone-showcase-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.phone-showcase-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.6;
}
.phone-showcase-features li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green-faint);
  border: 2px solid var(--green-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2349A35B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── Login Page ─────────────────────────────────────────────────────────── */
.login-section {
  min-height: calc(100vh - 88px - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  background: var(--cream);
  position: relative;
}
.login-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 30%,
    rgba(73, 163, 91, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.login-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  width: 100%;
  max-width: 560px;
  text-align: center;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
}
.login-card .login-logo { display: flex; justify-content: center; margin-bottom: 32px; }
.login-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.login-card .login-subtitle {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--ink-mid);
  margin: 0 0 40px;
  line-height: 1.6;
}
.login-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.login-actions .btn {
  font-size: 1rem;
  padding: 14px 32px;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  justify-content: center;
}
.login-footer-note { margin-top: 32px; font-size: 0.875rem; color: var(--ink-light); }
.login-footer-note a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Terms & Conditions Page ────────────────────────────────────────────── */
.tyc-hero { position: relative; padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 8vw, 100px); background: var(--ink); overflow: hidden; text-align: center; }
.tyc-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 20% 80%, rgba(73, 163, 91, 0.15) 0%, transparent 70%), radial-gradient(ellipse 40% 50% at 80% 20%, rgba(73, 163, 91, 0.1) 0%, transparent 70%); pointer-events: none; }
.tyc-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--green-light), transparent); opacity: 0.3; }
.tyc-hero .container { position: relative; z-index: 1; }
.tyc-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-light); margin-bottom: 24px; }
.tyc-hero-eyebrow::before, .tyc-hero-eyebrow::after { content: ''; width: 24px; height: 1px; background: var(--green-light); opacity: 0.4; }
.tyc-hero h1 { font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; color: #fff; margin: 0 0 20px; }
.tyc-hero h1 em { font-style: italic; color: var(--green-light); }
.tyc-hero-sub { font-size: 1.0625rem; font-weight: 300; color: rgba(255, 255, 255, 0.55); line-height: 1.7; max-width: 52ch; margin: 0 auto; }
.tyc-content { padding: clamp(48px, 8vw, 80px) 0 clamp(60px, 10vw, 120px); background: var(--cream); }
.tyc-layout { display: grid; grid-template-columns: 200px 1fr; gap: 60px; align-items: start; }
.tyc-wrapper { max-width: 780px; margin: 0 auto; }
.tyc-toc { position: sticky; top: 100px; }
.tyc-toc-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 16px; }
.tyc-toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.tyc-toc-list a { display: block; font-size: 0.8rem; font-weight: 400; color: var(--ink-light); padding: 8px 0 8px 16px; border-left: 2px solid var(--border); transition: color 0.2s, border-color 0.2s; line-height: 1.4; }
.tyc-toc-list a:hover, .tyc-toc-list a.active { color: var(--green); border-left-color: var(--green); }
.tyc-intro { font-size: 1.0625rem; font-weight: 300; color: var(--ink-mid); line-height: 1.85; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.tyc-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); position: relative; }
.tyc-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.tyc-section-header { display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px; }
.tyc-section-num { font-family: var(--font-display); font-size: 2rem; color: var(--green); opacity: 0.3; line-height: 1; flex-shrink: 0; font-weight: 400; }
.tyc-section h2 { font-family: var(--font-display); font-size: clamp(1.35rem, 2.5vw, 1.75rem); font-weight: 400; color: var(--ink); letter-spacing: -0.02em; line-height: 1.2; margin: 0; }
.tyc-section p { font-size: 0.9375rem; font-weight: 300; color: var(--ink-mid); line-height: 1.85; margin: 0 0 16px; }
.tyc-section p:last-child { margin-bottom: 0; }
.tyc-section h3 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--ink); margin: 28px 0 12px; letter-spacing: -0.01em; }
.tyc-note { background: var(--green-faint); border-left: 3px solid var(--green); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; margin: 20px 0; }
.tyc-note p { font-size: 0.875rem; color: var(--ink-mid); margin: 0; }
.tyc-back-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 50%; background: var(--green); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(73, 163, 91, 0.35); opacity: 0; transform: translateY(16px); transition: opacity 0.3s, transform 0.3s var(--ease-out), background 0.2s; z-index: 90; pointer-events: none; }
.tyc-back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.tyc-back-top:hover { background: var(--green-mid); transform: translateY(-3px); }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .features-grid.five-col { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .badges-inner { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid.five-col { grid-template-columns: repeat(2, 1fr); }
  .how-it-works-grid { grid-template-columns: repeat(2, 1fr); }
  .tyc-layout { grid-template-columns: 1fr; gap: 0; }
  .tyc-toc { display: none; }
}

@media (max-width: 768px) {
  .nav-right { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    overflow: visible;
  }
  .hero-text {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-top: clamp(48px, 8vw, 80px);
    padding-bottom: 40px;
    text-align: center;
  }
  .hero-text .hero-eyebrow { align-self: center; }
  .hero-sub { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-social-proof { align-items: center; }
  .hero-sp-logos { justify-content: center; }
  .hero-visual { height: clamp(300px, 65vw, 460px); }
  .hero-phone-wrap { padding: 12px 10% 0; }

  .badges-inner { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }

  .split-inner { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-inner { direction: ltr; }
  .split-image-wrap { aspect-ratio: 16/9; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-sub-page {
    grid-template-columns: 1fr;
    min-height: unset;
    overflow: visible;
  }
  .hero-sub-page .hero-text {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-top: clamp(48px, 8vw, 80px);
    padding-bottom: 40px;
    text-align: center;
    align-items: center;
  }
  .hero-sub-page .hero-sub { max-width: 100%; }
  .hero-sub-page .hero-cta { justify-content: center; }
  .hero-sub-page .hero-visual { height: clamp(300px, 65vw, 460px); }
  .hero-sub-page .hero-phone-wrap { padding: 12px 20% 0; max-width: 100%; }

  .features-grid { grid-template-columns: 1fr; }
  .features-grid.five-col { grid-template-columns: 1fr; }
  .how-it-works-grid { grid-template-columns: 1fr; }

  .phone-showcase-inner { grid-template-columns: 1fr; gap: 40px; }
  .phone-showcase.reverse .phone-showcase-inner { direction: ltr; }
  .phone-showcase-visual img { max-width: 240px; }
  .tyc-back-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.25rem; }
  .cta-inner .section-title { font-size: 1.75rem; }

  .login-card { padding: 32px 24px; }
  .login-actions { flex-direction: column; align-items: stretch; }
  .login-actions .btn { max-width: 100%; }
}
