/* ══════════════════════════════════════════
   RESET & ROOT
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Backgrounds — warm charcoal base */
  --bg:          #0E0C09;
  --bg-alt:      #131008;
  --surface:     #1C1810;
  --surface-2:   #231E14;
  --border:      #2C261A;
  --border-sub:  #3C3424;

  /* Text */
  --text:        #F5F0E8;
  --text-soft:   #EDE6D6;
  --muted:       #8A7B62;
  --muted-2:     #574D3A;

  /* Brand — honey */
  --honey:       #F5B800;
  --honey-h:     #D9A000;
  --honey-glow:  #FCD34D;
  --honey-deep:  #2A1F00;
  --honey-deep2: #1A1300;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-pill: 9999px;
  --radius-lg:   24px;
  --radius-md:   16px;
  --radius-sm:   10px;

  --max-w: 1280px;
  --px:    clamp(24px, 5vw, 80px);

  --ease-brand: cubic-bezier(0.32, 0.72, 0, 1);
}

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

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

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

.overline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-sub); border-radius: 3px; }


/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-top: 10px;
  background: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 56px;
  padding-inline: 20px;
  background: rgba(28, 24, 16, 0.92);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(20px) saturate(150%);
  transition: background 0.3s, border-color 0.3s;
}

#nav.scrolled .nav-inner {
  background: rgba(14, 12, 9, 0.97);
  border-color: var(--border-sub);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo-mark {
  width: 32px;
  height: 37px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(245, 184, 0, 0.35));
}

.nav-logo-mark svg { width: 32px; height: 37px; }

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.045em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 38px;
  border-radius: var(--radius-pill);
  background: var(--honey);
  border: none;
  color: var(--bg);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--honey-h);
  box-shadow: 0 0 24px rgba(245, 184, 0, 0.3);
}


/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
section {
  scroll-margin-top: 80px;
}

#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: radial-gradient(ellipse 100% 80% at 50% 45%, #1C1608 0%, var(--bg) 65%);
}

/* Decorative hex outlines */
.hero-hex-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  pointer-events: none;
  opacity: 0.045;
  z-index: 1;
}

.hero-hex-bg svg { width: 100%; height: 100%; }

.hero-hex-bg-2 {
  position: absolute;
  top: 20%;
  right: -120px;
  width: 340px;
  height: 340px;
  pointer-events: none;
  opacity: 0.03;
  z-index: 1;
}

.hero-hex-bg-2 svg { width: 100%; height: 100%; }

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 124px;
  padding-bottom: 80px;
}

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 980px;
}

/* Brand mark above headline */
.hero-mark {
  width: 56px;
  height: 64px;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 24px rgba(245, 184, 0, 0.5));
  animation: mark-pulse 4s ease-in-out infinite;
}

@keyframes mark-pulse {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(245, 184, 0, 0.4)); }
  50%       { filter: drop-shadow(0 0 32px rgba(245, 184, 0, 0.7)); }
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--honey);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--honey);
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 56ch;
  margin-bottom: 16px;
}

.hero-body {
  font-size: 0.875rem;
  color: var(--muted-2);
  margin-bottom: 36px;
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--honey);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--honey-h);
  box-shadow: 0 0 48px rgba(245, 184, 0, 0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(245, 248, 240, 0.18);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(245, 248, 240, 0.4);
  transform: translateY(-1px);
}

.hero-video-wrap {
  width: 100%;
  min-height: 100px;
  background: #C4BDB5;
}

.hero-video {
  width: 100%;

}

.robot-scene {
  position: relative;
  width: 560px;
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.robot-glow-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse 90% 90% at 50% 45%, #1C1608 0%, var(--bg) 80%);
}

.robot-glow-floor {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 56px;
  background: radial-gradient(ellipse, rgba(245, 184, 0, 0.55) 0%, transparent 70%);
  filter: blur(28px);
  border-radius: 50%;
}

.robot-glow-body {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -58%);
  width: 240px;
  height: 240px;
  background: radial-gradient(ellipse, rgba(245, 184, 0, 0.10) 0%, transparent 70%);
  border-radius: 50%;
}

.robot-img {
  position: relative;
  width: 500px;
  height: 500px;
  object-fit: contain;
  animation: float 5s ease-in-out infinite;
  drop-shadow(0 48px 72px rgba(0, 0, 0, 0.85));
  z-index: 2;
}

.robot-video {
  position: relative;
  width: 500px;
  height: 500px;
  object-fit: contain;
  animation: float 5s ease-in-out infinite;
  z-index: 2;
}

.robot-scene::after {
  content: '';
  position: absolute;
  inset: -16px;
  z-index: 5;
  pointer-events: none;
  background: radial-gradient(
    ellipse 48% 52% at 50% 52%,
    transparent 0%,
    transparent 30%,
    var(--bg) 56%,
    var(--bg) 100%
  );
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* Marquee ribbon */
.marquee-wrap {
  position: relative;
  width: 150%;
  left: -25%;
  transform: rotate(-10deg);
  margin-bottom: -32px;
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
}

.marquee-track {
  display: flex;
  background: #F5F0E0;
  padding: 12px 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-inline: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1C1917;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--honey);
  flex-shrink: 0;
}

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


/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
#services {
  background: var(--bg-alt);
  padding-block: clamp(80px, 10vw, 120px);
}

.section-header { margin-bottom: 64px; }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin-top: 12px;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 52ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-item {
  background: var(--bg-alt);
  padding: 48px 40px;
  transition: background 0.2s;
  position: relative;
}

