/* ===== Tokens ===== */
:root {
  --black: #0A0A0A;
  --black-soft: #1A1A1A;
  --brown: #2B1F1A;
  --brown-light: #4A3C35;
  --beige: #DCC9AD;
  --beige-light: #EDE4D4;
  --beige-dark: #B7A58A;
  --white: #FFFFFF;
  --beige-soft: rgba(220, 201, 173, 0.15);

  --bg: var(--black);
  --bg-alt: var(--black-soft);
  --bg-dark: var(--black);
  --text: var(--white);
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-on-dark: var(--white);
  --text-muted-dark: rgba(255, 255, 255, 0.55);
  --border: rgba(255, 255, 255, 0.1);
  --border-dark: rgba(255, 255, 255, 0.1);

  --glow-headline: 0 0 32px rgba(220, 201, 173, 0.35), 0 0 64px rgba(220, 201, 173, 0.12);
  --glow-headline-strong: 0 0 24px rgba(255, 255, 255, 0.18), 0 0 48px rgba(220, 201, 173, 0.28), 0 0 96px rgba(220, 201, 173, 0.1);

  --font: "DM Sans", system-ui, sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --container: 1080px;
  --header-h: 72px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 3rem, 640px);
  margin-inline: auto;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--white);
  text-shadow: var(--glow-headline);
}

.hero-title {
  text-shadow: var(--glow-headline-strong);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.35s, border-color 0.35s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn svg { transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(220, 201, 173, 0.15);
}

.btn-primary:hover {
  background: var(--beige);
  box-shadow: 0 4px 24px rgba(220, 201, 173, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-light {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.btn-light:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.btn-lg { padding: 0.9375rem 1.875rem; font-size: 0.9375rem; }
.btn-full { width: 100%; }
.btn-nav { font-size: 0.8125rem; padding: 0.5625rem 1.125rem; }

/* ===== Header ===== */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: all 0.5s var(--ease);
}

.header.scrolled {
  height: calc(var(--header-h) - 8px);
}

.header.scrolled .nav {
  margin-top: 4px;
  padding: 0.375rem 0.75rem;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  border-radius: 999px;
  border: 1px solid var(--border-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header.scrolled .logo-text { color: var(--white); }
.header.scrolled .logo-sub { color: rgba(255, 255, 255, 0.5); }
.header.scrolled .logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.header.scrolled .nav-links a { color: rgba(255, 255, 255, 0.65); }
.header.scrolled .nav-links a:hover { color: var(--white); }
.header.scrolled .nav-toggle span { background: var(--white); }
.header.scrolled .btn-primary {
  background: var(--white);
  color: var(--black);
}

.header.hero-visible:not(.scrolled) {
  background: transparent;
}

.header.hero-visible:not(.scrolled) .logo-text { color: var(--white); }
.header.hero-visible:not(.scrolled) .logo-sub { color: rgba(255,255,255,0.5); }
.header.hero-visible:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.65); }
.header.hero-visible:not(.scrolled) .nav-links a:hover { color: var(--white); }
.header.hero-visible:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.header.hero-visible:not(.scrolled) .btn-primary {
  background: var(--white);
  color: var(--black);
}
.header.hero-visible:not(.scrolled) .nav-toggle span { background: var(--white); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  transition: all 0.5s var(--ease);
}

.logo { display: flex; align-items: center; gap: 0.625rem; }

.logo-img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: filter 0.35s, opacity 0.35s;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.15;
  color: var(--white);
  transition: color 0.35s;
}

.logo-sub {
  font-weight: 400;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}

.logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.nav-links { display: flex; gap: 2rem; }

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: -8% 0 0;
  will-change: transform;
}

.hero-video {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 45%, rgba(10,10,10,0.85) 100%),
    linear-gradient(to top, rgba(10,10,10,0.98) 0%, transparent 50%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 4rem) 0 1.5rem;
}

.hero-content { max-width: 680px; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  color: var(--white);
  margin-bottom: 1.75rem;
  font-weight: 600;
  text-shadow: var(--glow-headline-strong);
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  margin-bottom: 2.75rem;
  line-height: 1.55;
  font-weight: 400;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.875rem; }

