/* =========================================================================
   FORMULA WORLD AGENCY — DESIGN SYSTEM
   Black × Amber. Sharp, industrial, precision-built.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root{
  /* color */
  --black:       #0b0b0b;
  --black-soft:  #141414;
  --black-elev:  #1a1a1a;
  --black-card:  #121212;
  --line:        #292929;
  --line-soft:   rgba(245,245,245,0.08);
  --amber:       #ffa623;
  --amber-bright:#ffc24d;
  --amber-dim:   #c97f12;
  --amber-wash:  rgba(255,166,35,0.08);
  --white:       #f5f5f5;
  --white-pure:  #ffffff;
  --gray:        #a3a3a3;
  --gray-dim:    #6f6f6f;

  /* type */
  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* layout */
  --container: 1280px;
  --container-wide: 1440px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 3px;
  --chamfer: 12px;
  --chamfer-sm: 8px;
  --chamfer-lg: 20px;

  color-scheme: dark;
}

/* =========================================================================
   RESET / BASE
   ========================================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body{
  margin:0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; }
input, select, textarea{ font-family: inherit; font-size:16px; }
h1,h2,h3,h4,p,figure{ margin:0; }
svg{ display:block; }

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:200;
  background: var(--amber); color:var(--black); padding:12px 20px;
  font-family: var(--font-mono); font-weight:600; text-transform:uppercase; font-size:13px;
}
.skip-link:focus{ left:16px; top:16px; }

:focus-visible{ outline: 2px solid var(--amber); outline-offset: 3px; }

::selection{ background: var(--amber); color: var(--black); }

/* =========================================================================
   LAYOUT HELPERS
   ========================================================================= */
.wrap{ max-width: var(--container); margin:0 auto; padding: 0 var(--gutter); }
.wrap--wide{ max-width: var(--container-wide); margin:0 auto; padding: 0 var(--gutter); }

.section{ padding: clamp(64px, 10vw, 128px) 0; position:relative; }
.section--tight{ padding: clamp(48px, 6vw, 80px) 0; }
.section--black{ background: var(--black); }
.section--soft{ background: var(--black-soft); }
.section--amber{ background: var(--amber); color: var(--black); }