.service-item:hover { background: var(--surface); }

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--honey), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-item:hover::before { opacity: 0.5; }

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--honey);
  opacity: 0.9;
}

.service-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-detail {
  font-size: 0.75rem;
  color: var(--muted-2);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}


/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
#process {
  background: var(--bg);
  padding-block: clamp(80px, 10vw, 120px);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 24px;
  padding-bottom: 40px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border) 0%, var(--border) 80%, transparent 100%);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--honey);
  background: var(--bg);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step-body { padding-top: 10px; }

.step-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.step-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.process-visual {
  position: sticky;
  top: 96px;
}

.process-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 185' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='80,12 149.28,52 149.28,132 80,172 10.72,132 10.72,52' fill='none' stroke='%23F5B800' stroke-width='2'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.06;
  pointer-events: none;
}

.process-card-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey);
}

.process-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.process-card-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-tag {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
}


/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
#about {
  background: var(--bg-alt);
  padding-block: clamp(80px, 10vw, 120px);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin-top: 12px;
  margin-bottom: 24px;
}

.about-body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 55ch;
}

.stats-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat { padding-right: 32px; }

.stat + .stat {
  padding-left: 32px;
  border-left: 1px solid var(--border);
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--honey);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted-2);
  line-height: 1.4;
}

.about-media { position: relative; }

.about-media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-media-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px;
  position: relative;
}

.about-hex-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  opacity: 0.05;
}

.about-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.about-line {
  height: 1px;
  background: var(--border);
  border-radius: 1px;
}

.about-line:nth-child(odd) { width: 80%; }
.about-line:nth-child(2)   { width: 60%; }
.about-line:nth-child(4)   { width: 70%; }

.about-accent-box {
  width: 100%;
  padding: 20px 24px;
  border: 1px solid rgba(245, 184, 0, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(245, 184, 0, 0.04);
  position: relative;
  z-index: 1;
}

.about-accent-line {
  height: 1px;
  background: rgba(245, 184, 0, 0.3);
  margin-bottom: 8px;
}

.about-accent-line-2 {
  height: 1px;
  width: 70%;
  background: rgba(245, 184, 0, 0.15);
}


/* ══════════════════════════════════════════
   CASES
══════════════════════════════════════════ */
#cases {
  background: var(--bg);
  padding-block: clamp(80px, 10vw, 120px);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 56px;
}

.case-card {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
  cursor: default;
}

.case-card:hover { background: var(--surface); }

.case-sector {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--honey);
}

.case-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
}

.case-divider {
  width: 32px;
  height: 1px;
  background: var(--border);
}

.case-outcome {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.cases-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}


/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
#testimonials {
  background: var(--bg-alt);
  padding-block: clamp(80px, 10vw, 120px);
}

.testimonials-inner {
  max-width: 800px;
  margin-inline: auto;
}

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

.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px;
  height: 2px;
  background: var(--honey);
  opacity: 0.6;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--text-soft);
  margin-bottom: 36px;
}

.testimonial-attribution {
  font-size: 0.8rem;
  color: var(--muted-2);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-sub);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}

.testimonial-dot.active {
  background: var(--honey);
  transform: scale(1.3);
}


/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
#faq {
  background: var(--bg);
  padding-block: clamp(80px, 10vw, 120px);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: 96px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--honey); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  transition: transform 0.3s var(--ease-brand);
  color: var(--muted-2);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--honey);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-brand);
}

.faq-answer-inner {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 24px;
  max-width: 60ch;
}


/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
#cta-section {
  background: linear-gradient(to bottom, var(--bg) 0%, #180F00 100%);
  padding-block: clamp(80px, 12vw, 140px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(245, 184, 0, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.cta-hex-bg {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  pointer-events: none;
  opacity: 0.04;
}

.cta-hex-bg svg { width: 100%; height: 100%; }

.cta-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--muted);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 44px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}


/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
#contact {
  background: var(--bg-alt);
  padding-block: clamp(80px, 10vw, 120px);
}

.contact-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.contact-center-text { max-width: 52ch; }

.contact-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin-top: 12px;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* WhatsApp CTA button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  height: 56px;
  border-radius: var(--radius-pill);
  background: var(--honey);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}

.whatsapp-btn:hover {
  background: var(--honey-h);
  box-shadow: 0 0 56px rgba(245, 184, 0, 0.4);
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-number {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted-2);
}


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: 64px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 28px;
  height: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 4px rgba(245, 184, 0, 0.25));
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.045em;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 32ch;
}

.footer-col-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted-2);
}

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
  font-size: 0.8rem;
  color: var(--muted-2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--muted); }


/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-brand),
              transform 0.65s var(--ease-brand);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .robot-scene    { width: 380px; height: 400px; }
  .robot-img,
  .robot-video    { width: 360px; height: 360px; }
  .about-layout   { grid-template-columns: 1fr; }
  .faq-layout     { grid-template-columns: 1fr; }
  .process-layout { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .services-grid  { grid-template-columns: 1fr; }
  .cases-grid     { grid-template-columns: 1fr; }
  .nav-links      { display: none; }
  .stats-block    { grid-template-columns: 1fr; gap: 32px; }
  .stat + .stat   { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 32px; }
  .footer-top     { grid-template-columns: 1fr; }
  .hero-hex-bg    { width: 420px; height: 420px; }
  .hero-mark      { width: 44px; height: 50px; }
}
