/* ═══════════════════════════════════════════════════════════════
   SKTTECH — style.css
   Production stylesheet for www.skttech.com.au rebuild

   Reminder: set <html lang="en-AU"> in the markup
   ═══════════════════════════════════════════════════════════════ */


/* ───────────────────────────────────────
   RESET
─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
ul, ol { list-style: none; }


/* ───────────────────────────────────────
   TOKENS / CUSTOM PROPERTIES
─────────────────────────────────────── */
:root {
  /* Palette */
  --black:    #080808;
  --off-w:    #EEEEE8;
  --lime:     #CAFF33;

  /* Text opacity — WCAG AA compliant values */
  --muted:    rgba(238, 238, 232, 0.65);   /* was 0.42 → fixed for AA contrast */
  --dim:      rgba(238, 238, 232, 0.45);   /* was 0.18 → fixed for AA contrast */

  /* Surfaces */
  --surface:  rgba(238, 238, 232, 0.04);
  --surface2: rgba(238, 238, 232, 0.06);
  --border:   rgba(238, 238, 232, 0.09);
  --border2:  rgba(238, 238, 232, 0.16);
  --border3:  rgba(238, 238, 232, 0.25);

  /* Accent variants */
  --lime-soft:  rgba(202, 255, 51, 0.06);
  --lime-mid:   rgba(202, 255, 51, 0.15);
  --lime-ring:  rgba(202, 255, 51, 0.5);

  /* Motion */
  --ease:     cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);

  /* Spacing */
  --container-max: 1160px;
  --gutter: 48px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 100px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--off-w);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; font-family: inherit; border: none; background: none; }


/* ───────────────────────────────────────
   GRAIN OVERLAY
─────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}


/* ───────────────────────────────────────
   SKIP TO CONTENT
─────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 10px 20px;
  background: var(--lime);
  color: var(--black);
  z-index: 10001;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 16px;
  outline: none;
}


/* ───────────────────────────────────────
   FOCUS STATES (global)
─────────────────────────────────────── */
*:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 0;
}


/* ───────────────────────────────────────
   CUSTOM CURSOR
─────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease), height 0.3s var(--ease);
}

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--lime-ring);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease),
              border-color 0.3s, background 0.3s;
}

body.cursor-hover #cursor-dot { width: 10px; height: 10px; }
body.cursor-hover #cursor-ring {
  width: 56px; height: 56px;
  border-color: rgba(202, 255, 51, 0.8);
  background: rgba(202, 255, 51, 0.05);
}

body.cursor-link #cursor-ring {
  width: 64px; height: 64px;
  background: rgba(202, 255, 51, 0.08);
  border-color: var(--lime);
}


/* ───────────────────────────────────────
   NAV — Desktop
─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-bg {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}

nav.scrolled .nav-bg {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.nav-logo em {
  font-style: normal;
  color: var(--lime);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border: 1px solid var(--border2);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--off-w);
  background: transparent;
  transition: all 0.3s var(--ease);
}

.nav-btn:hover {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}


/* ── NAV — Mobile Hamburger ── */
.nav-hamburger {
  display: none;
  position: relative;
  z-index: 1002;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
}

.nav-hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 22px;
}

.nav-hamburger-lines span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--off-w);
  border-radius: 1px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] .nav-hamburger-lines span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger-lines span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.mobile-nav-links a {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--muted);
  padding: 12px 20px;
  transition: color 0.2s;
}

.mobile-nav-links a:hover { color: var(--off-w); }

.mobile-nav .nav-btn {
  font-size: 15px;
  padding: 14px 32px;
}


/* ───────────────────────────────────────
   HERO
─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: end;
  padding: 120px var(--gutter) 72px;
  gap: 40px;
  position: relative;
}

/* 3D Hero Canvas */
.hero-canvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: heroCanvasFadeIn 2s ease 0.5s forwards;
}

@keyframes heroCanvasFadeIn {
  to { opacity: 1; }
}

.hero-left { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--lime);
}

