/* ================================================================
   KINGSTON SERVICES — Premium Small Engine Repair
   ================================================================ */

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

:root {
  --bg:          #0a0a0a;
  --bg-2:        #111111;
  --bg-3:        #161616;
  --bg-card:     #141414;
  --green-deep:  #0d1f15;
  --green-dark:  #1a3a2a;
  --green-mid:   #2d5a3d;
  --orange:      #f97316;
  --orange-dark: #c2540a;
  --orange-glow: rgba(249,115,22,0.25);
  --amber:       #fbbf24;
  --white:       #ffffff;
  --text:        #e2e5e1;
  --text-muted:  #6b7566;
  --text-dim:    #9ca89a;
  --border:      rgba(255,255,255,0.07);
  --border-hover:rgba(249,115,22,0.4);

  --font-head: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow-glow: 0 0 40px rgba(249,115,22,0.15);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-lift: 0 20px 60px rgba(0,0,0,0.7);

  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition: 0.3s var(--ease-out-quart);
  --container: 1200px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

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

body.no-scroll { overflow: hidden; }

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

/* ── UTILS ── */
.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.section { padding-block: clamp(5rem, 9vw, 8rem); }
.text-orange { color: var(--orange); }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--white);
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 54ch;
  margin-top: 0.8rem;
  line-height: 1.7;
}
.section-header { margin-bottom: clamp(3rem, 5vw, 5rem); }
.section-header .section-eyebrow,
.section-header .section-title,
.section-header .section-sub { display: block; }
.section-header.center { text-align: center; }
.section-header.center .section-eyebrow { justify-content: center; }
.section-header.center .section-eyebrow::before { display: none; }
.section-header.center .section-sub { margin-inline: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 24px rgba(249,115,22,0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 8px 40px rgba(249,115,22,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
}

.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.82rem; }
.btn-full { width: 100%; }
.btn-spaced { margin-top: 2rem; }

/* ── SCROLL PROGRESS ── */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--orange);
}


/* ── LOGO IMAGES ── */
.nav-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.preloader-logo {
  height: 150px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.preloader.hidden { pointer-events: none; }

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@keyframes gear-spin { to { transform: rotate(360deg); } }

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  width: 0%;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--orange);
}

.preloader-text {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.preloader-dots::after {
  content: '...';
  animation: dots 1.2s steps(4, end) infinite;
}
@keyframes dots {
  0%  { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding-block: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.brand-gear {
  width: 28px; height: 28px;
  color: var(--orange);
  transition: transform 0.6s var(--ease-out-quart);
}
.brand:hover .brand-gear { transform: rotate(90deg); }
.brand-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}
.brand-accent { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  transition: color var(--transition);
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s var(--ease-out-quart);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PROMO STRIP ── */
.promo-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.45);
  border-radius: 100px;
  padding: 0.4rem 0.75rem 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.promo-strip a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.promo-strip a:hover { opacity: 0.8; }
.promo-strip-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0.1rem 0.3rem;
  line-height: 1;
  transition: color var(--transition);
}
.promo-strip-close:hover { color: var(--white); }
.promo-strip.hidden { display: none; }

/* ── NAV OVERLAY ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 8;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.open { opacity: 1; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(29,74,42,0.35) 0%, transparent 70%),
              var(--bg);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}
.eyebrow-line {
  display: block;
  width: 32px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.9;
  color: var(--white);
  text-shadow: 0 2px 0 rgba(0,0,0,0.3);
  margin-bottom: 2rem;
}
.hero-line-1, .hero-line-2 {
  display: block;
  overflow: hidden;
}
.line-reveal {
  display: block;
  transform: translateY(110%);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 50ch;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(24px);
}

.typewriter-wrap {
  color: var(--orange);
  font-weight: 600;
  white-space: nowrap;
}
.typewriter-cursor {
  animation: blink 0.8s step-end infinite;
  color: var(--orange);
  font-weight: 300;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-br { display: block; margin-block: 0.2rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(24px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fade-scroll-hint 0.8s 3s forwards;
  z-index: 2;
}
@keyframes fade-scroll-hint { to { opacity: 1; } }

.scroll-wheel {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-dot {
  width: 3px; height: 6px;
  background: var(--orange);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%,100% { transform: translateY(0); opacity: 1; }
  80%      { transform: translateY(14px); opacity: 0; }
}

.hero-badge {
  position: absolute;
  right: clamp(1.5rem, 8vw, 5rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(100px, 13vw, 150px);
  height: clamp(100px, 13vw, 150px);
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 60px rgba(249,115,22,0.4), 0 12px 40px rgba(0,0,0,0.5);
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%) scale(0.5) rotate(-15deg);
}
.badge-ring {
  position: absolute;
  inset: -8px;
  animation: badge-ring-spin 12s linear infinite;
}
@keyframes badge-ring-spin { to { transform: rotate(360deg); } }

.badge-num {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.badge-label {
  font-size: clamp(0.52rem, 0.8vw, 0.65rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding-block: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
  margin-top: -1px;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.03em;
  text-shadow: 0 0 24px rgba(249,115,22,0.4);
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--orange);
  padding-block: 4.5rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 28px, 100% 0, 100% calc(100% - 28px), 0 100%);
  margin-block: -1px;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(255,255,255,0.1), transparent 65%);
  pointer-events: none;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}
.cta-band-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
}
.cta-band-heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.cta-band-heading span { color: rgba(0,0,0,0.25); }
.btn-white {
  background: var(--white);
  color: var(--charcoal);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-white:hover { background: var(--charcoal); color: var(--white); }

/* ── SERVICES ── */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow var(--transition), border-color var(--transition);
  transform-style: preserve-3d;
  cursor: pointer;
  will-change: transform;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.service-card:hover::before { opacity: 1; }

.card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity var(--transition);
  opacity: 0;
}
.service-card:hover .card-glow { opacity: 1; }

