/* ============================================================
   TerraTech AI Systems — Main Stylesheet
   Design: matches terratech-ai.com dark navy aesthetic
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --bg:          #020617;
  --bg-alt:      #050d1f;
  --surface:     rgba(15, 25, 42, 0.75);
  --surface-2:   rgba(15, 25, 42, 0.5);
  --green:       #6ec72d;
  --green-glow:  rgba(110, 199, 45, 0.25);
  --blue:        #5d76f2;
  --blue-glow:   rgba(93, 118, 242, 0.25);
  --silver:      #d4d2d3;
  --silver-glow: rgba(212, 210, 211, 0.15);
  --text:        #ffffff;
  --muted:       #8b92a7;
  --border:      rgba(255, 255, 255, 0.08);

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

  --transition:  0.3s ease;

  --space-xs:    8px;
  --space-sm:    16px;
  --space-md:    24px;
  --space-lg:    48px;
  --space-xl:    80px;
  --space-2xl:   120px;

  --max-w:       1200px;
  --font:        'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(110, 199, 45, 0.3);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

.text-green { color: var(--green); }
.text-blue  { color: var(--blue); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Voice demo body text */
.voice-demo-body {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  margin-bottom: 32px; max-width: 580px;
  margin-left: auto; margin-right: auto; text-align: center;
}

/* Contact section headings */
.contact__heading { font-size: clamp(26px,3.5vw,38px); font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
.contact__body    { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }

/* Two-column form rows */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ── Animated Border Card ── */
.card {
  position: relative;
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(
    from var(--global-angle, 0deg),
    transparent 0%,
    var(--card-accent, #6ec72d) 15%,
    transparent 30%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.card--green  { --card-accent: var(--green); }
.card--blue   { --card-accent: var(--blue); }
.card--silver { --card-accent: var(--silver); }

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card--green:hover  { box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--green-glow); }
.card--blue:hover   { box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--blue-glow); }
.card--silver:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--silver-glow); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #000;
}
.btn-primary:hover {
  background: transparent;
  color: var(--green);
  box-shadow: 0 0 20px var(--green-glow), inset 0 0 0 1px var(--green);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border);
}
.btn-outline:hover {
  box-shadow: inset 0 0 0 1px var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover {
  background: transparent; color: var(--blue);
  box-shadow: 0 0 20px var(--blue-glow), inset 0 0 0 1px var(--blue);
  transform: translateY(-2px);
}

.btn-silver { background: var(--silver); color: #000; }
.btn-silver:hover {
  background: transparent; color: var(--silver);
  box-shadow: 0 0 20px var(--silver-glow), inset 0 0 0 1px var(--silver);
  transform: translateY(-2px);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

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

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text); }

.nav__cta { margin-left: 16px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px var(--space-md) 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.95);
}

.nav__mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 4px;
  transition: color var(--transition);
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--text); }
.nav__mobile .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: calc(var(--space-2xl) + 70px) 0 var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Neural network canvas — fills the whole hero */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Radial green glow sits on top of canvas, behind content */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(110, 199, 45, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Push hero content above the canvas */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(110, 199, 45, 0.1);
  border: 1px solid rgba(110, 199, 45, 0.3);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: var(--space-md);
}

