/* ═══════════════════════════════════════════════
   SEE U Removing — Premium 2025
   Mobile-first · 3 breakpoints: 600 / 1024
═══════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #080808;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }

/* ── TOKENS ── */
:root {
  --red:       #E8000A;
  --red-dim:   rgba(232,0,10,0.12);
  --red-dark:  #B80008;
  --sans:      'Inter', system-ui, sans-serif;

  --dim:  rgba(255,255,255,0.08);
  --dim2: rgba(255,255,255,0.14);
  --mid:  rgba(255,255,255,0.62);
  --soft: rgba(255,255,255,0.72);

  /* Consistent spacing — NO jumps */
  --pad:        clamp(20px, 4.5vw, 52px);
  --section-py: clamp(64px, 8vw, 112px);
  --radius:     8px;
  --radius-lg:  16px;

  /* Type scale — smooth clamp, no jumps between breakpoints */
  --fs-xs:   clamp(11px,  1.1vw, 12px);
  --fs-sm:   clamp(13px,  1.4vw, 15px);
  --fs-base: clamp(14px,  1.6vw, 16px);
  --fs-md:   clamp(15px,  1.8vw, 18px);
  --fs-h3:   clamp(1.1rem, 2vw, 1.45rem);
  --fs-h2:   clamp(1.8rem, 4vw, 3.4rem);
  --fs-h1:   clamp(2.4rem, 6.5vw, 5.4rem);
}

/* ── ANIMATIONS ── */
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,230,118,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(0,230,118,0); }
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes typing {
  0%,80%,100% { transform: translateY(0); opacity:.4; }
  40%          { transform: translateY(-5px); opacity:1; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(1) translateY(100%); transform-origin: top; opacity:0; }
}

/* ── REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ── GLASS ── */
.glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dim2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--sans); font-weight: 600; letter-spacing: .02em;
  border-radius: var(--radius); cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--red); color: #fff;
  border: 2px solid var(--red);
  font-size: var(--fs-sm); padding: 14px 28px;
}
.btn--primary:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  box-shadow: 0 8px 32px rgba(232,0,10,.35);
}
.btn--outline {
  background: transparent; color: #fff;
  border: 1px solid var(--dim2);
  font-size: var(--fs-sm); padding: 14px 28px;
}
.btn--outline:hover { border-color: rgba(255,255,255,.5); }
.btn--ghost {
  background: transparent; color: rgba(255,255,255,.75);
  border: 1px solid transparent;
  font-size: var(--fs-sm); padding: 14px 28px;
}
.btn--ghost:hover { color: #fff; border-color: var(--dim2); }

.btn--lg { font-size: var(--fs-base); padding: 17px 36px; min-height: 56px; }
.btn--sm { font-size: var(--fs-xs); padding: 10px 20px; }
.btn--full { width: 100%; }

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: background .35s, border-color .35s, padding .35s;
}
.header.scrolled {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dim);
  padding-top: 13px; padding-bottom: 13px;
}
.logo {
  font-family: var(--sans); font-size: clamp(17px,2vw,22px);
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; line-height: 1;
  display: flex; align-items: center; gap: 2px;
  flex-shrink: 0;
}
.logo em { color: var(--red); font-style: normal; }
.footer-sub { font-size: .6em; font-weight: 400; letter-spacing: .1em; opacity: .5; align-self: flex-end; margin-bottom: 1px; }