.grid{ display:grid; gap: 24px; }
.grid-2{ display:grid; gap:24px; grid-template-columns: repeat(2,1fr); }
.grid-3{ display:grid; gap:24px; grid-template-columns: repeat(3,1fr); }
.grid-4{ display:grid; gap:24px; grid-template-columns: repeat(4,1fr); }
@media (max-width: 980px){
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .grid-4{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px){
  .grid-2{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr; }
}
.hide-mobile{ display:initial; }
.hide-desktop{ display:none; }
@media (max-width: 860px){
  .hide-mobile{ display:none !important; }
  .hide-desktop{ display:initial !important; }
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{ content:''; width:22px; height:2px; background: var(--amber); flex-shrink:0; }
.eyebrow--on-amber{ color: var(--black); }
.eyebrow--on-amber::before{ background: var(--black); }
.eyebrow--light{ color: var(--white); }
.eyebrow--light::before{ background: var(--white); }

.h1{
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h2{
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.h3{
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.1;
  text-transform: uppercase;
}
.h4{
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.lede{
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--gray);
  max-width: 640px;
}
.mono{ font-family: var(--font-mono); }
.text-amber{ color: var(--amber); }
.text-white{ color: var(--white-pure); }
.text-gray{ color: var(--gray); }
.text-center{ text-align:center; }
.section-head{ margin-bottom: 56px; }
.section-head--center{ text-align:center; display:flex; flex-direction:column; align-items:center; }
.section-head .eyebrow{ margin-bottom:18px; }
.section-head p{ margin-top:18px; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn{
  --chamfer-btn: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  clip-path: polygon(var(--chamfer-btn) 0, 100% 0, 100% calc(100% - var(--chamfer-btn)), calc(100% - var(--chamfer-btn)) 100%, 0 100%, 0 var(--chamfer-btn));
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{ background: var(--amber); color: var(--black); }
.btn--primary:hover{ background: var(--amber-bright); transform: translateY(-2px); }
.btn--outline{ background: transparent; border-color: var(--amber); color: var(--white); }
.btn--outline:hover{ background: var(--amber-wash); border-color: var(--amber-bright); color: var(--white-pure); transform: translateY(-2px); }
.btn--dark{ background: var(--black); color: var(--white); border-color: var(--line); }
.btn--dark:hover{ border-color: var(--amber); color: var(--amber); }
.btn--on-amber{ background: var(--black); color: var(--white-pure); }
.btn--on-amber:hover{ background: var(--black-soft); transform: translateY(-2px); }
.btn--ghost{ background: transparent; color: var(--gray); border-color: var(--line); }
.btn--ghost:hover{ color: var(--white); border-color: var(--gray); }
.btn--sm{ padding: 11px 22px; font-size: 11px; --chamfer-btn: 7px; }
.btn--lg{ padding: 21px 44px; font-size: 14px; }
.btn--block{ width: 100%; }
.btn:disabled{ opacity:.5; cursor:not-allowed; transform:none !important; }
.btn svg{ width:16px; height:16px; flex-shrink:0; }

.link-arrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono); font-size: 13px; font-weight:600;
  letter-spacing:.04em; text-transform:uppercase; color: var(--amber);
  border-bottom: 1px solid transparent; padding-bottom:2px;
  transition: gap .18s ease, border-color .18s ease;
}
.link-arrow:hover{ gap:12px; border-color: var(--amber); }

/* =========================================================================
   CHECKER PATTERN
   ========================================================================= */
.checker{
  background-color: var(--amber);
  background-image:
    linear-gradient(45deg, var(--black) 25%, transparent 25%),
    linear-gradient(-45deg, var(--black) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--black) 75%),
    linear-gradient(-45deg, transparent 75%, var(--black) 75%);
  background-size: 18px 18px;
  background-position: 0 0, 0 9px, 9px -9px, -9px 0;
}
.checker--sm{ background-size: 10px 10px; background-position: 0 0, 0 5px, 5px -5px, -5px 0; }
.checker--lg{ background-size: 30px 30px; background-position: 0 0, 0 15px, 15px -15px, -15px 0; }
.checker-strip{ height: 10px; width: 100%; }
.checker-divider{ height: 26px; width: 100%; }

/* =========================================================================
   CHAMFER / SIGNATURE CLIP
   ========================================================================= */
.chamfer{ clip-path: polygon(var(--chamfer) 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%, 0 var(--chamfer)); }
.chamfer-lg{ clip-path: polygon(var(--chamfer-lg) 0, 100% 0, 100% calc(100% - var(--chamfer-lg)), calc(100% - var(--chamfer-lg)) 100%, 0 100%, 0 var(--chamfer-lg)); }
.chamfer-corner{ position:relative; }
.chamfer-corner::after{
  content:''; position:absolute; top:0; right:0; width:0; height:0;
  border-style:solid; border-width: 0 22px 22px 0; border-color: transparent var(--black) transparent transparent;
}

/* =========================================================================
   TELEMETRY / MICRO DETAILS
   ========================================================================= */
.telemetry{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dim);
  display:flex;
  align-items:center;
  gap:8px;
}
.telemetry b{ color: var(--amber); font-weight:600; }
.telemetry .dot{ width:6px; height:6px; border-radius:50%; background: var(--amber); flex-shrink:0; box-shadow: 0 0 8px var(--amber); }

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.site-header{
  position: sticky; top:0; z-index:100;
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__row{
  display:flex; align-items:center; justify-content:space-between;
  height: 84px;
}
.logo{
  display:flex; align-items:center; gap:12px;
}
.logo__img{
  height: 58px; width: auto; display:block; flex-shrink:0;
}
.footer-brand .logo__img{ height: 48px; }

.site-nav{ display:flex; align-items:center; gap:40px; }
.site-nav a{
  font-family: var(--font-mono); font-size:13px; font-weight:500; letter-spacing:0.04em;
  text-transform:uppercase; color: var(--gray); position:relative; padding: 6px 0;
  transition: color .18s ease;
}
.site-nav a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background: var(--amber);
  transition: width .2s ease;
}
.site-nav a:hover, .site-nav a.is-active{ color: var(--white-pure); }
.site-nav a:hover::after, .site-nav a.is-active::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:20px; }
.cart-trigger{
  position:relative; background:transparent; border:1px solid var(--line); color: var(--white);
  width:44px; height:44px; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition: border-color .18s ease, color .18s ease;
}
.cart-trigger:hover{ border-color: var(--amber); color: var(--amber); }
.cart-trigger svg{ width:19px; height:19px; }
.cart-trigger__badge{
  position:absolute; top:-8px; right:-8px; background: var(--amber); color:var(--black);
  font-family: var(--font-mono); font-size:11px; font-weight:700; min-width:19px; height:19px;
  border-radius:50%; display:flex; align-items:center; justify-content:center; padding:0 4px;
}
.cart-trigger__badge[hidden]{ display:none; }

.menu-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px; background:transparent; border:1px solid var(--line); cursor:pointer;
}
.menu-toggle span{ width:20px; height:2px; background: var(--white); margin:0 auto; transition: all .25s ease; }
.menu-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2){ opacity:0; }
.menu-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px){
  .site-nav{ display:none; }
  .menu-toggle{ display:flex; }
}