.hero h1 {
  font-size: clamp(52px, 6.5vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 900;
  margin-bottom: 40px;
}

.hero h1 .light {
  font-weight: 300;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: var(--muted);
}

.hero h1 .accent { color: var(--lime); }

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 48px;
}

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

.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--lime);
  color: var(--black);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--lime);
}

.btn-lime:hover {
  background: transparent;
  color: var(--lime);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--muted);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid var(--border2);
  transition: all 0.3s var(--ease);
}

.btn-outline:hover {
  color: var(--off-w);
  border-color: var(--border3);
}

/* Hero right: stats column */
.hero-right {
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
  border-left: 1px solid var(--border);
  padding-left: 40px;
}

.hero-stat {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.hero-stat:first-child { padding-top: 0; }
.hero-stat:last-child  { border-bottom: none; }

.hero-stat-num {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--off-w);
  margin-bottom: 4px;
}

.hero-stat-num span { color: var(--lime); }

.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 500;
}


/* ───────────────────────────────────────
   MARQUEE
─────────────────────────────────────── */
/* TRUST BAR (replaces marquee) */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: var(--surface);
}

.trust-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.trust-num {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--off-w);
}

.trust-highlight {
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.02em;
}

.trust-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border2);
  flex-shrink: 0;
}


/* ───────────────────────────────────────
   SECTIONS / CONTAINER
─────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: 120px 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--lime);
}

.section-heading {
  font-size: clamp(36px, 3.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-heading em {
  font-weight: 300;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: var(--muted);
}


/* ───────────────────────────────────────
   SERVICES — ACCORDION LIST
─────────────────────────────────────── */
#services { background: #0b0b0b; }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 72px;
}

.services-header h2 {
  font-size: clamp(36px, 3.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.services-header h2 em {
  font-weight: 300;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: var(--muted);
}

.services-header p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 380px;
}

.services-list { border-top: 1px solid var(--border); }

.service-row {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  cursor: none;
  transition: padding 0.3s var(--ease);
  width: 100%;
  text-align: left;
  color: var(--off-w);
  background: none;
  border: none;
}

.service-header:hover { padding-left: 8px; }

.service-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--dim);
  width: 28px;
  flex-shrink: 0;
}

.service-name {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  flex: 1;
  transition: color 0.2s;
}

.service-row:hover .service-name { color: var(--lime); }

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

.service-tags-inline span {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 8px;
}

.service-arrow {
  font-size: 20px;
  color: var(--dim);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.service-row.open .service-arrow {
  transform: rotate(45deg);
  color: var(--lime);
}

.service-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.service-body.open { grid-template-rows: 1fr; }

.service-body-inner {
  overflow: hidden;
  padding: 0;
}

.service-body-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 8px 0 36px 60px;
}

.service-body-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.service-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
}

.detail-tag {
  padding: 5px 13px;
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  font-size: 12px;
  color: var(--off-w);
  font-weight: 500;
}


/* ───────────────────────────────────────
   RESULTS
─────────────────────────────────────── */
.results-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 64px;
}

.result-block {
  background: var(--black);
  padding: 52px 48px;
  transition: background 0.3s;
}

.result-block:hover { background: #0f0f0f; }

.result-block.full-w {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.result-num {
  font-size: 88px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--lime);
  margin-bottom: 12px;
}

.result-block h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.result-block p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

.result-label {
  display: inline-block;
  margin-top: 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}

.result-block.full-w .result-right {
  border-left: 1px solid var(--border);
  padding-left: 48px;
}


/* ───────────────────────────────────────
   PROJECTS
─────────────────────────────────────── */
#projects { background: #0b0b0b; }

.projects-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.projects-intro h2 {
  font-size: clamp(36px, 3.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.projects-intro h2 em {
  font-weight: 300;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: var(--muted);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.proj-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s var(--ease), background 0.3s;
  position: relative;
  overflow: hidden;
}

.proj-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.proj-card:hover {
  border-color: var(--border2);
  background: var(--surface2);
}

.proj-card:hover::before { opacity: 1; }

.proj-card.span-2 { grid-row: span 2; }

.proj-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.proj-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--surface);
}

.proj-arrow {
  font-size: 17px;
  color: var(--dim);
  transition: all 0.25s var(--ease);
}

.proj-card:hover .proj-arrow {
  color: var(--lime);
  transform: translate(3px, -3px);
}

.proj-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.proj-card.span-2 h3 { font-size: 22px; }

.proj-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.proj-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--dim);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
}


