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

:root {
  --teal: #0A7B72;
  --teal-deep: #065C55;
  --teal-light: #0FA396;
  --teal-glow: rgba(10,123,114,0.12);
  --amber: #D4894A;
  --amber-light: #E8A96A;
  --ink: #0E1C1B;
  --ink-soft: #1D3330;
  --sand: #F5F0E8;
  --sand-dark: #EAE4D8;
  --white: #FAFAF8;
  --muted: #6B7C7A;
  --line: rgba(10,123,114,0.18);
  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ──────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, background 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s ease, width 0.3s, height 0.3s, border-color 0.2s;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}
a:hover ~ .cursor, button:hover ~ .cursor { transform: translate(-50%,-50%) scale(2.5); background: var(--amber); }

/* ── NAV ────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(12px);
  padding: 18px 60px;
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--ink); font-weight: 300; font-style: italic; }
.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
  cursor: none;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  opacity: 1 !important;
  padding: 11px 24px;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal-deep) !important; }

/* ── HERO ───────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  padding: 160px 60px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-tag::before {
  content: ''; width: 32px; height: 1px; background: var(--teal);
}
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
}
.hero-h1 em {
  font-style: italic; font-weight: 300;
  color: var(--teal);
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 52px;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-actions {
  display: flex; gap: 20px; align-items: center;
  opacity: 0; animation: fadeUp 0.8s 0.65s forwards;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 16px 36px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); }
.btn-ghost {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  opacity: 0.65;
  transition: opacity 0.2s, gap 0.2s;
  cursor: none;
}
.btn-ghost:hover { opacity: 1; gap: 16px; }
.btn-ghost::after { content: '→'; }

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right-bg {
  position: absolute; inset: 0;
  background: var(--ink);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 39px, rgba(255,255,255,0.5) 39px, rgba(255,255,255,0.5) 40px
  ), repeating-linear-gradient(
    90deg, transparent, transparent 39px, rgba(255,255,255,0.5) 39px, rgba(255,255,255,0.5) 40px
  );
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-stats {
  position: absolute;
  bottom: 80px; left: 80px; right: 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
  transition: background 0.3s;
}
.stat-card:hover { background: rgba(255,255,255,0.07); }
.stat-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--teal-light); }
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-accent {
  position: absolute;
  top: 40%; right: 10%;
  width: 180px; height: 180px;
  border: 1px solid rgba(10,163,150,0.3);
  border-radius: 50%;
  animation: spinSlow 20s linear infinite;
}
.hero-accent::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px; bottom: 20px;
  border: 1px solid rgba(10,163,150,0.15);
  border-radius: 50%;
}

/* ── MARQUEE ────────────────────────────────── */
.marquee-strip {
  background: var(--teal);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 48px;
  display: flex; align-items: center; gap: 48px;
}
.marquee-item::after {
  content: '◆';
  color: var(--amber);
  font-size: 0.5rem;
}

/* ── SECTIONS ───────────────────────────────── */
section { padding: 120px 60px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 24px;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--teal); }

.section-h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-h2 em { font-style: italic; color: var(--teal); font-weight: 300; }

.section-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
}

/* ── ABOUT / INTRO ──────────────────────────── */
#about { background: var(--sand); }
.about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 100px;
  align-items: start;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 24px;
}
.about-text p strong {
  color: var(--ink);
  font-weight: 500;
}
.about-diffs { display: flex; flex-direction: column; gap: 0; }
.diff-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  cursor: none;
  transition: padding-left 0.3s;
}
.diff-item:first-child { border-top: 1px solid var(--line); }
.diff-item:hover { padding-left: 12px; }
.diff-num {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.diff-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.diff-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── SERVICES ───────────────────────────────── */
#services { background: var(--white); }
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 80px;
}
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}
.tier {
  background: var(--sand);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: none;
}
.tier::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.tier:hover { transform: translateY(-4px); }
.tier:hover::before { transform: scaleX(1); }
.tier-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.tier-name {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.tier-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
}
.tier-range {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--teal);
  font-style: italic;
}

.packages { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.pkg {
  background: var(--sand);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: background 0.3s;
}
.pkg:hover { background: var(--sand-dark); }
.pkg-tier-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  padding: 4px 10px;
  margin-bottom: 20px;
}
.pkg-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}
.pkg-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}
.pkg-meta {
  display: flex; gap: 24px;
  font-size: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  flex-wrap: wrap;
}
.pkg-meta-item strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 3px;
}
.pkg-meta-item span { color: var(--ink); font-weight: 400; }