.mobile-drawer{
  position: fixed; inset:0; top:85px; background: var(--black); z-index:99;
  transform: translateX(100%); transition: transform .32s ease;
  display:flex; flex-direction:column; padding: 32px var(--gutter);
  overflow-y:auto;
}
.mobile-drawer.is-open{ transform: translateX(0); }
.mobile-drawer a{
  font-family: var(--font-display); font-size: 1.6rem; text-transform:uppercase;
  padding: 18px 0; border-bottom:1px solid var(--line); color: var(--white);
}
.mobile-drawer a.is-active{ color: var(--amber); }
.mobile-drawer .btn{ margin-top:28px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer{ background: var(--black); border-top:1px solid var(--line); }
.footer-top{ padding: clamp(56px,8vw,96px) 0 56px; }
.footer-grid{
  display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px;
}
.footer-brand .logo{ margin-bottom:20px; }
.footer-brand p{ color: var(--gray); max-width: 320px; font-size:14px; }
.footer-col h4{ color: var(--white-pure); font-size:13px; letter-spacing:.08em; margin-bottom:20px; font-family:var(--font-mono); text-transform:uppercase; }
.footer-col a{ display:block; color: var(--gray); font-size:14px; padding:7px 0; transition: color .18s ease; }
.footer-col a:hover{ color: var(--amber); }
.footer-social{ display:flex; gap:12px; margin-top:24px; }
.footer-social a{ width:38px; height:38px; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; padding:0; }
.footer-social a:hover{ border-color: var(--amber); }
.footer-social svg{ width:16px; height:16px; }
.footer-bottom{
  border-top: 1px solid var(--line); padding: 24px 0; display:flex; align-items:center;
  justify-content:space-between; flex-wrap:wrap; gap:12px;
}
.footer-bottom p{ color: var(--gray-dim); font-size:13px; font-family: var(--font-mono); }
.footer-bottom-links{ display:flex; gap:24px; }
.footer-bottom-links a{ color: var(--gray-dim); font-size:13px; }
.footer-bottom-links a:hover{ color: var(--amber); }

@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
}

/* =========================================================================
   CARDS
   ========================================================================= */
.card{
  background: var(--black-card);
  border: 1px solid var(--line);
  padding: 36px;
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease;
}
.card:hover{ transform: translateY(-6px); border-color: var(--amber); }

/* Service cards */
.service-card{ display:flex; flex-direction:column; height:100%; }
.service-card__icon{
  width:52px; height:52px; border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
  margin-bottom:24px; color: var(--amber); transition: background-color .22s ease, color .22s ease, border-color .22s ease;
}
.service-card:hover .service-card__icon{ background: var(--amber); color: var(--black); border-color: var(--amber); }
.service-card__icon svg{ width:24px; height:24px; }
.service-card h3{ margin-bottom:12px; }
.service-card p{ color: var(--gray); font-size:14.5px; margin-bottom:24px; flex-grow:1; }

/* Testimonial cards */
.testimonial-card{ position:relative; padding-top:44px; }
.testimonial-card__quote{ position:absolute; top:14px; left:32px; font-family: var(--font-display); font-size:52px; color: var(--amber); opacity:.5; line-height:1; }
.testimonial-card p{ color: var(--white); font-size:15.5px; line-height:1.7; margin-bottom:28px; }
.testimonial-card__person{ display:flex; align-items:center; gap:14px; border-top:1px solid var(--line); padding-top:20px; }
.testimonial-card__avatar{
  width:44px; height:44px; background: var(--amber); color:var(--black); font-family:var(--font-display);
  display:flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0;
  clip-path: polygon(6px 0,100% 0,100% calc(100% - 6px),calc(100% - 6px) 100%,0 100%,0 6px);
}
.testimonial-card__person b{ display:block; font-size:14px; color: var(--white-pure); }
.testimonial-card__person span{ display:block; font-size:12.5px; color: var(--gray-dim); margin-top:2px; }

/* =========================================================================
   STATS
   ========================================================================= */
