/* ==========================================================================
   RED8 MEDIAS — Stylesheet
   Palette sampled from the brand logo: black, white, saturated red.
   ========================================================================== */

:root{
  --c-bg: #08080a;
  --c-bg-alt: #0e0e11;
  --c-surface: #141418;
  --c-surface-2: #1c1c21;
  --c-border: rgba(255,255,255,0.08);
  --c-border-strong: rgba(255,255,255,0.16);

  --c-red: #e8121f;
  --c-red-light: #ff4b4b;
  --c-red-dark: #8c0000;
  --c-red-glow: rgba(232,18,31,0.35);

  --c-white: #f7f7f8;
  --c-text: #e7e7ea;
  --c-muted: #a5a5b0;
  --c-muted-2: #6f6f7a;

  --grad-red: linear-gradient(135deg, #ff3b3b 0%, #c8081a 55%, #7a0000 100%);
  --grad-text: linear-gradient(90deg, #ff5252 0%, #ff8a3d 100%);

  --font-head: 'Sora', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --ease: cubic-bezier(.22,.9,.35,1);
}

/* ---- Reset ---- */
*,*::before,*::after{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font:inherit; cursor:pointer; border:none; background:none; color:inherit; }
input,textarea,select{ font:inherit; color:inherit; }
h1,h2,h3,h4{ font-family: var(--font-head); font-weight:700; letter-spacing:-0.01em; line-height:1.15; color:var(--c-white); }
svg.icon{ width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
svg.icon-sm{ width:16px; height:16px; }
.container{ width:100%; max-width: var(--container); margin-inline:auto; padding-inline: 24px; }

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

/* ---- Text helpers ---- */
.text-grad{
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 0.78rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase;
  color: var(--c-red-light);
  margin-bottom: 14px;
}
.eyebrow.center{ justify-content:center; width:100%; }

/* ---- Buttons ---- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight:600; font-size:0.95rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--grad-red);
  color:#fff;
  box-shadow: 0 8px 24px -8px var(--c-red-glow);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 14px 32px -8px var(--c-red-glow); }
.btn-outline{
  border:1.5px solid var(--c-border-strong);
  color: var(--c-white);
}
.btn-outline:hover{ border-color: var(--c-red); color: var(--c-red-light); transform: translateY(-3px); }
.btn-ghost{ color: var(--c-white); border:1.5px solid transparent; }
.btn-ghost:hover{ color: var(--c-red-light); }
.btn-ghost-light{ border:1.5px solid rgba(255,255,255,0.5); color:#fff; }
.btn-ghost-light:hover{ background: rgba(255,255,255,0.12); }
.btn-lg{ padding: 16px 32px; font-size:1rem; }
.btn-sm{ padding: 10px 20px; font-size:0.85rem; }
.btn-block{ width:100%; }

/* ---- Reveal-on-scroll ---- */
[data-reveal]{
  opacity:0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].in-view{ opacity:1; transform:none; }
[data-reveal-delay="1"]{ transition-delay: .12s; }
[data-reveal-delay="2"]{ transition-delay: .24s; }
[data-reveal-delay="3"]{ transition-delay: .36s; }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader{
  position:fixed; inset:0; z-index:9999;
  background: var(--c-bg);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:20px;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.done{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-mark{ font-family: var(--font-head); font-size: clamp(2rem,6vw,3.2rem); font-weight:800; letter-spacing:0.02em; display:flex; }
.preloader-mark .pl-r{ color:#fff; }
.preloader-mark .pl-8{ color: var(--c-red); animation: pulse8 1.4s ease-in-out infinite; }
@keyframes pulse8{ 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.15) rotate(6deg); } }
.preloader-bar{ width:180px; height:3px; background: var(--c-surface-2); border-radius:99px; overflow:hidden; }
.preloader-bar span{ display:block; height:100%; width:40%; background: var(--grad-red); border-radius:99px; animation: loadbar 1.1s ease-in-out infinite; }
@keyframes loadbar{ 0%{ transform:translateX(-100%);} 100%{ transform:translateX(350%);} }

/* ==========================================================================
   CURSOR GLOW
   ========================================================================== */
.cursor-glow{
  position:fixed; top:0; left:0; width:420px; height:420px; border-radius:50%;
  background: radial-gradient(circle, var(--c-red-glow) 0%, transparent 70%);
  pointer-events:none; z-index:2; transform: translate(-50%,-50%);
  opacity:0; transition: opacity .4s ease;
  mix-blend-mode: screen;
}
.cursor-glow.active{ opacity:1; }
@media (hover:none), (pointer:coarse){ .cursor-glow{ display:none; } }

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar{
  background: var(--grad-red);
  color:#fff;
  font-size:0.82rem;
  padding: 9px 20px;
  display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; text-align:center;
  position:relative; z-index:100;
}
.topbar-cta{ font-weight:700; display:inline-flex; align-items:center; gap:4px; text-decoration:underline; text-underline-offset:3px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:90;
  background: rgba(8,8,10,0.65);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom:1px solid transparent;
  transition: border-color .3s ease, background .3s ease, padding .3s ease;
}
.site-header.scrolled{ border-color: var(--c-border); background: rgba(8,8,10,0.9); }
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; padding-block:14px; transition: padding .3s ease; }
.brand-logo{ height:32px; width:auto; }
.main-nav ul{ display:flex; align-items:center; gap:30px; }
.main-nav a{ font-size:0.92rem; font-weight:600; color: var(--c-muted); transition: color .2s ease; position:relative; }
.main-nav a::after{ content:''; position:absolute; left:0; bottom:-6px; width:0; height:2px; background: var(--grad-red); transition: width .25s var(--ease); }
.main-nav a:hover{ color:#fff; }
.main-nav a:hover::after{ width:100%; }
.header-actions{ display:flex; align-items:center; gap:16px; }
.header-phone{ display:flex; align-items:center; gap:7px; font-weight:600; font-size:0.88rem; color:var(--c-muted); transition: color .2s ease; }
.header-phone:hover{ color: var(--c-red-light); }
.menu-toggle{ display:none; color:#fff; padding:6px; }

@media (max-width: 1024px){
  .main-nav{ display:none; }
  .header-phone{ display:none; }
  .menu-toggle{ display:flex; }
}
@media (max-width: 560px){
  .header-actions .btn{ display:none; }
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu{
  position:fixed; top:0; right:0; height:100%; width:min(360px, 86vw);
  background: var(--c-bg-alt);
  border-left:1px solid var(--c-border);
  z-index:200;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  display:flex; flex-direction:column; padding: 20px 28px 32px;
}
.mobile-menu.open{ transform: translateX(0); }
.mobile-menu-head{ display:flex; align-items:center; justify-content:space-between; padding-bottom:24px; border-bottom:1px solid var(--c-border); margin-bottom:24px; }
.menu-close{ color:#fff; }
.mobile-menu nav ul{ display:flex; flex-direction:column; gap:6px; flex:1; }
.mobile-menu nav a{ display:block; padding:12px 4px; font-size:1.1rem; font-weight:600; color: var(--c-text); border-bottom:1px solid rgba(255,255,255,0.05); transition: color .2s ease, padding-left .2s ease; }
.mobile-menu nav a:hover{ color: var(--c-red-light); padding-left:10px; }
.mobile-menu-foot{ display:flex; flex-direction:column; gap:18px; padding-top:20px; }
.mobile-socials{ display:flex; gap:16px; justify-content:center; }
.mobile-socials a{ width:40px; height:40px; border-radius:50%; border:1px solid var(--c-border); display:flex; align-items:center; justify-content:center; color: var(--c-muted); transition: all .2s ease; }
.mobile-socials a:hover{ color:#fff; border-color: var(--c-red); background: var(--c-red); }
.mobile-menu-backdrop{
  position:fixed; inset:0; background: rgba(0,0,0,0.6); backdrop-filter: blur(2px);
  z-index:190; opacity:0; visibility:hidden; transition: opacity .4s ease, visibility .4s ease;
}
.mobile-menu-backdrop.open{ opacity:1; visibility:visible; }
body.menu-locked{ overflow:hidden; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative; overflow:hidden;
  padding: 90px 0 70px;
  min-height: 92vh; display:flex; align-items:center;
}
.hero-canvas{ position:absolute; inset:0; width:100%; height:100%; opacity:0.55; }
.hero-glow{ position:absolute; border-radius:50%; filter: blur(90px); opacity:0.35; pointer-events:none; }
.hero-glow-1{ width:520px; height:520px; background: var(--c-red); top:-160px; left:-140px; }
.hero-glow-2{ width:420px; height:420px; background: var(--c-red-dark); bottom:-140px; right:-100px; }

.hero-inner{ position:relative; z-index:2; display:grid; grid-template-columns: 1.05fr 0.95fr; gap:50px; align-items:center; }
.hero-sub{ color: var(--c-muted); font-size:1.08rem; max-width:560px; margin-bottom:30px; }
.hero h1{ font-size: clamp(2.5rem, 5vw, 4.2rem); margin-bottom:20px; }
.hero-cta-row{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:28px; }
.hero-cta-row.center{ justify-content:center; }

.hero-tags{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:36px; }
.hero-tags span{ font-size:0.78rem; font-weight:600; color: var(--c-red-light); background: rgba(232,18,31,0.1); border:1px solid rgba(232,18,31,0.25); padding:6px 12px; border-radius:99px; }

.hero-stats{ display:grid; grid-template-columns: repeat(4,auto); gap: 28px; }
.hero-stats div{ display:flex; flex-direction:column; gap:4px; }
.hero-stats strong{ font-family: var(--font-head); font-size:1.5rem; color:#fff; }
.hero-stats span{ font-size:0.76rem; color: var(--c-muted-2); }

.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color: var(--c-muted-2);
}
.scroll-cue span{ width:1px; height:34px; background: linear-gradient(var(--c-muted-2), transparent); position:relative; overflow:hidden; }
.scroll-cue span::after{ content:''; position:absolute; top:-100%; left:0; width:100%; height:100%; background: var(--c-red); animation: scrolldrip 1.8s ease-in-out infinite; }
@keyframes scrolldrip{ 0%{ top:-100%; } 100%{ top:100%; } }

/* --- Hero visual composition --- */
.hero-visual{ position:relative; height:520px; }
.hero-8-watermark{
  position:absolute; top:50%; left:50%; transform: translate(-50%,-50%);
  font-family: var(--font-head); font-weight:800; font-size: 26rem; line-height:1;
  color: rgba(255,255,255,0.025); user-select:none; pointer-events:none;
}
.float-card{
  position:absolute; top:50%; left:50%; transform: translate(-50%,-50%);
  width:min(340px, 80vw);
  background: rgba(20,20,24,0.75);
  border:1px solid var(--c-border-strong);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  padding: 18px;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty{ 0%,100%{ transform: translate(-50%,-50%) translateY(0);} 50%{ transform: translate(-50%,-50%) translateY(-14px);} }
.dash-head{ display:flex; align-items:center; gap:6px; margin-bottom:16px; }
.dash-dot{ width:8px; height:8px; border-radius:50%; background: var(--c-surface-2); }
.dash-dot.dot-red{ background: var(--c-red); }
.dash-title{ margin-left:8px; font-size:0.78rem; font-weight:600; color: var(--c-muted); }
.dash-chart{ display:flex; align-items:flex-end; gap:6px; height:90px; margin-bottom:16px; }
.dash-chart span{ flex:1; height: var(--h); background: linear-gradient(180deg, var(--c-red-light), var(--c-red-dark)); border-radius:4px 4px 0 0; opacity:0.9; }
.dash-metrics{ display:flex; justify-content:space-between; border-top:1px solid var(--c-border); padding-top:14px; }
.dash-metrics div{ display:flex; flex-direction:column; gap:2px; }
.dash-metrics strong{ font-family: var(--font-head); color:#fff; font-size:1.1rem; }
.dash-metrics span{ font-size:0.7rem; color: var(--c-muted-2); }

.float-chip{
  position:absolute; display:flex; align-items:center; gap:7px;
  background: var(--c-surface); border:1px solid var(--c-border-strong);
  padding:9px 14px; border-radius:99px; font-size:0.78rem; font-weight:600; color: var(--c-text);
  box-shadow: 0 12px 24px -10px rgba(0,0,0,0.5);
  animation: chipfloat 5s ease-in-out infinite;
}
.float-chip svg{ color: var(--c-red-light); }
.chip-1{ top:6%; left:2%; animation-delay:.2s; }
.chip-2{ top:16%; right:0%; animation-delay:1s; }
.chip-3{ bottom:18%; left:0%; animation-delay:1.8s; }
.chip-4{ bottom:6%; right:6%; animation-delay:2.6s; }
@keyframes chipfloat{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }
.float-badge{
  position:absolute; top:38%; right:-6%;
  background: var(--grad-red); color:#fff; font-weight:700; font-size:0.75rem;
  padding:10px 16px; border-radius:99px; display:flex; align-items:center; gap:6px;
  box-shadow: 0 14px 28px -8px var(--c-red-glow);
  animation: chipfloat 4.5s ease-in-out infinite; animation-delay:.6s;
}

@media (max-width: 1024px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ height:420px; order:-1; }
  .hero-8-watermark{ font-size:16rem; }
  .float-chip, .float-badge{ display:none; }
}
@media (max-width: 640px){
  .hero{ padding-top:70px; }
  .hero-stats{ grid-template-columns: repeat(2,auto); row-gap:20px; }
  .hero-visual{ height:340px; }
  .float-card{ width:88vw; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee-section{ border-block:1px solid var(--c-border); background: var(--c-bg-alt); padding-block:20px; overflow:hidden; }
.marquee-track{ display:flex; width:max-content; animation: marquee 32s linear infinite; }
.marquee-track:hover{ animation-play-state: paused; }
.marquee-group{ display:flex; align-items:center; gap:20px; padding-right:20px; white-space:nowrap; }
.marquee-group span{ font-family: var(--font-head); font-size:1.15rem; font-weight:600; color: var(--c-muted-2); }
.marquee-group span:nth-child(even){ color: var(--c-red); font-size:0.8rem; }
@keyframes marquee{ 0%{ transform: translateX(0);} 100%{ transform: translateX(-50%);} }

/* ==========================================================================
   SECTION HEAD (generic)
   ========================================================================== */
section{ padding-block: 110px; position:relative; }
.section-head{ max-width:720px; margin: 0 auto 60px; text-align:center; }
.section-head h2{ font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom:16px; }
.section-head p{ color: var(--c-muted); font-size:1.05rem; }
.section-head.light p{ color: var(--c-muted); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-inner{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap:70px; align-items:center; }
.about-visual{ display:flex; flex-direction:column; align-items:center; gap:18px; }
.infinity-loop{ position:relative; width:100%; max-width:320px; aspect-ratio:2/1; display:flex; align-items:center; justify-content:center; }
.infinity-svg{ width:100%; height:100%; overflow:visible; }
.infinity-svg path{ fill:none; stroke: var(--c-red); stroke-width:5; stroke-linecap:round; stroke-dasharray: 620; stroke-dashoffset:620; animation: drawloop 3.2s var(--ease) forwards infinite; opacity:0.9; }
@keyframes drawloop{ 0%{ stroke-dashoffset:620; } 55%{ stroke-dashoffset:0; } 100%{ stroke-dashoffset:-620; } }
.infinity-8{ position:absolute; font-family: var(--font-head); font-weight:800; font-size:2.4rem; color:#fff; }
.infinity-caption{ font-size:0.82rem; color: var(--c-muted-2); letter-spacing:0.04em; }

.about-copy h2{ font-size: clamp(2rem,3.6vw,3rem); margin-bottom:18px; }
.about-copy p{ color: var(--c-muted); margin-bottom:16px; max-width:560px; }
.about-points{ display:flex; flex-direction:column; gap:12px; margin: 22px 0 30px; }
.about-points div{ display:flex; align-items:center; gap:10px; font-size:0.94rem; color: var(--c-text); }
.about-points svg{ color: var(--c-red); flex-shrink:0; }

@media (max-width: 900px){
  .about-inner{ grid-template-columns:1fr; gap:40px; text-align:center; }
  .about-points div{ justify-content:center; }
  .about-copy p{ margin-inline:auto; }
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why{ background: var(--c-bg-alt); }
.why-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
.why-card{
  background: var(--c-surface); border:1px solid var(--c-border); border-radius: var(--radius-md);
  padding: 32px 28px; transition: transform .3s var(--ease), border-color .3s ease, background .3s ease;
}
.why-card:hover{ transform: translateY(-6px); border-color: rgba(232,18,31,0.4); background: var(--c-surface-2); }
.why-icon{ width:52px; height:52px; border-radius:14px; background: var(--grad-red); display:flex; align-items:center; justify-content:center; color:#fff; margin-bottom:20px; }
.why-card h3{ font-size:1.15rem; margin-bottom:10px; }
.why-card p{ color: var(--c-muted); font-size:0.92rem; }

@media (max-width: 900px){ .why-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .why-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:24px; position:relative; }
.process-card{
  background: var(--c-surface); border:1px solid var(--c-border); border-radius: var(--radius-md);
  padding: 30px 24px; position:relative; overflow:hidden;
}
.process-num{ font-family: var(--font-head); font-size:3rem; font-weight:800; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.18); display:block; margin-bottom:16px; }
.process-card h3{ font-size:1.1rem; margin-bottom:10px; }
.process-card p{ color: var(--c-muted); font-size:0.9rem; }
.process-card::after{ content:''; position:absolute; top:0; left:0; width:4px; height:100%; background: var(--grad-red); opacity:0; transition: opacity .3s ease; }
.process-card:hover::after{ opacity:1; }

@media (max-width: 900px){ .process-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .process-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services{ background: var(--c-bg-alt); }
.filter-row{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:46px; }
.filter-btn{
  padding: 10px 22px; border-radius:99px; border:1px solid var(--c-border-strong);
  font-size:0.85rem; font-weight:600; color: var(--c-muted); transition: all .25s ease;
}
.filter-btn:hover{ color:#fff; border-color: var(--c-red); }
.filter-btn.active{ background: var(--grad-red); color:#fff; border-color:transparent; }

.services-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
.service-card{
  background: var(--c-surface); border:1px solid var(--c-border); border-radius: var(--radius-md);
  padding: 30px 26px; transition: transform .35s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.service-card:hover{ transform: translateY(-8px); border-color: rgba(232,18,31,0.35); box-shadow: 0 24px 48px -24px rgba(232,18,31,0.25); }
.service-card.hide{ display:none; }
.service-icon{ width:50px; height:50px; border-radius:14px; background: var(--c-surface-2); border:1px solid var(--c-border-strong); display:flex; align-items:center; justify-content:center; color: var(--c-red-light); margin-bottom:18px; }
.service-tag{ display:block; font-size:0.72rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color: var(--c-muted-2); margin-bottom:8px; }
.service-card h3{ font-size:1.22rem; margin-bottom:10px; }
.service-card p{ color: var(--c-muted); font-size:0.9rem; margin-bottom:18px; }
.service-list{ display:flex; flex-direction:column; gap:9px; }
.service-list li{ display:flex; align-items:center; gap:8px; font-size:0.84rem; color: var(--c-text); }
.service-list svg{ color: var(--c-red); }

@media (max-width: 1024px){ .services-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .services-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   RESULTS / STATS
   ========================================================================== */
.results{ background: var(--grad-red); position:relative; overflow:hidden; }
.results::before{ content:''; position:absolute; inset:0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15), transparent 45%); }
.results .eyebrow{ color:#fff; }
.results h2{ color:#fff; }
.results h2 .text-grad{ background:none; -webkit-text-fill-color: rgba(0,0,0,0.75); color: rgba(0,0,0,0.75); }
.results .section-head p{ color: rgba(255,255,255,0.85); }
.stat-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; position:relative; z-index:1; }
.stat-card{ background: rgba(0,0,0,0.22); border:1px solid rgba(255,255,255,0.2); border-radius: var(--radius-md); padding:32px 24px; text-align:center; backdrop-filter: blur(6px); }
.stat-num{ display:block; font-family: var(--font-head); font-size:2.6rem; font-weight:800; color:#fff; margin-bottom:12px; }
.stat-label{ font-size:0.85rem; color: rgba(255,255,255,0.88); }

@media (max-width: 900px){ .stat-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .stat-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   WORK / SHOWREEL
   ========================================================================== */
.reel-grid{ display:grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 180px); gap:20px; }
.reel-card{
  position:relative; border-radius: var(--radius-md); overflow:hidden;
  border:1px solid var(--c-border); display:flex; flex-direction:column; justify-content:flex-end; padding:20px;
  transition: transform .35s var(--ease), border-color .3s ease;
  cursor:pointer;
}
.reel-card:hover{ transform: scale(1.02); border-color: rgba(232,18,31,0.4); }
.reel-card-lg{ grid-column: span 2; grid-row: span 2; }

.reel-anim-bg{
  position:absolute; inset:-20%; z-index:0;
  background-size: 200% 200%;
  animation: reelshift 9s ease-in-out infinite;
  opacity:0.9;
}
.reel-anim-1 .reel-anim-bg{ background-image: linear-gradient(135deg, #2a0d10, #7a0f14, #180708, #4a0000); }
.reel-anim-2 .reel-anim-bg{ background-image: linear-gradient(135deg, #1a1013, #3a0f1c, #0e0a0c, #5c0f22); }
.reel-anim-3 .reel-anim-bg{ background-image: linear-gradient(135deg, #150c0c, #602020, #0c0c0e, #802318); }
.reel-card::after{
  content:''; position:absolute; inset:0; z-index:0;
  background: radial-gradient(circle at 30% 100%, rgba(0,0,0,0.55), rgba(0,0,0,0.15) 60%);
}
@keyframes reelshift{
  0%{ background-position: 0% 0%; }
  50%{ background-position: 100% 100%; }
  100%{ background-position: 0% 0%; }
}

.reel-tag, .reel-card h4, .reel-play, .reel-watch{ position:relative; z-index:1; }
.reel-tag{ font-size:0.7rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color: var(--c-red-light); margin-bottom:6px; }
.reel-card h4{ font-size:1.05rem; }
.reel-play{
  position:absolute; top:50%; left:50%; transform: translate(-50%,-50%);
  width:56px; height:56px; border-radius:50%; background: rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.35); display:flex; align-items:center; justify-content:center; color:#fff;
  backdrop-filter: blur(6px); transition: background .3s ease, transform .3s ease; z-index:1;
}
.reel-card:hover .reel-play{ background: var(--grad-red); transform: translate(-50%,-50%) scale(1.1); }
.reel-watch{
  display:inline-flex; align-items:center; gap:6px; margin-top:10px;
  font-size:0.76rem; font-weight:600; color:#fff; opacity:0; transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.reel-card:hover .reel-watch{ opacity:1; transform:none; }

@media (max-width: 1024px){
  .reel-grid{ grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3, 160px); }
  .reel-card-lg{ grid-column: span 2; grid-row: span 1; height:220px; }
}
@media (max-width: 600px){
  .reel-grid{ grid-template-columns: 1fr; grid-template-rows: none; gap:16px; }
  .reel-card-lg{ grid-column:span 1; height:220px; }
  .reel-card{ height:180px; }
  /* no hover on touch — always show the watch affordance */
  .reel-watch{ opacity:1; transform:none; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials{ background: var(--c-bg-alt); }
.testi-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.testi-card{ background: var(--c-surface); border:1px solid var(--c-border); border-radius: var(--radius-md); padding:30px 26px; }
.testi-stars{ display:flex; gap:4px; color: var(--c-red); margin-bottom:16px; }
.testi-card p{ color: var(--c-text); font-size:0.95rem; margin-bottom:20px; font-style:italic; }
.testi-author{ font-size:0.82rem; font-weight:600; color: var(--c-muted-2); }

@media (max-width: 900px){ .testi-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; align-items:stretch; }
.price-card{
  background: var(--c-surface); border:1px solid var(--c-border); border-radius: var(--radius-lg);
  padding: 38px 30px; display:flex; flex-direction:column; position:relative; transition: transform .3s var(--ease);
}
.price-card:hover{ transform: translateY(-6px); }
.price-card.featured{ border-color: var(--c-red); background: linear-gradient(180deg, rgba(232,18,31,0.12), var(--c-surface) 40%); }
.price-badge{ position:absolute; top:-14px; left:50%; transform:translateX(-50%); background: var(--grad-red); color:#fff; font-size:0.72rem; font-weight:700; padding:6px 16px; border-radius:99px; }
.price-tier{ font-family: var(--font-head); font-size:1.4rem; font-weight:700; color:#fff; margin-bottom:8px; }
.price-desc{ color: var(--c-muted); font-size:0.88rem; margin-bottom:24px; }
.price-card ul{ display:flex; flex-direction:column; gap:12px; margin-bottom:30px; flex:1; }
.price-card li{ display:flex; align-items:center; gap:9px; font-size:0.88rem; color: var(--c-text); }
.price-card svg{ color: var(--c-red); }

@media (max-width: 900px){ .pricing-grid{ grid-template-columns:1fr; max-width:440px; margin-inline:auto; } .price-card.featured{ order:-1; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-inner{ max-width:820px; }
.faq-list{ display:flex; flex-direction:column; gap:14px; }
.faq-item{ background: var(--c-surface); border:1px solid var(--c-border); border-radius: var(--radius-md); overflow:hidden; }
.faq-q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:22px 26px; text-align:left; font-weight:600; font-size:1rem; color:#fff; }
.faq-q svg{ color: var(--c-red-light); transition: transform .3s var(--ease); flex-shrink:0; }
.faq-item.open .faq-q svg{ transform: rotate(180deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-a p{ padding: 0 26px 22px; color: var(--c-muted); font-size:0.92rem; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta{ padding-block:100px; text-align:center; position:relative; overflow:hidden; }
.final-cta::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at center, rgba(232,18,31,0.18), transparent 60%);
}
.final-cta-inner{ position:relative; z-index:1; max-width:720px; }
.final-cta h2{ font-size: clamp(2.2rem,4.2vw,3.4rem); margin: 14px 0 18px; }
.hero-8{ color: var(--c-red); font-family: var(--font-head); }
.final-cta p{ color: var(--c-muted); font-size:1.05rem; margin-bottom:34px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact{ background: var(--c-bg-alt); }
.contact-inner{ display:grid; grid-template-columns: 0.95fr 1.05fr; gap:60px; }
.contact-copy h2{ font-size: clamp(2rem,3.6vw,2.8rem); margin-bottom:16px; }
.contact-copy p{ color: var(--c-muted); margin-bottom:36px; max-width:480px; }
.contact-details{ display:flex; flex-direction:column; gap:18px; margin-bottom:34px; }
.contact-detail{ display:flex; align-items:center; gap:16px; }
.contact-detail span:last-child{ display:flex; flex-direction:column; font-size:0.94rem; color: var(--c-text); }
.contact-detail strong{ display:block; font-size:0.74rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color: var(--c-muted-2); margin-bottom:2px; }
.contact-icon{ width:44px; height:44px; border-radius:12px; background: var(--c-surface); border:1px solid var(--c-border-strong); display:flex; align-items:center; justify-content:center; color: var(--c-red); flex-shrink:0; }
.contact-socials{ display:flex; gap:14px; }
.contact-socials a{ width:42px; height:42px; border-radius:50%; border:1px solid var(--c-border-strong); display:flex; align-items:center; justify-content:center; color: var(--c-muted); transition: all .25s ease; }
.contact-socials a:hover{ color:#fff; background: var(--grad-red); border-color: transparent; transform: translateY(-3px); }

.contact-form{ background: var(--c-surface); border:1px solid var(--c-border); border-radius: var(--radius-lg); padding: 36px; display:flex; flex-direction:column; gap:18px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group{ display:flex; flex-direction:column; gap:8px; }
.form-group label{ font-size:0.8rem; font-weight:600; color: var(--c-muted); }
.form-group input, .form-group select, .form-group textarea{
  background: var(--c-surface-2); border:1px solid var(--c-border-strong); border-radius: var(--radius-sm);
  padding: 13px 16px; color:#fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{ outline:none; border-color: var(--c-red); box-shadow: 0 0 0 3px rgba(232,18,31,0.18); }
.form-group textarea{ resize: vertical; }
.form-note{ font-size:0.78rem; color: var(--c-muted-2); text-align:center; }

@media (max-width: 900px){ .contact-inner{ grid-template-columns:1fr; } .form-row{ grid-template-columns:1fr; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: var(--c-bg); border-top:1px solid var(--c-border); padding-top:80px; }
.footer-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:60px; border-bottom:1px solid var(--c-border); }
.footer-brand p{ color: var(--c-muted); font-size:0.9rem; margin:18px 0 22px; max-width:320px; }
.footer-brand .brand-logo{ height:30px; }
.footer-col h4{ color:#fff; font-size:0.95rem; margin-bottom:20px; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ color: var(--c-muted); font-size:0.9rem; transition: color .2s ease, padding-left .2s ease; }
.footer-col a:hover{ color: var(--c-red-light); padding-left:4px; }
.footer-newsletter p{ color: var(--c-muted); font-size:0.86rem; margin-bottom:16px; }
.newsletter-form{ display:flex; border:1px solid var(--c-border-strong); border-radius:99px; padding:4px; margin-bottom:20px; }
.newsletter-form input{ flex:1; background:none; border:none; padding:9px 14px; color:#fff; }
.newsletter-form input:focus{ outline:none; }
.newsletter-form button{ width:38px; height:38px; border-radius:50%; background: var(--grad-red); color:#fff; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.footer-phone{ display:flex; align-items:center; gap:8px; font-weight:600; font-size:0.9rem; color:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-block:26px; flex-wrap:wrap; gap:10px; }
.footer-bottom p{ font-size:0.8rem; color: var(--c-muted-2); }

@media (max-width: 900px){ .footer-top{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; text-align:center; } .footer-brand p{ margin-inline:auto; } .contact-socials{ justify-content:center; } .footer-bottom{ justify-content:center; text-align:center; } }

/* ==========================================================================
   FLOATING ACTIONS
   ========================================================================== */
.float-action{
  position:fixed; right:26px; width:54px; height:54px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; z-index:80;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.5);
  transition: transform .25s var(--ease), opacity .3s ease, visibility .3s ease;
}
.float-whatsapp{ bottom:26px; background:#25D366; color:#fff; }
.float-whatsapp:hover{ transform: scale(1.08); }
.float-top{ bottom:92px; background: var(--c-surface); border:1px solid var(--c-border-strong); color:#fff; opacity:0; visibility:hidden; }
.float-top.show{ opacity:1; visibility:visible; }
.float-top:hover{ background: var(--grad-red); }

@media (max-width: 560px){
  .float-action{ width:48px; height:48px; right:16px; }
  .float-whatsapp{ bottom:16px; }
  .float-top{ bottom:74px; }
}

/* ---- Sticky mobile call/WhatsApp bar ---- */
.mobile-cta-bar{ display:none; }

@media (max-width: 768px){
  .mobile-cta-bar{
    display:flex; gap:10px;
    position:fixed; left:0; right:0; bottom:0; z-index:85;
    background: var(--c-bg-alt);
    border-top:1px solid var(--c-border);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 28px rgba(0,0,0,0.4);
  }
  .mobile-cta-btn{
    flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
    padding:13px 10px; border-radius:999px; font-weight:700; font-size:0.9rem;
    transition: transform .2s ease;
  }
  .mobile-cta-call{ background: var(--grad-red); color:#fff; box-shadow: 0 8px 20px -6px var(--c-red-glow); }
  .mobile-cta-whatsapp{ background:#25D366; color:#fff; }
  .mobile-cta-btn:active{ transform: scale(0.95); }

  /* the sticky bar replaces the floating WhatsApp bubble on mobile */
  .float-whatsapp{ display:none; }
  .float-top{ bottom: calc(78px + env(safe-area-inset-bottom)); right:14px; width:44px; height:44px; }

  body{ padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
}

/* ---- section head placement fix on colored bg ---- */
.results .section-head h2{ color:#fff; }

/* ==========================================================================
   MOBILE POLISH — most visitors are on phones, this is the primary experience
   ========================================================================== */

/* Guarantee no iOS Safari auto-zoom-on-focus (needs >=16px) */
.form-group input, .form-group select, .form-group textarea{ font-size:16px; }

/* Tactile press feedback everywhere a thumb taps */
@media (hover:none), (pointer:coarse){
  .btn:active, .filter-btn:active, .service-card:active, .why-card:active,
  .price-card:active, .faq-q:active, .reel-card:active, .float-action:active{
    transform: scale(0.97);
  }
}

@media (max-width: 768px){
  section{ padding-block: 72px; }
  .topbar{ font-size:0.74rem; padding:8px 14px; }
  .topbar p{ display:block; }
  .section-head{ margin-bottom:40px; }
  .section-head p{ font-size:0.96rem; }

  .marquee-group span{ font-size:0.95rem; }
  .marquee-group span:nth-child(even){ font-size:0.7rem; }

  .why-card, .process-card, .service-card, .testi-card{ padding:26px 22px; }
  .price-card{ padding:32px 24px; }

  .hero-tags span{ font-size:0.72rem; padding:5px 10px; }
  .hero-stats{ column-gap:20px; row-gap:18px; }
  .hero-stats strong{ font-size:1.3rem; }

  .stat-num{ font-size:2.2rem; }

  .final-cta{ padding-block:72px; }
  .final-cta p{ font-size:0.96rem; }

  .contact-form{ padding:26px 22px; }
}

@media (max-width: 480px){
  .container{ padding-inline:18px; }
  .hero h1{ font-size: clamp(2.1rem, 8vw, 2.6rem); }
  .hero-8-watermark{ font-size:11rem; }
  .float-card{ padding:14px; }
  .dash-chart{ height:70px; }
  .btn-lg{ padding:14px 24px; font-size:0.94rem; }
  .hero-cta-row{ gap:12px; }
  .hero-cta-row .btn{ width:100%; }
  .mobile-cta-btn{ font-size:0.84rem; padding:12px 8px; }
}