.hero-metrics {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.metric { display: flex; flex-direction: column; gap: 0.25rem; }

.metric-val {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
}

.metric-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.metric-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
}

/* ===== Sections ===== */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--black);
  color: var(--white);
}

.section-alt { background: var(--black); }

.section-dark {
  background: var(--black);
  color: var(--text-on-dark);
}

.split-header {
  max-width: 560px;
  margin-bottom: 2rem;
}

.split-header--light .section-tag { color: var(--beige); }

.section-tag {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.875rem;
}

.section-dark .section-tag { color: var(--beige); }

.split-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  text-shadow: var(--glow-headline);
}

.split-header--light h2 {
  color: var(--white);
  text-shadow: var(--glow-headline);
}

.split-header-note {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 480px;
}

.section-dark .split-header-note {
  color: var(--text-muted-dark);
}

.section-cta {
  text-align: center;
  margin-top: 1rem;
}

/* ===== Modern Customer ===== */
.section-customer {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.customer-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.customer-header .section-tag {
  color: var(--beige);
  margin-bottom: 0.5rem;
}

.customer-header h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--white);
  line-height: 1.25;
  font-weight: 600;
  text-shadow: var(--glow-headline);
}

.customer-headline-stat {
  color: var(--beige);
  letter-spacing: -0.03em;
  text-shadow: 0 0 24px rgba(220, 201, 173, 0.45), 0 0 48px rgba(220, 201, 173, 0.15);
}

.customer-hub {
  position: relative;
  max-width: 640px;
  min-height: 400px;
  margin: 0 auto;
}

.customer-figure {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: clamp(260px, 42vw, 340px);
  width: auto;
  margin: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.customer-figure img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

.customer-stat {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  max-width: 118px;
  text-align: center;
}

.customer-stat-num {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--beige);
  letter-spacing: -0.03em;
  line-height: 1;
}

.customer-stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted-dark);
  line-height: 1.35;
}

.customer-stat--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.customer-stat--left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.customer-stat--right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.customer-stat--bottom-left {
  bottom: 0;
  left: 8%;
}

.customer-stat--bottom-right {
  bottom: 0;
  right: 8%;
}

/* ===== Services ===== */
.section-services {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.section-services .split-header--compact {
  margin-bottom: 1.25rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  color: inherit;
  text-decoration: none;
  transition: background 0.3s var(--ease), border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(220, 201, 173, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35), 0 0 32px rgba(220, 201, 173, 0.06);
}

.service-item:hover .service-icon {
  background: rgba(220, 201, 173, 0.15);
  color: var(--beige);
}

.service-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--beige);
  transition: background 0.3s, color 0.3s;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.service-title {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--white);
}

.service-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== Pipeline ===== */
.pipeline {
  max-width: 100%;
}

.pipeline-track {
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.pipeline-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--beige-dark), var(--beige));
  border-radius: 2px;
  transition: width 0.8s var(--ease);
}

.pipeline-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 0.4s var(--ease);
}

.pipeline-step.active,
.pipeline-step.passed { opacity: 1; }

.pipeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--beige-dark);
  border: 2px solid var(--black);
  transition: transform 0.4s var(--ease), background 0.35s, box-shadow 0.35s;
}

.pipeline-step.active .pipeline-dot {
  background: var(--beige);
  transform: scale(1.35);
  box-shadow: 0 0 0 5px var(--beige-soft), 0 0 16px rgba(220, 201, 173, 0.25);
}

.pipeline-step.passed .pipeline-dot { background: var(--beige-dark); }

.pipeline-step--final.active .pipeline-dot {
  background: var(--white);
  box-shadow: 0 0 0 5px var(--beige-soft), 0 0 20px rgba(255, 255, 255, 0.15);
}

.pipeline-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
}

.pipeline-detail {
  font-size: 1.125rem;
  color: var(--text-muted);
  min-height: 1.5em;
  transition: opacity 0.3s;
}