.service-num {
  font-family: var(--font-head);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  position: absolute;
  bottom: -0.5rem; right: 0.75rem;
  letter-spacing: -0.04em;
  user-select: none;
  transition: color var(--transition);
}
.service-card:hover .service-num { color: rgba(249,115,22,0.07); }

.service-icon-wrap {
  width: 54px; height: 54px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: rgba(249,115,22,0.18);
  box-shadow: 0 0 20px rgba(249,115,22,0.2);
}
.service-icon { display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 26px; height: 26px; stroke: var(--orange); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.service-list li {
  font-size: 0.82rem;
  color: var(--text-dim);
  padding-left: 1.1rem;
  position: relative;
}
.service-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.card-footer {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
}

/* ── PROCESS ── */
.process-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,0.3), transparent);
}
.process-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,0.3), transparent);
}

.process-grid {
  display: flex;
  align-items: center;
  gap: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 2rem;
  position: relative;
}
.step-number {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(249,115,22,0.08);
  line-height: 1;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  user-select: none;
  letter-spacing: -0.03em;
}
.step-icon {
  font-size: 0;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 50%;
  transition: background var(--transition), box-shadow var(--transition);
}
.step-icon svg { width: 30px; height: 30px; stroke: var(--orange); }
.process-step:hover .step-icon {
  background: rgba(249,115,22,0.2);
  box-shadow: 0 0 30px rgba(249,115,22,0.25);
}
.process-step h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 24ch;
  margin-inline: auto;
}
.process-connector {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.2rem;
  flex-shrink: 0;
  opacity: 0.4;
}
.connector-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.connector-arrow {
  color: var(--orange);
  font-size: 1.4rem;
  line-height: 1;
  margin-top: -12px;
}

/* ── ABOUT ── */
.about-section {
  background: var(--bg-2);
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.about-visual { position: relative; }

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--bg-card);
}
.about-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-image-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.about-accent-block {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.about-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--orange);
  padding-left: 1rem;
}
.about-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 20px rgba(249,115,22,0.3);
}
.about-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── WHY US ── */
.why-section { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform 0.15s ease, box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
}
.why-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.why-icon-circle {
  width: 64px; height: 64px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  margin: 0 auto 1.25rem;
  transition: all var(--transition);
}
.why-icon-circle svg { width: 28px; height: 28px; stroke: var(--orange); }
.why-card:hover .why-icon-circle {
  background: rgba(249,115,22,0.2);
  box-shadow: 0 0 24px rgba(249,115,22,0.25);
  transform: scale(1.1) rotate(5deg);
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }
.why-card-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover .why-card-line { transform: scaleX(1); }

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--green-deep);
  overflow: hidden;
}
.testimonials-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.testimonials-track {
  display: flex;
  transition: transform 0.6s var(--ease-out-quart);
}
.testimonial-card {
  flex: 0 0 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 2rem;
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(249,115,22,0.08);
  pointer-events: none;
}
.testimonial-stars {
  color: var(--amber);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.testimonial-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 72ch;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.tcontrol {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--text-dim);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tcontrol:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(249,115,22,0.1);
}
.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition);
  cursor: pointer;
}
.t-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--orange);
  border-color: var(--orange);
}