.hero__title {
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.hero__title strong {
  font-weight: 700;
  color: var(--green);
}

.hero__body {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.stat-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 36px;
  text-align: center;
  min-width: 160px;
}

.stat-card__value {
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   MIR LEAD CAPTURE
   ============================================================ */
.mir {
  background: var(--bg-alt);
}

.mir__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.mir__heading {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.mir__sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.mir__includes {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.mir__includes h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: var(--space-sm);
}

.mir__includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.mir__includes li:last-child { border-bottom: none; }

.mir__includes li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.mir__form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
}

.mir__form-panel h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.mir__form-panel p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-group select option {
  background: #0f192a;
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ============================================================
   WHAT WE DO
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  align-items: stretch;
}

.service-card {
  padding: var(--space-lg) var(--space-md);
  padding-bottom: calc(var(--space-md) + 60px);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease 0.15s, transform 0.4s cubic-bezier(0.34,1.56,0.64,1) 0.15s;
}

.reveal.visible .service-card__icon {
  opacity: 1;
  transform: scale(1);
}

.service-card__icon--green { background: rgba(110,199,45,0.12); }
.service-card__icon--blue  { background: rgba(93,118,242,0.12); }
.service-card__icon--silver { background: rgba(212,210,211,0.08); }

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-card__sub {
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.card--blue   .service-card__sub { color: var(--blue); }
.card--silver .service-card__sub { color: var(--silver); }

.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
}

.service-card ul li::before {
  content: '—';
  color: var(--green);
  flex-shrink: 0;
}

.card--blue   .service-card ul li::before { color: var(--blue); }
.card--silver .service-card ul li::before { color: var(--silver); }

.service-card__footer {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: var(--space-sm);
}

/* ============================================================
   HOW WE'RE DIFFERENT
   ============================================================ */
.different {
  background: var(--bg-alt);
}

.different__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.diff-card {
  padding: var(--space-md);
}

.diff-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: var(--space-xs);
}

.diff-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.diff-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.diff-card__tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(110,199,45,0.3);
  border-radius: 20px;
  padding: 3px 10px;
}

/* ============================================================
   REAL RESULTS
   ============================================================ */
.results__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.results__left h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.results__bullets {
  margin-bottom: var(--space-lg);
}

.results__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
  padding: 8px 0;
  line-height: 1.6;
}

.results__bullets li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.results__footer-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: var(--space-sm);
}

.results__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.result-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.result-stat__value {
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.result-stat__label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.status-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.status-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.status-metric {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}
.status-metric:last-child { border-bottom: none; padding-bottom: 0; }

.status-metric__top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.status-metric__label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-metric__value {
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.status-metric__body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.status-card__footer {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.industries {
  background: var(--bg-alt);
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.industry-card {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
}

.industry-card__icon {
  flex-shrink: 0;
  margin-top: 4px;
  display: flex;
  align-items: center;
}

.industry-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   SOUND FAMILIAR (Problems)
   ============================================================ */
.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.problem-card {
  padding: var(--space-md);
}

.problem-card__num {
  font-size: 36px;
  font-weight: 700;
  color: rgba(110, 199, 45, 0.15);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.problem-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--bg-alt);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  align-items: stretch;
}

.pricing-card {
  padding: var(--space-lg) var(--space-md);
  padding-bottom: var(--space-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card--popular {
  border-color: rgba(93, 118, 242, 0.4);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.pricing-card__body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.pricing-card ul {
  margin-bottom: var(--space-md);
}

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  line-height: 1.5;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card__bottom {
  margin-top: auto;
}

.pricing-card__price {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-card__price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

.pricing-card__fine {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: var(--space-md);
}

.pricing-card .btn {
  margin-top: 0;
}

.pricing-card__alt-tag {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  display: inline-block;
  white-space: nowrap;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  position: relative;
}

.process__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin: 0 auto var(--space-md);
}

.process-step h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   MARKETS
   ============================================================ */
.markets {
  background: var(--bg-alt);
}

.markets__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.markets__left h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.markets__left h2 strong {
  font-weight: 700;
  color: var(--green);
}

.markets__left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.markets__cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs) var(--space-md);
}

.markets__city {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0;
}

.markets__city::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--green);
}

.markets__visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: center;
}

.markets__visual h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.markets__visual p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: var(--space-md);
}

.markets__flags {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.market-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.market-flag__emoji { font-size: 36px; }

.market-flag__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__list {
  max-width: 760px;
  margin: var(--space-lg) auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  gap: var(--space-md);
  transition: color var(--transition);
}

.faq-item__question:hover { color: var(--green); }

.faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  color: var(--muted);
}