/* ===== Tasmania ===== */
.tasmania-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.tasmania-copy p {
  font-size: 1.0625rem;
  color: var(--text-muted-dark);
  margin-top: 1.25rem;
  max-width: 440px;
  line-height: 1.65;
}

.tasmania-points {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 440px;
}

.tasmania-points li {
  font-size: 0.9375rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
  padding-left: 1.125rem;
  position: relative;
}

.tasmania-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--beige-dark);
}

.tasmania-copy h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-shadow: var(--glow-headline);
}

.tasmania-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
}

.map-svg {
  width: 100%;
  max-width: 360px;
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
}

/* ===== Founder ===== */
.section-founder {
  border-top: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.founder-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  will-change: transform;
}

.founder-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.founder-visual:hover img { transform: scale(1.03); }

.founder-role {
  font-size: 0.9375rem;
  color: var(--beige);
  margin: 0.5rem 0 1.25rem;
  font-weight: 500;
}

.founder-copy p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
  font-size: 1.0625rem;
  max-width: 480px;
}

.founder-copy h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-shadow: var(--glow-headline);
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.founder-tags li {
  padding: 0.4375rem 0.875rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border-dark);
  transition: border-color 0.3s, color 0.3s;
}

.founder-tags li:hover {
  border-color: rgba(220, 201, 173, 0.4);
  color: var(--white);
}

/* ===== Brand Marquee ===== */
.section-brands {
  background: var(--black);
}

.section-brands .brand-marquee {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.brand-marquee {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.brand-marquee-label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}


.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
}

.marquee-list {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  list-style: none;
}

.marquee-list li {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
}

.marquee-list li:hover {
  opacity: 1;
  color: var(--beige);
}

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

/* ===== Results ===== */
.results-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1px;
  background: var(--border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.result-feature {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  transition: background 0.4s;
}

.result-feature:hover { background: rgba(255,255,255,0.05); }

.result-feature-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.result-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.result-feature:hover .result-feature-img img { transform: scale(1.04); }

.result-feature-body { padding: 1.5rem; }

.results-row {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.result-compact {
  flex: 1;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.4s;
}

.result-compact:hover { background: rgba(255,255,255,0.06); }

.result-metric {
  display: block;
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--beige);
  letter-spacing: -0.03em;
  margin-bottom: 0.625rem;
}

.result-feature-body h3,
.result-compact h3 {
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 0.375rem;
  text-shadow: var(--glow-headline);
}

.result-feature-body p,
.result-compact p {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.result-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--beige);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== FAQ ===== */
.section-faq {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--black);
  color: var(--white);
}

.section-faq .split-header--compact {
  margin-bottom: 1rem;
}

.section-faq .split-header h2 {
  text-shadow: var(--glow-headline);
}

.section-faq .section-tag {
  margin-bottom: 0.5rem;
  color: var(--beige);
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border-dark);
  transition: border-color 0.3s;
}

.faq-item[open] { border-color: rgba(220,201,173,0.35); }

.section-faq .faq-item summary {
  padding: 0.75rem 0;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.25s;
}

.section-faq .faq-item summary:hover { color: var(--beige); }
.faq-item summary::-webkit-details-marker { display: none; }

.section-faq .faq-item summary::after {
  content: "+";
  font-size: 1rem;
  font-weight: 400;
  color: var(--beige);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.section-faq .faq-answer {
  padding: 0 0 0.75rem;
  color: var(--text-muted-dark);
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 520px;
}

.section-faq .faq-answer p {
  padding: 0;
  margin-bottom: 0.5rem;
  color: var(--text-muted-dark);
}

.section-faq .faq-answer p:last-child {
  margin-bottom: 0;
}

.section-faq .faq-answer ul {
  margin: 0.125rem 0 0.5rem;
  padding-left: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.section-faq .faq-answer li {
  color: var(--text-muted-dark);
  font-size: 0.875rem;
  line-height: 1.45;
  list-style: disc;
}

/* ===== CTA ===== */
.cta {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--black);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--black-soft);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  color: var(--white);
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  text-shadow: var(--glow-headline);
}