.stats-band{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.stats-grid{ display:grid; grid-template-columns: repeat(4,1fr); }
.stat{
  padding: 48px 32px; text-align:center; border-left:1px solid var(--line);
}
.stat:first-child{ border-left:none; }
.stat__num{ font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--amber); line-height:1; }
.stat__label{ font-family: var(--font-mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase; color: var(--gray); margin-top:14px; }
@media (max-width: 860px){
  .stats-grid{ grid-template-columns: repeat(2,1fr); }
  .stat{ border-left:none; border-top:1px solid var(--line); }
  .stat:nth-child(1), .stat:nth-child(2){ border-top:none; }
  .stat:nth-child(2n){ border-left:1px solid var(--line); }
}

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; align-items:stretch; }
.price-card{
  background: var(--black-card); border:1px solid var(--line); padding:40px 32px;
  display:flex; flex-direction:column; position:relative; transition: transform .22s ease;
}
.price-card:hover{ transform: translateY(-6px); }
.price-card--featured{
  background: var(--amber); color: var(--black); border-color: var(--amber);
  transform: scale(1.03);
}
.price-card--featured:hover{ transform: scale(1.03) translateY(-6px); }
.price-card__badge{
  position:absolute; top:0; right:32px; transform: translateY(-50%);
  background: var(--black); color: var(--amber); font-family: var(--font-mono); font-size:11px;
  font-weight:700; letter-spacing:.1em; padding:8px 16px; text-transform:uppercase;
  clip-path: polygon(6px 0,100% 0,100% calc(100% - 6px),calc(100% - 6px) 100%,0 100%,0 6px);
}
.price-card--featured .price-card__badge{ background: var(--black); color: var(--amber); }
.price-card__name{ font-family: var(--font-mono); font-size:13px; letter-spacing:.12em; text-transform:uppercase; color: var(--gray); margin-bottom:14px; }
.price-card--featured .price-card__name{ color: rgba(11,11,11,0.65); }
.price-card__price{ font-family: var(--font-display); font-size: clamp(2.4rem,4vw,3rem); line-height:1; margin-bottom:6px; }
.price-card__cycle{ font-family: var(--font-mono); font-size:12px; color: var(--gray-dim); margin-bottom:28px; }
.price-card--featured .price-card__cycle{ color: rgba(11,11,11,0.6); }
.price-card__features{ margin: 0 0 28px; flex-grow:1; }
.price-card__features li{
  display:flex; align-items:flex-start; gap:10px; font-size:14.5px; padding:10px 0;
  border-top: 1px solid var(--line-soft);
}
.price-card--featured .price-card__features li{ border-top: 1px solid rgba(11,11,11,0.15); }
.price-card__features li:first-child{ border-top:none; }
.price-card__features svg{ width:16px; height:16px; color: var(--amber); flex-shrink:0; margin-top:2px; }
.price-card--featured .price-card__features svg{ color: var(--black); }
.price-card__turnaround{ font-family: var(--font-mono); font-size:12px; color: var(--gray-dim); margin-bottom:20px; }
.price-card--featured .price-card__turnaround{ color: rgba(11,11,11,0.6); }

@media (max-width: 980px){
  .pricing-grid{ grid-template-columns: 1fr; max-width:460px; margin:0 auto; }
  .price-card--featured{ transform:none; order:-1; }
  .price-card--featured:hover{ transform: translateY(-6px); }
}

/* =========================================================================
   PROCESS
   ========================================================================= */
.process-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border:1px solid var(--line); }
.process-step{ background: var(--black); padding:36px 32px; position:relative; }
.process-step__num{ font-family: var(--font-mono); font-size:13px; color: var(--amber); letter-spacing:.1em; margin-bottom:20px; display:block; }
.process-step h3{ margin-bottom:12px; }
.process-step p{ color: var(--gray); font-size:14.5px; }
@media (max-width: 900px){ .process-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .process-grid{ grid-template-columns: 1fr; } }

/* =========================================================================
   CASE STUDIES / WORK
   ========================================================================= */
.case-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.case-card{ background: var(--black-card); border:1px solid var(--line); overflow:hidden; transition: border-color .22s ease, transform .22s ease; display:flex; flex-direction:column; }
.case-card:hover{ border-color: var(--amber); transform: translateY(-6px); }
.case-card__thumb{ position:relative; aspect-ratio: 4/3; overflow:hidden; border-bottom:1px solid var(--line); }
.case-card__body{ padding:28px; display:flex; flex-direction:column; flex-grow:1; }
.case-card__industry{ font-family: var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: var(--amber); margin-bottom:10px; }
.case-card__body h3{ margin-bottom:10px; }
.case-card__body p{ color: var(--gray); font-size:14px; margin-bottom:20px; flex-grow:1; }
.case-card__results{ display:flex; flex-wrap:wrap; gap:10px; border-top:1px solid var(--line); padding-top:18px; }
.case-card__result{ font-family: var(--font-display); font-size:13px; color: var(--amber); }
@media (max-width: 980px){ .case-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .case-grid{ grid-template-columns: 1fr; } }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band{ background: var(--amber); color: var(--black); position:relative; overflow:hidden; }
.cta-band .wrap{ text-align:center; display:flex; flex-direction:column; align-items:center; }
.cta-band h2{ color: var(--black); margin-bottom:20px; }
.cta-band p{ color: rgba(11,11,11,0.75); font-size:1.1rem; max-width:560px; margin-bottom:36px; }

