/* ============================================================
   THINKDIGIX — DESIGN TOKENS
   ============================================================ */
:root{
  --black: #0a0a0a;
  --charcoal: #161616;
  --charcoal-2: #1f1f1f;
  --white: #ffffff;
  --off-white: #fafafa;
  --red: #e10600;
  --red-dim: #a30400;
  --grey: #6b6b6b;
  --grey-light: #9c9c9c;
  --border-light: #ececec;
  --border-dark: #2a2a2a;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1180px;
  --radius: 14px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ============================================================
   RESET
   ============================================================ */
*,*::before,*::after{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
input,textarea,select{ font-family:inherit; font-size:16px; }

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

/* visible keyboard focus for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2.5px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress{
  position: fixed; top:0; left:0; height:3px; width:0%;
  background: linear-gradient(90deg, var(--red), #ff5b4d);
  z-index: 1002;
  transition: width .12s linear;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader{
  position: fixed; inset:0; z-index:9999;
  background: var(--black);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.hidden{ opacity:0; visibility:hidden; }
.preloader-mark{
  font-family: var(--font-display);
  font-weight:700; font-size:2.6rem; color:var(--white);
  letter-spacing:.05em;
  position:relative;
  animation: pulseMark 1.1s var(--ease) infinite;
}
.preloader-mark::after{
  content:'';
  position:absolute; left:50%; bottom:-10px; transform:translateX(-50%);
  width:0; height:3px; background:var(--red);
  animation: loadBar 1.1s var(--ease) infinite;
}
@keyframes pulseMark{ 0%,100%{ opacity:1 } 50%{ opacity:.55 } }
@keyframes loadBar{ 0%{ width:0 } 50%{ width:48px } 100%{ width:0 } }

/* ============================================================
   CUSTOM CURSOR PULSE (desktop only, decorative)
   ============================================================ */
.cursor-dot{
  position: fixed; width:10px; height:10px; border-radius:50%;
  background: var(--red); pointer-events:none; z-index:9998;
  transform: translate(-50%,-50%);
  transition: transform .15s var(--ease), opacity .3s;
  mix-blend-mode: difference;
  opacity:0;
}
@media (hover:hover) and (pointer:fine){
  .cursor-dot{ opacity:.85; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal-up{
  opacity:0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-up.in-view{ opacity:1; transform:none; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar{
  position: sticky; top:0; left:0; right:0; z-index:1001;
  background: var(--red); color: var(--white);
  padding: 9px 0; font-size:.84rem; font-weight:600;
}
.announce-inner{
  display:flex; align-items:center; justify-content:center; gap:24px; flex-wrap:wrap; text-align:center;
}
.announce-inner s{ opacity:.75; margin-right:4px; }
.announce-call{
  display:inline-flex; align-items:center; gap:4px;
  border-left: 1px solid rgba(255,255,255,.4); padding-left:20px;
}
.announce-call:hover{ text-decoration: underline; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: sticky; top:0; left:0; right:0; z-index:1000;
  padding: 22px 0;
  background: var(--black);
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled{
  padding: 14px 0;
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
}
.logo{
  font-family: var(--font-display);
  font-weight:700; font-size:1.4rem;
  color: var(--white);
  position:relative; letter-spacing:0;
  text-transform: uppercase;
  display:inline-flex; align-items:center; gap:6px;
}
.logo-accent{ color: var(--red); }

.main-nav{ display:flex; align-items:center; gap:34px; }
.main-nav a{
  color: rgba(255,255,255,.78); font-size:.94rem; font-weight:500;
  position:relative; padding:4px 0; transition: color .25s;
}
.main-nav a:not(.nav-cta)::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:1.5px;
  background: var(--red); transition: width .3s var(--ease);
}
.main-nav a:not(.nav-cta):hover{ color:var(--white); }
.main-nav a:not(.nav-cta):hover::after{ width:100%; }

.nav-cta{
  background: var(--red); color:var(--white) !important;
  padding:11px 22px 11px 18px; border-radius: 999px; font-weight:600 !important;
  line-height:1.2; display:inline-flex; align-items:center; gap:6px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.nav-cta:hover{ transform: translateY(-2px); box-shadow: 0 10px 24px rgba(225,6,0,.4); background: var(--red-dim); }

.nav-toggle{ display:none; flex-direction:column; gap:5px; width:28px; }
.nav-toggle span{ height:2px; background:var(--white); border-radius:2px; transition: all .3s var(--ease); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 30px; border-radius: 999px;
  font-weight:600; font-size:.96rem; font-family: var(--font-body);
  line-height:1.2;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space:nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary{
  background: var(--red); color: var(--white);
  box-shadow: 0 10px 26px rgba(225,6,0,.28);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 14px 32px rgba(225,6,0,.42); background: var(--red-dim); }

/* shine sweep on hover, used on the primary CTAs */
.btn-shine::before{
  content:'';
  position:absolute; top:0; left:-120%; width:60%; height:100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg);
  transition: left .65s var(--ease);
  pointer-events:none;
}
.btn-shine:hover::before{ left:140%; }

.btn-ghost{
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover{ border-color: var(--white); background: rgba(255,255,255,.06); transform: translateY(-3px); }

/* on light-background sections (final CTA, pricing, etc.) flip ghost button to dark text so it stays visible */
.final-cta .btn-ghost,
.pricing .btn-ghost,
.faq .btn-ghost,
.included .btn-ghost{
  color: var(--black);
  border-color: rgba(0,0,0,.25);
}
.final-cta .btn-ghost:hover,
.pricing .btn-ghost:hover,
.faq .btn-ghost:hover,
.included .btn-ghost:hover{
  border-color: var(--black); background: rgba(0,0,0,.05);
}
.btn-outline{
  background: transparent; color: var(--black);
  border: 1.5px solid var(--black); width:100%;
}
.btn-outline:hover{ background: var(--black); color: var(--white); transform: translateY(-3px); }
.btn-block{ width:100%; }
.btn-ghost-dark{
  background: transparent; color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-ghost-dark:hover{ background: var(--black); color: var(--white); transform: translateY(-3px); }

.btn:active{ transform: translateY(0) scale(.97); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  background: var(--black); color: var(--white);
  padding: 64px 0 0;
  overflow:hidden;
}
.hero-grid-lines{
  position:absolute; inset:0; opacity:.5;
  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: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 10%, transparent 70%);
  transition: transform .2s linear;
  will-change: transform;
}
/* slow ambient gradient glow drifting behind the hero copy */
.hero-glow{
  position:absolute; z-index:1; inset:-20% -10% auto -10%; height:70%;
  background: radial-gradient(circle at 30% 30%, rgba(225,6,0,.22), transparent 60%),
              radial-gradient(circle at 75% 60%, rgba(255,255,255,.06), transparent 55%);
  filter: blur(10px);
  animation: glowDrift 14s ease-in-out infinite;
  pointer-events:none;
}
@keyframes glowDrift{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(3%, 4%) scale(1.08); }
}
.hero-inner{ position:relative; z-index:2; padding-bottom:90px; }
.eyebrow{
  font-family: var(--font-display); font-size:.84rem; font-weight:600;
  color: var(--red); letter-spacing:.06em; text-transform:uppercase;
  margin-bottom:18px;
}
.eyebrow.light{ color: var(--red); }

.offer-badge{
  display:inline-block; background: rgba(225,6,0,.12); color: var(--red);
  border: 1px solid rgba(225,6,0,.35); padding:8px 18px; border-radius:999px;
  font-family: var(--font-display); font-weight:600; font-size:.84rem;
  letter-spacing:.03em; text-transform:uppercase; margin-bottom:22px;
  animation: badgePop .6s var(--ease) .2s both;
}
@keyframes badgePop{
  from{ opacity:0; transform: scale(.85) translateY(6px); }
  to{ opacity:1; transform:none; }
}

.price-flash{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:26px;
}
.price-old{ color: rgba(255,255,255,.45); text-decoration:line-through; font-size:.95rem; }
.price-new{
  font-family: var(--font-display); font-weight:700; font-size:1.4rem; color: var(--white);
  background: var(--charcoal-2); padding:6px 16px; border-radius:8px; border:1px solid var(--border-dark);
}
.price-save{
  color: var(--red); font-weight:600; font-size:.92rem;
  animation: flashSave 1.6s ease-in-out infinite;
}
@keyframes flashSave{ 0%,100%{ opacity:1 } 50%{ opacity:.5 } }

.hero-title{
  font-family: var(--font-display); font-weight:700;
  font-size: clamp(2.1rem, 5.6vw, 4.6rem);
  line-height:1.08; letter-spacing:-.02em;
  max-width: 880px; margin-bottom:26px;
}
.text-red{ color: var(--red); }
.text-stroke{
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}

.hero-sub{
  font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgba(255,255,255,.66);
  max-width: 560px; margin-bottom:30px;
}

.hero-checks{
  display:flex; gap:18px; flex-wrap:wrap; margin-bottom:36px;
}
.hero-checks li{
  font-size:.92rem; color: rgba(255,255,255,.85); font-weight:500;
}

.hero-microcopy{
  font-size:.84rem; color: rgba(255,255,255,.45); margin-bottom:54px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:54px; }

.hero-stats{
  display:grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 36px; gap:20px;
}
.stat{ display:flex; flex-direction:column; }
.stat-num,.stat-suffix{
  font-family: var(--font-display); font-weight:700;
  font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--white); display:inline;
}
.stat-suffix{ color: var(--red); }
.stat-label{
  font-size:.86rem; color: rgba(255,255,255,.55); margin-top:6px;
}

.hero-ticker{
  position:relative; z-index:2;
  border-top:1px solid rgba(255,255,255,.12);
  background: var(--charcoal);
  overflow:hidden; padding:16px 0;
}
.ticker-track{
  display:flex; gap:14px; white-space:nowrap; width:max-content;
  animation: scrollTicker 26s linear infinite;
  font-family: var(--font-display); font-weight:600; font-size:.95rem;
  color: rgba(255,255,255,.7); letter-spacing:.03em; text-transform:uppercase;
}
.ticker-track .dot{ color: var(--red); }
@keyframes scrollTicker{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip{ background: var(--off-white); padding: 50px 0; border-bottom:1px solid var(--border-light); text-align:center; }
.trust-stats{
  display:flex; justify-content:center; gap:70px; flex-wrap:wrap; margin-bottom:14px;
}
.trust-stats > div{ display:flex; flex-direction:column; align-items:center; }
.trust-num{
  font-family: var(--font-display); font-weight:700; font-size:2.2rem; color: var(--black);
}
.trust-stats > div span:last-child{ font-size:.88rem; color: var(--grey); margin-top:4px; }
.trust-fine{ font-size:.8rem; color: var(--grey-light); }

/* ============================================================
   SECTION SHARED
   ============================================================ */
section{ padding: 110px 0; }
.section-title{
  font-family: var(--font-display); font-weight:700;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height:1.12; letter-spacing:-.02em;
  margin-bottom:20px; max-width:680px;
}
.section-title.light{ color: var(--white); }
.section-sub{
  font-size: clamp(.96rem, 1.4vw, 1.08rem); color: var(--grey); max-width:540px; margin-bottom:50px;
}

/* ============================================================
   WHAT'S INCLUDED
   ============================================================ */
.included{ background: var(--white); }
.included-grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap:22px; margin-bottom:60px;
}
.included-card{
  background: var(--off-white); border:1px solid var(--border-light); border-radius: var(--radius);
  padding:28px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.included-card:hover{
  transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.08); border-color: var(--red);
}
.included-icon{
  font-size:1.7rem; display:block; margin-bottom:14px;
  transition: transform .35s var(--ease);
}
.included-card:hover .included-icon{ transform: scale(1.18) rotate(-6deg); }
.included-card h3{ font-family: var(--font-display); font-size:1.02rem; margin-bottom:8px; }
.included-card h3 em{ color: var(--red); font-style:normal; font-size:.82rem; font-weight:500; }
.included-card p{ font-size:.88rem; color: var(--grey); }

.bonus-box{
  background: var(--black); color: var(--white); border-radius: var(--radius);
  padding: 44px; text-align:center; position:relative; overflow:hidden;
}
.bonus-box::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 50% 0%, rgba(225,6,0,.18), transparent 60%);
  animation: glowDrift 10s ease-in-out infinite;
}
.bonus-box > *{ position:relative; z-index:1; }
.bonus-box h3{ font-family: var(--font-display); font-size:1.3rem; margin-bottom:20px; }
.bonus-box ul{ display:inline-flex; flex-direction:column; gap:10px; margin-bottom:18px; text-align:left; }
.bonus-box ul li{ font-size:.96rem; }
.bonus-box ul li em{ color: var(--red); font-style:normal; }
.bonus-total{ font-weight:700; color: var(--red); margin-bottom:26px; font-family: var(--font-display); }

/* tilt-on-hover micro interaction, JS sets the rotation vars on mousemove */
.tilt-card{
  --rx: 0deg; --ry: 0deg;
  transform: perspective(800px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0);
}

/* ============================================================
   WORK
   ============================================================ */
.work{ background: var(--black); color:var(--white); }
.work-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; }
.work-card{
  border-radius: var(--radius); overflow:hidden;
  border:1px solid var(--border-dark);
  background: var(--charcoal);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s var(--ease);
}
.work-card:hover{
  transform: translateY(-10px);
  border-color: var(--red);
  box-shadow: 0 30px 60px rgba(225,6,0,.18);
}
.work-thumb{
  height:190px; position:relative; display:flex; align-items:flex-end;
  padding:18px; overflow:hidden;
  background: var(--charcoal-2);
}
.work-thumb-red{
  background: radial-gradient(circle at 30% 20%, rgba(225,6,0,.35), transparent 55%), var(--charcoal-2);
}
.work-thumb-dark{
  background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.08), transparent 55%), var(--charcoal-2);
}
.work-thumb::before{
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity:.5;
}
.work-thumb::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.75) 100%);
}
.work-icon{
  position:absolute; top:50%; left:50%;
  transform: translate(-50%,-58%);
  font-size:3.4rem; opacity:.9;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.5));
  transition: transform .5s var(--ease);
  z-index:1;
}
.work-card:hover .work-icon{ transform: translate(-50%,-62%) scale(1.12); }
.work-tag{
  position:relative; z-index:2;
  background: rgba(255,255,255,.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  font-size:.74rem; font-weight:600; padding:6px 12px; border-radius:999px;
  text-transform:uppercase; letter-spacing:.04em;
}
.work-card h3{ font-family: var(--font-display); font-size:1.08rem; padding:18px 18px 6px; }
.work-card p{ font-size:.86rem; color: rgba(255,255,255,.6); padding:0 18px 20px; }
.work-result{
  display:flex; align-items:center; gap:6px;
  margin:0 18px 20px; padding-top:14px; border-top:1px dashed var(--border-dark);
  font-size:.82rem; font-weight:600; color: var(--red);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing{ background: var(--off-white); }
.pricing-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; align-items:stretch; }
.price-card{
  background: var(--white); border:1px solid var(--border-light); border-radius: var(--radius);
  padding: 40px 32px; display:flex; flex-direction:column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position:relative;
}
.price-card:hover{ transform: translateY(-8px); box-shadow: 0 26px 50px rgba(0,0,0,.10); }
.price-card.featured{
  background: var(--black); color: var(--white); border-color: var(--black);
  transform: scale(1.04);
}
.price-card.featured:hover{ transform: scale(1.04) translateY(-8px); }
.price-badge{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background: var(--red); color:var(--white); font-size:.74rem; font-weight:700;
  padding:6px 16px; border-radius:999px; text-transform:uppercase; letter-spacing:.04em;
  animation: flashSave 1.8s ease-in-out infinite;
}
.price-card h3{ font-family: var(--font-display); font-size:1.4rem; margin-bottom:8px; }
.price-desc{ font-size:.9rem; color: var(--grey); margin-bottom:24px; min-height:42px; }
.price-card.featured .price-desc{ color: rgba(255,255,255,.6); }
.price-amount{
  font-family: var(--font-display); font-weight:700; font-size:2.6rem;
  margin-bottom:28px;
}
.price-amount .currency{ font-size:1.6rem; vertical-align:6px; margin-right:2px; }
.price-amount .price-plus{ font-size:1.4rem; color:var(--red); }
.price-features{ flex:1; margin-bottom:30px; }
.price-features li{
  font-size:.92rem; padding:10px 0 10px 26px; position:relative;
  border-top: 1px solid var(--border-light);
}
.price-card.featured .price-features li{ border-top-color: rgba(255,255,255,.12); }
.price-features li:first-child{ border-top:none; }
.price-features li::before{
  content:'✓'; position:absolute; left:0; color: var(--red); font-weight:700;
}

.custom-quote{
  margin-top:50px; text-align:center; background: var(--off-white);
  border:1px dashed var(--grey-light); border-radius: var(--radius); padding:40px;
}
.custom-quote h3{ font-family: var(--font-display); font-size:1.2rem; margin-bottom:10px; }
.custom-quote p{ color: var(--grey); max-width:480px; margin:0 auto 22px; font-size:.95rem; }

/* ============================================================
   WORK CTA
   ============================================================ */
.work-cta{ text-align:center; margin-top:50px; }
.work-cta p{ font-size:.84rem; color: rgba(255,255,255,.45); margin-top:14px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta{ background: var(--off-white); }
.final-cta-inner{ text-align:center; max-width:680px; margin:0 auto; }
.final-cta .section-sub{ margin-left:auto; margin-right:auto; }
.final-cta .hero-actions{ justify-content:center; margin-bottom:18px; }
.final-cta .hero-microcopy{ color: var(--grey-light); margin-bottom:0; }

/* ============================================================
   PROCESS
   ============================================================ */
.process{ background: var(--white); }
.process-track{
  display:grid; grid-template-columns: repeat(5,1fr); gap:20px;
  position:relative;
}
.process-track::before{
  content:''; position:absolute; top:26px; left:0; right:0; height:1.5px;
  background: var(--border-light); z-index:0;
}
.process-step{ position:relative; z-index:1; }
.step-num{
  width:52px; height:52px; border-radius:50%;
  background: var(--white); border:1.5px solid var(--black);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; font-size:1rem;
  margin-bottom:22px; transition: background .3s, color .3s, border-color .3s;
}
.process-step:hover .step-num{ background: var(--red); border-color:var(--red); color:var(--white); }
.process-step h3{ font-family: var(--font-display); font-size:1.1rem; margin-bottom:10px; }
.process-step p{ font-size:.88rem; color: var(--grey); }

/* ============================================================
   FAQ
   ============================================================ */
.faq{ background: var(--off-white); }
.faq-inner{ display:grid; grid-template-columns: .85fr 1.15fr; gap:60px; align-items:start; }
.faq-head{ position:sticky; top:120px; display:flex; flex-direction:column; align-items:flex-start; gap:24px; }
.faq-list{ display:flex; flex-direction:column; gap:14px; }
.faq-item{
  background: var(--white); border:1px solid var(--border-light); border-radius:12px;
  overflow:hidden; transition: border-color .3s;
}
.faq-item.open{ border-color: var(--black); }
.faq-question{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:22px 24px; text-align:left; font-weight:600; font-size:1rem;
}
.faq-icon{
  font-family: var(--font-display); font-size:1.3rem; color: var(--red);
  transition: transform .35s var(--ease); flex-shrink:0; margin-left:16px;
}
.faq-item.open .faq-icon{ transform: rotate(45deg); }
.faq-answer{
  max-height:0; overflow:hidden; transition: max-height .4s var(--ease);
}
.faq-answer p{ padding:0 24px 22px; color: var(--grey); font-size:.95rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact{ background: var(--black); color:var(--white); position:relative; }
.contact-inner{ max-width:780px; }
.contact .section-sub{ color: rgba(255,255,255,.6); }
.contact-form{
  background: var(--charcoal); border:1px solid var(--border-dark);
  border-radius: var(--radius); padding:40px; display:flex; flex-direction:column; gap:20px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group{ display:flex; flex-direction:column; gap:8px; }
.form-group label{ font-size:.85rem; font-weight:600; color: rgba(255,255,255,.75); }
.form-group input, .form-group select, .form-group textarea{
  background: var(--black); border:1px solid var(--border-dark); border-radius:8px;
  padding:13px 16px; color: var(--white); transition: border-color .25s, box-shadow .25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  outline:none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,6,0,.18);
}
.form-group textarea{ resize:vertical; }
.form-group select{ appearance:none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e10600' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 16px center; }
.form-note{ text-align:center; font-size:.82rem; color: rgba(255,255,255,.45); }

.form-success{
  display:none; text-align:center; padding:60px 40px;
  background: var(--charcoal); border:1px solid var(--border-dark); border-radius: var(--radius);
}
.form-success.show{ display:block; animation: fadeUp .5s var(--ease); }
.success-mark{
  width:64px; height:64px; border-radius:50%; background: var(--red);
  display:flex; align-items:center; justify-content:center; font-size:1.8rem;
  margin:0 auto 22px;
}
.form-success h3{ font-family: var(--font-display); font-size:1.4rem; margin-bottom:10px; }
.form-success p{ color: rgba(255,255,255,.6); }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(14px);} to{ opacity:1; transform:none; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background: var(--black); color: rgba(255,255,255,.7); padding-top:80px; }
.footer-inner{
  display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap:50px;
  padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand .logo{ margin-bottom:18px; }
.footer-brand p{ font-size:.92rem; max-width:280px; color: rgba(255,255,255,.5); }
.footer-col h4{ font-family: var(--font-display); color: var(--white); font-size:.95rem; margin-bottom:18px; }
.footer-col a, .footer-col span{ display:block; font-size:.9rem; margin-bottom:12px; color: rgba(255,255,255,.55); transition: color .25s, transform .25s; }
.footer-col a:hover{ color: var(--red); transform: translateX(3px); }
.footer-bottom{ display:flex; justify-content:space-between; padding:26px 0; font-size:.84rem; flex-wrap:wrap; gap:10px; }
.footer-tag{ color: var(--red); font-weight:600; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float{
  position: fixed; bottom:26px; right:26px; z-index:900;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 28px rgba(37,211,102,.4);
  animation: floatPulse 2.4s ease-in-out infinite;
  transition: transform .25s var(--ease);
}
.whatsapp-float:hover{ transform: scale(1.1); }
@keyframes floatPulse{
  0%,100%{ box-shadow: 0 12px 28px rgba(37,211,102,.4); }
  50%{ box-shadow: 0 12px 28px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.08); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* large tablets / small laptops */
@media (max-width: 1180px){
  .container{ padding: 0 24px; }
  .work-grid{ grid-template-columns: repeat(2,1fr); }
}

/* tablets */
@media (max-width: 1024px){
  .included-grid{ grid-template-columns: repeat(2,1fr); }
  .pricing-grid{ grid-template-columns: 1fr; max-width:440px; margin:0 auto; }
  .price-card.featured{ transform:none; order:-1; }
  .price-card.featured:hover{ transform: translateY(-8px); }
  .faq-inner{ grid-template-columns:1fr; }
  .faq-head{ position:static; flex-direction:row; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:18px; }
  .footer-inner{ grid-template-columns: 1fr 1fr; row-gap:40px; }
  .trust-stats{ gap:40px; }
  .process-track{ grid-template-columns: repeat(3,1fr); row-gap:40px; }
  .process-track::before{ display:none; }
}

/* small tablets / large phones (landscape) */
@media (max-width: 900px){
  .hero-stats{ gap:24px 16px; }
  section{ padding:88px 0; }
}

/* phones */
@media (max-width: 760px){
  section{ padding:76px 0; }
  .announce-bar{ padding:10px 0; }
  .announce-inner{ font-size:.76rem; gap:10px; flex-direction:column; }
  .announce-call{ border-left:none; padding-left:0; }
  .hero-stats{ grid-template-columns: repeat(2,1fr); row-gap:28px; }
  .main-nav{
    position: fixed; top:0; right:0; height:100vh; width:min(78vw,320px);
    background: var(--black); flex-direction:column; align-items:flex-start;
    padding:32px 32px 40px; gap:26px;
    transform: translateX(100%); transition: transform .4s var(--ease);
    overflow-y:auto;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav a{ font-size:1.1rem; }
  .nav-toggle{ display:flex; z-index:1001; }
  .nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .included-grid{ grid-template-columns:1fr; }
  .work-grid{ grid-template-columns:1fr; }
  .trust-stats{ gap:28px 40px; }
  .faq-head{ flex-direction:column; align-items:flex-start; }
  .footer-inner{ grid-template-columns:1fr; gap:34px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .bonus-box{ padding:30px 22px; }
  .cursor-dot{ display:none; }
  .text-stroke{ -webkit-text-stroke: 1px var(--white); }
  .process-track{ grid-template-columns: 1fr 1fr; }
  .hero-actions, .final-cta .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-actions .btn, .final-cta .hero-actions .btn{ width:100%; }
  .tilt-card{ transform:none !important; }
}

/* small phones */
@media (max-width: 480px){
  .hero-title{ font-size: clamp(1.9rem, 9vw, 2.4rem); }
  .hero-stats{ grid-template-columns: repeat(2,1fr); }
  .btn{ padding:14px 22px; font-size:.9rem; }
  .price-flash{ flex-direction:column; align-items:flex-start; gap:8px; }
  .price-amount{ font-size:2.2rem; }
  .work-thumb{ height:160px; }
  .process-track{ grid-template-columns: 1fr; }
  .whatsapp-float{ width:50px; height:50px; bottom:18px; right:18px; }
  .work-icon{ font-size:2.6rem; }
  .bonus-box .btn, .custom-quote .btn, .work-cta .btn{ width:100%; max-width:320px; }
}

/* very small phones */
@media (max-width: 360px){
  .container{ padding:0 18px; }
  .hero-title{ font-size: clamp(1.7rem, 9vw, 2.1rem); }
  .offer-badge{ font-size:.74rem; padding:7px 14px; }
  .btn{ padding:13px 18px; font-size:.86rem; }
}

/* landscape phones */
@media (max-height: 480px) and (orientation: landscape){
  .announce-bar{ position: static; }
}