/* ── IMPACT / CASE STUDIES ──────────────────── */
#impact { background: var(--ink); }
#impact .section-h2 { color: var(--white); }
#impact .section-h2 em { color: var(--teal-light); }
#impact .section-tag { color: var(--teal-light); }
#impact .section-tag::before { background: var(--teal-light); }
#impact .section-lead { color: rgba(255,255,255,0.5); }
.impact-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 60px; }
.case {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: background 0.3s;
}
.case:hover { background: rgba(255,255,255,0.07); }
.case-flag {
  width: 32px; height: 3px;
  background: var(--teal-light);
  margin-bottom: 28px;
}
.case-context {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.case-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}
.case-body {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.case-outcome {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.case-outcome-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--teal-light);
  line-height: 1;
}
.case-outcome-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}
.impact-numbers {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.impact-num-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 32px;
  text-align: center;
}
.impact-num-big {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.impact-num-big span { color: var(--amber); }
.impact-num-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── PROCESS ────────────────────────────────── */
#process { background: var(--sand); }
.process-grid {
  display: grid; grid-template-columns: 4fr 7fr;
  gap: 100px; align-items: start;
}
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 60px; }
.process-step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  cursor: none;
}
.process-step:first-child { border-top: 1px solid var(--line); }
.step-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--teal);
  opacity: 0.4;
  line-height: 1;
  padding-top: 2px;
  transition: opacity 0.3s;
}
.process-step:hover .step-num { opacity: 1; }
.step-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--muted);
}
.process-visual {
  position: relative;
  margin-top: 60px;
}
.process-diagram {
  background: var(--ink);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.pd-item {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeRight 0.6s forwards;
}
.pd-item:nth-child(1) { animation-delay: 0.1s; }
.pd-item:nth-child(2) { animation-delay: 0.3s; }
.pd-item:nth-child(3) { animation-delay: 0.5s; }
.pd-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  flex-shrink: 0;
  text-transform: uppercase;
}
.pd-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 3px;
}
.pd-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.pd-arrow {
  width: 1px; height: 24px;
  background: rgba(10,163,150,0.3);
  margin-left: 20px;
  margin-bottom: 8px;
  position: relative;
}
.pd-arrow::after {
  content: '';
  position: absolute;
  bottom: -1px; left: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid rgba(10,163,150,0.3);
  border-bottom: 1px solid rgba(10,163,150,0.3);
  transform: rotate(45deg);
}
.pd-result {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.pd-result-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.pd-result-text {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

/* ── TESTIMONIAL ────────────────────────────── */
#testimonial {
  background: var(--teal-deep);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
#testimonial::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 28rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  position: absolute;
  top: -80px; left: 40px;
  line-height: 1;
  pointer-events: none;
}
.testimonial-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.testimonial-text {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 48px;
}
.testimonial-author {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--white);
}
.testimonial-meta strong {
  display: block; font-size: 0.88rem;
  color: var(--white); font-weight: 500;
}
.testimonial-meta span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

/* ── INSIGHTS ───────────────────────────────── */
#insights { background: var(--white); }
.insights-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 60px; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.insight-card {
  background: var(--sand);
  padding: 44px 36px;
  display: flex; flex-direction: column;
  cursor: none;
  transition: background 0.3s;
  position: relative;
}
.insight-card:hover { background: var(--sand-dark); }
.insight-cat {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.insight-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 16px;
  flex: 1;
}
.insight-blurb {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
}
.insight-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
  cursor: none;
}
.insight-link:hover { gap: 14px; }
.insight-link::after { content: '→'; }

/* ── CONTACT / CTA ──────────────────────────── */
#contact { background: var(--sand); }
.contact-simple {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-intro {
  margin: 40px auto 48px;
  max-width: 680px;
}
.contact-intro p {
  font-size: 1rem; line-height: 1.85; color: var(--muted); margin-bottom: 20px;
}
.contact-cta {
  margin: 48px 0 60px;
}
.btn-large {
  padding: 20px 48px;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-direct-centered {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item-text strong {
  display: block; font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 4px;
}
.contact-item-text span { font-size: 0.88rem; color: var(--ink); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px 18px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  cursor: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  background: var(--teal);
  color: var(--white);
  padding: 18px 48px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  width: 100%;
  transition: background 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--teal-deep); }

/* ── FORM VALIDATION & SUCCESS ──────────────── */
.form-error {
  display: block;
  font-size: 0.72rem;
  color: #c0392b;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.form-success {
  text-align: center;
  padding: 60px 20px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease;
}
.form-success-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.form-success-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 32px;
}
.form-reset-btn {
  background: none;
  border: 1px solid var(--line);
  color: var(--teal);
  padding: 12px 28px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.form-reset-btn:hover {
  background: var(--teal);
  color: var(--white);
}
@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.shake {
  animation: shakeX 0.45s ease;
}
@keyframes shakeX {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}

/* ── FINAL CTA ──────────────────────────────── */
#cta-final {
  background: var(--ink);
  padding: 140px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(10,123,114,0.15);
  pointer-events: none;
}
#cta-final::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(10,123,114,0.1);
  pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-final-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal-light);
  margin-bottom: 32px;
}
.cta-final-tag::before { content: ''; width: 24px; height: 1px; background: var(--teal-light); }
.cta-final-h {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.cta-final-h em { color: var(--teal-light); font-style: italic; font-weight: 300; }
.cta-final-sub {
  font-size: 1rem; line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin-bottom: 52px;
}
.cta-final-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--ink);
  padding: 18px 44px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  cursor: none;
}
.btn-white:hover { background: var(--sand); }
.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  padding: 18px 44px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
  cursor: none;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: #080F0E;
  padding: 80px 60px 48px;
  color: rgba(255,255,255,0.4);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 20px; color: var(--white); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem;
}
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; cursor: none; }

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── JQUERY SCROLL ANIMATIONS ───────────────── */
.anim-fade-in {
  opacity: 0;
  transition: opacity 0.9s ease;
}
.anim-fade-in.animate { opacity: 1; }

.anim-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-slide-left.animate { opacity: 1; transform: translateX(0); }

.anim-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-slide-right.animate { opacity: 1; transform: translateX(0); }

.anim-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-scale-in.animate { opacity: 1; transform: scale(1); }

.anim-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-stagger.animate > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.anim-stagger.animate > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.anim-stagger.animate > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.anim-stagger.animate > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.anim-stagger.animate > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.anim-stagger.animate > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }

.anim-count { transition: all 0.3s; }

/* ── MOBILE ─────────────────────────────────── */
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 24px 60px; }
  .hero-right { display: none; }
  .about-grid, .services-intro, .process-grid, .contact-grid, .insights-intro, .impact-intro { grid-template-columns: 1fr; gap: 40px; }
  .tiers, .packages, .cases { grid-template-columns: 1fr; }
  .impact-numbers { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-h1 { font-size: 2.8rem; }
}