/* ───────────────────────────────────────
   PROCESS
─────────────────────────────────────── */
.process-row {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.process-cell {
  background: var(--black);
  padding: 40px 32px;
  transition: background 0.3s;
}

.process-cell:hover { background: #0d0d0d; }

.process-cell-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--lime);
  margin-bottom: 24px;
  display: block;
}

.process-cell h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

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


/* ───────────────────────────────────────
   TECH STACK
─────────────────────────────────────── */
#tech { background: #0b0b0b; }

.tech-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.tech-header h2 {
  font-size: clamp(36px, 3.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.tech-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.t-pill {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface);
  transition: all 0.25s var(--ease);
}

.t-pill:hover,
.t-pill.lit {
  border-color: var(--lime);
  color: var(--lime);
  background: var(--lime-soft);
}


/* ───────────────────────────────────────
   ABOUT / FOUNDER
─────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-left h2 {
  font-size: clamp(36px, 3.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.about-left h2 em {
  font-weight: 300;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: var(--muted);
}

.about-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-creds {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.about-cred-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.acr-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  margin-top: 6px;
  flex-shrink: 0;
}

.about-cred-row span {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

.about-cred-row strong { color: var(--off-w); font-weight: 600; }

/* Founder card */
.founder-box {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  position: sticky;
  top: 100px;
}

.founder-top {
  padding: 36px;
  border-bottom: 1px solid var(--border);
}

.founder-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2060E0, var(--lime));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 16px;
  overflow: hidden;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.founder-title {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.founder-body {
  padding: 28px 36px 36px;
}

.founder-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.founder-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.f-chip {
  padding: 4px 12px;
  border: 1px solid rgba(202, 255, 51, 0.25);
  border-radius: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--lime);
  background: rgba(202, 255, 51, 0.05);
}

.founder-links-row {
  display: flex;
  gap: 10px;
}

.f-link {
  padding: 7px 16px;
  border: 1px solid var(--border2);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.25s;
}

.f-link:hover { color: var(--off-w); border-color: var(--border3); }


/* ───────────────────────────────────────
   TESTIMONIALS (NEW)
─────────────────────────────────────── */
#testimonials {
  background: #0b0b0b;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.3s var(--ease), background 0.3s;
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--border2);
  background: var(--surface2);
}

.testimonial-quote-mark {
  font-size: 48px;
  line-height: 1;
  color: var(--lime);
  font-family: 'DM Serif Display', serif;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 15px;
  color: var(--off-w);
  line-height: 1.75;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime-mid), var(--surface2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--lime);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--off-w);
}

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


/* ───────────────────────────────────────
   CONTACT FORM (NEW)
─────────────────────────────────────── */
.contact-form-section {
  padding: 120px 0;
}

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

.contact-form-left h2 {
  font-size: clamp(36px, 3.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-form-left h2 em {
  font-weight: 300;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: var(--muted);
}

.contact-form-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  transition: border-color 0.25s;
}

.contact-detail-row:hover { border-color: var(--border2); }

.contact-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--off-w);
}

/* Form card */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: rgba(238, 238, 232, 0.03);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--off-w);
  transition: border-color 0.25s var(--ease), background 0.25s;
  outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--lime);
  background: rgba(202, 255, 51, 0.02);
}

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

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--lime);
  color: var(--black);
  border: 1px solid var(--lime);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  align-self: flex-start;
  margin-top: 4px;
}

.form-submit:hover {
  background: transparent;
  color: var(--lime);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.visible { display: block; }

.form-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--lime-soft);
  border: 2px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--lime);
}

.form-success h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}


/* ───────────────────────────────────────
   BOOKING CALENDAR (NEW)
─────────────────────────────────────── */
.booking-section {
  background: #0b0b0b;
  padding: 120px 0;
}

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