.faq-item.open .faq-item__icon {
  background: var(--green);
  border-color: var(--green);
  color: #000;
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 400px;
  padding-bottom: var(--space-md);
}

.faq-item__answer p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--bg-alt);
  overflow: hidden;
}

.testimonials__track-wrap {
  overflow: hidden;
  margin-top: var(--space-lg);
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials__track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  animation: marquee 40s linear infinite;
}

.testimonials__track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonial-card {
  width: 340px;
  flex-shrink: 0;
  padding: var(--space-md);
}

.testimonial-card__stars {
  color: var(--green);
  font-size: 14px;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-card__title {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(110, 199, 45, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.cta-banner h2 strong {
  font-weight: 700;
  color: var(--green);
}

.cta-banner p {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.cta-banner__btns {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--bg-alt);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__left h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.contact__left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.trust-signals {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.trust-signal::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

.contact__form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
}

.contact__form-wrap h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.contact__form-wrap p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: var(--space-md);
}

.contact__calendly {
  margin-top: var(--space-md);
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.contact__calendly a {
  color: var(--green);
  font-weight: 500;
}
.contact__calendly a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.footer__brand {}

.footer__logo {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--space-md);
}

.footer__email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--green);
  font-weight: 500;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-md);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--green); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: var(--muted);
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  transition: all var(--transition);
}
.social-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; }
  .problems__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid  { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .process__grid  { grid-template-columns: repeat(3, 1fr); }
  .process__grid::before { display: none; }
  .results__inner { grid-template-columns: 1fr; }
  .markets__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__top    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 56px;
    --space-2xl: 80px;
  }

  .nav__links  { display: none; }
  .nav__cta    { display: none; }
  .nav__hamburger { display: flex; }

  .nav__mobile.open { display: flex; }

  .different__grid  { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: 1fr; }
  .problems__grid   { grid-template-columns: 1fr; }
  .process__grid    { grid-template-columns: repeat(2, 1fr); }
  .results__stats   { grid-template-columns: repeat(2, 1fr); }

  .mir__inner    { grid-template-columns: 1fr; }
  .footer__top   { grid-template-columns: 1fr; gap: var(--space-lg); }

  .hero__title { font-size: 38px; }

  .markets__cities { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .cta-banner__btns { flex-direction: column; align-items: stretch; }
  .cta-banner__btns .btn { justify-content: center; }
  .process__grid { grid-template-columns: 1fr; }
  .results__stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav__has-dropdown {
  position: relative;
}

.nav__has-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.6;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(5, 13, 31, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
  list-style: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.nav__has-dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav__dropdown li a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav__dropdown li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.nav__dropdown li a:hover::before {
  opacity: 1;
}

.nav__mobile-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  padding: 10px 4px 4px;
  display: block;
}

.nav__mobile-sub {
  padding-left: 20px !important;
  font-size: 14px !important;
}

/* ============================================================
   PAGE HERO (inner pages — no canvas)
   ============================================================ */
.page-hero {
  padding: calc(var(--space-xl) + 70px) 0 var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(110, 199, 45, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero--blue::before {
  background: radial-gradient(ellipse at center, rgba(93, 118, 242, 0.1) 0%, transparent 70%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero__title strong {
  font-weight: 700;
  color: var(--green);
}

.page-hero__subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.page-hero__ctas {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ============================================================
   STATS BAR (About page)
   ============================================================ */
.stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) 0;
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat-item__value {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-item__label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   FOUNDER CARD (About page)
   ============================================================ */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-lg);
}

.founder-card {
  padding: var(--space-lg);
  text-align: center;
  position: relative;
}

.founder-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(ellipse at top, rgba(110, 199, 45, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.founder-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(110, 199, 45, 0.3);
}

.founder-card__name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.founder-card__title {
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.founder-quote {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
}

.founder-quote p + p {
  margin-top: var(--space-sm);
}

/* ============================================================
   VALUES GRID (About page)
   ============================================================ */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-card {
  padding: var(--space-md);
}

.value-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: var(--space-xs);
}

.value-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   TIMELINE (About page)
   ============================================================ */
.timeline {
  position: relative;
  margin-top: var(--space-lg);
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--blue), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green-glow);
}

.timeline-item__year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-table-wrap {
  overflow-x: auto;
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}

.pricing-table th {
  padding: 24px 28px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.pricing-table th:first-child {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.pricing-table th.col-starter {
  color: var(--green);
}

.pricing-table th.col-full {
  color: var(--blue);
  background: rgba(93, 118, 242, 0.05);
}

.pricing-table td {
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--muted);
  vertical-align: middle;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table td:first-child {
  font-weight: 500;
  color: var(--text);
}

.pricing-table td.col-full {
  background: rgba(93, 118, 242, 0.03);
}

.pricing-table .check-green { color: var(--green); font-size: 18px; }
.pricing-table .check-blue  { color: var(--blue);  font-size: 18px; }
.pricing-table .dash        { color: rgba(255,255,255,0.2); }

.pricing-table tr.price-row th,
.pricing-table tr.price-row td {
  padding-top: 28px;
  padding-bottom: 28px;
}

.price-display {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.price-display span {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

.price-aud {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* Currency toggle */
.currency-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}

.currency-btn {
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: var(--font);
}

.currency-btn.active {
  background: var(--green);
  color: #000;
}

/* ============================================================
   MIR TIERS (Pricing page)
   ============================================================ */
.mir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.mir-card {
  padding: var(--space-md);
  position: relative;
}

.mir-card__tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.mir-card__price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.mir-card__price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

.mir-card__aud {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

.mir-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: var(--space-sm);
}

.mir-card ul li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

.mir-card ul li::before {
  content: '—';
  color: var(--green);
  flex-shrink: 0;
}

/* ============================================================
   INDUSTRY PAGE STYLES
   ============================================================ */
.industry-hero {
  padding: calc(var(--space-xl) + 70px) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.industry-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(110, 199, 45, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.industry-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.industry-hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(110, 199, 45, 0.3);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: var(--space-md);
}

.industry-hero__title {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.industry-hero__title strong {
  font-weight: 700;
  color: var(--green);
}

.industry-hero__body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.industry-hero__stats {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.industry-stat {
  text-align: center;
}

.industry-stat__val {
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.industry-stat__label {
  font-size: 12px;
  color: var(--muted);
}

.industry-hero__visual {
  position: relative;
}

.industry-hero__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.industry-hero__card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(110, 199, 45, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.industry-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.industry-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.industry-feature__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(110, 199, 45, 0.1);
  border: 1px solid rgba(110, 199, 45, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.industry-feature__text h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.industry-feature__text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Case Study */
.case-study {
  background: var(--bg-alt);
}

.case-study__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.case-study__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-sm);
  display: block;
}

.case-study__title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.case-study__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.case-study__quote {
  border-left: 3px solid var(--green);
  padding-left: var(--space-md);
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-top: var(--space-lg);
}

.case-study__quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
}

.case-study__results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.result-card {
  padding: var(--space-md);
  text-align: center;
}

.result-card__val {
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.result-card__label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}


/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .values__grid     { grid-template-columns: repeat(2, 1fr); }
  .mir-grid         { grid-template-columns: repeat(2, 1fr); }
  .founder-section  { grid-template-columns: 1fr; }
  .industry-hero__inner { grid-template-columns: 1fr; }
  .case-study__inner    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .values__grid   { grid-template-columns: 1fr; }
  .mir-grid       { grid-template-columns: 1fr; }
  .case-study__results { grid-template-columns: 1fr 1fr; }
  .page-hero__ctas { flex-direction: column; align-items: center; }
  .page-hero__ctas .btn { width: 100%; justify-content: center; max-width: 320px; }
}

/* ============================================================
   NAV LOGO IMAGE (Change: official logo)
   ============================================================ */
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ============================================================
   CHATBOT DEMO SECTION (Change 1)
   ============================================================ */
.chatbot-demo-section { background: var(--bg-alt); }

.chatbot-demo-embed {
  max-width: 680px;
  margin: 48px auto 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

#chatbot-demo-container { flex: 1; min-height: 380px; }

.chatbot-demo-note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  padding: 14px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0;
}

/* ============================================================
   ROI CALCULATOR
   ============================================================ */
.roi-section { background: var(--bg-alt); }
.roi-wrapper { max-width: 1200px; margin: 0 auto; color: #fff; }
.roi-header { text-align: center; margin-bottom: 60px; }
.roi-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.roi-header p { font-size: 17px; color: var(--muted); max-width: 620px; margin: 0 auto; line-height: 1.65; }
.roi-panels { display: flex; gap: 28px; align-items: stretch; }
@media (max-width: 768px) { .roi-panels { flex-direction: column; } }
.panel {
  flex: 1; padding: 40px;
}
.panel-title { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 32px; color: var(--green); }
.panel-blue .panel-title { color: var(--blue); }
.slider-group { margin-bottom: 28px; }
.slider-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.slider-label span:first-child { font-size: 13px; color: var(--muted); }
.slider-value { font-size: 15px; font-weight: 600; color: var(--green); min-width: 90px; text-align: right; }
input[type="range"] { width: 100%; height: 4px; border-radius: 2px; outline: none; cursor: pointer; -webkit-appearance: none; appearance: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; background: var(--green); border-radius: 50%; cursor: pointer; box-shadow: 0 0 10px var(--green-glow); transition: transform 0.2s, box-shadow 0.2s; }
input[type="range"]:hover::-webkit-slider-thumb { transform: scale(1.25); box-shadow: 0 0 20px rgba(110,199,45,0.9); }
.result-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.result-row:last-of-type { border-bottom: none; }
.result-label { font-size: 13px; color: var(--muted); }
.result-val { font-size: 20px; font-weight: 700; color: #fff; }
.result-val.negative { color: #ff6b6b; }
.result-val.accent { color: var(--green); }
.roi-total-box {
  border-radius: 12px; border: 2px solid transparent; padding: 24px; text-align: center; margin-top: 24px;
  background: linear-gradient(rgba(15,25,42,0.95),rgba(15,25,42,0.95)) padding-box,
    conic-gradient(from var(--angle,0deg),var(--silver),#969394,var(--silver)) border-box;
}
.total-label { font-size: 11px; font-weight: 600; color: var(--silver); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.total-value { font-size: 48px; font-weight: 800; color: var(--green); line-height: 1; }
.total-sub { font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ============================================================
   VOICE DEMO SECTION (Change 3)
   ============================================================ */
.voice-demo-section { background: var(--bg); }

.voice-demo-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.voice-demo-coming-soon {
  background: rgba(93,118,242,0.05);
  border: 1px solid rgba(93,118,242,0.2);
  border-radius: 20px; padding: 56px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  max-width: 480px; margin: 0 auto; position: relative;
}
.voice-demo-coming-soon::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 120px; height: 120px; border-radius: 50%;
  border: 1px solid var(--blue); opacity: 0;
  animation: voicePulseRing 2.4s ease-out 1.6s infinite;
  pointer-events: none;
}
.voice-demo-icon {
  position: relative; width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.voice-demo-icon svg { position: relative; z-index: 2; }
.voice-demo-icon::before, .voice-demo-icon::after {
  content: ''; position: absolute; border-radius: 50%;
  border: 1.5px solid var(--blue); opacity: 0;
  animation: voicePulseRing 2.4s ease-out infinite;
}
.voice-demo-icon::before { width: 60px; height: 60px; animation-delay: 0s; }
.voice-demo-icon::after  { width: 90px; height: 90px; animation-delay: 0.8s; }
@keyframes voicePulseRing {
  0%   { opacity: 0.7; transform: scale(0.7); }
  100% { opacity: 0;   transform: scale(1.6); }
}
.voice-demo-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); border: 1px solid rgba(93,118,242,0.4);
  border-radius: 20px; padding: 3px 12px;
}

.voice-demo-coming-soon p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   TRUST BAR (Change 4)
   ============================================================ */
.trust-bar-section {
  background: var(--bg);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-bar__item {
  text-align: center;
  padding: 16px 40px;
}

.trust-bar__value {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-bar__label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-bar__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

@keyframes trustItemPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.06); }
  70%  { transform: scale(0.98); }
  100% { transform: scale(1); }
}
@keyframes trustValueGlow {
  0%, 100% { text-shadow: none; }
  50% { text-shadow: 0 0 16px var(--green-glow), 0 0 32px var(--green-glow); }
}
.trust-bar--revealed .trust-bar__item          { animation: trustItemPop 0.6s ease forwards; }
.trust-bar--revealed .trust-bar__item:nth-child(1) { animation-delay: 0s; }
.trust-bar--revealed .trust-bar__item:nth-child(3) { animation-delay: 0.1s; }
.trust-bar--revealed .trust-bar__item:nth-child(5) { animation-delay: 0.2s; }
.trust-bar--revealed .trust-bar__item:nth-child(7) { animation-delay: 0.3s; }
.trust-bar--revealed .trust-bar__value { animation: trustValueGlow 1.2s ease 0.1s; }

@media (max-width: 768px) {
  .trust-bar__divider { display: none; }
  .trust-bar__item { padding: 16px 24px; min-width: 50%; }
}

/* ============================================================
   TYPOGRAPHY UPGRADE — Plus Jakarta Sans for display headings
   ============================================================ */
:root {
  --font-display: 'Plus Jakarta Sans', 'Poppins', sans-serif;
}

.hero__title,
.section-title,
h1,
h2 {
  font-family: var(--font-display);
}

/* Tighten letter-spacing slightly for Plus Jakarta Sans at large sizes */
.hero__title {
  letter-spacing: -0.03em;
}

.section-title {
  letter-spacing: -0.02em;
}

/* ============================================================
   FEATURED TESTIMONIAL — Real Results section (Change 6)
   ============================================================ */
.featured-testimonial {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
}

.featured-testimonial__stars {
  color: var(--green);
  font-size: 20px;
  margin-bottom: 20px;
}

.featured-testimonial__quote {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  font-style: italic;
  margin: 0 0 28px 0;
  border: none;
  padding: 0;
}

.featured-testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ============================================================
   FLOATING CHATBOT WIDGET — LIVE DEMO LABEL (Change 1, Step 4)
   ============================================================ */
.tt-chat-widget-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green, #6ec72d);
  text-align: right;
  margin-bottom: 4px;
  padding-right: 4px;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor-dot,
#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
}

#cursor-ring {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(110, 199, 45, 0.55);
  background: transparent;
  z-index: 99998;
}

#cursor-ring.cursor-hover {
  width: 48px;
  height: 48px;
  border-color: var(--green);
  background: rgba(110, 199, 45, 0.07);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

#cursor-ring.cursor-text {
  width: 2px;
  height: 22px;
  border-radius: 2px;
  border-color: var(--green);
  background: var(--green);
  transition: width 0.15s ease, height 0.15s ease, border-radius 0.15s ease, background 0.15s ease;
}

body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: none !important;
}

/* ============================================================
   SECTION AMBIENT DECORATORS
   ============================================================ */

/* ── Gradient divider lines at section tops ── */

/* Chatbot Demo — green top line */
.chatbot-demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(110, 199, 45, 0.5),
    transparent
  );
  pointer-events: none;
}

/* Need position: relative on sections for ::before to work */
.chatbot-demo-section,
.voice-demo-section,
.roi-section,
.dodont-section {
  position: relative;
}

/* Voice Demo — blue top line */
.voice-demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(500px, 80%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(93, 118, 242, 0.45),
    transparent
  );
  pointer-events: none;
}

/* ── Pricing — Most Popular card animated glow border ── */
.pricing-card--popular {
  position: relative;
}

.pricing-card--popular::before {
  /* Override the base .card::before gradient with a full rainbow sweep */
  background: conic-gradient(
    from var(--global-angle, 0deg),
    var(--green)  0%,
    var(--blue)   25%,
    var(--silver) 50%,
    var(--blue)   75%,
    var(--green)  100%
  );
  /* Same mask technique as .card::before — shows border only, not fill */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1.5px;
  inset: 0;
  opacity: 1;
}

/* ── How It Works (process steps) — connecting line decoration ── */
.process__grid {
  position: relative;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 28px;                /* vertically centered on step numbers */
  left: calc(10% + 28px);  /* start after first step number */
  right: calc(10% + 28px); /* end before last step number */
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(110, 199, 45, 0.3),
    rgba(93, 118, 242, 0.3),
    rgba(110, 199, 45, 0.3)
  );
  pointer-events: none;
}

@media (max-width: 768px) {
  .process__grid::before { display: none; }
}

/* Traveling dot that animates along the connecting line */
.process-line-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(110, 199, 45, 0.9), 0 0 18px rgba(110, 199, 45, 0.45);
  top: 23px; /* centers on the line at top: 28px — dot height 10px, so 28 - 5 = 23 */
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  will-change: transform, opacity;
}

/* Step number pulse when dot arrives */
.process-step__num {
  transition: box-shadow 0.3s ease;
}
.process-step__num.is-active {
  box-shadow: 0 0 0 6px rgba(110, 199, 45, 0.25), 0 0 0 12px rgba(110, 199, 45, 0.1);
}

@media (max-width: 768px) {
  .process-line-dot { display: none; }
}

/* ============================================================
   HERO — AMBIENT ORBS
   ============================================================ */
.hero__orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.hero__orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(110, 199, 45, 0.18), transparent 65%);
  top: -20%;
  left: -15%;
  animation: orbDrift1 20s ease-in-out infinite;
}

.hero__orb--2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(93, 118, 242, 0.2), transparent 65%);
  top: 10%;
  right: -10%;
  animation: orbDrift2 25s ease-in-out infinite;
}