.nav { display: none; }
.nav-link {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: .03em; color: var(--mid);
  transition: color .2s; padding: 4px 0; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transition: transform .25s;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-cta { display: none; }

/* Burger */
.burger {
  display: flex; flex-direction: column; gap: 5px; padding: 4px; width: 32px;
}
.burger span {
  display: block; height: 1.5px; background: #fff;
  transition: transform .3s, opacity .3s, width .3s;
}
.burger span:last-child { width: 70%; }

/* Drawer */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 800;
  width: min(300px, 85vw);
  background: #0e0e0e; border-left: 1px solid var(--dim);
  padding: 90px 32px 40px;
  display: flex; flex-direction: column; gap: 40px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.drawer.open { transform: translateX(0); }
.drawer-nav { display: flex; flex-direction: column; gap: 6px; }
.drawer-link {
  font-family: var(--sans); font-size: 2rem; font-weight: 600;
  color: rgba(255,255,255,.7); padding: 4px 0;
  transition: color .2s;
}
.drawer-link:hover { color: #fff; }
.drawer-overlay {
  position: fixed; inset: 0; z-index: 799;
  background: rgba(0,0,0,.6); opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ═══════════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════════ */
.section { padding: var(--section-py) 0; overflow: hidden; }
.section--dark { background: #0c0c0c; }

.section-eyebrow {
  font-family: var(--sans); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.section-eyebrow--light { color: rgba(255,255,255,.45); }

.section-title {
  font-family: var(--sans); font-size: var(--fs-h2);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -.025em; color: #fff;
  margin-bottom: clamp(20px, 3vw, 40px);
}
.section-title em { font-style: italic; color: var(--red); }

.section-sub {
  font-family: var(--sans); font-size: var(--fs-base); line-height: 1.75;
  color: var(--mid); max-width: 560px;
  margin-bottom: clamp(28px, 4vw, 52px);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  max-height: 860px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
}
.hero-grain {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,.75) 28%, rgba(8,8,8,.1) 60%, transparent 100%),
    linear-gradient(to right, rgba(8,8,8,.7) 0%, transparent 60%);
}

.hero-pill {
  position: absolute;
  top: clamp(78px, 10vh, 108px);
  left: var(--pad);
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: var(--fs-xs);
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 16px; border-radius: 40px; z-index: 2;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #00E676; flex-shrink: 0;
  animation: pulseDot 2s infinite;
}

.hero-body {
  position: relative; z-index: 2;
  padding: 0 var(--pad) clamp(48px, 8vh, 80px);
  max-width: 720px;
}
.hero-body h1 {
  font-family: var(--sans); font-size: var(--fs-h1);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -.03em; color: #fff;
  margin-bottom: clamp(14px, 2vw, 24px);
}
.hero-body h1 em { font-style: italic; color: var(--red); }
.hero-sub {
  font-family: var(--sans); font-size: var(--fs-base); line-height: 1.72;
  color: rgba(255,255,255,.72); max-width: 420px;
  margin-bottom: clamp(22px, 3vw, 34px);
}
.hero-actions {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: clamp(14px, 2vw, 22px);
}
.hero-note {
  font-family: var(--sans); font-size: var(--fs-xs);
  color: var(--mid); letter-spacing: .04em;
}

.scroll-hint {
  position: absolute; bottom: clamp(24px, 5vh, 40px); right: var(--pad);
  display: none;
  flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.scroll-hint span {
  font-family: var(--sans); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--mid); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 48px; background: var(--mid);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════ */
.trust-bar {
  border-top: 1px solid var(--dim);
  border-bottom: 1px solid var(--dim);
  background: #0c0c0c; overflow: hidden;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 16px var(--pad);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: var(--fs-xs); font-weight: 500;
  color: var(--mid); letter-spacing: .04em;
  padding: 6px 16px;
}
.trust-item svg { color: var(--red); flex-shrink: 0; }
.trust-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--dim2); flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.service-card {
  position: relative; overflow: hidden;
  padding: clamp(24px, 3.5vw, 44px) clamp(20px, 3vw, 36px);
  border: 1px solid var(--dim); border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.02) 0%, transparent 100%);
  transition: border-color .3s, background .3s; cursor: default;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(232,0,10,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { border-color: var(--dim2); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--red-dim); border: 1px solid rgba(232,0,10,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 18px; flex-shrink: 0;
}
.service-num {
  font-family: var(--sans); font-size: 2.8rem; font-weight: 700;
  color: var(--dim2); line-height: 1;
  position: absolute; top: 18px; right: 22px;
  letter-spacing: -.03em;
}
.service-card h3 {
  font-family: var(--sans); font-size: var(--fs-h3);
  font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.25;
}
.service-card p {
  font-family: var(--sans); font-size: var(--fs-sm);
  color: var(--mid); line-height: 1.72;
}
.service-tag {
  display: inline-flex; margin-top: 16px;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); background: var(--red-dim);
  border: 1px solid rgba(232,0,10,.15);
  padding: 4px 10px; border-radius: 4px;
}

/* ═══════════════════════════════════════════════
   TECHNOLOGY
═══════════════════════════════════════════════ */
.tech-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Image side */
.tech-visual {
  position: relative; overflow: hidden;
  height: 300px;
  flex-shrink: 0;
}
.tech-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(.72);
}
/* Mobile: fade bottom */
.tech-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, #0c0c0c 100%);
  pointer-events: none;
}