/* =========================================================================
   FAQ ACCORDION
   ========================================================================= */
.faq-list{ border-top:1px solid var(--line); }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-item__q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  background:transparent; border:none; color: var(--white-pure); text-align:left;
  padding: 26px 4px; cursor:pointer; font-family: var(--font-display); font-size:1.02rem; text-transform:uppercase;
}
.faq-item__q:hover{ color: var(--amber); }
.faq-item__icon{ width:22px; height:22px; border:1px solid var(--line); flex-shrink:0; position:relative; transition: border-color .2s ease, background-color .2s ease; }
.faq-item__icon::before, .faq-item__icon::after{ content:''; position:absolute; background: var(--white); transition: transform .25s ease, background-color .2s ease; }
.faq-item__icon::before{ width:10px; height:2px; top:50%; left:50%; transform: translate(-50%,-50%); }
.faq-item__icon::after{ width:2px; height:10px; top:50%; left:50%; transform: translate(-50%,-50%); }
.faq-item.is-open .faq-item__icon{ background: var(--amber); border-color: var(--amber); }
.faq-item.is-open .faq-item__icon::before, .faq-item.is-open .faq-item__icon::after{ background: var(--black); }
.faq-item.is-open .faq-item__icon::after{ transform: translate(-50%,-50%) rotate(90deg) scaleY(0); }
.faq-item.is-open .faq-item__q{ color: var(--amber); }
.faq-item__a{ max-height:0; overflow:hidden; transition: max-height .3s ease; }
.faq-item__a-inner{ padding: 0 4px 26px; color: var(--gray); font-size:14.5px; max-width:680px; line-height:1.7; }

/* =========================================================================
   FORMS
   ========================================================================= */
.field{ margin-bottom:22px; }
.field label{ display:block; font-family: var(--font-mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase; color: var(--gray); margin-bottom:10px; }
.field label .req{ color: var(--amber); }
.field input, .field select, .field textarea{
  width:100%; background: var(--black-soft); border:1px solid var(--line); color: var(--white-pure);
  padding:15px 16px; transition: border-color .18s ease, background-color .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--amber); background: var(--black-elev); outline:none; }