/* ── BRANDS MARQUEE ── */
.brands-section {
  background: var(--bg-2);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-label-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.brands-label-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
}
.marquee-wrap {
  overflow: hidden;
  padding-block: 1.25rem;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
  gap: 0;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-inline: 2.5rem;
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
}
.marquee-item:hover { color: var(--orange); }
.marquee-item::after {
  content: '·';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.15);
}

/* ── CONTACT ── */
.contact-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,0.3), transparent);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
.contact-intro {
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
a.contact-item:hover {
  border-color: var(--border-hover);
  background: rgba(249,115,22,0.05);
  transform: translateX(4px);
}
.citem-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.citem-icon svg { width: 20px; height: 20px; stroke: var(--orange); }
.citem-body { display: flex; flex-direction: column; gap: 0.1rem; flex: 1; }
.citem-body strong {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.citem-body span { font-size: 0.9rem; color: var(--text); }
.citem-arrow {
  color: var(--orange);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}
a.contact-item:hover .citem-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* FORM */
.contact-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  position: relative;
  margin-bottom: 1.1rem;
}
.field.floating label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.25s ease;
  background: transparent;
  padding-inline: 0.25rem;
}
.field.floating textarea ~ label {
  top: 1rem;
  transform: none;
}
.field.floating input:focus ~ label,
.field.floating input:not(:placeholder-shown) ~ label,
.field.floating select ~ label,
.field.floating textarea:focus ~ label,
.field.floating textarea:not(:placeholder-shown) ~ label {
  top: -0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--orange);
  background: var(--green-deep);
  transform: none;
}

.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f97316' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(249,115,22,0.5);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
  background: rgba(249,115,22,0.04);
}
.field input.error, .field select.error, .field textarea.error {
  border-color: #ef4444;
  animation: shake 0.4s ease;
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}
.field-err {
  font-size: 0.72rem;
  color: #f87171;
  margin-top: 0.3rem;
  display: block;
  min-height: 1rem;
}

.form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

.btn-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── TOAST ── */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}
.toast {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  font-size: 0.88rem;
  color: var(--text);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 320px;
  pointer-events: all;
  animation: toast-in 0.4s var(--ease-out-quart);
  border-left: 3px solid var(--orange);
}
.toast.success { border-left-color: #4ade80; }
.toast.error   { border-left-color: #f87171; }
@keyframes toast-in {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.toast-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-block: 4rem;
}
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 28ch; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition);
  cursor: pointer;
}
.footer-col a:hover { color: var(--white); }
.footer-col li, .footer-col p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.25rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

.designed-by {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}
.designed-by:hover { color: var(--white); }
.illucid-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: drop-shadow(0 0 1px rgba(255,255,255,0.8)) drop-shadow(0 0 2px rgba(255,255,255,0.4));
  transition: opacity var(--transition), filter var(--transition);
}
.designed-by:hover .illucid-logo {
  opacity: 1;
  filter: drop-shadow(0 0 2px rgba(255,255,255,1)) drop-shadow(0 0 4px rgba(255,255,255,0.5));
}

/* ── LEGAL PAGES ── */
.page-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 7rem 0 4rem;
  text-align: center;
}
.page-hero .section-eyebrow { justify-content: center; }
.page-hero .section-eyebrow::before { display: none; }
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}
.page-hero-title span { color: var(--orange); }
.page-hero-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
}
.page-content h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.85rem;
}
.page-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.85rem;
}
.page-content ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  padding-left: 1.2rem;
  position: relative;
}
.page-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
}
.page-content a { color: var(--orange); text-underline-offset: 3px; }
.page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color var(--transition);
}
.page-back:hover { color: var(--orange); }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: var(--orange);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  z-index: 400;
}
.back-top svg { width: 20px; height: 20px; }
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(249,115,22,0.6); }

/* ── GSAP ANIMATION SETUP ── */
[data-gsap] { opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .process-grid { flex-direction: column; gap: 0; }
  .process-connector { transform: rotate(90deg); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .hamburger { display: flex; }
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.open { pointer-events: all; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band { clip-path: polygon(0 16px, 100% 0, 100% calc(100% - 16px), 0 100%); }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-link { font-size: 1.3rem; }
  .hero-badge { display: none; }
  .stat-divider { display: none; }
  .stats-inner { gap: 1.5rem 0; }
  .stat-item { padding-inline: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .back-top { bottom: 1.2rem; right: 1.2rem; }
  .toast-container { bottom: 1.2rem; right: 1.2rem; left: 1.2rem; }
  .toast { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: clamp(3rem, 14vw, 5rem); }
  .about-stats { gap: 1rem; }
  .process-step { padding: 1.5rem; }
}

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