.cta-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.cta-phone {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.cta-phone-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.cta-phone a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--beige);
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.cta-phone a:hover { color: var(--white); }

.cta-trust {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.cta-trust li {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  padding-left: 1.125rem;
  position: relative;
}

.cta-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--beige-dark);
}

.contact-form { display: flex; flex-direction: column; gap: 0.75rem; }

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 0.9375rem 1.125rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9375rem;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-row select option {
  color: var(--black);
  background: var(--white);
}

.form-row select.prefilled {
  border-color: rgba(220,201,173,0.6);
  background-color: rgba(255,255,255,0.1);
}

.form-row input::placeholder { color: rgba(255,255,255,0.35); }

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: rgba(220,201,173,0.5);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(220,201,173,0.1);
}

.form-note {
  text-align: center;
  color: var(--beige);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-note--error {
  color: #f0a8a8;
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0 2.25rem;
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 480px;
}

.footer-brand .logo {
  margin-bottom: 0.25rem;
}

.footer-slogan {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--white);
  text-shadow: var(--glow-headline);
}

.footer-location {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--beige);
  letter-spacing: 0.02em;
}

.footer-service {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 420px;
}

.footer .logo-text { color: var(--white); }
.footer .logo-sub { color: rgba(255, 255, 255, 0.5); }
.footer .logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s;
}

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

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  width: 100%;
  text-align: center;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border-dark);
  margin-top: 2.25rem;
}

/* ===== Sticky CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  padding: 0.75rem 1.5rem;
  background: var(--black-soft);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--border-dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 24px rgba(220, 201, 173, 0.08);
  transition: transform 0.5s var(--ease);
  white-space: nowrap;
}

.sticky-cta.visible { transform: translateX(-50%) translateY(0); }

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-item.reveal:nth-child(2) { transition-delay: 0.04s; }
.service-item.reveal:nth-child(3) { transition-delay: 0.08s; }
.service-item.reveal:nth-child(4) { transition-delay: 0.12s; }
.service-item.reveal:nth-child(5) { transition-delay: 0.16s; }
.service-item.reveal:nth-child(6) { transition-delay: 0.2s; }

.customer-stat.reveal:nth-child(1) { transition-delay: 0s; }
.customer-stat.reveal:nth-child(2) { transition-delay: 0.05s; }
.customer-figure.reveal { transition-delay: 0.1s; }
.customer-stat.reveal:nth-child(4) { transition-delay: 0.15s; }
.customer-stat.reveal:nth-child(5) { transition-delay: 0.2s; }
.customer-stat.reveal:nth-child(6) { transition-delay: 0.25s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }

  .pipeline-steps { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
  .tasmania-grid, .founder-grid { grid-template-columns: 1fr; }
  .founder-visual { max-width: 400px; }
  .results-showcase { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: calc(var(--header-h) + 8px);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li a {
    display: block;
    padding: 0.875rem 1rem;
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius);
  }

  .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
  }

  .nav-toggle { display: flex; }
  .nav-actions .btn-nav { display: none; }

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

  .header.scrolled .nav {
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }

  .hero-metrics { flex-wrap: wrap; gap: 1.5rem; }
  .metric-divider { display: none; }

  .customer-hub {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    min-height: auto;
    max-width: 360px;
  }

  .customer-figure {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    grid-column: span 2;
    justify-self: center;
    height: 220px;
    width: auto;
    margin: 0.5rem 0;
  }

  .customer-stat {
    position: static;
    transform: none;
    max-width: none;
  }

  .pipeline-steps { grid-template-columns: repeat(2, 1fr); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    max-width: none;
  }

  .footer-service { max-width: none; }

  .footer-nav {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 0;
  }

  .sticky-cta { bottom: 1rem; left: 1rem; right: 1rem; transform: translateY(120%); text-align: center; }
  .sticky-cta.visible { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .parallax-layer { transform: none !important; }
  .marquee-track { animation: none; }
}