.field textarea{ resize:vertical; min-height:120px; }
.field select{ appearance:none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23ffa623' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 16px center; padding-right:40px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.field.has-error input, .field.has-error select, .field.has-error textarea{ border-color:#e8524a; }
.field__error{ display:none; color:#ff7a70; font-size:12.5px; margin-top:8px; font-family: var(--font-mono); }
.field.has-error .field__error{ display:block; }
.checkbox-row{ display:flex; align-items:flex-start; gap:12px; }
.checkbox-row input{ width:18px; height:18px; margin-top:2px; accent-color: var(--amber); flex-shrink:0; }
.checkbox-row label{ color: var(--gray); font-size:13.5px; margin:0; text-transform:none; letter-spacing:normal; font-family:var(--font-body); }
@media (max-width:640px){ .field-row{ grid-template-columns:1fr; } }

.form-status{ display:none; align-items:center; gap:12px; padding:16px 20px; font-family: var(--font-mono); font-size:13px; margin-bottom:24px; border:1px solid; }
.form-status.is-visible{ display:flex; }
.form-status--success{ border-color: var(--amber); color: var(--amber); background: var(--amber-wash); }
.form-status--error{ border-color:#e8524a; color:#ff7a70; background: rgba(232,82,74,0.08); }
.spinner{ width:16px; height:16px; border:2px solid var(--line); border-top-color: var(--amber); border-radius:50%; animation: spin .7s linear infinite; flex-shrink:0; }
@keyframes spin{ to{ transform: rotate(360deg); } }

/* =========================================================================
   CART DRAWER
   ========================================================================= */
.cart-overlay{ position:fixed; inset:0; background: rgba(0,0,0,0.6); z-index:150; opacity:0; visibility:hidden; transition: opacity .28s ease; }
.cart-overlay.is-open{ opacity:1; visibility:visible; }
.cart-drawer{
  position:fixed; top:0; right:0; bottom:0; width:min(440px, 100vw); background: var(--black-soft);
  border-left:1px solid var(--line); z-index:151; transform: translateX(100%); transition: transform .32s ease;
  display:flex; flex-direction:column;
}
.cart-drawer.is-open{ transform: translateX(0); }
.cart-drawer__head{ display:flex; align-items:center; justify-content:space-between; padding:26px 28px; border-bottom:1px solid var(--line); }
.cart-drawer__head h3{ font-family:var(--font-display); text-transform:uppercase; font-size:1.1rem; }
.cart-drawer__close{ background:transparent; border:1px solid var(--line); width:36px; height:36px; color:var(--white); cursor:pointer; display:flex; align-items:center; justify-content:center; }
.cart-drawer__close:hover{ border-color: var(--amber); color: var(--amber); }
.cart-drawer__body{ flex-grow:1; overflow-y:auto; padding: 8px 28px; }
.cart-drawer__foot{ border-top:1px solid var(--line); padding:24px 28px 28px; }
.cart-drawer__row{ display:flex; justify-content:space-between; font-family: var(--font-mono); font-size:13.5px; color: var(--gray); padding:6px 0; }
.cart-drawer__row--total{ color: var(--white-pure); font-size:16px; font-weight:600; border-top:1px solid var(--line); margin-top:10px; padding-top:16px; }
.cart-drawer__row--total b{ color: var(--amber); font-family: var(--font-display); font-size:20px; }
.cart-drawer__actions{ display:flex; flex-direction:column; gap:12px; margin-top:20px; }

.cart-line{ display:flex; gap:14px; padding:22px 0; border-bottom:1px solid var(--line); }
.cart-line__thumb{ width:56px; height:56px; background: var(--black-elev); border:1px solid var(--line); flex-shrink:0; display:flex; align-items:center; justify-content:center; color: var(--amber); }
.cart-line__thumb svg{ width:22px; height:22px; }
.cart-line__body{ flex-grow:1; min-width:0; }
.cart-line__body h4{ font-family: var(--font-body); font-weight:600; font-size:14.5px; color: var(--white-pure); }
.cart-line__addons{ font-size:12px; color: var(--gray-dim); margin-top:4px; font-family:var(--font-mono); }
.cart-line__meta{ display:flex; align-items:center; justify-content:space-between; margin-top:12px; }
.cart-line__price{ font-family: var(--font-mono); font-size:14px; color: var(--amber); }
.cart-line__remove{ background:transparent; border:none; color: var(--gray-dim); font-family: var(--font-mono); font-size:12px; text-transform:uppercase; cursor:pointer; padding:0; }
.cart-line__remove:hover{ color:#ff7a70; }
.cart-qty{ display:flex; align-items:center; border:1px solid var(--line); }
.cart-qty button{ width:26px; height:26px; background:transparent; border:none; color:var(--white); cursor:pointer; font-size:14px; }
.cart-qty button:hover{ color: var(--amber); }
.cart-qty span{ width:28px; text-align:center; font-family:var(--font-mono); font-size:13px; }

.cart-empty{ text-align:center; padding:60px 20px; }
.cart-empty svg{ width:48px; height:48px; color: var(--line); margin:0 auto 20px; }
.cart-empty p{ color: var(--gray); margin-bottom:24px; }

/* =========================================================================
   ANIMATIONS
   ========================================================================= */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform: translateY(0); }

/* =========================================================================
   MISC UTILITIES
   ========================================================================= */
.badge{ display:inline-block; font-family: var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; padding:6px 12px; border:1px solid var(--amber); color: var(--amber); }
.divider{ height:1px; background: var(--line); width:100%; }
.corner-tag{ position:absolute; font-family: var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: var(--gray-dim); }
.pill{ display:inline-flex; align-items:center; gap:8px; padding:8px 14px; border:1px solid var(--line); font-family:var(--font-mono); font-size:12px; color:var(--gray); background:transparent; cursor:pointer; transition: border-color .18s ease, color .18s ease; }
.pill:hover{ border-color: var(--amber); color: var(--white); }
.pill.is-active{ background: var(--amber); border-color: var(--amber); color: var(--black); }

.breadcrumb{ font-family: var(--font-mono); font-size:12.5px; color: var(--gray-dim); letter-spacing:.05em; text-transform:uppercase; margin-bottom:24px; }
.breadcrumb a:hover{ color: var(--amber); }
.breadcrumb span{ margin:0 8px; }

.page-hero{ padding: clamp(56px,9vw,110px) 0 clamp(40px,6vw,64px); border-bottom:1px solid var(--line); }

.legal-doc{ max-width: 780px; }
.legal-doc__updated{ font-family: var(--font-mono); font-size:12.5px; color: var(--gray-dim); margin-bottom:40px; }
.legal-doc h2{ font-family: var(--font-display); font-size:20px; color: var(--white-pure); margin:44px 0 14px; letter-spacing:.01em; }
.legal-doc h2:first-of-type{ margin-top:0; }
.legal-doc h3{ font-size:15px; font-weight:700; color: var(--white-pure); margin:22px 0 10px; }
.legal-doc p{ font-size:14.5px; line-height:1.8; color: var(--gray); margin-bottom:14px; }
.legal-doc ul{ margin:0 0 14px 20px; padding:0; list-style: disc; }
.legal-doc li{ font-size:14.5px; line-height:1.8; color: var(--gray); margin-bottom:8px; }
.legal-doc a{ color: var(--amber); }
.legal-doc strong{ color: var(--white-pure); }

table{ width:100%; border-collapse:collapse; }
table th, table td{ text-align:left; padding:14px 12px; border-bottom:1px solid var(--line); font-size:14px; }
table th{ font-family: var(--font-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.06em; color: var(--gray); }
.table-wrap{ overflow-x:auto; }

@media (max-width:760px){
  .site-header__row{ height:72px; }
  .mobile-drawer{ top:73px; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero{ padding: clamp(56px,9vw,96px) 0 clamp(64px,10vw,110px); position:relative; overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items:center; }
.hero-copy .eyebrow{ margin-bottom:24px; }
.hero-copy .h1{ margin-bottom:26px; }
.hero-copy .lede{ margin-bottom:40px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px; }
.hero-coord{ display:flex; gap:32px; flex-wrap:wrap; }
.hero-coord div{ font-family: var(--font-mono); font-size:11.5px; color: var(--gray-dim); letter-spacing:.08em; }
.hero-coord b{ display:block; color: var(--white); font-size:13px; margin-top:6px; letter-spacing:.02em; }

.hero-visual{ position:relative; }
.hero-panel{
  background: var(--black-soft); border:1px solid var(--line); position:relative;
  clip-path: polygon(18px 0,100% 0,100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
.hero-panel__bar{ display:flex; align-items:center; gap:8px; padding:16px 20px; border-bottom:1px solid var(--line); }
.hero-panel__bar .dot{ width:9px; height:9px; border-radius:50%; background: var(--line); }
.hero-panel__bar .dot--amber{ background: var(--amber); }
.hero-panel__url{ margin-left:12px; font-family: var(--font-mono); font-size:11px; color: var(--gray-dim); background: var(--black-elev); padding:5px 12px; flex-grow:1; }
.hero-panel__grid{ padding: 28px 26px 26px; }
.hero-panel__chart{ position:relative; height:150px; margin-bottom:24px; }
.hero-chart-line{ position:absolute; inset:0; width:100%; height:100%; }
.hero-bars{ position:absolute; inset:0; display:flex; align-items:flex-end; gap:10px; padding-top:20px; }
.hero-bars span{ flex:1; background: linear-gradient(180deg, var(--amber-bright), var(--amber-dim)); opacity:.85; }
.hero-row{ display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-top:1px solid var(--line-soft); }
.hero-row:first-child{ border-top:none; }
.hero-row__label{ font-family: var(--font-mono); font-size:11px; letter-spacing:.08em; color: var(--gray-dim); text-transform:uppercase; }
.hero-row__value{ font-family: var(--font-mono); font-size:13px; color: var(--white-pure); font-weight:600; }

.hero-badge{
  position:absolute; background: var(--black); border:1px solid var(--line); padding:10px 16px;
  animation: floaty 8s ease-in-out infinite;
}
.hero-badge--1{ top:-18px; left:-18px; }
.hero-badge--2{ width:56px; height:56px; bottom:-20px; right:36px; border:none; padding:0; animation-delay:.6s; clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px); }
.hero-badge--3{
  bottom:20px; left:-24px; font-family: var(--font-mono); font-size:10.5px; letter-spacing:.1em;
  text-transform:uppercase; color: var(--gray-dim); writing-mode: vertical-rl; padding:14px 8px; animation-delay:.3s;
}
@media (max-width: 1080px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ max-width:460px; margin:0 auto; order:-1; }
  .hero-badge--3{ display:none; }
}
@media (max-width: 560px){
  .hero-badge--1{ left:0; }
  .hero-badge--2{ display:none; }
}

/* =========================================================================
   FILTER PILLS / WORK PAGE
   ========================================================================= */
.filter-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:44px; }
.case-card[hidden]{ display:none; }

/* =========================================================================
   CART / CHECKOUT PAGES
   ========================================================================= */
.cart-page-grid{ display:grid; grid-template-columns: 1fr 380px; gap:40px; align-items:flex-start; }
.cart-page-list{ border-top:1px solid var(--line); }
.cart-page-line{ display:grid; grid-template-columns: 1fr auto auto auto; gap:24px; align-items:center; padding:26px 0; border-bottom:1px solid var(--line); }
.cart-page-line__info h3{ margin-bottom:6px; }
.cart-page-line__info p{ font-family: var(--font-mono); font-size:12px; color: var(--gray-dim); }
.summary-card{ background: var(--black-card); border:1px solid var(--line); padding:32px; position:sticky; top:104px; }
.summary-card h3{ margin-bottom:24px; }
.summary-row{ display:flex; justify-content:space-between; padding:12px 0; border-top:1px solid var(--line-soft); font-size:14.5px; color: var(--gray); }
.summary-row:first-child{ border-top:none; }
.summary-row--total{ border-top:1px solid var(--line); margin-top:8px; padding-top:20px; color: var(--white-pure); font-size:17px; }
.summary-row--total b{ color: var(--amber); font-family: var(--font-display); font-size:22px; }
@media (max-width: 900px){
  .cart-page-grid{ grid-template-columns:1fr; }
  .summary-card{ position:static; }
  .cart-page-line{ grid-template-columns:1fr; gap:14px; }
}

.addon-list{ border-top:1px solid var(--line); margin-top:8px; }
.addon-row{ display:flex; align-items:flex-start; gap:14px; padding:18px 0; border-bottom:1px solid var(--line); cursor:pointer; }
.addon-row input{ width:18px; height:18px; margin-top:3px; accent-color: var(--amber); flex-shrink:0; }
.addon-row__body{ flex-grow:1; }
.addon-row__body b{ color: var(--white-pure); font-size:14.5px; }
.addon-row__body p{ color: var(--gray-dim); font-size:13px; margin-top:4px; }
.addon-row__price{ font-family: var(--font-mono); color: var(--amber); font-size:14px; white-space:nowrap; }

.sticky-total-bar{
  position:sticky; bottom:0; background: var(--black-soft); border-top:1px solid var(--line);
  padding:20px 0; margin-top:40px;
}
.sticky-total-bar .wrap{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }

/* =========================================================================
   404
   ========================================================================= */
.error-page{ min-height:70vh; display:flex; align-items:center; justify-content:center; text-align:center; padding: 80px 0; }
.error-code{ font-family: var(--font-display); font-size: clamp(5rem,16vw,10rem); color: var(--amber); line-height:1; }

/* =========================================================================
   NEXT STEPS (confirmation)
   ========================================================================= */
.steps-row{ display:grid; grid-template-columns: repeat(4,1fr); gap:1px; background: var(--line); border:1px solid var(--line); margin: 40px 0; }
.steps-row .process-step{ padding:26px 22px; }
@media (max-width:760px){ .steps-row{ grid-template-columns: 1fr 1fr; } }
@media (max-width:480px){ .steps-row{ grid-template-columns: 1fr; } }

/* =========================================================================
   PRICING TABLE (service detail add-on total bar) already covered above
   ========================================================================= */
.detail-grid{ display:grid; grid-template-columns: 1fr 360px; gap: 56px; align-items:start; }
@media (max-width: 980px){ .detail-grid{ grid-template-columns:1fr; } }
.spec-list{ margin: 20px 0 0; }
.spec-list li{ display:flex; gap:12px; padding:10px 0; border-top:1px solid var(--line-soft); font-size:14.5px; color: var(--gray); align-items:flex-start; }
.spec-list li:first-child{ border-top:none; }
.spec-list svg{ width:16px; height:16px; color: var(--amber); flex-shrink:0; margin-top:3px; }
.numbered-list{ counter-reset: step; margin-top:20px; }
.numbered-list li{ counter-increment: step; display:flex; gap:16px; padding:18px 0; border-top:1px solid var(--line); }
.numbered-list li:first-child{ border-top:none; }
.numbered-list li::before{ content: counter(step, decimal-leading-zero); font-family: var(--font-mono); color: var(--amber); font-size:13px; flex-shrink:0; padding-top:2px; }