.booking-left h2 {
  font-size: clamp(36px, 3.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.booking-left h2 em {
  font-weight: 300;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: var(--muted);
}

.booking-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
}

.booking-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.booking-feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  margin-top: 7px;
  flex-shrink: 0;
}

.booking-feature span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.booking-feature strong {
  color: var(--off-w);
  font-weight: 600;
}

/* Calendar widget */
.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}

.calendar-month {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.calendar-nav {
  display: flex;
  gap: 8px;
}

.calendar-nav-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: var(--surface);
  color: var(--off-w);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.calendar-nav-btn:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 16px 20px 20px;
  gap: 4px;
}

.calendar-dow {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 8px 0;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.calendar-day:hover {
  background: var(--surface2);
  color: var(--off-w);
  border-color: var(--border2);
}

.calendar-day.disabled {
  color: rgba(238, 238, 232, 0.2);
  cursor: not-allowed;
  pointer-events: none;
}

.calendar-day.today {
  border-color: var(--border2);
  color: var(--off-w);
  font-weight: 700;
}

.calendar-day.selected {
  background: var(--lime);
  color: var(--black);
  font-weight: 700;
  border-color: var(--lime);
}

.calendar-day.has-slots::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--lime);
}

/* Time slots */
.time-slots {
  padding: 0 20px 24px;
  border-top: 1px solid var(--border);
}

.time-slots-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 16px 0 12px;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-slot {
  padding: 10px 12px;
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--off-w);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  background: transparent;
}

.time-slot:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: var(--lime-soft);
}

.time-slot.selected {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

.time-slot.unavailable {
  color: rgba(238, 238, 232, 0.2);
  border-color: var(--border);
  cursor: not-allowed;
  pointer-events: none;
}

/* Confirmation */
.booking-confirm {
  padding: 20px;
  border-top: 1px solid var(--border);
}

.booking-confirm-btn {
  width: 100%;
  padding: 14px 24px;
  background: var(--lime);
  color: var(--black);
  border: 1px solid var(--lime);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: center;
}

.booking-confirm-btn:hover {
  background: transparent;
  color: var(--lime);
}

.booking-confirm-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.booking-confirmed {
  display: none;
  text-align: center;
  padding: 40px 28px;
}

.booking-confirmed.visible { display: block; }

.booking-confirmed-icon {
  font-size: 32px;
  color: var(--lime);
  margin-bottom: 16px;
}

.booking-confirmed h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

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


/* ───────────────────────────────────────
   CTA / CONTACT
─────────────────────────────────────── */
#contact {
  border-top: 1px solid var(--border);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 80px 0;
}

.cta-inner h2 {
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
}

.cta-inner h2 em {
  font-weight: 300;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: var(--muted);
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 280px;
}

.cta-contact-item {
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  transition: border-color 0.25s;
}

.cta-contact-item:hover { border-color: var(--border2); }

.cta-contact-item .cl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 3px;
}

.cta-contact-item .cv {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--off-w);
}