.tech-badge-float {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  padding: 12px 18px; border-radius: var(--radius);
  animation: floatBadge 4s ease-in-out infinite;
}
.tech-badge-title {
  display: block; font-family: var(--sans); font-size: 1rem;
  font-weight: 700; color: #fff; line-height: 1.25;
}
.tech-badge-sub {
  display: block; font-family: var(--sans); font-size: 11px;
  color: var(--mid); margin-top: 3px; letter-spacing: .06em;
}

/* Text side */
.tech-content {
  padding: clamp(28px, 4vw, 52px) 0 clamp(28px, 4vw, 52px);
}
.tech-desc {
  font-family: var(--sans); font-size: var(--fs-base); line-height: 1.78;
  color: var(--mid); margin-bottom: clamp(24px, 3.5vw, 40px);
  max-width: 100%;
}

/* Compare */
.compare {
  display: flex; border: 1px solid var(--dim);
  border-radius: var(--radius); overflow: hidden;
  margin-bottom: clamp(24px, 3.5vw, 40px);
}
.compare-col { flex: 1; padding: clamp(16px, 2.5vw, 26px) clamp(14px, 2vw, 22px); }
.compare-col--old { background: rgba(255,255,255,.02); border-right: 1px solid var(--dim); }
.compare-col--new { background: rgba(232,0,10,.04); }
.compare-head {
  font-family: var(--sans); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: clamp(10px, 1.5vw, 18px);
}
.compare-col--old .compare-head { color: var(--mid); }
.compare-col--new .compare-head { color: var(--red); }
.compare li {
  display: flex; gap: 8px; align-items: flex-start;
  font-family: var(--sans); font-size: var(--fs-sm);
  margin-bottom: clamp(7px, 1vw, 12px); line-height: 1.5;
}
.compare-col--old li { color: var(--mid); text-decoration: line-through; text-decoration-color: rgba(255,255,255,.15); }
.compare-col--new li { color: #fff; }
.x { color: var(--mid); flex-shrink: 0; font-size: 11px; margin-top: 2px; }
.ck { color: var(--red); flex-shrink: 0; font-size: 11px; font-weight: 700; margin-top: 2px; }

.tech-feats {
  border-top: 1px solid var(--dim);
  padding-top: clamp(20px, 3vw, 32px);
  display: flex; flex-direction: column; gap: clamp(10px, 1.4vw, 16px);
}
.tech-feat {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: var(--fs-sm);
  color: rgba(255,255,255,.85); line-height: 1.5;
}
.feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   RESULTS / CAROUSEL
═══════════════════════════════════════════════ */
.results-section { padding-left: 0; padding-right: 0; }

.carousel-outer { position: relative; }
.carousel-controls {
  display: flex; justify-content: flex-end; gap: 8px;
  padding: 0 var(--pad) 18px;
}
.carr-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--dim); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, opacity .3s;
  flex-shrink: 0;
}
.carr-btn:hover { background: var(--red); border-color: var(--red); }

.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex; gap: 16px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  cursor: grab;
  padding: 0 var(--pad) 4px;
  -webkit-user-select: none; user-select: none;
  touch-action: pan-y;
}
.carousel-track:active { cursor: grabbing; }

.res-card {
  flex: 0 0 calc(100vw - var(--pad) * 2);
  border-radius: var(--radius-lg); overflow: hidden;
  background: #111; border: 1px solid var(--dim);
  transition: border-color .3s;
}
.res-card:hover { border-color: var(--dim2); }

/* Portrait image container — matches before/after photo orientation */
.res-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.res-img img {
  width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
  transition: transform .5s ease;
}
.res-card:hover .res-img img { transform: scale(1.04); }

.res-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.8); padding: 5px 12px;
  border-radius: 20px; border: 1px solid var(--dim);
}
.res-info {
  padding: clamp(12px, 1.8vw, 18px);
  display: flex; align-items: center; gap: 10px;
}
.res-tag {
  background: var(--red); color: #fff;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  white-space: nowrap; flex-shrink: 0;
}
.res-info p {
  font-family: var(--sans); font-size: var(--fs-sm);
  color: var(--mid); line-height: 1.45;
}

/* Dots — visible on ALL breakpoints */
.carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 24px; padding: 0 var(--pad);
}
.cdot {
  height: 5px; border-radius: 3px; background: var(--dim);
  border: none; cursor: pointer; padding: 0;
  transition: width .25s, background .25s;
  width: 5px;
}
.cdot.active { background: var(--red); width: 22px; }

