/* ============================================================
   PT. EZBright Total Solution — landing page
   ============================================================ */

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #F4F4F2;
  --bg-soft: #FFFFFF;
  --ink: #0C0C0C;
  --muted: #5C5C58;
  --accent: #F08300;        /* brand orange (logo: #FD9301, tuned for contrast) */
  --accent-deep: #C96A00;   /* deep orange for hovers / small text on tints */
  --accent-hot: #FF5400;      /* hot orange-red gradient partner */
  --line: rgba(12, 12, 12, 0.11);
  --radius: 22px;
  --font-display: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: min(92vw, 1360px);
}

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

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--accent); color: #0C0C0C; }

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.container { width: var(--container); margin-inline: auto; }

/* ------------------------------------------------------------
   Preloader
   ------------------------------------------------------------ */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark { display: grid; gap: 12px; justify-items: center; }
/* logo.png cropped to the EZBRIGHT wordmark row (y 0-67 of 101);
   the tagline row below is played by .loader-tag instead */
.loader-logo {
  width: 250px; height: 58px; overflow: hidden;
  animation: loader-in 0.9s var(--ease-out) both;
}
.loader-logo img {
  width: 250px; height: auto;
  /* multiply removes the PNG's white background on the light bg
     without waiting for the JS de-white pass */
  mix-blend-mode: multiply;
}
/* The "TOTAL SOLUTION" line doubles as the loading bar: a hard-edged
   two-tone gradient clipped to the text sweeps in from the left */
.loader-tag {
  font-family: var(--font-body);
  font-weight: 600; font-size: 14.5px;
  letter-spacing: 0.5em; margin-right: -0.5em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #2F5597 50%, rgba(12, 12, 12, 0.16) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: loader-in 0.9s var(--ease-out) both,
             loader-tag-fill 0.85s ease-in-out both 0.2s;
}
@keyframes loader-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes loader-tag-fill { to { background-position: 0% 0; } }

/* ------------------------------------------------------------
   3D canvas
   ------------------------------------------------------------ */
/* The glossy object floats above the page on purpose — waypoints
   keep it parked in whitespace so copy stays readable. */
#gl {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 90;
  pointer-events: none;
}

main { position: relative; z-index: 2; }

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: padding 0.5s var(--ease-out), background 0.5s, box-shadow 0.5s;
}
.nav::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  opacity: 0; transition: opacity 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { padding: 12px 0; }
.nav.scrolled::after { opacity: 1; border-bottom-color: var(--line); }
/* Keep brand + close button above the mobile menu overlay */
body.menu-open .nav { z-index: 130; }
body.menu-open .nav::after { opacity: 0; }
.nav-inner {
  width: var(--container); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand-logo {
  height: 44px; width: auto;
  transition: transform 0.4s var(--ease-out);
}
.brand:hover .brand-logo { transform: scale(1.04); }
.nav.scrolled .brand-logo { height: 38px; }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 14px; }

.burger {
  display: none; width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 50%;
  position: relative; z-index: 130;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: var(--bg-soft);
}
.burger span {
  display: block; width: 16px; height: 1.6px; background: var(--ink);
  transition: transform 0.4s var(--ease-out);
}
body.menu-open .burger span:first-child { transform: translateY(3.3px) rotate(45deg); }
body.menu-open .burger span:last-child { transform: translateY(-3.3px) rotate(-45deg); }

/* Mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 120;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; gap: 8vh;
  padding: 0 8vw;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease-out);
}
body.menu-open .menu { clip-path: inset(0 0 0 0); }
.menu-links { display: grid; gap: 6px; }
.menu-links a {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 9vw, 64px); letter-spacing: -0.03em; line-height: 1.1;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  transition-delay: 0s;
}
body.menu-open .menu-links a {
  opacity: 1; transform: none;
  transition-delay: calc(0.15s + var(--i) * 0.07s);
}
.menu-foot {
  display: grid; gap: 4px; font-size: 15px; color: var(--muted);
  opacity: 0; transition: opacity 0.6s 0.4s;
}
body.menu-open .menu-foot { opacity: 1; }
.menu-foot a { color: var(--accent-deep); font-weight: 600; }

/* Language switch (EN / ID) */
.lang-switch {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid var(--line); border-radius: 999px; padding: 3px;
  background: var(--bg-soft);
}
.lang-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  padding: 6px 11px; border-radius: 999px; color: var(--muted);
  transition: background 0.3s, color 0.3s;
}
.lang-btn.active { background: var(--ink); color: #fff; }
.lang-btn:not(.active):hover { color: var(--ink); background: color-mix(in srgb, var(--ink) 8%, transparent); }

/* Indonesian copy runs longer — ease the two display titles */
:lang(id) .hero-title { max-width: 17ch; font-size: clamp(46px, 8.8vw, 140px); }
:lang(id) .services-title { font-size: clamp(30px, 4.6vw, 68px); }

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 700; font-size: 14.5px; letter-spacing: 0.01em;
  overflow: hidden; isolation: isolate;
  transition: color 0.45s var(--ease-out), transform 0.45s var(--ease-out), border-color 0.45s;
  white-space: nowrap;
}
.btn span { position: relative; z-index: 2; }
.btn::before {
  content: ''; position: absolute; inset: -2%; z-index: 1;
  border-radius: 999px; transform: translateY(103%);
  transition: transform 0.5s var(--ease-out);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-accent { background: var(--accent); color: #0C0C0C; }
.btn-accent::before { background: var(--ink); }
.btn-accent:hover { color: #fff; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink::before { background: var(--accent); }
.btn-ink:hover { color: #0C0C0C; }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover { color: #fff; border-color: var(--ink); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white::before { background: var(--accent); }
.btn-white:hover { color: #0C0C0C; }
.btn-lg { padding: 20px 40px; font-size: 16px; }

/* ------------------------------------------------------------
   Shared section bits
   ------------------------------------------------------------ */
.section { padding: clamp(110px, 14vh, 180px) 0; position: relative; }

.section-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-num {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: var(--accent-deep);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 999px; padding: 5px 12px;
}
.section-label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex: none;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 45%, transparent); }
  60% { box-shadow: 0 0 0 9px transparent; }
}

/* Line reveals for headings.
   The mask needs headroom: with line-height < 1 the line box is
   shorter than the glyphs, so without extra padding the overflow
   clip cuts descenders (y, g, p). Negative margins cancel the
   padding out of the layout so leading stays tight. */
[data-lines] .l {
  display: block; overflow: hidden;
  padding-block: 0.12em 0.18em;
  margin-block: -0.12em -0.18em;
}
[data-lines] .li {
  display: inline-block; transform: translateY(150%);
  transition: transform 1.1s var(--ease-out);
}
[data-lines].in .l:nth-child(1) .li { transition-delay: 0.05s; }
[data-lines].in .l:nth-child(2) .li { transition-delay: 0.15s; }
[data-lines].in .l:nth-child(3) .li { transition-delay: 0.25s; }
[data-lines].in .li { transform: translateY(0); }

/* Progressive enhancement: everything stays visible without JS
   (crawlers and no-JS browsers see the full content). */
.no-js .reveal,
.no-js [data-lines] .li { opacity: 1 !important; transform: none !important; }
.no-js .scrub .w { color: currentColor !important; }

/* Fade-up reveals */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* Scroll-scrubbed statements */
.scrub .w { color: color-mix(in srgb, currentColor 16%, transparent); transition: color 0.35s linear; }
.scrub .w.lit { color: currentColor; }

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative;
  padding: 140px 0 90px;
}
.hero-glow {
  position: absolute; inset: 0; z-index: -1; overflow: hidden;
}
.hero-glow::before, .hero-glow::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(90px);
}
.hero-glow::before {
  width: 44vw; height: 44vw; right: -10vw; top: -8vw;
  background: color-mix(in srgb, var(--accent) 13%, transparent);
}
.hero-glow::after {
  width: 30vw; height: 30vw; left: -10vw; bottom: -12vw;
  background: color-mix(in srgb, var(--accent-hot) 10%, transparent);
}
.hero-inner { display: grid; gap: clamp(28px, 4vh, 48px); }
.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(56px, 10.5vw, 168px);
  line-height: 0.98; letter-spacing: -0.04em;
  max-width: 12ch;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--accent) 20%, var(--accent-hot) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.hero-sub { max-width: 46ch; font-size: clamp(15.5px, 1.3vw, 18px); color: var(--muted); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: grid; justify-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.scroll-hint-line {
  width: 1.5px; height: 44px; background: var(--line);
  position: relative; overflow: hidden; border-radius: 2px;
}
.scroll-hint-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  animation: hint 2s var(--ease-out) infinite;
}
@keyframes hint {
  0% { transform: translateY(-100%); }
  55% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ------------------------------------------------------------
   Marquee
   ------------------------------------------------------------ */
.marquee {
  border-block: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: color-mix(in srgb, var(--bg-soft) 60%, transparent);
  position: relative; z-index: 3;
}
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; flex: none; }
.marquee-group span {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(15px, 1.5vw, 19px); letter-spacing: 0.02em;
  padding: 0 26px; white-space: nowrap;
}
.marquee-group i { color: var(--accent); font-style: normal; font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------
   About
   ------------------------------------------------------------ */
.statement {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(26px, 4vw, 54px);
  line-height: 1.22; letter-spacing: -0.02em;
  max-width: 26ch;
}
.about-grid {
  margin-top: clamp(56px, 8vw, 110px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.about-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 2.4vw, 38px);
  display: grid; gap: 14px; align-content: start;
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out),
              opacity 1s var(--ease-out);
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -28px rgba(11, 11, 26, 0.25);
}
.about-card-num {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent-deep); font-family: var(--font-display); font-weight: 700; font-size: 14px;
}
.about-card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(19px, 1.7vw, 24px); letter-spacing: -0.02em;
}
.about-card p { color: var(--muted); font-size: 15px; }

