/* ============================================================
   PROLIFIC TECH REPAIRS — Global Stylesheet
   Trinidad & Tobago | Phone repairs, buy-back, accessories
   ============================================================ */

/* ============ TOKENS ============ */
:root{
  --white:#FAFAF7;
  --panel:#F2F0E8;
  --ink:#14181F;
  --ink-soft:#4B5563;
  --line:#E2DFD3;
  --amber:#FFC530;
  --amber-ink:#14181F;
  --blue:#2451FF;
  --blue-ink:#F5F7FF;
  --mint:#17B890;
  --danger:#D64545;

  --display:'Space Grotesk', sans-serif;
  --body:'Inter', sans-serif;
  --mono:'JetBrains Mono', monospace;

  --container: 1200px;
  --radius: 2px;
  --dur: 0.6s;
}

/* ============ RESET ============ */
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}

body{
  font-family:var(--body);
  background:var(--white);
  color:var(--ink);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  -webkit-text-size-adjust:100%;
}

/* Prevent any descendant from forcing horizontal scroll.
   `overflow-x:hidden` on body catches most cases, but transformed
   elements (video, scale, GSAP) and large fixed-width children can
   still escape — `max-width:100%` keeps every box within its parent. */
img, video, iframe, svg, table, pre, code{ max-width:100%; }
h1, h2, h3, h4, p, li, a, span, button, td, th{ overflow-wrap:break-word; word-wrap:break-word; }

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

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}

/* ============ TYPE ============ */
h1,h2,h3,h4{
  font-family:var(--display);
  font-weight:700;
  line-height:1.05;
  letter-spacing:-0.01em;
}
h1{font-size:clamp(38px, 5vw, 64px);}
h2{font-size:clamp(28px,3.4vw,42px);}
h3{font-size:clamp(20px,2vw,24px);}
p{font-size:16px; line-height:1.6;}

.eyebrow{
  font-family:var(--mono);
  font-size:12px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--ink-soft);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:18px;
  height:2px;
  background:var(--amber);
  display:inline-block;
}

.eyebrow.center{justify-content:center;}
.eyebrow.bar-right::before{order:2; margin-left:auto;}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 26px;
  font-family:var(--body);
  font-weight:600;
  font-size:15px;
  border-radius:var(--radius);
  border:1.5px solid var(--ink);
  transition:transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space:nowrap;
  cursor:pointer;
  text-align:center;
}
.btn-primary{ background:var(--ink); color:var(--white); }
.btn-primary:hover{ background:var(--amber); color:var(--ink); border-color:var(--amber); transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--ink); }
.btn-ghost:hover{ background:var(--ink); color:var(--white); transform:translateY(-2px); }
.btn-blue{ border-color:var(--blue-ink); background:var(--blue-ink); color:var(--blue); }
.btn-blue:hover{ background:var(--amber); border-color:var(--amber); color:var(--ink); transform:translateY(-2px); }
.btn-amber{ background:var(--amber); color:var(--ink); border-color:var(--amber); }
.btn-amber:hover{ background:var(--ink); color:var(--amber); border-color:var(--ink); transform:translateY(-2px); }
.btn-sm{ padding:11px 18px; font-size:13.5px; }
.btn-lg{ padding:18px 32px; font-size:16px; }

/* ============ GSAP STATES ============ */
.gsap-char{
  display:inline-block;
  will-change:transform, opacity;
}
.gsap-eyebrow-bar{ transform-origin:left center; }

/* ============ NAV ============ */
header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(250,250,247,0.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:border-color 0.3s ease, padding 0.3s ease;
  padding:18px 0;
  padding-top:max(18px, env(safe-area-inset-top, 18px));
}
header.scrolled{ border-bottom-color:var(--line); padding:12px 0; padding-top:max(12px, env(safe-area-inset-top, 12px)); }
.nav-row{ display:flex; align-items:center; justify-content:space-between; gap:16px; }

.logo{ display:flex; align-items:center; }
.logo img{ display:block; height:38px; width:auto; }

.nav-links{ display:flex; align-items:center; gap:32px; }
.nav-links a{
  font-size:14px; font-weight:500; color:var(--ink-soft);
  position:relative; padding:4px 0;
  transition:color 0.2s ease;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1.5px; background:var(--ink);
  transition:width 0.25s ease;
}
.nav-links a:hover{ color:var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--ink); }