.ig-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: var(--fs-sm); font-weight: 500;
  color: rgba(255,255,255,.7); border: 1px solid var(--dim);
  padding: 14px 28px; border-radius: var(--radius);
  transition: color .2s, border-color .2s;
}
.ig-btn:hover { color: #fff; border-color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════════
   FAQ + CTA — MERGED SECTION
═══════════════════════════════════════════════ */
.faq-cta-section {
  padding: var(--section-py) 0;
  overflow: hidden;
}

/* Mobile: stack vertically */
.faq-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 7vw, 72px);
}

/* ── CTA LEFT ── */
.faq-cta-left {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dim);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Background image layer */
.cta-inner-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-inner-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  filter: brightness(.28);
}

/* Dark overlay */
.cta-inner-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(8,8,8,.88) 0%,
    rgba(8,8,8,.55) 60%,
    rgba(8,8,8,.72) 100%
  );
}

/* Content on top */
.cta-inner-body {
  position: relative; z-index: 2;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3.5vw, 44px);
}
.cta-inner-body h2 {
  font-family: var(--sans); font-size: var(--fs-h2);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -.025em; color: #fff;
  margin-bottom: 14px;
}
.cta-inner-body h2 em { font-style: italic; color: var(--red); }
.cta-inner-body p {
  font-family: var(--sans); font-size: var(--fs-base); line-height: 1.72;
  color: rgba(255,255,255,.72); max-width: 380px;
  margin-bottom: 28px;
}
.cta-inner-btns {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 18px;
}
.cta-inner-meta {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-family: var(--sans); font-size: var(--fs-xs);
  color: rgba(255,255,255,.45);
}
.dot-sep { opacity: .4; }

/* ── FAQ RIGHT ── */
.faq-cta-right {}

.faq-list {}
.faq-item { border-bottom: 1px solid var(--dim); }
.faq-item:first-child { border-top: 1px solid var(--dim); }

.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: clamp(16px, 2.5vw, 24px) 0;
  font-family: var(--sans); font-size: var(--fs-base);
  font-weight: 500; color: #fff; text-align: left;
  background: none; border: none; cursor: pointer;
  line-height: 1.45;
  -webkit-tap-highlight-color: transparent;
}
.faq-ico {
  flex-shrink: 0; color: var(--mid);
  transition: transform .35s, color .25s;
}
.faq-item.open .faq-ico { transform: rotate(180deg); color: var(--red); }