/* ───────────────────────────────────────
   FOOTER
─────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 24px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 12px;
  color: var(--dim);
  transition: color 0.2s;
  letter-spacing: 0.03em;
}

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

.footer-copy {
  font-size: 12px;
  color: var(--dim);
}


/* ───────────────────────────────────────
   ANIMATIONS / REVEALS
─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }


/* ───────────────────────────────────────
   INLINE CTAs (mid-page)
─────────────────────────────────────── */
.inline-cta {
  margin-top: 64px;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.inline-cta p {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.inline-cta p em {
  font-weight: 300;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: var(--muted);
}


/* ───────────────────────────────────────
   RESPONSIVE — 960px
─────────────────────────────────────── */
@media (max-width: 960px) {
  :root {
    --gutter: 24px;
  }

  body { cursor: auto; }
  a { cursor: auto; }
  button { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }

  nav { padding: 18px var(--gutter); }
  .nav-links { display: none; }
  .nav-btn.desktop-only { display: none; }

  .nav-hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px var(--gutter) 60px;
  }

  .hero-art { display: none; }
  .hero-canvas { display: none; }
  .section-canvas { display: none; }

  .hero-right {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .hero-stat { border-right: 1px solid var(--border); }
  .hero-stat:nth-child(even) { border-right: none; padding-left: 20px; }

  section { padding: 80px 0; }

  .services-header { grid-template-columns: 1fr; }
  .service-body-content { grid-template-columns: 1fr; padding-left: 0; gap: 20px; }
  .service-tags-inline { display: none; }

  .results-layout { grid-template-columns: 1fr; }
  .result-block.full-w { grid-template-columns: 1fr; }
  .result-block.full-w .result-right {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 32px;
  }

  .projects-intro { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .proj-card.span-2 { grid-row: span 1; }

  .process-row { grid-template-columns: 1fr 1fr; }

  .tech-header { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-box { position: static; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .booking-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

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

  .inline-cta {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }

  footer { padding: 20px var(--gutter); }
}


/* ───────────────────────────────────────
   RESPONSIVE — 640px
─────────────────────────────────────── */
@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .hero-right {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    border-right: none;
    padding-left: 0;
  }

  .hero-stat:nth-child(even) { padding-left: 0; }

  .hero-stat-num { font-size: 36px; }

  .result-num { font-size: 56px; }
  .result-block { padding: 36px 28px; }

  .process-row { grid-template-columns: 1fr; }

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

  .cta-inner h2 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .contact-form-card { padding: 28px 20px; }
  .booking-card { border-radius: var(--r-md); }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


/* ───────────────────────────────────────
   prefers-reduced-motion
─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html { scroll-behavior: auto; }

  .hero-canvas,
  .fade-up,
  #cursor-dot,
  #cursor-ring {
    animation: none !important;
    transition: none !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .mobile-nav {
    transition: none !important;
  }
}


/* ───────────────────────────────────────
   ADDITIONS — Classes used in HTML
─────────────────────────────────────── */

/* Section title used in Results, Process */
.section-title {
  font-size: clamp(36px, 3.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.section-title em {
  font-weight: 300;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: var(--muted);
}


/* ═══════════════════════════════════════════════════════════════
   PREMIUM ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────
   AURORA GRADIENT BACKGROUND (Hero)
─────────────────────────────────────── */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(202, 255, 51, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(102, 51, 255, 0.06), transparent),
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(51, 153, 255, 0.05), transparent);
  animation: aurora 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes aurora {
  0%   { filter: blur(60px) hue-rotate(0deg); opacity: 0.3; }
  50%  { filter: blur(80px) hue-rotate(15deg); opacity: 0.45; }
  100% { filter: blur(60px) hue-rotate(-10deg); opacity: 0.3; }
}

/* ───────────────────────────────────────
   GLITCH TEXT EFFECT (Hero accent)
─────────────────────────────────────── */
.hero h1 .accent {
  color: var(--lime);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::before,
.hero h1 .accent::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0;
}

.hero h1 .accent::before {
  color: #0ff;
  animation: glitch-1 4s infinite linear alternate-reverse;
}

.hero h1 .accent::after {
  color: #f0f;
  animation: glitch-2 4s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
  0%, 92%   { opacity: 0; transform: none; }
  93%       { opacity: 0.7; transform: translate(-2px, 1px); clip-path: inset(20% 0 60% 0); }
  94%       { opacity: 0; }
  96%       { opacity: 0.5; transform: translate(2px, -1px); clip-path: inset(50% 0 20% 0); }
  97%, 100% { opacity: 0; transform: none; }
}

@keyframes glitch-2 {
  0%, 94%   { opacity: 0; transform: none; }
  95%       { opacity: 0.6; transform: translate(2px, -2px); clip-path: inset(30% 0 40% 0); }
  96%       { opacity: 0; }
  98%       { opacity: 0.4; transform: translate(-3px, 1px); clip-path: inset(60% 0 10% 0); }
  99%, 100% { opacity: 0; transform: none; }
}

/* ───────────────────────────────────────
   3D TILT PERSPECTIVE (Project cards)
─────────────────────────────────────── */
.proj-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.proj-card.tilting {
  transition: none;
}

/* ───────────────────────────────────────
   GLOW HOVER (Cards & result blocks)
─────────────────────────────────────── */
.proj-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: radial-gradient(
    400px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(202, 255, 51, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: -1;
}

.proj-card:hover::after {
  opacity: 1;
}

.result-block {
  position: relative;
  overflow: hidden;
}

.result-block::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    300px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(202, 255, 51, 0.06),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}

.result-block:hover::after {
  opacity: 1;
}

/* ───────────────────────────────────────
   ENHANCED SCROLL REVEAL
─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered delays */
.fade-up.d1 { transition-delay: 0.08s; }
.fade-up.d2 { transition-delay: 0.18s; }
.fade-up.d3 { transition-delay: 0.28s; }
.fade-up.d4 { transition-delay: 0.38s; }

/* ───────────────────────────────────────
   SERVICE ROW HOVER GLOW LINE
─────────────────────────────────────── */
.service-row .service-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent);
  transition: width 0.5s var(--ease);
}

.service-row .service-header {
  position: relative;
}

.service-row:hover .service-header::after {
  width: 100%;
}

/* ───────────────────────────────────────
   TECH PILL FLOAT ANIMATION
─────────────────────────────────────── */
.t-pill {
  transition: all 0.3s var(--ease);
}

.t-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(202, 255, 51, 0.08);
}

.t-pill.lit:hover {
  box-shadow: 0 8px 24px rgba(202, 255, 51, 0.15);
}

/* ───────────────────────────────────────
   HERO STAT COUNTER (animated numbers)
─────────────────────────────────────── */
.hero-stat-num {
  overflow: hidden;
}

/* ───────────────────────────────────────
   BUTTON SHINE EFFECT
─────────────────────────────────────── */
.btn-lime {
  position: relative;
  overflow: hidden;
}

.btn-lime::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
}

.btn-lime:hover::after {
  animation: btn-shine 0.6s ease forwards;
}

@keyframes btn-shine {
  from { left: -75%; }
  to   { left: 125%; }
}

/* Section-level 3D canvases */
.section-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.section-canvas.active {
  opacity: 1;
}

section {
  position: relative;
  overflow: hidden;
}

section > .container {
  position: relative;
  z-index: 1;
}

/* ───────────────────────────────────────
   RESPONSIVE — disable heavy effects on mobile
─────────────────────────────────────── */
@media (max-width: 960px) {
  .hero::before { animation: none; opacity: 0.2; }
  .hero h1 .accent::before,
  .hero h1 .accent::after { display: none; }
}

/* Section CTA (after services, results) */
.section-cta {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.section-cta p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}

/* Service body enhancements */
.service-headline {
  font-size: 16px;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 12px;
  line-height: 1.4;
}
.service-what-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.service-what-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-what-list li {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.service-what-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-size: 12px;
}

/* New service tag */
.tag-new {
  background: var(--lime-soft);
  border-color: rgba(202, 255, 51, 0.3) !important;
  color: var(--lime) !important;
  font-weight: 700 !important;
}

/* Hero friction-reduction copy */
.hero-friction {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 440px;
  font-style: italic;
}

/* Results built label & checklist */
.result-built-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.result-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.result-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.check-icon {
  color: var(--lime);
  font-size: 11px;
}

/* Booking section */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.booking-left h2 {
  font-size: clamp(36px, 3.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.booking-left h2 em {
  font-weight: 300;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: var(--muted);
}
.booking-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.booking-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.booking-detail-icon {
  font-size: 16px;
}
.booking-right {
  position: sticky;
  top: 100px;
}
.booking-widget {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 28px;
  min-height: 400px;
}
.booking-step.hidden { display: none; }

/* Calendar */
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-nav-btn {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--off-w);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.cal-nav-btn:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.cal-month-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--off-w);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}
.cal-day-header {
  font-size: 11px;
  font-weight: 600;
  color: var(--dim);
  text-align: center;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cal-weekend { opacity: 0.5; }
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.cal-day:hover:not(.cal-disabled):not(.cal-empty) {
  border-color: var(--lime);
  color: var(--lime);
  background: var(--lime-soft);
}
.cal-day.cal-selected {
  background: var(--lime);
  color: var(--black);
  font-weight: 700;
}
.cal-day.cal-disabled {
  opacity: 0.2;
  cursor: default;
}
.cal-day.cal-empty {
  cursor: default;
}
.cal-day.cal-today {
  border-color: var(--border2);
}

/* Time slots */
.booking-back {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  transition: color 0.2s;
}
.booking-back:hover { color: var(--lime); }
.booking-selected-date {
  font-size: 16px;
  font-weight: 700;
  color: var(--off-w);
  margin-bottom: 16px;
}
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.time-slot {
  padding: 10px 8px;
  border: 1px solid var(--border2);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.time-slot:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: var(--lime-soft);
}
.time-slot.selected {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

/* Booking form */
.booking-summary {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--off-w);
}
.booking-submit { width: 100%; justify-content: center; }

/* Booking success */
.booking-success {
  text-align: center;
  padding: 32px 16px;
}
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin: 0 auto 20px;
}
.booking-success h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.booking-success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.success-note {
  font-size: 13px !important;
  color: var(--dim) !important;
  font-style: italic;
}

/* ───────────────────────────────────────
   CONTACT SECTION (redesigned)
─────────────────────────────────────── */
.contact-header {
  text-align: center;
  margin-bottom: 64px;
}

.contact-header h2 {
  font-size: clamp(36px, 3.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-header h2 em {
  font-weight: 300;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: var(--muted);
}

.contact-subtitle {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

/* Contact channel cards */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  transition: border-color 0.3s var(--ease), background 0.3s, transform 0.3s var(--ease);
}

a.contact-card:hover {
  border-color: var(--lime-mid);
  background: var(--surface2);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border2);
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--lime);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

a.contact-card:hover .contact-card-icon {
  background: rgba(202, 255, 51, 0.08);
  border-color: var(--lime-mid);
}

.contact-card-body {
  flex: 1;
  min-width: 0;
}

.contact-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 3px;
}

.contact-card-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--off-w);
  margin-bottom: 2px;
}

