/* =========================================================
   HOWLERS DIGITALS — Landing page styles (mobile-first)
   ========================================================= */

:root {
  --orange: #FF6B00;
  --orange-2: #FF8500;
  --dark: #080808;
  --ink: #0D0D0D;
  --white: #FFFFFF;
  --light: #F7F7F7;

  --grad: linear-gradient(135deg, #FF6B00 0%, #FF8500 100%);
  --orange-soft: rgba(255, 107, 0, .1);
  --orange-line: rgba(255, 107, 0, .35);

  --text: #0D0D0D;
  --muted: #5b5b63;
  --line: #e8e8eb;

  --d-text: #F4F4F5;
  --d-muted: rgba(255, 255, 255, .64);
  --d-faint: rgba(255, 255, 255, .42);
  --d-line: rgba(255, 255, 255, .09);
  --d-card: #111111;

  --r-lg: 24px;
  --r: 18px;
  --r-sm: 12px;

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --header-h: 64px;
  --gutter: 20px;
  --section-y: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

@media (min-width: 768px) { :root { --gutter: 32px; --section-y: 104px; --header-h: 72px; } }
@media (min-width: 1200px) { :root { --section-y: 128px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
html.no-scroll { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -.025em; line-height: 1.1; font-weight: 700; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--orange); color: #fff; }

.i { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--orange); color: #fff; padding: 10px 16px; border-radius: 10px; font-weight: 600; }
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--gutter); }

.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --h: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--h);
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600; font-size: 15.5px; letter-spacing: -.005em;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, border-color .25s, color .25s;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.btn .i { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover .i:last-child { transform: translateX(3px); }
.btn:active { transform: scale(.98); }
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(255, 107, 0, .65), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.btn--primary:hover { box-shadow: 0 14px 34px -10px rgba(255, 107, 0, .85), inset 0 1px 0 rgba(255, 255, 255, .25); transform: translateY(-1px); }
.btn--ghost { color: #fff; border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .03); }
.btn--ghost:hover { border-color: var(--orange); background: rgba(255, 107, 0, .08); }
.btn--sm { --h: 42px; padding: 0 18px; font-size: 14px; }
.btn--lg { --h: 56px; padding: 0 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 3px rgba(255, 107, 0, .18); }
.eyebrow--dark { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .12); color: var(--d-text); }

.h2 { font-size: clamp(30px, 4.4vw + 12px, 52px); margin-top: 18px; }
.h2--xl { font-size: clamp(34px, 5.2vw + 12px, 64px); }
.lead { font-size: 16.5px; color: var(--muted); max-width: 52ch; }
@media (min-width: 768px) { .lead { font-size: 17.5px; } }

.shead { margin-bottom: 40px; }
.shead .lead { margin-top: 16px; }
.shead--center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.shead--split .lead { margin-top: 16px; }
@media (min-width: 900px) {
  .shead { margin-bottom: 56px; }
  .shead--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
  .shead--split .lead { max-width: 42ch; margin: 0 0 6px; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); position: relative; }
.section--light { background: var(--light); }
.section--white { background: var(--white); }
.section--dark { background: var(--ink); color: var(--d-text); }
.section--dark .lead { color: var(--d-muted); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.services .reveal:nth-child(2), .features .reveal:nth-child(2), .steps .reveal:nth-child(2), .work .reveal:nth-child(2) { transition-delay: .06s; }
.services .reveal:nth-child(3), .features .reveal:nth-child(3), .steps .reveal:nth-child(3), .work .reveal:nth-child(3) { transition-delay: .12s; }
.services .reveal:nth-child(4), .features .reveal:nth-child(4), .steps .reveal:nth-child(4) { transition-delay: .18s; }
.services .reveal:nth-child(5), .features .reveal:nth-child(5) { transition-delay: .24s; }
.services .reveal:nth-child(6), .features .reveal:nth-child(6) { transition-delay: .3s; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  transition: background-color .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(8, 8, 8, .78);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: rgba(255, 255, 255, .07);
}
.header__inner { height: 100%; display: flex; align-items: center; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; flex-shrink: 0; }
.brand__mark { width: 34px; height: 34px; }
.brand__word { display: flex; flex-direction: column; font-family: var(--display); font-weight: 700; font-size: 15px; line-height: 1; letter-spacing: .04em; }
.brand__word span { color: var(--orange); font-size: 11px; letter-spacing: .24em; margin-top: 4px; }

.nav { display: none; }
.header__cta { display: none; }

.menu-btn {
  margin-left: auto;
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: background-color .2s, border-color .2s;
}
.menu-btn:hover { border-color: var(--orange-line); }
.menu-btn .i { width: 22px; height: 22px; }

@media (min-width: 1024px) {
  .menu-btn { display: none; }
  .nav { display: flex; gap: 4px; margin-inline: auto; }
  .nav a { padding: 8px 14px; font-size: 14.5px; font-weight: 500; color: rgba(255, 255, 255, .72); border-radius: 999px; transition: color .2s, background-color .2s; }
  .nav a:hover { color: #fff; background: rgba(255, 255, 255, .06); }
  .header__cta { display: block; }
}

/* ---------- Drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .6); opacity: 0; transition: opacity .35s; }
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer__panel {
  position: absolute; inset: 0 0 0 auto; width: 100%; max-width: 440px;
  background: radial-gradient(120% 60% at 100% 0%, rgba(255, 107, 0, .18), transparent 60%), var(--dark);
  color: #fff;
  display: flex; flex-direction: column;
  padding: 0 var(--gutter) calc(24px + env(safe-area-inset-bottom));
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__top { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.drawer__nav { display: flex; flex-direction: column; margin: 24px 0; }
.drawer__nav a {
  display: flex; align-items: baseline; gap: 16px;
  padding: 16px 4px;
  font-family: var(--display); font-size: 26px; font-weight: 600; letter-spacing: -.02em;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  opacity: 0; transform: translateX(16px);
  transition: color .2s, opacity .4s var(--ease), transform .4s var(--ease);
}
.drawer__nav a span { font-family: var(--font); font-size: 12px; font-weight: 600; color: var(--orange); letter-spacing: .06em; }
.drawer__nav a:hover { color: var(--orange-2); }
.drawer.is-open .drawer__nav a { opacity: 1; transform: none; }
.drawer.is-open .drawer__nav a:nth-child(2) { transition-delay: .04s; }
.drawer.is-open .drawer__nav a:nth-child(3) { transition-delay: .08s; }
.drawer.is-open .drawer__nav a:nth-child(4) { transition-delay: .12s; }
.drawer.is-open .drawer__nav a:nth-child(5) { transition-delay: .16s; }
.drawer.is-open .drawer__nav a:nth-child(6) { transition-delay: .2s; }
.drawer__foot { margin-top: auto; display: grid; gap: 12px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--d-text);
  padding-top: calc(var(--header-h) + 28px);
  padding-bottom: 28px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.glow--1 { width: 520px; height: 520px; right: -180px; top: 30%; background: rgba(255, 107, 0, .35); }
.glow--2 { width: 380px; height: 380px; left: -200px; top: -120px; background: rgba(255, 133, 0, .12); }
.streak {
  position: absolute; height: 1.5px; width: 70%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, .9) 55%, rgba(255, 200, 150, .9) 70%, transparent);
  transform: rotate(-24deg);
  filter: drop-shadow(0 0 6px rgba(255, 107, 0, .8));
  opacity: .55;
}
.streak--1 { right: -18%; top: 58%; }
.streak--2 { right: -26%; top: 70%; width: 60%; opacity: .35; }
.streak--3 { right: -8%; top: 84%; width: 45%; opacity: .25; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 60% 30%, #000 30%, transparent 75%);
}

.hero__inner { display: grid; gap: 44px; }
.hero__title {
  font-size: clamp(30px, 8.3vw + 2px, 64px);
  line-height: 1.04;
  letter-spacing: -.035em;
  margin-top: 20px;
  color: #fff;
}
.hero__title .text-grad { display: inline; }
.hero__sub { margin-top: 18px; font-size: 17px; color: var(--d-muted); max-width: 46ch; }

.hero__benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 26px; }
.hero__benefits li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: #fff;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .07);
}
.ib { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: rgba(255, 107, 0, .14); color: var(--orange-2); flex-shrink: 0; }
.ib .i { width: 17px; height: 17px; }

.hero__ctas { display: grid; gap: 12px; margin-top: 28px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 20px; font-size: 13.5px; color: var(--d-muted); }
.hero__trust li { display: inline-flex; align-items: center; gap: 6px; }
.hero__trust .i { width: 16px; height: 16px; color: var(--orange); stroke-width: 2.6; }

@media (min-width: 560px) {
  .hero__ctas { grid-template-columns: auto auto; justify-content: start; }
  .hero__benefits { grid-template-columns: repeat(4, auto); justify-content: start; }
  .hero__benefits li { background: none; border: 0; padding: 0 14px 0 0; }
}
@media (min-width: 1024px) {
  .hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 40px; }
  .hero__inner { grid-template-columns: 1.08fr 1fr; align-items: center; gap: 32px; }
  .hero__benefits li { white-space: nowrap; }
  .hero__sub { font-size: 18px; }
  .glow--1 { right: -120px; top: 10%; width: 640px; height: 640px; }
  .streak--1 { top: 52%; }
}

/* ---------- Hero visual (CSS devices) ---------- */
.hero__visual { position: relative; }
.stage { position: relative; width: 100%; max-width: 640px; margin-inline: auto; aspect-ratio: 1.18; }

.laptop { position: absolute; left: 0; right: 13%; top: 14%; }
.laptop__screen {
  padding: 2.2%;
  background: linear-gradient(180deg, #1c1c1c, #0f0f0f);
  border-radius: 14px 14px 4px 4px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .9), 0 0 0 1px rgba(0, 0, 0, .6), 0 0 60px -10px rgba(255, 107, 0, .25);
}
.laptop__base {
  height: 12px; margin: 0 -7%;
  background: linear-gradient(180deg, #2c2c2c, #121212 70%);
  border-radius: 2px 2px 14px 14px;
  position: relative;
  box-shadow: 0 18px 30px -12px rgba(0, 0, 0, .8);
}
.laptop__base::before { content: ""; position: absolute; left: 50%; top: 0; width: 16%; height: 4px; transform: translateX(-50%); background: #0b0b0b; border-radius: 0 0 6px 6px; }

.site {
  container-type: inline-size;
  aspect-ratio: 16 / 10;
  background: radial-gradient(90% 90% at 90% 20%, rgba(255, 107, 0, .22), transparent 55%), #0a0a0a;
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 3cqw 4cqw;
  gap: 3cqw;
}
.site__nav { display: flex; align-items: center; gap: 3cqw; }
.site__logo { width: 5cqw; height: 2.2cqw; border-radius: 1cqw; background: var(--grad); }
.site__links { display: flex; gap: 2cqw; margin-left: auto; }
.site__links i { width: 5cqw; height: .9cqw; border-radius: 1cqw; background: rgba(255, 255, 255, .28); }
.site__pill { width: 10cqw; height: 3.2cqw; border-radius: 3cqw; background: var(--grad); }
.site__hero { flex: 1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 3cqw; align-items: center; }
.site__text { display: flex; flex-direction: column; gap: 1.6cqw; }
.site__tag { font-size: 1.7cqw; color: var(--orange-2); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.site__text strong { font-family: var(--display); font-size: 4.6cqw; line-height: 1.08; color: #fff; letter-spacing: -.03em; }
.site__line { height: 1cqw; width: 90%; border-radius: 1cqw; background: rgba(255, 255, 255, .18); }
.site__line--s { width: 65%; }
.site__btns { display: flex; gap: 1.5cqw; margin-top: 1cqw; }
.site__btns b { font-size: 1.8cqw; padding: 1.2cqw 2.6cqw; border-radius: 3cqw; background: var(--grad); color: #fff; font-weight: 600; }
.site__btns em { width: 12cqw; border-radius: 3cqw; border: 1px solid rgba(255, 255, 255, .25); }
.site__art { position: relative; height: 100%; }
.site__art .orb { position: absolute; inset: 8% 6% 8% 14%; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ffb070, #ff6b00 45%, #3a1500 80%); box-shadow: 0 0 8cqw rgba(255, 107, 0, .45); }
.site__art .card-a, .site__art .card-b { position: absolute; border-radius: 1.4cqw; background: rgba(20, 20, 20, .75); border: 1px solid rgba(255, 255, 255, .14); backdrop-filter: blur(4px); }
.site__art .card-a { width: 46%; height: 26%; left: 0; bottom: 12%; }
.site__art .card-b { width: 38%; height: 22%; right: 0; top: 10%; }
.site__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2cqw; }
.site__row i { height: 7cqw; border-radius: 1.4cqw; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); }

.phone {
  position: absolute; right: 0; bottom: 4%;
  width: 27%;
  aspect-ratio: 9 / 18.5;
  padding: 2.2% 1.8%;
  background: #151515;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .95), 0 0 40px -8px rgba(255, 107, 0, .35);
}
.phone__screen { position: relative; height: 100%; border-radius: 16px; overflow: hidden; background: radial-gradient(120% 60% at 80% 0%, rgba(255, 107, 0, .3), transparent 60%), #0a0a0a; container-type: inline-size; }
.phone__notch { position: absolute; top: 3cqw; left: 50%; width: 28cqw; height: 6cqw; transform: translateX(-50%); background: #000; border-radius: 6cqw; z-index: 2; }
.psite { display: flex; flex-direction: column; gap: 4cqw; padding: 14cqw 8cqw 8cqw; height: 100%; }
.psite__nav { display: flex; justify-content: space-between; }
.psite__nav i:first-child { width: 16cqw; height: 5cqw; border-radius: 3cqw; background: var(--grad); }
.psite__nav i:last-child { width: 9cqw; height: 5cqw; border-radius: 2cqw; background: rgba(255, 255, 255, .3); }
.psite__tag { font-size: 5.2cqw; color: var(--orange-2); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 4cqw; }
.psite strong { font-family: var(--display); font-size: 10.5cqw; line-height: 1.08; color: #fff; letter-spacing: -.03em; }
.psite__line { height: 3cqw; width: 80%; border-radius: 2cqw; background: rgba(255, 255, 255, .18); }
.psite__btn { align-self: flex-start; font-size: 5.6cqw; font-weight: 600; color: #fff; padding: 3.5cqw 7cqw; border-radius: 10cqw; background: var(--grad); }
.psite__art { flex: 1; min-height: 20cqw; border-radius: 6cqw; background: radial-gradient(circle at 40% 35%, #ffb070, #ff6b00 40%, #2a1000 85%); opacity: .95; }
.psite__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4cqw; }
.psite__grid i { height: 16cqw; border-radius: 4cqw; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); }

.fcard {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(18, 18, 18, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .9);
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  animation: float 7s ease-in-out infinite;
}
.fcard b { font-weight: 700; display: block; font-size: 12.5px; }
.fcard small { color: var(--d-faint); font-size: 11px; }
.fcard__icon { width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; background: var(--grad); }
.fcard__icon .i { width: 16px; height: 16px; }
.fcard--lead { top: 0; right: 4%; }
.fcard--chart { left: -2%; bottom: 0; flex-direction: column; align-items: stretch; width: 44%; min-width: 150px; animation-delay: -2.5s; }
.fcard__head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.spark { width: 100%; height: 44px; }
.fcard--vitals { left: 4%; top: 3%; flex-direction: column; align-items: flex-start; gap: 6px; animation-delay: -4.5s; }
.vitals { display: flex; gap: 5px; }
.vitals i { font-style: normal; font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 6px; background: rgba(255, 107, 0, .14); color: var(--orange-2); border: 1px solid rgba(255, 107, 0, .3); }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(255, 107, 0, .7); animation: pulse 2s infinite; flex-shrink: 0; }
.pulse--inline { display: inline-block; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, .6); } 70% { box-shadow: 0 0 0 9px rgba(255, 107, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); } }

@media (max-width: 479px) {
  .stage { aspect-ratio: 1.05; }
  .laptop { top: 18%; right: 16%; }
  .phone { width: 30%; border-radius: 16px; }
  .phone__screen { border-radius: 12px; }
  .fcard { padding: 8px 10px; border-radius: 12px; }
  .fcard--vitals { display: none; }
  .fcard--lead { right: auto; left: 2%; top: 0; }
  .fcard--chart { min-width: 0; width: 48%; left: 0; }
  .spark { height: 32px; }
}

/* ---------- Trust strip ---------- */
.trust {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .025);
  overflow: hidden;
}
.trust li { display: flex; flex-direction: column; gap: 10px; padding: 18px 16px; }
.trust li:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, .07); }
.trust li:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .07); }
.trust__icon { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; color: var(--orange-2); background: rgba(255, 107, 0, .1); border: 1px solid rgba(255, 107, 0, .22); }
.trust__icon .i { width: 18px; height: 18px; }
.trust b { display: block; font-size: 14px; color: #fff; line-height: 1.3; }
.trust small { display: block; font-size: 12.5px; color: var(--d-faint); margin-top: 2px; line-height: 1.4; }
@media (min-width: 900px) {
  .trust { grid-template-columns: repeat(4, 1fr); margin-top: 56px; }
  .trust li { flex-direction: row; align-items: center; gap: 14px; padding: 22px 24px; }
  .trust li:nth-child(-n+2) { border-bottom: 0; }
  .trust li:not(:last-child) { border-right: 1px solid rgba(255, 255, 255, .07); }
  .trust__icon { width: 42px; height: 42px; }
  .trust b { font-size: 15px; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { display: grid; gap: 12px; }
.svc {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc:hover { border-color: var(--orange-line); box-shadow: 0 18px 40px -24px rgba(0, 0, 0, .25); transform: translateY(-2px); }
.svc h3 { font-size: 17px; letter-spacing: -.015em; }
.svc p { margin-top: 6px; font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.svc__icon { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; flex-shrink: 0; background: var(--orange-soft); color: var(--orange); }
.svc__icon .i { width: 21px; height: 21px; }

.svc--primary {
  flex-direction: column; gap: 28px;
  padding: 26px 22px;
  background: radial-gradient(120% 80% at 100% 0%, rgba(255, 107, 0, .28), transparent 55%), var(--ink);
  color: #fff;
  border-color: rgba(255, 107, 0, .35);
  box-shadow: 0 30px 60px -30px rgba(255, 107, 0, .45);
  position: relative;
  overflow: hidden;
}
.svc--primary:hover { transform: none; }
.svc--primary__body { display: flex; flex-direction: column; align-items: flex-start; }
.svc--primary .svc__icon { width: 52px; height: 52px; border-radius: 15px; background: var(--grad); color: #fff; margin-top: 18px; box-shadow: 0 10px 24px -8px rgba(255, 107, 0, .7); }
.svc--primary .svc__icon .i { width: 24px; height: 24px; }
.svc--primary h3 { font-size: clamp(24px, 2.4vw + 12px, 32px); margin-top: 18px; }
.svc--primary p { color: var(--d-muted); font-size: 15.5px; max-width: 40ch; margin-top: 10px; }
.svc__flag { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-2); padding: 5px 10px; border-radius: 999px; border: 1px solid rgba(255, 107, 0, .4); background: rgba(255, 107, 0, .08); }
.svc__points { display: grid; gap: 8px; margin: 20px 0 26px; }
.svc__points li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; color: rgba(255, 255, 255, .88); }
.svc__points .i { width: 16px; height: 16px; color: var(--orange); stroke-width: 2.6; }

.codebox { border-radius: 14px; background: #0a0a0a; border: 1px solid rgba(255, 255, 255, .1); overflow: hidden; font-size: 12.5px; }
.codebox__bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.codebox__bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .16); }
.codebox__bar i:first-child { background: var(--orange); }
.codebox__bar span { margin-left: 8px; font-size: 11.5px; color: var(--d-faint); }
.codebox pre { margin: 0; padding: 16px; font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; line-height: 1.7; color: rgba(255, 255, 255, .85); overflow-x: auto; }
.c-t { color: #ff9a4d; } .c-a { color: #d9d9d9; } .c-s { color: #ffcf9f; }
.codebox__foot { display: flex; gap: 14px; padding: 10px 16px; border-top: 1px solid rgba(255, 255, 255, .07); font-size: 11.5px; color: var(--d-muted); flex-wrap: wrap; }
.codebox__foot span { display: inline-flex; align-items: center; gap: 6px; }
.codebox__foot .ok { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

@media (min-width: 640px) {
  .services { grid-template-columns: 1fr 1fr; gap: 16px; }
  .svc--primary { grid-column: 1 / -1; }
  .svc { flex-direction: column; padding: 24px; }
}
@media (min-width: 1024px) {
  .services { grid-template-columns: repeat(3, 1fr); }
  .svc--primary { grid-column: 1 / 3; grid-row: 1 / 3; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 32px; padding: 40px; }
}

/* =========================================================
   PLANS
   ========================================================= */
.plans-section { background: var(--ink); overflow: hidden; }
.plans-section__glow {
  position: absolute; left: 50%; top: 32%;
  width: min(1000px, 140%); height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255, 107, 0, .16), transparent);
  pointer-events: none;
}
.offer-chip {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  padding: 8px 16px;
  font-size: 13px; font-weight: 600;
  color: var(--orange-2);
  border-radius: 999px;
  background: rgba(255, 107, 0, .08);
  border: 1px solid rgba(255, 107, 0, .25);
}

.plans { display: flex; flex-direction: column; gap: 28px; position: relative; }
.plan-wrap--adv { order: -1; }

.plan {
  position: relative;
  padding: 28px 22px 22px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #161616, #101010);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--d-text);
}
.plan__name { font-size: 24px; }
.plan__desc { margin-top: 8px; font-size: 14.5px; color: var(--d-muted); }

.price { margin: 24px 0 22px; padding-top: 22px; border-top: 1px dashed rgba(255, 255, 255, .12); }
.price__was { display: flex; align-items: center; gap: 12px; }
.price__was s { font-size: 18px; font-weight: 600; color: var(--d-faint); text-decoration-thickness: 2px; text-decoration-color: rgba(255, 107, 0, .8); }
.off { font-size: 12px; font-weight: 800; letter-spacing: .04em; padding: 5px 10px; border-radius: 999px; background: var(--grad); color: #fff; }
.price__now { font-family: var(--display); font-size: clamp(52px, 10vw, 68px); font-weight: 700; letter-spacing: -.045em; line-height: 1; margin-top: 10px; display: flex; align-items: flex-start; }
.price__now .cur { font-size: .5em; margin: .12em .06em 0 0; letter-spacing: 0; }
.price__note { margin-top: 10px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--d-muted); }

.plan__expert { display: flex; justify-content: center; align-items: center; min-height: 44px; margin-top: 6px; font-size: 14.5px; font-weight: 600; color: var(--d-muted); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(255, 255, 255, .25); transition: color .2s; }
.plan__expert:hover { color: var(--orange-2); text-decoration-color: var(--orange); }

.checks { display: grid; gap: 11px; }
.checks li { display: flex; gap: 12px; font-size: 15px; line-height: 1.45; }
.checks .i { width: 20px; height: 20px; padding: 4px; border-radius: 50%; background: rgba(255, 107, 0, .15); color: var(--orange); stroke-width: 3.2; margin-top: 1px; }
.plan__highlights { margin-top: 20px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .08); }

.plan__toggle {
  width: 100%; min-height: 48px; margin-top: 20px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14.5px; font-weight: 600;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--d-text);
  transition: border-color .2s, background-color .2s;
}
.plan__toggle:hover { border-color: var(--orange-line); background: rgba(255, 107, 0, .06); }
.plan__toggle .i { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.plan__toggle[aria-expanded="true"] .i { transform: rotate(180deg); }

.expand { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease), visibility .5s; visibility: hidden; }
.expand.is-open { grid-template-rows: 1fr; visibility: visible; }
.expand__inner { overflow: hidden; min-height: 0; }
.fgroup { padding-top: 22px; }
.fgroup h4 { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-2); margin-bottom: 12px; }
.fgroup .checks { gap: 9px; }
.fgroup .checks li { font-size: 14.5px; }

.plan-save { text-align: center; margin-top: 14px; font-size: 14px; color: var(--d-muted); }
.plan-save b { color: #fff; }
.plan-save--hot { color: var(--orange-2); font-weight: 600; }
.plan-save--hot b { color: var(--orange-2); }

/* Featured (Advance) plan: light card with orange glow */
.plan--featured {
  background: #fff;
  color: var(--text);
  border: 1.5px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 1.5px var(--orange), 0 30px 80px -20px rgba(255, 107, 0, .45), 0 0 120px -30px rgba(255, 107, 0, .6);
  padding-top: 36px;
}
.plan--featured .plan__desc, .plan--featured .price__note { color: var(--muted); }
.plan--featured .price { border-top-color: var(--line); }
.plan--featured .price__was s { color: #9a9aa2; }
.plan--featured .price__now { color: var(--ink); }
.plan--featured .plan__highlights { border-top-color: var(--line); }
.plan--featured .checks .i { background: var(--grad); color: #fff; }
.plan--featured .plan__toggle { border-color: var(--line); color: var(--text); }
.plan--featured .plan__toggle:hover { border-color: var(--orange-line); background: #fff7f1; }
.plan--featured .plan__expert { color: var(--muted); text-decoration-color: #d0d0d5; }
.plan--featured .fgroup h4 { color: var(--orange); }
.plan__badge {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  padding: 7px 16px;
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  border-radius: 999px;
  box-shadow: 0 8px 20px -6px rgba(255, 107, 0, .8);
  white-space: nowrap;
}

.plans-note { margin: 36px auto 0; max-width: 780px; text-align: center; font-size: 13px; line-height: 1.6; color: var(--d-faint); }
.plans-note a { color: var(--orange-2); text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 900px) {
  .plans { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; max-width: 1040px; margin-inline: auto; }
  .plan-wrap--adv { order: 0; }
  .plan { padding: 36px 36px 30px; }
  .plan--featured { padding-top: 44px; transform: translateY(-12px); }
  .plan__name { font-size: 26px; }
  .expand__inner { display: grid; grid-template-columns: 1fr; }
}

/* =========================================================
   OFFER CTA
   ========================================================= */
.offer { background: var(--ink); padding: 0 0 var(--section-y); color: #fff; }
.offer__card {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 40px 24px;
  border-radius: 28px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 107, 0, .3);
  display: grid; gap: 28px;
}
.offer__bg { position: absolute; inset: 0; z-index: -1; }
.offer__bg span:first-child { position: absolute; right: -20%; bottom: -60%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(closest-side, rgba(255, 107, 0, .5), transparent); }
.offer__bg span:last-child {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 70%);
  mask-image: linear-gradient(90deg, transparent, #000 70%);
}
.offer .h2 { margin-top: 0; }
.offer .lead { margin-top: 16px; color: var(--d-muted); }
.offer__ctas { display: grid; gap: 12px; }
@media (min-width: 560px) { .offer__ctas { grid-template-columns: auto auto; justify-content: start; } }
@media (min-width: 1024px) {
  .offer__card { grid-template-columns: 1.4fr auto; align-items: center; padding: 64px; gap: 48px; }
  .offer__ctas { grid-template-columns: 1fr; }
}

/* =========================================================
   PORTFOLIO
   ========================================================= */
.work-rail {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-padding-inline: var(--gutter);
}
.work-rail::-webkit-scrollbar { display: none; }
.work-rail:focus-visible { outline-offset: -2px; }
.work { display: grid; grid-auto-flow: column; grid-auto-columns: min(82vw, 340px); gap: 14px; width: max-content; padding: 0 var(--gutter) 6px; }
.wcard {
  scroll-snap-align: start;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.wcard:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(0, 0, 0, .35); border-color: #ddd; }
.wcard__meta { padding: 18px 18px 16px; display: flex; flex-direction: column; flex: 1; }
.wcard__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.wcard h3 { font-size: 18px; }
.tag { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 4px 8px; border-radius: 6px; background: var(--light); border: 1px solid var(--line); }
.wcard p { font-size: 14px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.chips li { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: var(--orange-soft); color: #c95400; }
.wcard__cta { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; margin-top: auto; padding-top: 10px; font-size: 14px; font-weight: 700; color: var(--text); }
.wcard__cta .i { width: 16px; height: 16px; color: var(--orange); transition: transform .25s var(--ease); }
.wcard__cta:hover { color: var(--orange); }
.wcard__cta:hover .i { transform: translateX(3px); }

.rail-dots { display: flex; justify-content: center; gap: 6px; margin-top: 18px; }
.rail-dots i { width: 6px; height: 6px; border-radius: 6px; background: #d4d4d8; transition: width .3s var(--ease), background-color .3s; }
.rail-dots i.on { width: 22px; background: var(--orange); }

@media (min-width: 900px) {
  .work-rail { overflow: visible; max-width: 1200px; margin-inline: auto; }
  .work { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); grid-auto-columns: auto; gap: 22px; width: auto; padding-bottom: 0; }
  .rail-dots { display: none; }
}

/* Mock screenshots (placeholders, pure CSS) */
.shot { container-type: inline-size; aspect-ratio: 16 / 10.5; display: flex; flex-direction: column; background: #111; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.shot__bar { display: flex; align-items: center; gap: 1.4cqw; padding: 2.2cqw 3cqw; background: #1b1b1b; flex-shrink: 0; }
.shot__bar i { width: 2cqw; height: 2cqw; border-radius: 50%; background: #3a3a3a; }
.shot__bar span { margin-left: 3cqw; font-size: 2.6cqw; color: #8a8a8a; background: #0f0f0f; padding: .6cqw 3cqw; border-radius: 2cqw; }
.shot__body { flex: 1; position: relative; padding: 3.5cqw 5cqw; display: flex; flex-direction: column; gap: 3cqw; overflow: hidden; }
.s-nav { display: flex; align-items: center; justify-content: space-between; font-family: var(--display); font-size: 3cqw; letter-spacing: .12em; position: relative; z-index: 1; }
.s-nav span { display: flex; gap: 2.4cqw; }
.s-nav span i { width: 6cqw; height: .9cqw; border-radius: 1cqw; background: currentColor; opacity: .35; }
.s-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 2cqw; position: relative; z-index: 1; max-width: 58%; }
.s-copy strong { font-family: var(--display); font-size: 6cqw; line-height: 1.05; letter-spacing: -.03em; }
.s-copy small { font-size: 2.6cqw; text-transform: uppercase; letter-spacing: .14em; opacity: .7; }
.s-copy em { font-style: normal; font-size: 2.6cqw; font-weight: 700; padding: 1.4cqw 3.2cqw; border-radius: 4cqw; background: var(--orange); color: #fff; }

.shot--re .shot__body { background: linear-gradient(180deg, #1a0f08 0%, #6b2c07 45%, #ff8a3d 82%, #ffb77a 100%); color: #fff; }
.s-search { display: flex; width: 90%; height: 6cqw; background: #fff; border-radius: 4cqw; padding: 1cqw; margin-top: 1cqw; }
.s-search i { flex: 1; }
.s-search b { width: 16cqw; border-radius: 3cqw; background: var(--orange); }
.s-house { position: absolute; right: 4cqw; bottom: 0; width: 44cqw; height: 30cqw; background: #120a05; clip-path: polygon(0 100%, 0 45%, 28% 45%, 28% 20%, 60% 0, 92% 20%, 92% 45%, 100% 45%, 100% 100%); }
.s-house::after { content: ""; position: absolute; left: 36%; top: 42%; width: 10%; height: 14%; background: #ffcf8a; box-shadow: 7cqw 0 0 #ffcf8a, -5cqw 7cqw 0 #ffb45c, 12cqw 7cqw 0 #ffcf8a; }

.shot--ecom .shot__body { background: #f3eee8; color: #1a1a1a; }
.shot--ecom .s-copy strong { font-family: Georgia, serif; font-weight: 400; letter-spacing: -.01em; }
.shot--ecom .s-copy em { background: #1a1a1a; }
.s-products { position: absolute; right: 4cqw; top: 12cqw; bottom: 4cqw; width: 42%; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1.3fr 1fr; gap: 2cqw; }
.s-products i { border-radius: 2cqw; background: linear-gradient(160deg, #e6d6c5, #c8ab8e); }
.s-products i:first-child { grid-row: 1 / 3; background: linear-gradient(170deg, #ffb070, #ff6b00 65%, #b64700); }

.shot--local .shot__body { background: #fff; color: #111; }
.s-btns { display: flex; gap: 1.6cqw; }
.shot--local .s-btns em.alt { background: #fff; color: #111; border: 1px solid #ddd; }
.s-map { position: absolute; right: 4cqw; top: 11cqw; bottom: 4cqw; width: 38%; border-radius: 3cqw; background: repeating-linear-gradient(35deg, #f1f1f1 0 3cqw, #e7e7e7 3cqw 3.4cqw), #f5f5f5; overflow: hidden; }
.s-map .pin { position: absolute; left: 46%; top: 26%; width: 6cqw; height: 6cqw; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--orange); box-shadow: 0 0 0 2cqw rgba(255, 107, 0, .2); }
.s-mapcard { position: absolute; left: 3cqw; right: 3cqw; bottom: 3cqw; padding: 2cqw; background: #fff; border-radius: 2cqw; box-shadow: 0 2cqw 4cqw rgba(0, 0, 0, .1); display: grid; gap: 1.2cqw; }
.s-mapcard i { height: 1.4cqw; border-radius: 1cqw; background: #ddd; }
.s-mapcard i:first-child { width: 60%; background: #111; }

.shot--pro .shot__body { background: #0e0e10; color: #f2f2f2; }
.shot--pro .s-copy { max-width: 70%; }
.shot--pro .s-copy em { background: transparent; border: 1px solid var(--orange); color: var(--orange-2); }
.s-cols { position: absolute; left: 5cqw; right: 5cqw; bottom: 4cqw; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2cqw; }
.s-cols i { height: 11cqw; border-radius: 2cqw; background: #19191c; border: 1px solid #2a2a2e; position: relative; }
.s-cols i::before { content: ""; position: absolute; left: 2cqw; top: 2cqw; width: 3cqw; height: 3cqw; border-radius: 1cqw; background: var(--orange); }

.shot--hosp .shot__body { background: radial-gradient(80% 90% at 70% 30%, rgba(255, 133, 0, .55), transparent 60%), linear-gradient(160deg, #2a1a10, #0b0806 70%); color: #fff5ea; align-items: center; text-align: center; }
.shot--hosp .s-nav { width: 100%; }
.shot--hosp .s-copy { align-items: center; max-width: 80%; margin-top: 3cqw; }
.shot--hosp .s-copy strong { font-family: Georgia, serif; font-weight: 400; font-style: italic; font-size: 7cqw; }
.s-booking { position: absolute; left: 10cqw; right: 10cqw; bottom: 5cqw; display: grid; grid-template-columns: 1fr 1fr 1fr 1.4fr; gap: 1.4cqw; padding: 1.6cqw; background: rgba(255, 255, 255, .95); border-radius: 2.4cqw; }
.s-booking i { height: 5cqw; border-radius: 1.4cqw; background: #eee; }
.s-booking b { font-size: 2.4cqw; display: grid; place-items: center; border-radius: 1.4cqw; background: var(--orange); color: #fff; }

.shot--corp .shot__body { background: linear-gradient(180deg, #fafafa, #efefef); color: #111; }
.shot--corp .s-copy em { background: #111; }
.s-chart { position: absolute; right: 5cqw; bottom: 4cqw; top: 12cqw; width: 36%; display: flex; align-items: flex-end; gap: 1.6cqw; padding: 3cqw; background: #fff; border-radius: 3cqw; box-shadow: 0 2cqw 5cqw rgba(0, 0, 0, .07); }
.s-chart i { flex: 1; height: var(--h); border-radius: 1cqw 1cqw 0 0; background: #e3e3e6; }
.s-chart i:last-child { background: var(--grad); }

/* =========================================================
   WHY CUSTOM CODE
   ========================================================= */
.compare { display: grid; gap: 16px; max-width: 1000px; margin-inline: auto; }
.cmp { padding: 26px 22px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.cmp header { display: flex; align-items: center; gap: 14px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.cmp h3 { font-size: 20px; }
.cmp header p { font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.cmp__icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--light); color: var(--muted); border: 1px solid var(--line); flex-shrink: 0; }
.cmp ul { display: grid; gap: 14px; }
.cmp li { display: flex; gap: 12px; font-size: 15px; color: var(--muted); line-height: 1.45; }
.cmp li .i { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--light); color: #9a9aa2; stroke-width: 3; flex-shrink: 0; }

.cmp--win { background: radial-gradient(100% 60% at 100% 0%, rgba(255, 107, 0, .22), transparent 60%), var(--ink); color: #fff; border-color: rgba(255, 107, 0, .4); box-shadow: 0 30px 60px -30px rgba(255, 107, 0, .45); }
.cmp--win header { border-bottom-color: rgba(255, 255, 255, .1); }
.cmp--win header p { color: var(--d-muted); }
.cmp--win .cmp__icon { background: var(--grad); color: #fff; border: 0; }
.cmp--win li { color: var(--d-muted); }
.cmp--win li b { color: #fff; font-weight: 600; }
.cmp--win li .i { background: var(--grad); color: #fff; }
.cmp__badge { margin-left: auto; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: rgba(255, 107, 0, .14); color: var(--orange-2); border: 1px solid rgba(255, 107, 0, .35); }
@media (min-width: 900px) {
  .compare { grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: stretch; }
  .cmp { padding: 36px; }
}

/* =========================================================
   PROCESS
   ========================================================= */
.steps { position: relative; display: grid; gap: 0; }
.steps::before, .steps::after {
  content: ""; position: absolute;
  left: 27px; top: 28px; bottom: 28px; width: 2px;
  background: rgba(255, 255, 255, .1);
}
.steps::after { background: var(--grad); bottom: auto; height: calc((100% - 56px) * var(--progress)); box-shadow: 0 0 12px rgba(255, 107, 0, .7); }
.step { position: relative; padding: 0 0 36px 80px; min-height: 56px; }
.step:last-child { padding-bottom: 0; }
.step__node {
  position: absolute; left: 0; top: 0;
  width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center;
  background: #151515; color: var(--d-muted);
  border: 1px solid rgba(255, 255, 255, .1);
  z-index: 1;
  transition: background .4s, color .4s, border-color .4s, box-shadow .4s;
}
.step__node .i { width: 22px; height: 22px; }
.step.is-active .step__node { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 10px 30px -8px rgba(255, 107, 0, .7); }
.step__num { display: block; font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--orange-2); padding-top: 2px; }
.step h3 { font-size: 21px; margin-top: 4px; color: #fff; }
.step p { font-size: 15px; color: var(--d-muted); margin-top: 6px; max-width: 32ch; }

@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .steps::before, .steps::after { left: 28px; right: 28px; top: 27px; bottom: auto; width: auto; height: 2px; }
  .steps::after { right: auto; width: calc((100% - 56px) * var(--progress)); height: 2px; }
  .step { padding: 84px 0 0; }
}

/* =========================================================
   FEATURES
   ========================================================= */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feat {
  position: relative;
  padding: 20px 16px;
  border-radius: var(--r);
  background: var(--light);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, background-color .3s;
}
.feat:hover { transform: translateY(-3px); border-color: var(--orange-line); background: #fff; }
.feat__icon { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: #fff; color: var(--orange); border: 1px solid var(--line); margin-bottom: 14px; transition: background .3s, color .3s; }
.feat:hover .feat__icon { background: var(--grad); color: #fff; border-color: transparent; }
.feat small { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); line-height: 1.35; }
.feat b { font-family: var(--display); font-size: 17px; font-weight: 600; letter-spacing: -.02em; line-height: 1.25; }
@media (min-width: 768px) {
  .features { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .feat { padding: 30px 28px; }
  .feat b { font-size: 22px; }
  .feat small { font-size: 12px; }
}

/* =========================================================
   CONTACT / LEAD FORM
   ========================================================= */
.contact { overflow: hidden; background: var(--dark); }
.contact__glow { position: absolute; left: -200px; top: 10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(closest-side, rgba(255, 107, 0, .22), transparent); pointer-events: none; }
.contact__grid { display: grid; gap: 40px; position: relative; }

.next { display: grid; gap: 16px; margin: 32px 0; }
.next li { display: flex; gap: 14px; align-items: flex-start; }
.next li > span { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; font-weight: 700; font-size: 14px; background: rgba(255, 107, 0, .12); color: var(--orange-2); border: 1px solid rgba(255, 107, 0, .3); flex-shrink: 0; }
.next b { display: block; font-size: 15.5px; color: #fff; }
.next small { font-size: 14px; color: var(--d-muted); }

.contact__links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.clink { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 16px; border: 1px solid rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .03); transition: border-color .2s, background-color .2s; min-width: 0; }
.clink:hover { border-color: var(--orange-line); background: rgba(255, 107, 0, .06); }
.clink__icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255, 255, 255, .06); color: #fff; flex-shrink: 0; }
.clink__icon--wa { background: #25D366; }
.clink small { display: block; font-size: 12px; color: var(--d-faint); }
.clink b { display: block; font-size: 14px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.clink > span:last-child { min-width: 0; }

.form-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--r-lg);
  padding: 24px 18px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .9), 0 0 0 1px rgba(255, 107, 0, .25), 0 0 80px -30px rgba(255, 107, 0, .5);
  scroll-margin-top: calc(var(--header-h) + 12px);
}
.fgrid { display: grid; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field label { font-size: 14px; font-weight: 600; }
.field label em { color: var(--orange); font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  font: inherit; font-size: 16px; /* 16px prevents iOS zoom */
  color: var(--text);
  background: var(--light);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #9d9da5; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(255, 107, 0, .12); }
.field.has-error input, .field.has-error select { border-color: #e5484d; background: #fff8f8; }
.err { font-size: 13px; color: #d93036; min-height: 0; }
.err:empty { display: none; }
.select { position: relative; }
.select select { padding-right: 44px; cursor: pointer; }
.select select:invalid { color: #9d9da5; }
.select .i { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); pointer-events: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-plan { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 8px 8px 16px; margin-bottom: 18px; border-radius: 12px; background: #fff4ec; border: 1px solid rgba(255, 107, 0, .3); font-size: 14px; color: #a64600; }
.form-plan b { color: var(--orange); }
.form-plan__clear { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #a64600; }
.form-plan__clear:hover { background: rgba(255, 107, 0, .12); }
.form-plan__clear .i { width: 16px; height: 16px; }

.lead-form .btn[type=submit] { margin-top: 22px; }
.btn .spinner { display: none; width: 20px; height: 20px; border-radius: 50%; border: 2.5px solid rgba(255, 255, 255, .4); border-top-color: #fff; animation: spin .8s linear infinite; }
.btn.is-loading .spinner { display: block; }
.btn.is-loading .i { display: none; }
.btn:disabled { opacity: .85; cursor: progress; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 13.5px; color: var(--muted); text-align: center; }
.form-note .i { width: 16px; height: 16px; color: var(--orange); }
.form-error { margin-top: 12px; padding: 12px 14px; border-radius: 12px; background: #fff1f1; color: #b4232a; font-size: 14px; }
.form-error a { text-decoration: underline; font-weight: 600; }

.form-success { text-align: center; padding: 28px 8px; outline: none; }
.form-success__icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #fff; box-shadow: 0 12px 30px -8px rgba(255, 107, 0, .7); }
.form-success__icon .i { width: 30px; height: 30px; stroke-width: 3; }
.form-success h3 { font-size: 22px; }
.form-success p { margin: 10px 0 22px; color: var(--muted); }

@media (min-width: 640px) {
  .form-card { padding: 34px; }
  .fgrid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .field--full { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
  .contact__intro { position: sticky; top: calc(var(--header-h) + 40px); }
  .form-card { padding: 40px; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid { display: grid; gap: 8px; }
.faq-grid .lead a { color: var(--orange); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.faq { display: grid; gap: 10px; }
.qa { background: #fff; border: 1px solid var(--line); border-radius: 16px; transition: border-color .25s, box-shadow .25s; }
.qa.is-open { border-color: var(--orange-line); box-shadow: 0 14px 30px -20px rgba(255, 107, 0, .45); }
.qa h3 { font-family: var(--font); letter-spacing: -.01em; }
.qa button {
  width: 100%; min-height: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 18px;
  text-align: left;
  font-size: 16px; font-weight: 600; line-height: 1.4;
}
.qa button .i { width: 30px; height: 30px; padding: 6px; border-radius: 50%; background: var(--light); transition: transform .3s var(--ease), background .3s, color .3s; }
.qa.is-open button .i { transform: rotate(180deg); background: var(--grad); color: #fff; }
.qa__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.qa.is-open .qa__a { grid-template-rows: 1fr; }
.qa__a > div { overflow: hidden; }
.qa__a p { padding: 0 18px 18px; color: var(--muted); font-size: 15px; }
@media (min-width: 1024px) {
  .faq-grid { grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
  .faq-grid .shead { position: sticky; top: calc(var(--header-h) + 40px); }
  .qa button { padding: 20px 24px; font-size: 17px; }
  .qa__a p { padding: 0 24px 22px; }
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final { position: relative; overflow: hidden; isolation: isolate; background: var(--dark); color: #fff; padding: calc(var(--section-y) + 12px) 0; text-align: center; }
.final__bg { position: absolute; inset: 0; z-index: -1; }
.final__bg span:nth-child(1) { position: absolute; left: 50%; bottom: -55%; width: 1100px; height: 700px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(255, 107, 0, .45), transparent); }
.final__bg span:nth-child(2), .final__bg span:nth-child(3) { position: absolute; height: 1.5px; width: 60%; background: linear-gradient(90deg, transparent, rgba(255, 107, 0, .9), transparent); filter: drop-shadow(0 0 6px rgba(255, 107, 0, .8)); opacity: .45; }
.final__bg span:nth-child(2) { left: -10%; top: 30%; transform: rotate(-12deg); }
.final__bg span:nth-child(3) { right: -10%; bottom: 26%; transform: rotate(-12deg); opacity: .3; }
.final__inner { display: flex; flex-direction: column; align-items: center; }
.final__mark { width: 72px; height: 72px; margin-bottom: 8px; filter: drop-shadow(0 8px 24px rgba(255, 107, 0, .5)); }
.final .h2 { max-width: 16ch; }
.final .lead { margin-top: 18px; color: var(--d-muted); }
.final__ctas { display: grid; gap: 12px; margin-top: 34px; width: 100%; max-width: 360px; }
@media (min-width: 560px) { .final__ctas { grid-template-columns: auto auto; max-width: none; width: auto; } }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--dark); color: var(--d-muted); border-top: 1px solid rgba(255, 255, 255, .07); padding: 56px 0 calc(96px + env(safe-area-inset-bottom)); font-size: 14.5px; }
.footer__top { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 24px; }
.footer__brand { grid-column: 1 / -1; }
.footer__brand p { margin-top: 16px; max-width: 36ch; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .1); color: #fff; transition: border-color .2s, color .2s; }
.socials a:hover { border-color: var(--orange); color: var(--orange); }
.socials .i { width: 18px; height: 18px; }
.footer__col { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.footer__col h3 { font-family: var(--font); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.footer__col a { display: flex; align-items: center; gap: 8px; min-height: 40px; transition: color .2s; overflow-wrap: anywhere; }
.footer__col a .i { width: 16px; height: 16px; color: var(--orange); }
.footer__col a:hover { color: #fff; }
.footer__bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .07); display: grid; gap: 8px; font-size: 13px; color: var(--d-faint); }
@media (min-width: 900px) {
  .footer { padding-bottom: 40px; }
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { grid-template-columns: auto 1fr; gap: 24px; }
  .footer__terms { text-align: right; }
}

/* =========================================================
   FLOATING WHATSAPP + MOBILE BAR
   ========================================================= */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%;
  display: none; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6), 0 0 0 1px rgba(255, 255, 255, .1);
  opacity: 0; transform: translateY(16px) scale(.9);
  transition: opacity .3s, transform .3s var(--ease);
  pointer-events: none;
}
.wa-float .i { width: 28px; height: 28px; }
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float__tip { position: absolute; right: 70px; white-space: nowrap; padding: 8px 12px; border-radius: 10px; background: #fff; color: var(--text); font-size: 13.5px; font-weight: 600; box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .3); opacity: 0; transform: translateX(6px); transition: opacity .2s, transform .2s; pointer-events: none; }
.wa-float:hover .wa-float__tip { opacity: 1; transform: none; }
@media (min-width: 900px) { .wa-float { display: grid; } }

.mbar {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 40;
  display: flex; gap: 8px;
  padding: 6px;
  border-radius: 20px;
  background: rgba(13, 13, 13, .88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .7);
  transform: translateY(140%);
  transition: transform .4s var(--ease);
}
.mbar.is-visible { transform: none; }
.mbar a { min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 15px; font-weight: 700; font-size: 15px; }
.mbar__cta { flex: 1; background: var(--grad); color: #fff; box-shadow: 0 8px 20px -8px rgba(255, 107, 0, .8); }
.mbar__wa { padding: 0 16px; background: #25D366; color: #fff; }
.mbar__wa .i { width: 22px; height: 22px; }
@media (max-width: 359px) { .mbar__wa span { display: none; } }
@media (min-width: 900px) { .mbar { display: none; } }

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Small-screen refinements ---------- */
@media (max-width: 479px) {
  .fcard__head small { display: none; }
  .trust li { padding: 14px 14px; gap: 8px; }
  .trust__icon { width: 32px; height: 32px; border-radius: 10px; }
  .trust__icon .i { width: 16px; height: 16px; }
  .trust b { font-size: 13.5px; }
  .trust small { font-size: 12px; }
  .hero__benefits li { font-size: 13.5px; padding: 8px 10px; }
}

/* =========================================================
   V2 — POPUP, ANIMATIONS & MOBILE CONVERSION UPGRADES
   ========================================================= */
main, .footer { overflow-x: clip; }

/* ---------- Scroll progress ---------- */
.progress { position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 70; pointer-events: none; }
.progress span { display: block; height: 100%; background: var(--grad); transform-origin: 0 50%; transform: scaleX(0); box-shadow: 0 0 10px rgba(255, 107, 0, .8); }

/* ---------- Mobile header CTA ---------- */
.hcta {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 42px; padding: 0 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap;
  background: var(--grad);
  box-shadow: 0 6px 18px -6px rgba(255, 107, 0, .8);
  position: relative; overflow: hidden; isolation: isolate;
}
.hcta .pulse { width: 7px; height: 7px; background: #fff; }
.hcta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .5) 50%, transparent 65%); background-size: 250% 100%; animation: shine 3.6s ease-in-out infinite; }
.hcta + .menu-btn { margin-left: 10px; }
@media (max-width: 359px) { .hcta { padding: 0 11px; font-size: 12px; } .hcta .pulse { display: none; } .brand__word { font-size: 13px; } }
@media (min-width: 1024px) { .hcta { display: none; } }

/* ---------- Hero entrance ---------- */
.in-up { animation: inUp .9s var(--ease) both; animation-delay: var(--d, 0s); }
.in-zoom { animation: inZoom 1.2s var(--ease) both; animation-delay: var(--d, 0s); }
.hero__title .ln { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.hero__title .ln > span { display: inline-block; animation: lineUp 1s var(--ease) both; animation-delay: var(--d, 0s); }
.hero__title .ln > .text-grad { animation: lineUp 1s var(--ease) both, gradShift 6s ease-in-out infinite; animation-delay: var(--d, 0s), 1.4s; }
@keyframes inUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes inZoom { from { opacity: 0; transform: scale(.9) translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes lineUp { from { transform: translateY(105%); } to { transform: none; } }
@keyframes gradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.text-grad { background-image: linear-gradient(100deg, #FF6B00 0%, #FF8500 40%, #FFB070 55%, #FF6B00 100%); background-size: 200% 100%; }

/* hero light streaks drift */
.streak { animation: streak 7s ease-in-out infinite; }
.streak--2 { animation-delay: -2s; }
.streak--3 { animation-delay: -4s; }
@keyframes streak { 0%, 100% { translate: 0 0; opacity: .55; } 50% { translate: -40px 14px; opacity: .25; } }
.glow--1 { animation: breathe 8s ease-in-out infinite; }
@keyframes breathe { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.12); opacity: .75; } }

/* laptop screen scan + orb glow */
.site { position: relative; }
.site::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(255, 133, 0, .08) 50%, transparent 60%); background-size: 100% 300%; animation: scan 5s linear infinite; pointer-events: none; }
@keyframes scan { from { background-position: 0 100%; } to { background-position: 0 -200%; } }
.site__art .orb, .psite__art { animation: orb 9s ease-in-out infinite; }
@keyframes orb { 0%, 100% { filter: brightness(1); transform: scale(1); } 50% { filter: brightness(1.18); transform: scale(1.04); } }
.spark path:last-child { stroke-dasharray: 260; stroke-dashoffset: 260; animation: draw 2.2s var(--ease) 1.2s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.phone { animation: float 6s ease-in-out -1s infinite; }

/* ---------- Button shine ---------- */
.btn--primary { overflow: hidden; isolation: isolate; }
.btn--shine::after, .mbar__cta::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .42) 50%, transparent 65%);
  background-size: 250% 100%;
  animation: shine 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine { 0% { background-position: 130% 0; } 55%, 100% { background-position: -130% 0; } }

/* ---------- Ticker band ---------- */
.ticker-wrap { background: linear-gradient(var(--dark) 50%, var(--light) 50%); padding: 22px 0; overflow: hidden; }
.ticker { background: var(--grad); transform: rotate(-2deg); width: 106%; margin-left: -3%; padding: 13px 0; box-shadow: 0 16px 40px -16px rgba(255, 107, 0, .7); overflow: hidden; }
.ticker__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.ticker__track span { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: .02em; text-transform: uppercase; color: #fff; white-space: nowrap; padding: 0 18px; }
.ticker__track i { font-style: normal; color: #1a0a00; opacity: .55; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (min-width: 768px) { .ticker__track span { font-size: 18px; padding: 0 26px; } .ticker { padding: 16px 0; } }

/* ---------- Reveal variants ---------- */
.reveal--zoom { transform: scale(.94); }
.reveal--left { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal.in { transform: none; }

/* ---------- Cursor spotlight (desktop) ---------- */
.svc--primary, .plan, .cmp--win, .feat { --mx: 50%; --my: 0%; }
.svc--primary::after, .plan::after, .cmp--win::after, .feat::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(360px circle at var(--mx) var(--my), rgba(255, 133, 0, .14), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.svc--primary:hover::after, .plan:hover::after, .cmp--win:hover::after, .feat:hover::after { opacity: 1; }
.cmp { position: relative; }

/* ---------- Pricing animations ---------- */
html.js .price__was s { text-decoration: none; background: linear-gradient(var(--orange), var(--orange)) no-repeat 0 55% / 0% 2px; transition: background-size .6s var(--ease) .2s; }
html.js .price.is-counting .price__was s, html.js .price.is-done .price__was s { background-size: 100% 2px; }
.price.is-done .off { animation: pop .6s cubic-bezier(.3, 1.6, .5, 1) both; }
.price__now [data-count] { font-variant-numeric: tabular-nums; }
@keyframes pop { 0% { transform: scale(.6); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }

@property --ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.plan--featured { box-shadow: 0 30px 80px -20px rgba(255, 107, 0, .45), 0 0 120px -30px rgba(255, 107, 0, .6); }
.plan--featured::before {
  content: ""; position: absolute; inset: -2px; border-radius: inherit; padding: 2px; pointer-events: none;
  background: conic-gradient(from var(--ang), #FF6B00, #FFC08A 12%, #FF6B00 25%, #FF8500 50%, #FFC08A 62%, #FF6B00 75%, #FF6B00);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateAng 4s linear infinite;
}
@keyframes rotateAng { to { --ang: 360deg; } }
.plan__badge { animation: badgeGlow 2.4s ease-in-out infinite; z-index: 2; }
@keyframes badgeGlow { 0%, 100% { box-shadow: 0 8px 20px -6px rgba(255, 107, 0, .8); } 50% { box-shadow: 0 8px 30px -2px rgba(255, 107, 0, 1), 0 0 0 6px rgba(255, 107, 0, .15); } }

/* ---------- Icons ---------- */
.svc__icon, .feat__icon, .trust__icon { transition: transform .4s cubic-bezier(.3, 1.6, .5, 1), background .3s, color .3s; }
.svc:hover .svc__icon, .feat:hover .feat__icon { transform: rotate(-8deg) scale(1.1); }
.feat__icon .i, .trust__icon .i { animation: iconBob 4s ease-in-out infinite; }
.feat:nth-child(2) .feat__icon .i, .trust li:nth-child(2) .i { animation-delay: -.7s; }
.feat:nth-child(3) .feat__icon .i, .trust li:nth-child(3) .i { animation-delay: -1.4s; }
.feat:nth-child(4) .feat__icon .i, .trust li:nth-child(4) .i { animation-delay: -2.1s; }
.feat:nth-child(5) .feat__icon .i { animation-delay: -2.8s; }
.feat:nth-child(6) .feat__icon .i { animation-delay: -3.5s; }
@keyframes iconBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.step.is-active .step__node { animation: nodePop .5s cubic-bezier(.3, 1.6, .5, 1); }
@keyframes nodePop { 0% { transform: scale(.85); } 100% { transform: scale(1); } }

/* ---------- WhatsApp pulse rings ---------- */
.wa-float::before, .mbar__wa::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  animation: waRing 2.2s ease-out infinite;
  pointer-events: none;
}
.mbar__wa { position: relative; }
@keyframes waRing { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); } 100% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); } }
.mbar__cta { position: relative; overflow: hidden; isolation: isolate; animation: nudge 7s ease-in-out 3s infinite; }
.mbar__cta .i { width: 18px; height: 18px; }
@keyframes nudge { 0%, 90%, 100% { transform: none; } 92% { transform: translateY(-3px) scale(1.02); } 94% { transform: none; } 96% { transform: translateY(-2px); } }

/* ---------- Form field polish ---------- */
.field .tel {
  display: flex; align-items: stretch;
  background: var(--light);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.field .tel span { display: grid; place-items: center; padding: 0 12px 0 14px; font-weight: 700; font-size: 15px; color: var(--text); border-right: 1.5px solid var(--line); }
.field .tel input, .field .tel input:focus { border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.field .tel:focus-within { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(255, 107, 0, .12); }
.field.has-error .tel { border-color: #e5484d; background: #fff8f8; }
.field.has-error .tel input { background: transparent; }
.shake { animation: shake .45s; }
@keyframes shake { 20%, 60% { transform: translateX(-6px); } 40%, 80% { transform: translateX(6px); } }

.form-card__head { display: flex; align-items: center; gap: 14px; padding-bottom: 20px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-card__head b { display: block; font-family: var(--display); font-size: 18px; letter-spacing: -.02em; }
.form-card__head small { color: var(--muted); font-size: 13.5px; }
.form-card__icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--grad); color: #fff; box-shadow: 0 10px 24px -8px rgba(255, 107, 0, .7); flex-shrink: 0; animation: iconBob 3s ease-in-out infinite; }

/* =========================================================
   LEAD POPUP (bottom sheet on mobile, centered on desktop)
   ========================================================= */
.modal { position: fixed; inset: 0; z-index: 120; visibility: hidden; transition: visibility 0s .55s; }
.modal.is-open { visibility: visible; transition: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .66); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); opacity: 0; transition: opacity .4s; }
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: absolute; left: 0; right: 0; bottom: 0;
  max-height: 94vh; max-height: 94dvh;
  overflow-y: auto; overscroll-behavior: contain;
  background: #fff; color: var(--text);
  border-radius: 28px 28px 0 0;
  padding: 12px 20px calc(18px + env(safe-area-inset-bottom));
  transform: translateY(105%);
  transition: transform .55s cubic-bezier(.2, .9, .2, 1);
  outline: none;
  box-shadow: 0 -20px 60px -10px rgba(255, 107, 0, .35);
}
.modal.is-open .modal__panel { transform: none; }
.modal__panel::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad); border-radius: 28px 28px 0 0; }
.modal__handle { display: block; width: 44px; height: 5px; border-radius: 5px; background: #dcdce0; margin: 2px auto 16px; }
.modal__close { position: absolute; top: 16px; right: 14px; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--light); color: var(--text); z-index: 2; transition: background .2s, transform .3s var(--ease); }
.modal__close:hover { background: #ececef; transform: rotate(90deg); }
.modal__glow { position: absolute; top: -140px; right: -100px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(closest-side, rgba(255, 107, 0, .22), transparent); pointer-events: none; }
.modal__head { position: relative; padding-right: 44px; }
.modal__badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #c24f00; background: #fff4ec; border: 1px solid rgba(255, 107, 0, .3); }
.modal__head h2 { font-size: clamp(24px, 6.4vw, 30px); margin-top: 12px; line-height: 1.12; }
.modal__head p { color: var(--muted); font-size: 15px; margin-top: 8px; }
.modal .lead-form { margin-top: 18px; position: relative; }
.modal .form-plan { margin-bottom: 14px; }
.fgrid--modal { gap: 13px; }
.modal .field input, .modal .field select { min-height: 50px; }
.modal .lead-form .btn[type=submit] { margin-top: 18px; }
.modal__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; margin-top: 14px; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.modal__trust li { display: inline-flex; align-items: center; gap: 5px; }
.modal__trust .i { width: 14px; height: 14px; color: var(--orange); stroke-width: 3; }

.modal.is-open .modal__head, .modal.is-open .field, .modal.is-open .lead-form .btn, .modal.is-open .modal__trust { animation: inUp .55s var(--ease) both; }
.modal.is-open .modal__head { animation-delay: .12s; }
.modal.is-open .field:nth-child(1) { animation-delay: .18s; }
.modal.is-open .field:nth-child(2) { animation-delay: .23s; }
.modal.is-open .field:nth-child(3) { animation-delay: .28s; }
.modal.is-open .field:nth-child(4) { animation-delay: .33s; }
.modal.is-open .lead-form .btn { animation-delay: .38s; }
.modal.is-open .modal__trust { animation-delay: .44s; }

@media (min-width: 768px) {
  .modal__panel {
    left: 50%; top: 50%; right: auto; bottom: auto;
    width: min(500px, calc(100% - 48px));
    max-height: calc(100vh - 48px);
    border-radius: 28px;
    padding: 36px 34px 28px;
    opacity: 0;
    transform: translate(-50%, -46%) scale(.95);
    transition: transform .5s cubic-bezier(.2, .9, .2, 1), opacity .35s;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 107, 0, .25), 0 0 100px -20px rgba(255, 107, 0, .55);
  }
  .modal.is-open .modal__panel { opacity: 1; transform: translate(-50%, -50%); }
  .modal__handle { display: none; }
  .fgrid--modal { grid-template-columns: 1fr 1fr; }
}

/* ---------- Mobile polish ---------- */
@media (max-width: 767px) {
  .hero { padding-top: calc(var(--header-h) + 18px); }
  .hero__sub { font-size: 16px; }
  .hero__ctas .btn { width: 100%; }
  .section { padding-block: 68px; }
  .shead { margin-bottom: 32px; }
  .form-card { padding: 22px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title .ln > span, .in-up, .in-zoom { animation: none !important; }
  .ticker__track { animation: none; }
}

/* Active section link in header */
.nav a.is-active { color: #fff; background: rgba(255, 107, 0, .14); box-shadow: inset 0 0 0 1px rgba(255, 107, 0, .35); }

/* =========================================================
   V3 — LOGO + PERFORMANCE (GPU-friendly animations only)
   ========================================================= */
:root { --display: var(--font); }
h1, h2, h3 { font-weight: 800; letter-spacing: -.035em; }

/* Brand wordmark: matches the official logo (HOWLERS white / DIGITALS orange, same size) */
.brand { gap: 9px; }
.brand__mark { width: 38px; height: 38px; }
.brand__word { font-family: var(--font); font-weight: 800; font-size: 15.5px; line-height: 1.02; letter-spacing: .02em; }
.brand__word span { font-size: 15.5px; letter-spacing: .02em; margin-top: 2px; color: var(--orange-2); }
@media (max-width: 359px) { .brand__word, .brand__word span { font-size: 13.5px; } .brand__mark { width: 32px; height: 32px; } }

/* Big glows: radial gradients instead of blur(80px) filters, no animation */
.glow { filter: none; animation: none !important; }
.glow--1 { background: radial-gradient(closest-side, rgba(255, 107, 0, .38), transparent); }
.glow--2 { background: radial-gradient(closest-side, rgba(255, 133, 0, .14), transparent); }

/* Light streaks: no filter; drift with transform/opacity only */
.streak, .final__bg span:nth-child(2), .final__bg span:nth-child(3) { filter: none; box-shadow: 0 0 8px rgba(255, 107, 0, .6); }
.streak { will-change: transform, opacity; }

/* Hero device mock: remove repaint-heavy effects */
.site::after { display: none; }
.site__art .orb, .psite__art { animation: orbPulse 8s ease-in-out infinite; filter: none; }
@keyframes orbPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
.fcard { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(20, 20, 20, .95); will-change: transform; }
.site__art .card-a, .site__art .card-b { backdrop-filter: none; }

/* Headline gradient: static (moving background re-paints the text every frame) */
.hero__title .ln > .text-grad { animation: lineUp 1s var(--ease) both; animation-delay: var(--d, 0s); }

/* Button shine: a moving highlight layer (transform) instead of animating background-position */
.btn--shine::after, .mbar__cta::after, .hcta::after {
  inset: 0 auto 0 0; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  background-size: auto;
  transform: translateX(-130%) skewX(-18deg);
  animation: shineMove 3.4s ease-in-out infinite;
  will-change: transform;
}
@keyframes shineMove { 0% { transform: translateX(-130%) skewX(-18deg); } 55%, 100% { transform: translateX(330%) skewX(-18deg); } }

/* Most Popular badge: static glow */
.plan__badge { animation: none; }

/* Rotating plan border only on desktop; static gradient ring on phones/tablets */
@media (max-width: 1023px), (hover: none) {
  .plan--featured::before { animation: none; }
}

/* WhatsApp rings: scale + fade (compositor) instead of animating box-shadow */
.wa-float::before, .mbar__wa::before { box-shadow: none; background: #25D366; z-index: -1; animation: waPing 2.2s ease-out infinite; will-change: transform, opacity; }
.mbar__wa { isolation: isolate; }
.mbar__wa::before { animation-name: waPingSoft; }
@keyframes waPing { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.55); opacity: 0; } }
@keyframes waPingSoft { 0% { transform: scale(1); opacity: .45; } 100% { transform: scale(1.18, 1.35); opacity: 0; } }

/* Fewer always-running animations */
.feat__icon .i, .trust__icon .i, .form-card__icon { animation: none; }

/* Sticky bars: solid backgrounds (backdrop blur is expensive while scrolling on phones) */
.mbar { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(13, 13, 13, .97); }
@media (max-width: 1023px) {
  .header.is-scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(8, 8, 8, .96); }
}

/* Pause decorative loops while their section is off-screen (set by main.js) */
.anim-paused, .anim-paused *, .anim-paused *::before, .anim-paused *::after { animation-play-state: paused !important; }
.hcta { flex-shrink: 0; }
/* Pulse dots: expanding ring via transform/opacity (no box-shadow animation) */
.pulse { position: relative; animation: none; box-shadow: none; }
.pulse::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: inherit; animation: dotPing 2s ease-out infinite; will-change: transform, opacity; }
@keyframes dotPing { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(2.8); opacity: 0; } }

/* Snappy timing: content appears almost instantly */
.in-up { animation-duration: .45s; }
.in-zoom { animation-duration: .6s; }
.hero__title .ln > span, .hero__title .ln > .text-grad { animation-duration: .55s; }
.reveal { transform: translateY(10px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.reveal--zoom { transform: scale(.97); }
.reveal--left { transform: translateX(-14px); }
.reveal--right { transform: translateX(14px); }
.reveal.in { transform: none; }
.services .reveal, .features .reveal, .steps .reveal, .work .reveal { transition-delay: 0s !important; }
.modal.is-open .modal__head, .modal.is-open .field, .modal.is-open .lead-form .btn, .modal.is-open .modal__trust { animation-duration: .3s; }