.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.faq-body p {
  font-family: var(--sans); font-size: var(--fs-sm); line-height: 1.82;
  color: rgba(255,255,255,.58); padding-bottom: 22px; max-width: 600px;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--dim); padding: clamp(32px,5vw,52px) 0 0; }
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 20px;
  padding-bottom: clamp(24px, 4vw, 36px);
  border-bottom: 1px solid var(--dim);
}
.footer-links {
  display: flex; flex-wrap: wrap; gap: 6px 20px;
}
.footer-links a {
  font-family: var(--sans); font-size: var(--fs-xs);
  color: var(--mid); transition: color .2s;
}
.footer-links a:hover { color: #fff; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: var(--fs-xs);
  color: var(--mid); transition: color .2s;
}
.social-link:hover { color: #fff; }
.footer-bottom {
  padding: 16px 0; text-align: center;
  font-family: var(--sans); font-size: 11px;
  color: rgba(255,255,255,.2);
}

/* ═══════════════════════════════════════════════
   STICKY BAR
═══════════════════════════════════════════════ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--dim);
  padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  display: flex;
}
.sticky-bar.show { transform: translateY(0); }

/* ═══════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 88px; left: 50%; z-index: 2000;
  transform: translateX(-50%) translateY(16px);
  background: #141414; border: 1px solid var(--dim2);
  border-radius: 40px; padding: 10px 18px 10px 12px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s, transform .35s;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-ava {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.toast-text strong {
  display: block; font-family: var(--sans); font-size: 12px;
  font-weight: 600; color: #fff; margin-bottom: 2px;
}
.toast-typing { display: flex; gap: 3px; align-items: center; }
.toast-typing span {
  width: 5px; height: 5px; border-radius: 50%; background: var(--mid);
  display: inline-block; animation: typing 1.2s ease-in-out infinite;
}
.toast-typing span:nth-child(2) { animation-delay: .2s; }
.toast-typing span:nth-child(3) { animation-delay: .4s; }

/* ═══════════════════════════════════════════════
   SAFE AREA
═══════════════════════════════════════════════ */
.header {
  padding-left: max(var(--pad), env(safe-area-inset-left));
  padding-right: max(var(--pad), env(safe-area-inset-right));
}

/* ═══════════════════════════════════════════════
   TABLET — ≥600px
═══════════════════════════════════════════════ */
@media (min-width: 600px) {
  .hero-actions { flex-direction: row; }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* Tech: side-by-side */
  .tech-wrap { flex-direction: row; align-items: stretch; }
  .tech-visual {
    flex: 0 0 44%;
    height: auto;
    min-height: 360px;
  }
  /* Tablet: fade right */
  .tech-visual::after {
    background: linear-gradient(to right, transparent 55%, #0c0c0c 100%);
  }
  .tech-content {
    padding: clamp(28px, 4vw, 52px) clamp(24px, 3vw, 44px);
  }

  .res-card { flex: 0 0 calc(50% - 16px); }

  /* FAQ+CTA 2-col from tablet */
  .faq-cta-wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(28px, 4vw, 56px);
  }
  .faq-cta-left {
    flex: 0 0 44%;
    min-height: 480px;
  }
  .faq-cta-right { flex: 1; min-width: 0; }
}

/* ═══════════════════════════════════════════════
   DESKTOP — ≥1024px
═══════════════════════════════════════════════ */
@media (min-width: 1024px) {
  /* Header */
  .nav {
    display: flex; align-items: center; gap: 32px;
    position: absolute; left: 50%; transform: translateX(-50%);
  }
  .header-cta { display: inline-flex; }
  .burger { display: none; }

  /* Hero — 55/45 grid */
  .hero {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 55% 45%;
    height: 100svh;
    min-height: 560px;
    max-height: 860px;
    align-items: stretch;
    justify-content: unset;
    flex-direction: unset;
  }
  .hero-media {
    grid-column: 2; grid-row: 1;
    position: relative; overflow: hidden;
  }
  .hero-media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center center;
  }
  .hero-grain { display: none; }
  .hero-overlay {
    grid-column: 1 / -1; grid-row: 1;
    position: relative;
    background: linear-gradient(
      to right,
      rgba(8,8,8,1) 0%,
      rgba(8,8,8,.88) 42%,
      rgba(8,8,8,.1) 100%
    );
    z-index: 1;
  }
  .hero-pill {
    grid-column: 1; grid-row: 1;
    position: absolute;
    top: clamp(90px, 11vh, 120px);
    left: var(--pad);
    z-index: 3;
  }
  .hero-body {
    grid-column: 1; grid-row: 1;
    z-index: 2;
    display: flex; flex-direction: column; justify-content: center;
    max-width: none;
    padding: clamp(40px, 6vw, 80px) clamp(40px, 5vw, 72px);
    padding-top: 140px;
  }
  .scroll-hint { display: flex; }

  /* Services 2-col */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /* Tech 48/52 */
  .tech-visual {
    flex: 0 0 48%;
    min-height: 480px;
  }
  .tech-visual::after {
    background: linear-gradient(to right, transparent 58%, #0c0c0c 100%);
  }
  .tech-content {
    padding: clamp(52px, 7vw, 80px) clamp(44px, 5.5vw, 72px);
  }

  /* Carousel — 3 cards */
  .res-card { flex: 0 0 calc(33.333% - 11px); max-width: none; }

  /* FAQ+CTA */
  .faq-cta-wrap {
    flex-direction: row; align-items: flex-start;
    gap: clamp(36px, 5vw, 72px);
  }
  .faq-cta-left {
    flex: 0 0 42%;
    min-height: 520px;
  }
  .faq-cta-right { flex: 1; min-width: 0; }

  /* Sticky bar — hidden on desktop */
  .sticky-bar { display: none !important; }
}

/* ═══════════════════════════════════════════════
   LANDSCAPE MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 1023px) and (orientation: landscape) {
  .hero { height: 100svh; min-height: 400px; }
  .hero-body h1 { font-size: clamp(1.8rem, 5.5vw, 3rem); }
}

/* ═══════════════════════════════════════════════
   OVERFLOW FIX
═══════════════════════════════════════════════ */
@media (max-width: 1023px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  .results-section, .carousel-viewport { overflow: hidden; }
  .btn--full { max-width: 100%; width: 100%; }
}