/* ------------------------------------------------------------
   Vision / Mission
   ------------------------------------------------------------ */
.vm-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 18px; }
.vm-card {
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(30px, 3.4vw, 54px);
  display: grid; gap: 26px; align-content: start;
  min-height: clamp(320px, 34vw, 430px);
}
.vm-vision {
  background: linear-gradient(135deg, #FFA31F 0%, var(--accent) 45%, var(--accent-hot) 100%);
  color: #0C0C0C;
  position: relative; overflow: hidden;
}
.vm-vision::after {
  content: ''; position: absolute; right: -60px; bottom: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  border: 1px solid rgba(12, 12, 12, 0.3);
}
.vm-vision::before {
  content: ''; position: absolute; right: -20px; bottom: -100px;
  width: 240px; height: 240px; border-radius: 50%;
  border: 1px solid rgba(12, 12, 12, 0.18);
}
.vm-mission { background: var(--bg-soft); border: 1px solid var(--line); }
.vm-tag {
  justify-self: start;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid currentColor; opacity: 0.85;
}
.vm-big {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(22px, 2.5vw, 34px); line-height: 1.3; letter-spacing: -0.02em;
}
.vm-list { list-style: none; display: grid; }
.vm-list li {
  display: flex; gap: 18px; align-items: baseline;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  font-size: clamp(15.5px, 1.35vw, 18px); font-weight: 500; line-height: 1.5;
}
.vm-list li:last-child { border-bottom: 0; }
.vm-list .vm-num {
  font-family: var(--font-display); font-size: 13px; color: var(--accent-deep);
  font-weight: 700; flex: none;
}

/* ------------------------------------------------------------
   Services
   ------------------------------------------------------------ */
.services-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 5.2vw, 76px); line-height: 1.04; letter-spacing: -0.03em;
  margin-bottom: clamp(44px, 6vw, 84px);
}
.services-title em { font-style: normal; color: var(--accent); }