.nav-cta{ display:flex; align-items:center; gap:14px; }
.burger{
  display:none;
  width:44px; height:44px;
  position:relative;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  background:transparent;
  padding:0;
  cursor:pointer;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
  flex-shrink:0;
}
.burger span{
  display:block;
  width:22px; height:2px;
  background:var(--ink);
  border-radius:2px;
  position:absolute;
  left:11px;
  transition:transform 0.3s ease, opacity 0.3s ease;
}
.burger span:nth-child(1){ top:15px; }
.burger span:nth-child(2){ top:21px; }
.burger span:nth-child(3){ top:27px; }
.burger.open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

.mobile-menu{
  display:none;
  position:fixed; top:0; right:0; bottom:0;
  width:min(78%, 340px);
  background:var(--ink); color:var(--white);
  z-index:1100;
  padding:96px 28px 40px;
  padding-top:max(96px, env(safe-area-inset-top, 96px));
  padding-bottom:max(40px, env(safe-area-inset-bottom, 40px));
  padding-left:max(28px, env(safe-area-inset-left, 28px));
  padding-right:max(28px, env(safe-area-inset-right, 28px));
  transform:translateX(100%);
  transition:transform 0.4s cubic-bezier(.16,.84,.44,1);
  flex-direction:column;
  gap:22px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
}
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu a{ font-family:var(--display); font-size:22px; font-weight:600; }
.mobile-menu a.active{ color:var(--amber); }
.mobile-menu .btn{ margin-top:12px; }

.menu-scrim{
  display:block;
  position:fixed; inset:0;
  background:rgba(20,24,31,0.4);
  z-index:1050;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.3s ease;
}
.menu-scrim.open{ opacity:1; pointer-events:auto; }

/* ============ PAGE HERO (interior pages) ============ */
.page-hero{
  padding:160px 0 80px;
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg, var(--white) 0%, var(--panel) 100%);
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:32px 32px;
  opacity:0.4;
  pointer-events:none;
}
.page-hero .container{ position:relative; }
.page-hero h1{ margin-bottom:18px; max-width:820px; }
.page-hero p.lead{ font-size:18px; color:var(--ink-soft); max-width:640px; }
.page-hero .breadcrumb{ font-family:var(--mono); font-size:12px; color:var(--ink-soft); margin-bottom:18px; }
.page-hero .breadcrumb a{ color:var(--ink-soft); }
.page-hero .breadcrumb a:hover{ color:var(--ink); }
.page-hero .breadcrumb span{ color:var(--amber); margin:0 6px; }