.contact-card-hint {
  font-size: 12px;
  color: var(--dim);
}

.contact-card-arrow {
  font-size: 18px;
  color: var(--dim);
  transition: color 0.3s, transform 0.3s var(--ease);
  flex-shrink: 0;
}

a.contact-card:hover .contact-card-arrow {
  color: var(--lime);
  transform: translateX(3px);
}

/* Contact form wrap */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
}

.contact-form-header {
  margin-bottom: 28px;
}

.contact-form-header h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.contact-form-header p {
  font-size: 13px;
  color: var(--dim);
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; position: relative; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(238, 238, 232, 0.03);
  border: 1px solid var(--border2);
  border-radius: 10px;
  color: var(--off-w);
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--dim);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(202, 255, 51, 0.02);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.char-count {
  font-size: 11px;
  color: var(--dim);
  text-align: right;
}
.contact-submit { width: 100%; justify-content: center; }
.form-status {
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(202, 255, 51, 0.08);
  border: 1px solid rgba(202, 255, 51, 0.25);
  color: var(--lime);
}
.form-status.error {
  display: block;
  background: rgba(255, 68, 68, 0.08);
  border: 1px solid rgba(255, 68, 68, 0.25);
  color: #ff6666;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-inner {
  text-align: center;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.mobile-nav-links a {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--off-w);
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--lime); }
.mobile-cta { font-size: 14px; }

/* Responsive additions */
@media (max-width: 960px) {
  .booking-layout { grid-template-columns: 1fr; gap: 48px; }
  .booking-right { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-wrap: wrap; gap: 20px 28px; }
  .trust-divider { display: none; }
}

@media (max-width: 640px) {
  .trust-bar-inner { gap: 16px 24px; }
  .trust-num { font-size: 18px; }
  .trust-label { font-size: 10px; }
  .contact-card { padding: 16px 18px; }
}