.svc-list { display: grid; border-top: 1px solid var(--line); }
.svc-heading { font: inherit; margin: 0; }
.svc { border-bottom: 1px solid var(--line); }
.svc-head {
  width: 100%; text-align: left;
  display: grid;
  grid-template-columns: 64px 1.1fr 1fr 48px;
  align-items: center; gap: 22px;
  padding: clamp(22px, 2.6vw, 34px) 8px;
  position: relative; isolation: isolate;
  transition: padding 0.5s var(--ease-out);
}
.svc-head::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--bg-soft);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.5s var(--ease-out);
}
.svc-head:hover::before, .svc.open .svc-head::before { transform: scaleY(1); }
.svc-head:hover { padding-left: 22px; padding-right: 22px; }
.svc.open .svc-head { padding-left: 22px; padding-right: 22px; }
.svc-num {
  font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--muted);
  transition: color 0.4s;
}
.svc.open .svc-num, .svc-head:hover .svc-num { color: var(--accent-deep); }
.svc-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 34px); letter-spacing: -0.02em; line-height: 1.15;
}
.svc-desc { font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.svc-plus {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); position: relative; justify-self: end;
  transition: background 0.4s, border-color 0.4s, transform 0.55s var(--ease-out);
  background: transparent;
}
.svc-plus::before, .svc-plus::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 14px; height: 1.6px; background: var(--ink);
  translate: -50% -50%;
  transition: background 0.4s, rotate 0.55s var(--ease-out);
}
.svc-plus::after { rotate: 90deg; }
.svc.open .svc-plus { background: var(--accent); border-color: var(--accent); transform: rotate(180deg); }
.svc.open .svc-plus::before, .svc.open .svc-plus::after { background: #0C0C0C; }
.svc.open .svc-plus::after { rotate: 0deg; }

.svc-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.65s var(--ease-out);
}
.svc.open .svc-panel { grid-template-rows: 1fr; }
.svc-panel-inner {
  overflow: hidden; min-height: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 0 22px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s var(--ease-out) 0s, transform 0.5s var(--ease-out) 0s,
              padding 0.5s var(--ease-out);
}
.svc.open .svc-panel-inner {
  padding: 6px 22px 34px;
  opacity: 1; transform: none;
  transition-delay: 0.12s, 0.12s, 0s;
}
.chip {
  font-size: 13.5px; font-weight: 500;
  padding: 9px 16px; border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  color: var(--accent-deep);
  transition: background 0.3s, color 0.3s;
}
.chip:hover { background: var(--accent); color: #0C0C0C; }

/* ------------------------------------------------------------
   CTA
   ------------------------------------------------------------ */
.cta { text-align: center; overflow: clip; }
.cta-glow {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(46vw 46vw at 50% 60%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 70%);
}
.cta-inner { display: grid; justify-items: center; gap: clamp(26px, 4vh, 44px); }
.cta-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(58px, 11vw, 176px); line-height: 0.96; letter-spacing: -0.04em;
}
.cta-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--accent) 10%, var(--accent-hot) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-sub {
  max-width: 62ch; font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500; line-height: 1.65;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  background: linear-gradient(160deg, #181818 0%, #0C0C0C 55%, #000 100%);
  color: #fff;
  border-radius: calc(var(--radius) + 14px) calc(var(--radius) + 14px) 0 0;
  margin-top: 40px;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; right: -14vw; top: -20vw;
  width: 46vw; height: 46vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 147, 1, 0.35), transparent 70%);
  filter: blur(60px);
}
.footer-inner {
  position: relative;
  padding: clamp(90px, 12vh, 150px) 0 0;
  display: grid; gap: clamp(60px, 9vw, 120px);
}
.footer-top { display: grid; gap: clamp(28px, 4vh, 44px); justify-items: start; }
.footer-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.75;
}
.footer-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(44px, 8.4vw, 130px); line-height: 1; letter-spacing: -0.04em;
}
.footer-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--accent) 10%, var(--accent-hot) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px;
  padding-top: 44px; border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.65; margin-bottom: 14px;
}
.footer-col p { font-size: 15.5px; line-height: 1.75; }
.footer-col a { border-bottom: 1px solid rgba(255,255,255,0.35); transition: border-color 0.3s, opacity 0.3s; }
.footer-col a:hover { border-color: #fff; }
.footer-menu { display: grid; justify-items: start; gap: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 26px 0 30px; border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
}
.footer-bottom span { opacity: 0.8; }
.footer-logo {
  background: #fff; border-radius: 12px; padding: 8px 14px;
  display: inline-flex; align-items: center;
}
.footer-logo img { height: 30px; width: auto; }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .svc-head { grid-template-columns: 44px 1fr 48px; }
  .svc-desc { display: none; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .scroll-hint { left: auto; right: 6vw; transform: none; }
}

@media (max-width: 640px) {
  .eyebrow-tail { display: none; }
}

@media (max-width: 560px) {
  .svc-head { gap: 14px; }
  .svc-plus { width: 36px; height: 36px; }
  .btn-lg { padding: 16px 28px; font-size: 15px; }
  .statement { max-width: none; }
}

/* ------------------------------------------------------------
   Reduced motion
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, [data-lines] .li { opacity: 1 !important; transform: none !important; }
  .scrub .w { color: currentColor !important; }
}