.page-hero.hero-dark{
  background:var(--ink); color:var(--white);
}
.page-hero.hero-dark .eyebrow{ color:#9AA3B2; }
.page-hero.hero-dark .eyebrow::before{ background:var(--amber); }
.page-hero.hero-dark h1{ color:var(--white); }
.page-hero.hero-dark p.lead{ color:#C2C8D2; }
.page-hero.hero-dark::before{ opacity:0.05; }

/* ============ HERO (home) ============ */
.hero{
  padding:168px 0 100px;
  border-bottom:1px solid var(--line);
  position:relative;
}
.hero-grid{
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:64px; align-items:center;
}
.hero h1{
  font-size:clamp(38px, 5vw, 64px);
  margin-bottom:22px;
}
.hero h1 em{ font-style:normal; color:var(--amber); background:var(--ink); padding:0 8px; display:inline-block; }
.hero p{
  font-size:18px; color:var(--ink-soft); max-width:480px; margin-bottom:36px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px; }
.hero-trust{ display:flex; gap:28px; flex-wrap:wrap; }
.hero-trust div{ display:flex; flex-direction:column; }
.hero-trust b{ font-family:var(--mono); font-size:20px; }
.hero-trust span{ font-size:12.5px; color:var(--ink-soft); margin-top:2px; }

.timer-card{
  background:var(--ink); color:var(--white); padding:36px;
  position:relative; overflow:hidden; isolation:isolate;
}
.timer-video-wrap{
  position:absolute; inset:0; z-index:0; overflow:hidden;
  pointer-events:none;
}
.timer-video{
  position:absolute;
  top:0; left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  border:0;
  pointer-events:none;
}
.timer-video-fallback{
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:radial-gradient(ellipse at 30% 40%, #2A3140 0%, #14181F 55%, #0B0D12 100%);
  overflow:hidden;
}
.timer-video-fallback .fallback-grain{
  position:absolute; inset:-50%;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.01) 0 1px, transparent 1px 6px);
  animation: grainShift 8s linear infinite;
}
.timer-video-fallback .fallback-vignette{
  position:absolute; inset:0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.55) 100%);
}
@keyframes grainShift{
  0%{ transform:translate(0,0); }
  100%{ transform:translate(20px,-20px); }
}
.timer-card::after{
  content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background:
    linear-gradient(180deg, rgba(20,24,31,0.55) 0%, rgba(20,24,31,0.4) 50%, rgba(20,24,31,0.6) 100%),
    radial-gradient(ellipse at center, rgba(20,24,31,0.25) 0%, rgba(20,24,31,0.55) 100%),
    var(--timer-card-bg, none) center/cover no-repeat;
}
.timer-card::before{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:28px 28px;
  opacity:0.06; pointer-events:none; z-index:0;
}
.timer-top, .timer-ring-wrap, .timer-foot{ position:relative; z-index:1; }
.timer-top{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:28px; position:relative; }
.timer-top .tag{ font-family:var(--mono); font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:#9AA3B2; }
.timer-top .dot{ width:8px; height:8px; background:var(--mint); border-radius:50%; box-shadow:0 0 0 3px rgba(23,184,144,0.25); }

.timer-ring-wrap{ display:flex; justify-content:center; align-items:center; position:relative; margin-bottom:24px; }
.timer-ring-wrap svg{ transform:rotate(-90deg); }
.ring-bg{ fill:none; stroke:#252B36; stroke-width:6; }
.ring-fg{ fill:none; stroke:var(--amber); stroke-width:6; stroke-linecap:square; transition:stroke-dashoffset 1s linear; }
.timer-readout{
  position:absolute; display:flex; flex-direction:column; align-items:center;
}
.timer-readout .num{ font-family:var(--mono); font-size:38px; font-weight:600; letter-spacing:-0.02em; }
.timer-readout .lbl{ font-family:var(--mono); font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:#9AA3B2; margin-top:4px; }

.timer-foot{ display:flex; justify-content:space-between; border-top:1px solid #262C38; padding-top:18px; position:relative; }
.timer-foot div{ text-align:center; flex:1; }
.timer-foot b{ display:block; font-family:var(--mono); font-size:15px; color:var(--amber); }
.timer-foot span{ font-size:11px; color:#9AA3B2; }

/* ============ SECTION SCAFFOLD ============ */
section{ padding:100px 0; }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head h2{ font-size:clamp(28px,3.4vw,42px); margin-bottom:16px; }
.section-head p{ font-size:16.5px; color:var(--ink-soft); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-split{ display:flex; justify-content:space-between; align-items:flex-end; gap:32px; flex-wrap:wrap; }

/* ============ TRUST STRIP ============ */
.trust-strip{
  border-bottom:1px solid var(--line);
  padding:48px 0;
  background:var(--white);
}
.trust-strip .container{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
.trust-stat{ border-left:1px solid var(--line); padding-left:20px; }
.trust-stat b{ font-family:var(--mono); font-size:34px; display:block; }
.trust-stat span{ font-size:13px; color:var(--ink-soft); }

/* ============ SERVICES ============ */
.service-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
  background:var(--line); border:1px solid var(--line);
}
.service-card{
  background:var(--white); padding:32px;
  transition:background 0.25s ease;
  position:relative;
  display:flex;
  flex-direction:column;
}
.service-card:hover{ background:var(--panel); }
.service-icon{
  width:48px; height:48px;
  display:flex; align-items:center; justify-content:center;
  background:var(--ink); color:var(--amber);
  margin-bottom:20px;
  font-family:var(--mono); font-size:18px; font-weight:600;
}
.service-card h3{ font-size:19px; margin-bottom:8px; }
.service-card p{ font-size:14px; color:var(--ink-soft); margin-bottom:16px; flex:1; }
.service-price{ display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--line); padding-top:14px; }
.service-price b{ font-family:var(--mono); font-size:15px; }
.service-price span{ font-family:var(--mono); font-size:11px; color:var(--ink-soft); text-transform:uppercase; letter-spacing:0.08em; }

.service-link{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--mono); font-size:12px; font-weight:600;
  text-transform:uppercase; letter-spacing:0.1em;
  color:var(--ink); margin-top:18px;
  border-bottom:1px solid var(--ink); padding-bottom:2px;
  align-self:flex-start;
  transition:color 0.2s, border-color 0.2s;
}
.service-link:hover{ color:var(--blue); border-color:var(--blue); }
.service-link::after{ content:"→"; transition:transform 0.2s; }
.service-link:hover::after{ transform:translateX(3px); }

/* ============ SERVICE ICON SVG STYLES ============ */
.service-card-img{ width:100%; height:160px; object-fit:cover; margin-bottom:20px; filter:grayscale(15%); }

/* ============ PROCESS / 30-MIN TIMELINE ============ */
.process{ background:var(--ink); color:var(--white); }
.process .eyebrow{ color:#9AA3B2; }
.process .eyebrow::before{ background:var(--amber); }
.process .section-head h2{ color:var(--white); }
.process .section-head p{ color:#9AA3B2; }

.timeline{ position:relative; margin-top:60px; }
.timeline-track{
  position:relative; height:4px; background:#252B36; margin-bottom:0;
}
.timeline-fill{
  position:absolute; top:0; left:0; height:100%; width:0%; background:var(--amber);
  transition:width 1.6s cubic-bezier(.16,.84,.44,1);
}
.timeline-steps{
  display:grid; grid-template-columns:repeat(4,1fr); margin-top:0;
}
.timeline-step{
  padding:28px 24px 0; border-left:1px solid #252B36; position:relative;
}
.timeline-step:first-child{ border-left:none; padding-left:0; }
.timeline-step .t-range{ font-family:var(--mono); font-size:12px; color:var(--amber); margin-bottom:14px; display:block; }
.timeline-step h4{ font-size:18px; margin-bottom:10px; }
.timeline-step p{ font-size:14px; color:#9AA3B2; }
.timeline-marker{
  position:absolute; top:-6px; left:0; width:8px; height:8px; background:var(--ink); border:2px solid var(--amber); border-radius:50%;
}
.timeline-step:first-child .timeline-marker{ left:-1px; }

/* ============ SELL PHONE ============ */
.sell{ background:var(--blue-ink); }
.sell-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.sell .eyebrow{ color:var(--blue); }
.sell .eyebrow::before{ background:var(--blue); }
.sell h2{ font-size:clamp(28px,3.4vw,40px); margin-bottom:18px; color:var(--ink); }
.sell p.lead{ font-size:16.5px; color:var(--ink-soft); margin-bottom:32px; max-width:480px; }
.sell-steps{ display:flex; flex-direction:column; gap:0; margin-bottom:32px; }
.sell-step{ display:flex; gap:18px; padding:18px 0; border-bottom:1px solid #D8DEFF; }
.sell-step:last-child{ border-bottom:none; }
.sell-step .n{ font-family:var(--mono); font-size:13px; color:var(--blue); flex-shrink:0; width:24px; padding-top:2px; }
.sell-step h4{ font-size:16px; margin-bottom:4px; }
.sell-step p{ font-size:13.5px; color:var(--ink-soft); }
.sell-visual{ position:relative; }
.sell-visual img{ width:100%; height:460px; object-fit:cover; }
.price-tag{
  position:absolute; bottom:-1px; left:-1px; background:var(--ink); color:var(--white);
  padding:20px 24px; display:flex; flex-direction:column; gap:2px;
}
.price-tag span{ font-family:var(--mono); font-size:11px; color:#9AA3B2; text-transform:uppercase; letter-spacing:0.1em; }
.price-tag b{ font-family:var(--mono); font-size:24px; color:var(--amber); }

/* ============ GALLERY ============ */
.gallery-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
}
.gallery-grid img{ width:100%; height:220px; object-fit:cover; }
.gallery-grid a:nth-child(1){ grid-row:span 2; }
.gallery-grid a:nth-child(1) img{ height:100%; }

/* ============ TESTIMONIALS ============ */
.testimonial-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.testimonial-card{ background:var(--white); padding:32px; display:flex; flex-direction:column; gap:20px; }
.stars{ font-family:var(--mono); color:var(--amber); font-size:15px; letter-spacing:2px; }
.testimonial-card p{ font-size:15px; color:var(--ink); line-height:1.65; }
.testimonial-who{ display:flex; align-items:center; gap:12px; margin-top:auto; padding-top:16px; border-top:1px solid var(--line); }
.testimonial-who img{ width:38px; height:38px; object-fit:cover; border-radius:50%; }
.testimonial-who b{ display:block; font-size:13.5px; }
.testimonial-who span{ font-size:12px; color:var(--ink-soft); }

/* ============ SERVICE AREAS ============ */
.area-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.area-card{ background:var(--white); padding:28px; }
.area-card h3{ font-size:18px; margin-bottom:8px; }
.area-card p{ font-size:14px; color:var(--ink-soft); margin-bottom:12px; }
.area-card .turnaround{ font-family:var(--mono); font-size:11px; color:var(--amber); text-transform:uppercase; letter-spacing:0.08em; }
.area-card .tag{ display:inline-block; font-family:var(--mono); font-size:10px; letter-spacing:0.1em; text-transform:uppercase; color:var(--ink-soft); background:var(--panel); padding:4px 8px; margin-bottom:12px; }
.area-card.featured{ background:var(--ink); color:var(--white); }
.area-card.featured h3, .area-card.featured p{ color:var(--white); }
.area-card.featured p{ color:#9AA3B2; }
.area-card.featured .tag{ background:rgba(255,255,255,0.1); color:#9AA3B2; }

/* ============ SERVICE MODES (on-the-spot vs pickup) ============ */
.mode-grid{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line); }
.mode-card{ background:var(--white); padding:40px; position:relative; display:flex; flex-direction:column; }
.mode-card .mode-icon{ width:56px; height:56px; background:var(--ink); color:var(--amber); display:flex; align-items:center; justify-content:center; font-family:var(--display); font-size:22px; font-weight:600; margin-bottom:24px; }
.mode-card .mode-tag{ font-family:var(--mono); font-size:11px; text-transform:uppercase; letter-spacing:0.1em; color:var(--amber); margin-bottom:8px; }
.mode-card h3{ font-size:24px; margin-bottom:14px; }
.mode-card p{ font-size:15px; color:var(--ink-soft); margin-bottom:20px; flex:1; }
.mode-card ul{ list-style:none; margin:0 0 24px; }
.mode-card ul li{ display:flex; gap:12px; align-items:flex-start; padding:8px 0; font-size:14px; color:var(--ink); }
.mode-card ul li::before{ content:"✓"; color:var(--amber); font-weight:600; flex-shrink:0; }
.mode-card .mode-foot{ display:flex; gap:16px; align-items:center; padding-top:20px; border-top:1px solid var(--line); margin-top:auto; }
.mode-card .mode-price{ font-family:var(--mono); font-size:11px; text-transform:uppercase; letter-spacing:0.08em; color:var(--ink-soft); }
.mode-card .mode-price b{ display:block; font-size:18px; color:var(--ink); text-transform:none; letter-spacing:0; }
.mode-card.featured{ background:var(--ink); color:var(--white); }
.mode-card.featured h3, .mode-card.featured ul li, .mode-card.featured .mode-price b{ color:var(--white); }
.mode-card.featured p, .mode-card.featured .mode-price{ color:#9AA3B2; }
.mode-card.featured .mode-icon{ background:var(--amber); color:var(--ink); }
.mode-card.featured .mode-foot{ border-top-color:#252B36; }
.mode-card.featured ul li::before{ color:var(--amber); }

/* ============ FAQ ============ */
.faq-list{ max-width:820px; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; display:flex; justify-content:space-between; align-items:center;
  padding:24px 0; font-family:var(--display); font-size:17px; font-weight:600; text-align:left;
  color:var(--ink);
}
.faq-q .plus{ font-family:var(--mono); font-size:20px; transition:transform 0.3s ease; flex-shrink:0; margin-left:20px; color:var(--amber); }
.faq-item.open .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
.faq-a p{ padding-bottom:24px; font-size:15px; color:var(--ink-soft); max-width:680px; }

/* ============ FINAL CTA ============ */
.final-cta{ background:var(--ink); color:var(--white); text-align:center; padding:110px 0; }
.final-cta h2{ font-size:clamp(30px,4.6vw,52px); margin-bottom:20px; }
.final-cta h2 span{ color:var(--amber); }
.final-cta p{ color:#9AA3B2; font-size:17px; margin-bottom:40px; }
.final-cta .hero-actions{ justify-content:center; }
.final-cta .btn-ghost{ border-color:#464C58; color:var(--white); }
.final-cta .btn-ghost:hover{ background:var(--white); color:var(--ink); }

/* ============ FOOTER ============ */
footer{ padding:64px 0 32px; background:var(--white); border-top:1px solid var(--line); }
footer .logo img{ height:64px; margin-bottom:14px; }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:48px; border-bottom:1px solid var(--line); }
.footer-top p{ font-size:14px; color:var(--ink-soft); margin-top:14px; max-width:260px; }
.footer-col h5{ font-family:var(--mono); font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:16px; }
.footer-col a{ display:block; font-size:14px; padding:6px 0; color:var(--ink-soft); transition:color 0.2s ease; }
.footer-col a:hover{ color:var(--ink); }

.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:28px; flex-wrap:wrap; gap:12px; }
.footer-bottom span{ font-size:12.5px; color:var(--ink-soft); font-family:var(--mono); }

/* ============ PRICING TABLE ============ */
.pricing-table{
  border:1px solid var(--line);
  background:var(--white);
  width:100%;
  border-collapse:collapse;
}
.pricing-table th, .pricing-table td{
  padding:18px 20px;
  text-align:left;
  border-bottom:1px solid var(--line);
  font-size:14px;
}
.pricing-table th{
  background:var(--panel);
  font-family:var(--mono);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--ink-soft);
  font-weight:600;
}
.pricing-table tr:last-child td{ border-bottom:none; }
.pricing-table td.price{ font-family:var(--mono); font-weight:600; color:var(--ink); }
.pricing-table td.duration{ font-family:var(--mono); color:var(--ink-soft); }
.pricing-table tr:hover{ background:var(--panel); }

/* ============ BRAND GRID (logos) ============ */
.brand-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.brand-cell{
  background:var(--white);
  padding:32px 16px;
  text-align:center;
  font-family:var(--display);
  font-size:18px;
  font-weight:600;
  color:var(--ink-soft);
  transition:background 0.2s, color 0.2s;
}
.brand-cell:hover{ background:var(--ink); color:var(--white); }

/* ============ STEPS / NUMBERED LIST (general) ============ */
.steps-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.step-card{ padding:32px; background:var(--white); border:1px solid var(--line); position:relative; }
.step-card .n{
  font-family:var(--mono);
  font-size:32px;
  color:var(--amber);
  font-weight:600;
  display:block;
  margin-bottom:18px;
  line-height:1;
}
.step-card h3{ font-size:18px; margin-bottom:10px; }
.step-card p{ font-size:14px; color:var(--ink-soft); }

/* ============ TWO-COLUMN FEATURE ============ */
.feature-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.feature-grid.reverse{ direction:rtl; }
.feature-grid.reverse > *{ direction:ltr; }
.feature-grid h2{ margin-bottom:18px; }
.feature-grid p.lead{ font-size:16.5px; color:var(--ink-soft); margin-bottom:28px; }
.feature-grid ul.bullets{ margin:24px 0 32px; }
.feature-grid ul.bullets li{
  display:flex; gap:14px; padding:12px 0; border-bottom:1px solid var(--line);
  font-size:14.5px;
}
.feature-grid ul.bullets li:last-child{ border-bottom:none; }
.feature-grid ul.bullets .check{
  width:22px; height:22px;
  background:var(--ink); color:var(--amber);
  display:inline-flex; align-items:center; justify-content:center;
  font-family:var(--mono); font-size:11px; font-weight:700;
  flex-shrink:0;
}
.feature-grid .visual{
  background:var(--ink);
  aspect-ratio:4/5;
  position:relative;
  overflow:hidden;
}
.feature-grid .visual img{ width:100%; height:100%; object-fit:cover; opacity:0.85; }

/* ============ CONTACT ============ */
.contact-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:64px; }
.contact-info{ display:flex; flex-direction:column; gap:28px; }
.contact-info .info-block{ display:flex; gap:18px; }
.contact-info .info-block .icon{
  width:48px; height:48px; background:var(--ink); color:var(--amber);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--mono); font-size:18px; flex-shrink:0;
}
.contact-info .info-block h4{ font-size:16px; margin-bottom:4px; }
.contact-info .info-block p, .contact-info .info-block a{ font-size:14px; color:var(--ink-soft); }
.contact-info .info-block a:hover{ color:var(--ink); }

.contact-form{
  background:var(--panel);
  padding:40px;
  border:1px solid var(--line);
}
.form-row{ margin-bottom:18px; }
.form-row label{
  display:block; font-family:var(--mono); font-size:11px; text-transform:uppercase;
  letter-spacing:0.1em; color:var(--ink-soft); margin-bottom:8px;
}
.form-row input, .form-row select, .form-row textarea{
  width:100%; padding:12px 14px;
  border:1.5px solid var(--line);
  background:var(--white);
  font-family:var(--body); font-size:14px; color:var(--ink);
  transition:border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:none; border-color:var(--ink);
}
.form-row textarea{ min-height:120px; resize:vertical; }
.form-row .help{ font-size:12px; color:var(--ink-soft); margin-top:6px; }
.form-success{
  background:var(--mint); color:var(--white);
  padding:16px 20px;
  font-size:14px;
  font-weight:500;
  display:none;
  margin-bottom:18px;
}
.form-success.show{ display:block; }

/* ============ MAP PLACEHOLDER ============ */
.map-embed{
  width:100%; aspect-ratio:16/9;
  background:linear-gradient(135deg, #D8DEFF 0%, #F5F7FF 100%);
  position:relative;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--mono); font-size:12px; color:var(--ink-soft);
  text-transform:uppercase; letter-spacing:0.1em;
}

/* ============ ABOUT — STAT BAND ============ */
.about-stats{
  background:var(--ink); color:var(--white);
  padding:64px 0;
}
.about-stats .container{ display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
.about-stats .stat b{
  display:block; font-family:var(--mono); font-size:36px; color:var(--amber); font-weight:600;
}
.about-stats .stat span{ font-size:13px; color:#9AA3B2; }

/* ============ VALUES LIST ============ */
.values-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.value-card{
  padding:32px; background:var(--white);
  border-top:3px solid var(--ink);
}
.value-card .num{
  font-family:var(--mono); font-size:13px; color:var(--amber);
  margin-bottom:14px; display:block;
}
.value-card h3{ font-size:18px; margin-bottom:10px; }
.value-card p{ font-size:14px; color:var(--ink-soft); }

/* ============ CTA BAND ============ */
.cta-band{
  background:var(--amber); color:var(--ink);
  padding:64px 0;
}
.cta-band .container{
  display:flex; justify-content:space-between; align-items:center; gap:32px; flex-wrap:wrap;
}
.cta-band h2{ font-size:clamp(24px,3vw,36px); margin-bottom:8px; }
.cta-band p{ font-size:15px; }
.cta-band .actions{ display:flex; gap:12px; flex-wrap:wrap; }
.cta-band .btn-ink{ background:var(--ink); color:var(--white); border-color:var(--ink); }
.cta-band .btn-ink:hover{ background:var(--white); color:var(--ink); border-color:var(--ink); }

/* ============ RESPONSIVE ============ */
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; gap:56px; }
  .service-grid{ grid-template-columns:repeat(2,1fr); }
  .trust-strip .container{ grid-template-columns:repeat(2,1fr); row-gap:28px; }
  .sell-grid{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid a:nth-child(1){ grid-row:span 1; }
  .gallery-grid a:nth-child(1) img{ height:220px; }
  .testimonial-grid{ grid-template-columns:1fr; }
  .area-grid{ grid-template-columns:repeat(2,1fr); }
  .mode-grid{ grid-template-columns:1fr; }
  .timeline-steps{ grid-template-columns:repeat(2,1fr); row-gap:32px; }
  .timeline-step:nth-child(3){ border-left:none; }
  .footer-top{ grid-template-columns:1fr 1fr; row-gap:36px; }
  .feature-grid{ grid-template-columns:1fr; gap:40px; }
  .feature-grid.reverse{ direction:ltr; }
  .contact-grid{ grid-template-columns:1fr; gap:40px; }
  .steps-grid{ grid-template-columns:1fr; }
  .values-grid{ grid-template-columns:1fr; }
  .brand-grid{ grid-template-columns:repeat(3,1fr); }
  .about-stats .container{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:680px){
  .nav-links{ display:none; }
  .nav-cta .btn-ghost{ display:none; }
  .burger{ display:flex; }
  .mobile-menu{ display:flex; }
  /* .menu-scrim is hidden by default via opacity:0 + pointer-events:none;
     only becomes interactive when .open is added. NO display override here. */

  /* Layout */
  .hero{ padding:130px 0 70px; }
  .hero-trust{ gap:22px; }
  .hero h1{ font-size:clamp(32px, 9vw, 42px); }
  .service-grid{ grid-template-columns:1fr; }
  .timeline-steps{ grid-template-columns:1fr; }
  .timeline-step{ border-left:none; padding-left:0; padding-top:24px; border-top:1px solid #252B36; }
  .timeline-step:first-child{ border-top:none; }
  .timeline-marker{ display:none; }
  .gallery-grid{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr; }
  .area-grid{ grid-template-columns:1fr; }
  section{ padding:72px 0; }
  .container{ padding:0 20px; }

  /* Pricing table — wrapper handles horizontal scroll.
     The .duration cell stays visible inside the scroll area. */
  .table-wrap{ border:none; }
  .table-wrap .pricing-table th,
  .table-wrap .pricing-table td{ padding:12px 14px; font-size:13px; }

  /* Forms — 16px inputs prevent iOS auto-zoom on focus */
  .form-row input, .form-row select, .form-row textarea{ font-size:16px; }
  .contact-form{ padding:28px 20px; }

  /* CTA band stacks actions below the heading */
  .cta-band .container{ flex-direction:column; align-items:flex-start; }
  .cta-band .actions{ width:100%; }
  .cta-band .actions .btn{ flex:1; min-width:0; }

  /* Mode card foot stacks price + button vertically */
  .mode-card .mode-foot{ flex-direction:column; align-items:flex-start; gap:14px; }
  .mode-card .mode-foot .btn{ width:100%; }

  /* Trust strip — drop the left border on every-other cell in the 2-col grid */
  .trust-strip .container{ grid-template-columns:repeat(2,1fr); row-gap:28px; column-gap:16px; }
  .trust-stat{ border-left:none; padding-left:0; }

  /* Stats bands stack on mobile */
  .about-stats .container{ grid-template-columns:1fr; gap:24px; }
  .brand-grid{ grid-template-columns:repeat(2,1fr); }
  .page-hero{ padding:130px 0 56px; }
  .page-hero h1{ font-size:clamp(28px, 8vw, 38px); }

  /* Service card image — slightly shorter on mobile so the grid isn't top-heavy */
  .service-card-img{ height:140px; }

  /* Eyebrow — let it wrap naturally without the bar separating awkwardly */
  .eyebrow{ flex-wrap:wrap; }
  .eyebrow::before{ flex-shrink:0; }

  /* Trust-strip + cta-band p tag text wraps better */
  .hero-trust div{ min-width:0; }
}

/* ============ ULTRA-NARROW (≤420px) ============ */
@media (max-width:420px){
  .container{ padding:0 16px; }
  .hero{ padding:120px 0 56px; }
  .hero h1{ font-size:30px; }
  .hero p{ font-size:16px; }
  .hero-trust{ flex-direction:column; align-items:flex-start; gap:14px; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-actions .btn{ width:100%; }
  .section-head h2{ font-size:24px; }
  .page-hero{ padding:120px 0 48px; }
  .page-hero h1{ font-size:26px; }
  .page-hero p.lead{ font-size:16px; }
  .timer-card{ padding:24px; }
  .timer-readout .num{ font-size:30px; }
  .btn{ padding:14px 18px; font-size:14px; }
  .btn-sm{ padding:10px 14px; font-size:13px; }
  .contact-form{ padding:24px 18px; }
  .final-cta{ padding:80px 0; }
  .final-cta h2{ font-size:28px; }
  .mode-card{ padding:28px 24px; }
  .price-tag{ padding:16px 18px; }
  .price-tag b{ font-size:20px; }
  .nav-row{ gap:8px; }
  .nav-cta .btn{ padding:11px 16px; font-size:13px; }
  .logo img{ height:32px; }
  .eyebrow{ font-size:11px; }
}

/* ============ UTILITIES ============ */
.text-center{ text-align:center; }
.mt-32{ margin-top:32px; }
.mt-48{ margin-top:48px; }
.mt-64{ margin-top:64px; }
.mb-0{ margin-bottom:0; }
.full-bleed{ width:100vw; margin-left:calc(50% - 50vw); }

/* Horizontally scrollable wrapper for wide tables on narrow screens.
   Tables inside get a min-width so they keep their desktop layout,
   but the wrapper lets the user swipe horizontally to see all columns. */
.table-wrap{
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border:1px solid var(--line);
  background:var(--white);
}
.table-wrap .pricing-table{
  border:none;
  min-width:560px;
  width:100%;
}
.table-wrap::-webkit-scrollbar{ height:6px; }
.table-wrap::-webkit-scrollbar-thumb{ background:var(--line); border-radius:3px; }