.hero__orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(110, 199, 45, 0.12), transparent 65%);
  bottom: 5%;
  left: 35%;
  animation: orbDrift3 17s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(30px, -20px); }
  66%       { transform: translate(-15px, 25px); }
}

@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0); }
  40%       { transform: translate(-25px, 30px); }
  70%       { transform: translate(20px, -15px); }
}

@keyframes orbDrift3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-20px, -30px); }
}

/* ============================================================
   HERO — SPLIT TEXT ENTRANCE
   ============================================================ */
/* Words start hidden — JS animates them in */
.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

/* Label, body, CTAs, stats start hidden too */
.hero .hero__label,
.hero .hero__body,
.hero .hero__ctas,
.hero .hero__stats {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

/* ============================================================
   HERO — CTA BUTTON SHIMMER
   ============================================================ */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: skewX(-20deg);
  animation: btnShimmer 4s ease-in-out 2s infinite;
  pointer-events: none;
}

@keyframes btnShimmer {
  0%   { left: -100%; }
  40%  { left: 160%; }
  100% { left: 160%; }
}

/* ============================================================
   NAVIGATION — ENHANCEMENTS
   ============================================================ */

/* Scroll progress bar */
.nav__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transition: width 0.08s linear;
  pointer-events: none;
}

/* Active nav link state */
.nav__links a.active {
  color: var(--green);
}

/* Glassmorphic backdrop-filter — applied via JS class */
.nav.scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

