/* ===================================

   HERO SECTION

=================================== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --blue:#2563eb;
  --blue-dark:#1d4ed8;
  --text:#0f172a;
  --muted:#475569;
  --hint:#94a3b8;
  --border:#e2e8f4;
  --accent-gradient:linear-gradient(135deg,#1d4ed8 0%,#2563eb 38%,#3b82f6 68%,#60a5fa 100%);
}
body{font-family:'Manrope',sans-serif;background:#E8F0FE;min-height:100vh;overflow-x:hidden;max-width:100%}
html{overflow-x:hidden;max-width:100%}

/* Anchor offsets for one-page navigation */
#about,
#services,
#advantages,
#google-certs,
#cases,
#reviews,
#portfolio,
#certificates,
#preimyschestva{
  scroll-margin-top:96px;
}
.anchor-fix{
  display:block;
  position:relative;
  top:-96px;
  visibility:hidden;
  height:0;
  pointer-events:none;
}

.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:
    radial-gradient(ellipse 75% 55% at 15% 25%, rgba(186,220,255,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(193,215,255,0.38) 0%, transparent 55%),
    #E8F0FE;
}
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle,rgba(37,99,235,0.07) 1px,transparent 1px);
  background-size:28px 28px;
  z-index:0;
  opacity:.5;
  pointer-events:none;
}
.hero::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:100px;
  background:linear-gradient(to bottom, transparent, #E8F0FE);
  pointer-events:none;
  z-index:1;
}

/* ── NAV ── */
.nav-wrap{position:relative;z-index:20;padding:18px 32px 0;display:flex;justify-content:center}
.nav{display:flex;align-items:center;justify-content:space-between;padding:0 32px;height:60px;background:rgba(255,255,255,0.92);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-radius:16px;border:1px solid rgba(255,255,255,0.95);box-shadow:0 2px 0 rgba(255,255,255,0.8) inset,0 8px 32px rgba(37,99,235,0.10),0 2px 8px rgba(0,0,0,0.06);width:100%;max-width:1380px}
.nb{display:flex;flex-direction:column;gap:1px}
.nb-t{font-size:10px;font-weight:600;color:var(--blue);letter-spacing:.04em;text-transform:uppercase}
.nb-n{font-size:15px;font-weight:800;color:var(--text);letter-spacing:-.02em}
.nl{display:flex;gap:28px;list-style:none}
.nl a{font-size:13px;font-weight:500;color:var(--muted);text-decoration:none;transition:color .2s}
.nl a:hover{color:var(--blue)}
.nav-right{display:flex;align-items:center;gap:6px}
.lang-switcher{display:flex;align-items:center;gap:2px;margin-left:4px}
.lang-btn{font-size:11px;font-weight:600;color:var(--muted);text-decoration:none;padding:3px 7px;border-radius:6px;transition:color .2s,background .2s;letter-spacing:.03em}
.lang-btn:hover{color:var(--blue);background:rgba(37,99,235,0.07)}
.lang-btn.active{color:var(--blue);background:rgba(37,99,235,0.1)}
.nc{display:flex;gap:6px;align-items:center}
.ni{width:34px;height:34px;border-radius:8px;background:rgba(37,99,235,0.08);display:flex;align-items:center;justify-content:center;text-decoration:none;transition:background .2s}
.ni:hover{background:rgba(37,99,235,0.16)}
.ni svg{width:17px;height:17px;fill:var(--blue)}
.ni-mail svg{fill:none;stroke:var(--blue);stroke-width:2}

/* burger */
.burger{display:none;flex-direction:column;justify-content:center;gap:5px;width:36px;height:36px;border-radius:8px;background:rgba(37,99,235,0.08);border:none;cursor:pointer;padding:8px;}
.burger span{display:block;width:100%;height:2px;background:var(--blue);border-radius:2px;transition:all .25s}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
/* mobile drawer */
.drawer{
  display:none;position:absolute;top:calc(100% + 8px);left:0;right:0;
  background:rgba(255,255,255,0.97);border-radius:16px;
  border:1px solid rgba(226,232,244,0.9);
  box-shadow:0 8px 32px rgba(37,99,235,0.12);
  padding:16px 20px;z-index:100;
  animation:slideDown .2s ease;
}
@keyframes slideDown{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}
.drawer.open{display:block}
.drawer ul{list-style:none;display:flex;flex-direction:column;gap:4px;margin-bottom:12px}
.drawer ul a{font-size:14px;font-weight:600;color:var(--text);text-decoration:none;display:block;padding:8px 0;border-bottom:1px solid var(--border)}
.drawer-contacts{display:flex;gap:8px;padding-top:4px}

/* ── BODY ── */
.hero-body{position:relative;z-index:5;display:flex;align-items:center;justify-content:space-between;flex:1;padding:40px 32px 64px;gap:36px;max-width:1380px;margin:0 auto;width:100%}

/* LEFT */
.hero-left{flex:1 1 540px;max-width:572px;min-width:0}
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
.tag{display:inline-flex;align-items:center;gap:7px;background:rgba(255,255,255,0.9);border:1px solid rgba(37,99,235,0.2);color:var(--blue-dark);font-size:12px;font-weight:600;padding:6px 14px;border-radius:100px;margin-bottom:20px}
.tdot{width:7px;height:7px;border-radius:50%;background:var(--blue);animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)}}
h1{font-size:clamp(36px,3.8vw,62px);font-weight:800;line-height:1.1;color:var(--text);letter-spacing:-.03em;margin-bottom:14px}
h1 span{
  color:var(--blue);
  background:var(--accent-gradient);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.sub{font-size:16px;color:var(--muted);line-height:1.7;margin-bottom:28px;max-width:480px}
.hero-mob-photo{
  display:none;
  width:100%;
  max-width:320px;
  aspect-ratio:4/5;
  border-radius:18px;
  overflow:hidden;
  border:2px solid rgba(255,255,255,0.9);
  box-shadow:0 16px 44px rgba(37,99,235,0.16),0 6px 16px rgba(0,0,0,0.10);
}
.hero-mob-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 10%;
  display:block;
}
.hero-mob-photo-wrap{display:none}
.btns{display:flex;gap:12px;margin-bottom:28px;flex-wrap:wrap}
.bp{background:var(--blue);color:#fff;border:none;padding:13px 26px;border-radius:10px;font-family:'Manrope',sans-serif;font-size:14px;font-weight:600;cursor:pointer;transition:background .2s,transform .15s;display:flex;align-items:center;gap:6px}
.bp:hover{background:var(--blue-dark);transform:translateY(-1px)}
.bs{
  background:rgba(255,255,255,0.9);color:var(--text);border:1px solid var(--border);
  padding:13px 26px;border-radius:10px;font-family:'Manrope',sans-serif;font-size:14px;font-weight:600;
  cursor:pointer;transition:background .2s,transform .15s;
  display:inline-flex;align-items:center;justify-content:center;text-decoration:none;
}
.bs:hover{background:#fff;transform:translateY(-1px)}

/* services block */
.services{display:flex;flex-direction:column;gap:14px}
.svc-group{}
.svc-label{font-size:11px;font-weight:700;color:var(--hint);letter-spacing:.07em;text-transform:uppercase;margin-bottom:8px}
.svc-chips{display:flex;flex-wrap:wrap;gap:6px}
.chip{display:flex;align-items:center;gap:5px;background:rgba(255,255,255,0.85);border:1px solid rgba(226,232,244,0.9);border-radius:8px;padding:5px 11px;font-size:12px;font-weight:600;color:var(--muted);transition:border-color .2s,color .2s}
.chip:hover{border-color:rgba(37,99,235,0.3);color:var(--blue-dark)}
.chip svg{width:13px;height:13px;flex-shrink:0}
.chip-plain{background:rgba(255,255,255,0.75);border:1px solid rgba(226,232,244,0.7);border-radius:7px;padding:4px 10px;font-size:12px;font-weight:600;color:var(--muted)}

/* ── RIGHT ── */
.hero-right{flex:0 1 520px;padding:0;display:flex;align-items:flex-start;justify-content:flex-end;min-width:0}
.photo-scene{position:relative;width:min(100%,499px);aspect-ratio:499/624;height:auto;flex-shrink:0}
.photo-deco2{position:absolute;top:20px;left:20px;width:100%;height:100%;border-radius:24px;background:linear-gradient(135deg,#bfdbfe 0%,#e0e7ff 100%);opacity:.55;z-index:0}
.photo-deco{position:absolute;top:10px;left:10px;width:100%;height:100%;border-radius:24px;background:linear-gradient(135deg,#2563eb 0%,#93c5fd 100%);opacity:.3;z-index:0}
.corner-tl{position:absolute;top:-8px;left:-8px;width:32px;height:32px;border-top:3px solid var(--blue);border-left:3px solid var(--blue);border-radius:6px 0 0 0;z-index:4}
.corner-br{position:absolute;bottom:-8px;right:-8px;width:32px;height:32px;border-bottom:3px solid var(--blue);border-right:3px solid var(--blue);border-radius:0 0 6px 0;z-index:4}
.photo-frame{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:24px;overflow:hidden;z-index:2;border:3px solid rgba(255,255,255,0.9);box-shadow:0 20px 60px rgba(37,99,235,0.18),0 8px 24px rgba(0,0,0,0.12),inset 0 1px 0 rgba(255,255,255,0.8)}
.photo-frame img{width:100%;height:100%;object-fit:cover;object-position:center 8%;display:block}

/* floating cards */
.fc{position:absolute;background:rgba(255,255,255,0.97);border:1px solid rgba(226,232,244,0.95);border-radius:12px;padding:9px 13px;z-index:6;backdrop-filter:blur(8px);box-shadow:0 4px 20px rgba(0,0,0,0.08);animation:floatIn .7s ease both;white-space:nowrap}
@keyframes floatIn{from{opacity:0;transform:scale(.85)}to{opacity:1;transform:scale(1)}}
.fc-n{font-size:16px;font-weight:800;color:var(--text);line-height:1;letter-spacing:-.02em}
.fc-l{font-size:11px;font-weight:500;color:var(--hint);margin-top:3px}
.fc-blue{background:var(--blue);border-color:var(--blue-dark)}
.fc-blue .fc-n{color:#fff}
.fc-blue .fc-l{color:rgba(255,255,255,0.75)}
/* pushed down 8% so they don't overlap photo top */
.fc-years {top:22%;left:-100px;animation-delay:.4s}
.fc-webdev{bottom:24%;left:-100px;animation-delay:.5s}
.fc-proj  {top:18%;right:-78px;animation-delay:.65s}
.fc-price {bottom:20%;right:-78px;animation-delay:.55s}
.online{position:absolute;top:-18px;left:50%;transform:translateX(-50%);display:flex;align-items:center;gap:7px;background:rgba(255,255,255,0.97);border:1px solid rgba(226,232,244,0.9);border-radius:100px;padding:6px 14px;font-size:11px;font-weight:600;color:var(--text);z-index:6;white-space:nowrap;box-shadow:0 4px 16px rgba(0,0,0,0.07);animation:floatIn .7s ease .7s both}
.odot{width:8px;height:8px;border-radius:50%;background:#22c55e;animation:pulse 2s infinite}

/* mobile-only elements hidden on desktop */
.mob-online{display:none}
.mob-grid{display:none}

/* ── TABLET ── */
@media(max-width:1100px){
  .hero{min-height:auto}
  .hero-body{flex:none;padding:32px 22px 56px;gap:24px}
  .hero-left{flex:1 1 52%;max-width:480px}
  .hero-right{flex:1 1 44%;justify-content:center}
  .photo-scene{width:min(100%,360px)}
  .fc-years,.fc-webdev{left:-100px}
  .fc-proj,.fc-price{right:-100px}
}

/* medium desktops */
@media(max-width:1200px) and (min-width:981px){
  .hero{min-height:auto}
  .hero-body{
    flex:none;
    gap:24px;
  }
  .hero-left{
    max-width:520px;
  }
  .hero-right{
    flex-basis:460px;
  }
  .photo-scene{
    width:min(100%,430px);
  }
  .fc{padding:8px 11px}
  .fc-years,.fc-webdev{left:-82px}
  .fc-proj,.fc-price{right:-82px}
}

/* tablet landscape / small desktop — карточки внутрь фрейма чтобы не вылезали */
@media(max-width:1100px) and (min-width:981px){
  .hero-body{gap:20px;padding:32px 20px 48px}
  .hero-left{max-width:460px}
  .hero-right{flex:1 1 auto;justify-content:center}
  .photo-scene{width:min(100%,380px)}
  .fc-years,.fc-webdev{left:10px}
  .fc-proj,.fc-price{right:10px}
}

/* tablet portrait / foldables */
@media(max-width:980px){
  .hero{min-height:auto}
  .nav{
    padding:0 14px;
    height:58px;
  }
  .nl{
    gap:14px;
  }
  .nl a{
    font-size:12px;
  }
  .nc{
    gap:5px;
  }
  .hero-body{
    flex:none;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    min-height:auto;
    gap:20px;
    padding:28px 18px 48px;
  }
  .hero-left{
    max-width:100%;
    flex:1 1 auto;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
  }
  .hero-right{
    display:none !important;
  }
  .hero-left .tag{
    width:fit-content;
    max-width:max-content;
    white-space:nowrap;
  }
  .tag{order:1}
  h1{order:2}
  .sub{order:3;margin-bottom:18px}
  .hero-mob-photo-wrap{
    display:block;
    order:4;
    align-self:center;
    width:100%;
    max-width:380px;
    margin:0 auto 18px;
  }
  .hero-mob-photo-wrap .mob-online{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    width:max-content;
    margin:0 auto 10px;
    background:rgba(255,255,255,0.97);
    border:1px solid rgba(226,232,244,0.9);
    border-radius:100px;
    padding:6px 14px;
    font-size:11px;
    font-weight:600;
    color:var(--text);
    box-shadow:0 4px 16px rgba(0,0,0,0.07);
  }
  .hero-mob-photo{
    display:block;
    max-width:100%;
    margin:0 auto;
  }
  .hero-mob-photo-wrap .mob-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    width:100%;
    margin:12px auto 0;
  }
  .mg{
    background:rgba(255,255,255,0.97);
    border:1px solid rgba(226,232,244,0.95);
    border-radius:12px;
    padding:10px 12px;
    box-shadow:0 4px 16px rgba(0,0,0,0.06);
  }
  .mg.blue{background:var(--blue);border-color:var(--blue-dark)}
  .mg-n{font-size:15px;font-weight:800;color:var(--text);line-height:1;letter-spacing:-.02em}
  .mg.blue .mg-n{color:#fff}
  .mg-l{font-size:10px;font-weight:500;color:var(--hint);margin-top:3px}
  .mg.blue .mg-l{color:rgba(255,255,255,0.75)}
  .btns{
    order:5;
    margin-bottom:24px;
  }
  .services{
    order:6;
  }
}

/* ── MOBILE ── */
@media(max-width:780px){
  #particles{display:none}
  .hero{min-height:auto}
  .hero-body{flex:none;flex-direction:column;align-items:center;padding:20px 16px 48px;gap:20px;min-height:auto}
  .hero-left{width:100%;max-width:440px}
  .nl,.nc{display:none}
  .burger{display:flex!important;visibility:visible;opacity:1}
  .nav-right{display:flex!important}
  .hero-right{display:none!important}
  .hero-mob-photo-wrap{max-width:330px}
  .fc,.online{display:none}
}
@media(max-width:400px){
  h1{font-size:26px}
  .hero-mob-photo-wrap{max-width:300px}
}

@media(max-width:780px){
  .nb-t { display: none; }
  .nb-n { font-size: 17px; }
  .nav { padding: 0 16px; height: 56px; }
  .nav-wrap { padding: 12px 14px 0 !important; display:block !important; }
}

/* ── TABLET PORTRAIT (Galaxy Tab ~800px, iPad mini ~744px) ── */
@media(min-width:600px) and (max-width:980px){
  .hero-body{padding:32px 28px 56px}
  .hero-left{
    width:100%;
    max-width:100%;
    text-align:left;
    align-items:flex-start;
  }
  .hero-mob-photo-wrap{
    max-width:520px;
    align-self:center;
    margin:0 auto 18px;
  }
  .hero-mob-photo-wrap .mob-online{
    margin:0 auto 12px;
  }
  .hero-mob-photo-wrap .mob-grid{
    max-width:520px;
  }
  .btns{
    flex-wrap:wrap;
    justify-content:flex-start;
  }
  .services{
    width:100%;
  }
}

/* ── TAG PILLS ── */
.svc-label-row{display:flex;align-items:center;gap:8px;margin-bottom:10px}
.svc-icon{font-size:14px;display:flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:7px}
.svc-icon-blue{background:rgba(37,99,235,0.1)}
.svc-icon-purple{background:rgba(124,58,237,0.1)}
.svc-label{font-size:12px;font-weight:700;color:var(--hint);letter-spacing:.07em;text-transform:uppercase}

.tag-pill{
  display:inline-flex;align-items:center;gap:5px;
  padding:5px 11px;border-radius:100px;
  font-size:12px;font-weight:600;
  transition:transform .15s,box-shadow .15s;
  cursor:default;
}
.tag-pill:hover{transform:translateY(-1px);box-shadow:0 4px 12px rgba(0,0,0,0.1)}
.tag-pill svg{width:13px;height:13px;flex-shrink:0}

.tag-google{background:#e8f0fe;color:#1a56db;border:1px solid #c7d8fb}
.tag-yandex{background:#fff0e0;color:#c05800;border:1px solid #fdd9a8}
.tag-tg   {background:#e3f0ff;color:#006adc;border:1px solid #b3d4ff}
.tag-yt   {background:#ffe8e8;color:#c00;border:1px solid #ffbcbc}
.tag-vk   {background:#e5f0ff;color:#0055a4;border:1px solid #b3d1ff}
.tag-meta {background:#e8f0ff;color:#1877f2;border:1px solid #bcd0ff}
.tag-tiktok{background:#f0f0f0;color:#111;border:1px solid #d8d8d8}
.tag-li   {background:#e7f1fb;color:#0a66c2;border:1px solid #b9d7f5}
.tag-email{background:#f0fdf4;color:#15803d;border:1px solid #bbf7d0}
.tag-seo  {background:#faf5ff;color:#7c3aed;border:1px solid #ddd6fe}
.tag-web  {background:rgba(255,255,255,0.85);color:var(--muted);border:1px solid rgba(226,232,244,0.9)}


/* ── ENTRANCE ANIMATIONS ── */

/* stagger helpers */
.anim-1,.anim-2,.anim-3,.anim-4,.anim-5{
  animation:heroFadeUp .7s cubic-bezier(.22,1,.36,1) both;
}
.anim-1{animation-delay:.1s}
.anim-2{animation-delay:.2s}
.anim-3{animation-delay:.3s}
.anim-4{animation-delay:.4s}
.anim-5{animation-delay:.5s}
.anim-photo{animation:photoReveal .8s cubic-bezier(.22,1,.36,1) .35s both}

@keyframes heroFadeUp{
  from{opacity:1;transform:translateY(32px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes photoReveal{
  from{opacity:1;transform:scale(.92) translateY(20px)}
  to{opacity:1;transform:scale(1) translateY(0)}
}

/* nav slide down */
.nav{animation:navSlide .6s cubic-bezier(.22,1,.36,1) both}
@keyframes navSlide{
  from{opacity:1;transform:translateY(-20px)}
  to{opacity:1;transform:translateY(0)}
}

/* floating cards individual entrance */
.fc-years {animation:fcLeft .8s cubic-bezier(.22,1,.36,1) .8s both!important}
.fc-webdev{animation:fcLeft .8s cubic-bezier(.22,1,.36,1) 1s both!important}
.fc-proj  {animation:fcRight .8s cubic-bezier(.22,1,.36,1) .9s both!important}
.fc-price {animation:fcRight .8s cubic-bezier(.22,1,.36,1) 1.1s both!important}
.online   {animation:fcUp .7s cubic-bezier(.22,1,.36,1) .7s both!important}

@keyframes fcLeft{
  from{opacity:1;transform:translateX(-24px) scale(.9)}
  to{opacity:1;transform:translateX(0) scale(1)}
}
@keyframes fcRight{
  from{opacity:1;transform:translateX(24px) scale(.9)}
  to{opacity:1;transform:translateX(0) scale(1)}
}
@keyframes fcUp{
  from{opacity:1;transform:translateX(-50%) translateY(-16px) scale(.9)}
  to{opacity:1;transform:translateX(-50%) translateY(0) scale(1)}
}

/* tag pill stagger on load */
.tag-pill{opacity:1;animation:pillPop .5s cubic-bezier(.34,1.56,.64,1) both}
.svc-chips .tag-pill:nth-child(1){animation-delay:.9s}
.svc-chips .tag-pill:nth-child(2){animation-delay:.95s}
.svc-chips .tag-pill:nth-child(3){animation-delay:1.0s}
.svc-chips .tag-pill:nth-child(4){animation-delay:1.05s}
.svc-chips .tag-pill:nth-child(5){animation-delay:1.1s}
.svc-chips .tag-pill:nth-child(6){animation-delay:1.15s}
.svc-chips .tag-pill:nth-child(7){animation-delay:1.2s}
.svc-chips .tag-pill:nth-child(8){animation-delay:1.25s}
.svc-chips .tag-pill:nth-child(9){animation-delay:1.3s}
.svc-chips .tag-pill:nth-child(10){animation-delay:1.35s}

@keyframes pillPop{
  from{opacity:1;transform:scale(.7) translateY(8px)}
  to{opacity:1;transform:scale(1) translateY(0)}
}

/* canvas for particles */
#particles{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;pointer-events:none}



@media(max-width:780px){
  .services{ margin-top: 24px; }

  /* animate mob-grid cards */
  .mob-grid .mg{
    opacity:1;
    animation: mgPop .55s cubic-bezier(.34,1.56,.64,1) both;
  }
  .mob-grid .mg:nth-child(1){ animation-delay: .1s; }
  .mob-grid .mg:nth-child(2){ animation-delay: .2s; }
  .mob-grid .mg:nth-child(3){ animation-delay: .3s; }
  .mob-grid .mg:nth-child(4){ animation-delay: .4s; }
}
@keyframes mgPop{
  from{ opacity:1; transform: scale(.8) translateY(16px); }
  to{   opacity:1; transform: scale(1) translateY(0); }
}
/* mob-online badge animate */
@media(max-width:780px){
  .mob-online{
    opacity:1;
    animation: fcUp .7s cubic-bezier(.22,1,.36,1) .25s both;
  }
}


/* ── FLOATING CARD HOVER EFFECTS ── */
.fc {
  transition: transform .25s cubic-bezier(.34,1.56,.64,1),
              box-shadow .25s ease;
  cursor: default;
}
.fc:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 12px 32px rgba(37,99,235,0.18), 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10;
}
.fc-blue:hover {
  box-shadow: 0 12px 32px rgba(37,99,235,0.35), 0 4px 12px rgba(37,99,235,0.2);
}

/* online badge hover */
.online {
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
  cursor: default;
}
.online:hover {
  transform: translateX(-50%) translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* mob-grid cards hover */
.mg {
  transition: transform .25s cubic-bezier(.34,1.56,.64,1),
              box-shadow .25s ease;
  cursor: default;
}
.mg:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 10px 28px rgba(37,99,235,0.13);
}
.mg.blue:hover {
  box-shadow: 0 10px 28px rgba(37,99,235,0.32);
}
/* ===================================

   SERVICES SECTION

=================================== */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --blue:#2563eb;--blue-dark:#1d4ed8;--blue-light:#3b82f6;
  --text:#0f172a;--muted:#475569;--hint:#94a3b8;--border:#e2e8f4;
}
body{font-family:'Manrope',sans-serif;background:#E8F0FE}

/* ── SECTION ── */
.services-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(ellipse 75% 55% at 15% 25%, rgba(186,220,255,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(193,215,255,0.38) 0%, transparent 55%),
    #E8F0FE;
  padding:80px 24px 96px;
}
.services-section::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle,rgba(37,99,235,0.06) 1px,transparent 1px);
  background-size:28px 28px;
  z-index:0;
  opacity:.5;
  pointer-events:none;
}
.services-section::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:100px;
  background:linear-gradient(to bottom, transparent, #E8F0FE);
  pointer-events:none;
  z-index:1;
}

.inner{position:relative;z-index:1;max-width:1200px;margin:0 auto}

/* ── HEADER ── */
.sec-head{text-align:left;margin-bottom:56px}
.sec-tag{
  display:inline-flex;align-items:center;gap:7px;
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(37,99,235,0.2);
  color:var(--blue-dark);font-size:12px;font-weight:600;
  padding:5px 14px;border-radius:100px;margin-bottom:16px;
}
.sec-tag-dot{width:6px;height:6px;border-radius:50%;background:var(--blue)}
.sec-h2{font-size:clamp(30px,4vw,46px);font-weight:800;color:var(--text);letter-spacing:-.02em;line-height:1.1;margin-bottom:10px}
.sec-h2 span{
  color:var(--blue);
  background:var(--accent-gradient);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.sec-sub{font-size:15px;color:var(--muted);max-width:480px;margin:0;line-height:1.65}

/* ── TWO COLUMNS ── */
.cols{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start}

/* ── COLUMN HEADER ── */
.col-head{
  display:flex;align-items:center;gap:12px;
  padding:16px 20px;
  border-radius:14px;
  margin-bottom:16px;
}
.col-head-marketing{background:linear-gradient(135deg,#2563eb 0%,#3b82f6 100%)}
.col-head-web{background:linear-gradient(135deg,#0f172a 0%,#1e3a5f 100%)}
.col-head-icon{
  width:40px;height:40px;border-radius:10px;
  background:rgba(255,255,255,0.2);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.col-head-icon svg{width:20px;height:20px;fill:#fff}
.col-head-text{}
.col-head-title{font-size:16px;font-weight:800;color:#fff;letter-spacing:-.01em}
.col-head-count{font-size:11px;color:rgba(255,255,255,0.65);margin-top:1px}

/* ── SERVICE CARDS ── */
.svc-card{
  background:rgba(255,255,255,0.88);
  border:1px solid rgba(226,232,244,0.9);
  border-radius:14px;
  padding:18px 20px;
  margin-bottom:10px;
  display:flex;gap:14px;align-items:flex-start;
  transition:transform .25s cubic-bezier(.34,1.56,.64,1),box-shadow .25s ease,border-color .2s;
  cursor:default;
  opacity:0;
  animation:cardIn .6s cubic-bezier(.22,1,.36,1) both;
}
.svc-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(37,99,235,0.12);
  border-color:rgba(37,99,235,0.25);
}
.svc-icon{
  width:40px;height:40px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.svc-icon svg{width:20px;height:20px}

/* marketing icon colors */
.icon-blue{background:#E8F0FE}
.icon-blue svg{fill:#2563eb}
.icon-orange{background:#fff7ed}
.icon-orange svg{fill:#ea580c}
.icon-teal{background:#f0fdfa}
.icon-teal svg{fill:#0d9488}
.icon-red{background:#fff1f2}
.icon-red svg{fill:#e11d48}
.icon-purple{background:#faf5ff}
.icon-purple svg{fill:#7c3aed}
.icon-green{background:#f0fdf4}
.icon-green svg{fill:#16a34a}

/* web icon colors */
.icon-slate{background:#E8F0FE}
.icon-slate svg{fill:#475569}
.icon-indigo{background:#E8F0FE}
.icon-indigo svg{fill:#4338ca}
.icon-sky{background:#f0f9ff}
.icon-sky svg{fill:#0284c7}
.icon-violet{background:#f5f3ff}
.icon-violet svg{fill:#6d28d9}
.icon-emerald{background:#ecfdf5}
.icon-emerald svg{fill:#059669}
.icon-rose{background:#fff1f2}
.icon-rose svg{fill:#be123c}

.svc-body{}
.svc-title{font-size:14px;font-weight:700;color:var(--text);margin-bottom:4px;letter-spacing:-.01em}
.svc-desc{font-size:12px;color:var(--muted);line-height:1.6}
.svc-tag{
  display:inline-block;margin-top:6px;
  font-size:10px;font-weight:600;
  padding:2px 8px;border-radius:100px;
}
.tag-m{background:#E8F0FE;color:#1d4ed8;border:1px solid #bfdbfe}
.tag-w{background:#E8F0FE;color:#374151;border:1px solid #e2e8f4}

/* animation delays — marketing col */
.col-marketing .svc-card:nth-child(1){animation-delay:.15s}
.col-marketing .svc-card:nth-child(2){animation-delay:.22s}
.col-marketing .svc-card:nth-child(3){animation-delay:.29s}
.col-marketing .svc-card:nth-child(4){animation-delay:.36s}
.col-marketing .svc-card:nth-child(5){animation-delay:.43s}
.col-marketing .svc-card:nth-child(6){animation-delay:.50s}
/* animation delays — web col */
.col-web .svc-card:nth-child(1){animation-delay:.20s}
.col-web .svc-card:nth-child(2){animation-delay:.27s}
.col-web .svc-card:nth-child(3){animation-delay:.34s}
.col-web .svc-card:nth-child(4){animation-delay:.41s}
.col-web .svc-card:nth-child(5){animation-delay:.48s}
.col-web .svc-card:nth-child(6){animation-delay:.55s}

/* ── CTA STRIP ── */
.cta-strip{
  margin-top:40px;
  background:linear-gradient(135deg,#2563eb 0%,#1d4ed8 100%);
  border-radius:16px;
  padding:28px 36px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  flex-wrap:wrap;
}
.cta-strip-text{}
.cta-strip-title{font-size:18px;font-weight:800;color:#fff;letter-spacing:-.02em}
.cta-strip-sub{font-size:13px;color:rgba(255,255,255,0.7);margin-top:3px}
.cta-strip-btn{
  background:#fff;color:var(--blue);
  border:none;padding:12px 28px;
  border-radius:10px;font-family:'Manrope',sans-serif;
  font-size:14px;font-weight:700;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;
  text-align:center;
  text-decoration:none;
  white-space:nowrap;
  transition:transform .2s,box-shadow .2s;
}
.cta-strip-btn:hover,
.cta-strip-btn:focus{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,0.15);text-decoration:none}

/* ── MOBILE ── */
@media(max-width:768px){
  .services-section{padding:56px 16px 64px}
  .cols{grid-template-columns:1fr;gap:16px}
  .sec-h2{font-size:30px}
  .cta-strip{padding:20px 20px;flex-direction:column;align-items:flex-start}
  .cta-strip-btn{width:100%}
}
/* ===================================

   CASES SECTION

=================================== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --blue:#2563eb;--blue-dark:#1d4ed8;--blue-light:#3b82f6;
  --text:#0f172a;--muted:#475569;--hint:#94a3b8;--border:#e2e8f4;
}
body{font-family:'Manrope',sans-serif;background:#E8F0FE}

/* ── SECTION WRAPPER ── */
.cases-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(ellipse 75% 55% at 15% 25%, rgba(186,220,255,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(193,215,255,0.38) 0%, transparent 55%),
    #E8F0FE;
  padding:80px 24px 96px;
}
.cases-section::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle,rgba(37,99,235,0.06) 1px,transparent 1px);
  background-size:28px 28px;
  z-index:0;
  opacity:.5;
  pointer-events:none;
}
.cases-section::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:100px;
  background:linear-gradient(to bottom, transparent, #E8F0FE);
  pointer-events:none;
  z-index:1;
}
.inner{position:relative;z-index:1;max-width:1280px;margin:0 auto}

/* ── BLOCK HEADER ── */
.block-head{margin-bottom:32px}
.block-head-row{display:flex;align-items:center;gap:14px;margin-bottom:8px}
.block-icon{
  width:48px;height:48px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.block-icon-marketing{background:linear-gradient(135deg,#2563eb 0%,#3b82f6 100%);box-shadow:0 8px 20px rgba(37,99,235,0.25)}
.block-icon-web{background:linear-gradient(135deg,#0f172a 0%,#1e3a5f 100%);box-shadow:0 8px 20px rgba(15,23,42,0.25)}
.block-icon svg{width:24px;height:24px;fill:#fff}
.block-title{font-size:clamp(30px,4vw,46px);font-weight:800;color:var(--text);letter-spacing:-.02em;line-height:1.1}
.block-title span{
  color:var(--blue);
  background:var(--accent-gradient);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.block-sub{font-size:15px;color:var(--muted);margin-left:62px;line-height:1.6;max-width:600px}

/* ── TABS ── */
.tabs{
  display:flex;flex-wrap:wrap;gap:8px;
  margin-bottom:28px;
  padding:6px;
  background:rgba(255,255,255,0.7);
  border:1px solid rgba(226,232,244,0.9);
  border-radius:14px;
  backdrop-filter:blur(8px);
}
.tab{
  flex:1;min-width:fit-content;
  padding:10px 18px;
  border-radius:10px;
  font-family:'Manrope',sans-serif;
  font-size:13px;font-weight:600;
  color:var(--muted);background:transparent;
  border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:6px;
  transition:background .2s,color .2s,transform .15s;
  white-space:nowrap;
}
.tab svg{width:15px;height:15px}
.tab:hover{background:rgba(37,99,235,0.06);color:var(--text)}
.tab.active{
  background:var(--blue);color:#fff;
  box-shadow:0 4px 12px rgba(37,99,235,0.3);
}
.tab.active svg{fill:#fff!important}

/* ── CAROUSEL ── */
.carousel-wrap{position:relative}
.carousel{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:280px;
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:4px 4px 20px;
  scrollbar-width:thin;
  scrollbar-color:#cbd5e1 transparent;
}
.carousel::-webkit-scrollbar{height:8px}
.carousel::-webkit-scrollbar-thumb{background:#cbd5e1;border-radius:4px}
.carousel::-webkit-scrollbar-track{background:transparent}

/* ── CASE CARD ── */
.case{
  scroll-snap-align:start;
  background:#fff;
  border:1px solid rgba(226,232,244,0.95);
  border-radius:16px;
  padding:20px;
  display:flex;flex-direction:column;gap:14px;
  transition:transform .25s cubic-bezier(.34,1.56,.64,1),box-shadow .25s,border-color .2s;
  cursor:default;
}
.case:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(37,99,235,0.14);
  border-color:rgba(37,99,235,0.25);
}

.case-head{display:flex;align-items:center;justify-content:space-between;gap:8px}
.case-flag{font-size:22px;line-height:1}
.case-media{
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(226,232,244,0.95);
  background: linear-gradient(135deg,#E8F0FE 0%,#E8F0FE 100%);
  aspect-ratio: 16 / 9;
}
.case-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}
.case:hover .case-media img{transform:none}
.case-channel{
  font-size:10px;font-weight:700;
  padding:3px 8px;border-radius:100px;
  letter-spacing:.04em;
}
.ch-google{background:#e8f0fe;color:#1a56db}
.ch-yandex{background:#fff0e0;color:#c05800}
.ch-tg{background:#e3f0ff;color:#006adc}
.ch-yt{background:#ffe8e8;color:#c00}
.ch-meta{background:#e8f0ff;color:#1877f2}
.ch-tiktok{background:#f0f0f0;color:#111}
.ch-vk{background:#e5f0ff;color:#0055a4}
.ch-li{background:#e7f1fb;color:#0a66c2}
.ch-seo{background:#faf5ff;color:#7c3aed}
.ch-email{background:#f0fdf4;color:#15803d}
.ch-web{background:#E8F0FE;color:#475569}

.case-title{font-size:15px;font-weight:800;color:var(--text);letter-spacing:-.01em;line-height:1.25}
.case-niche{font-size:11px;color:var(--hint);font-weight:600;text-transform:uppercase;letter-spacing:.06em}

.case-metric{
  background:linear-gradient(135deg,#E8F0FE 0%,#E8F0FE 100%);
  border:1px solid #E8F0FE;
  border-radius:10px;
  padding:14px;
  text-align:center;
}
.metric-big{font-size:24px;font-weight:800;color:var(--blue);letter-spacing:-.03em;line-height:1}
.metric-lbl{font-size:10px;color:var(--muted);margin-top:4px;font-weight:600;text-transform:uppercase;letter-spacing:.06em}

.case-stats{display:flex;flex-direction:column;gap:6px}
.stat-row{display:flex;justify-content:space-between;align-items:center;font-size:12px}
.stat-key{color:var(--muted);font-weight:500}
.stat-val{color:var(--text);font-weight:700}

/* ── ARROWS ── */
.arrows{display:flex;gap:8px;justify-content:flex-end;margin-top:8px}
.arrow{
  width:38px;height:38px;border-radius:10px;
  background:rgba(255,255,255,0.95);
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:background .2s,transform .15s,border-color .2s;
}
.arrow:hover{background:var(--blue);border-color:var(--blue)}
.arrow:hover svg{stroke:#fff}
.arrow svg{width:18px;height:18px;stroke:var(--text);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:stroke .2s}

/* ── BLOCK SEPARATOR ── */
.block-divider{height:60px}

/* ── MOBILE ── */
@media(max-width:768px){
  .cases-section{padding:56px 16px 64px}
  .block-sub{margin-left:0;margin-top:8px}
  .tabs{flex-wrap:nowrap;overflow-x:auto;padding:5px;scrollbar-width:none}
  .tabs::-webkit-scrollbar{display:none}
  .tab{flex:0 0 auto;padding:9px 14px;font-size:12px}
  .carousel{grid-auto-columns:240px;gap:12px}
  .case{padding:16px}
  .metric-big{font-size:20px}
  .block-divider{height:40px}
  .arrows{display:none}
}

/* ── MODAL ── */
.modal-overlay{
  position:fixed;inset:0;
  background:rgba(15,23,42,0.55);
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
  z-index:1000;
  display:none;align-items:center;justify-content:center;
  padding:20px;
  opacity:0;transition:opacity .25s ease;
}
.modal-overlay.open{display:flex;opacity:1}
.modal{
  background:#fff;border-radius:20px;
  max-width:640px;width:100%;max-height:90vh;
  overflow-y:auto;
  box-shadow:0 24px 64px rgba(0,0,0,0.25);
  border:1px solid rgba(255,255,255,0.5);
  transform:scale(.92) translateY(20px);
  transition:transform .35s cubic-bezier(.22,1,.36,1);
  position:relative;
}
.modal-overlay.open .modal{transform:scale(1) translateY(0)}

.modal-close{
  position:absolute;top:16px;right:16px;
  width:36px;height:36px;border-radius:10px;
  background:rgba(15,23,42,0.06);border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s,transform .15s;z-index:5;
}
.modal-close:hover{background:rgba(15,23,42,0.12);transform:rotate(90deg)}
.modal-close svg{width:18px;height:18px;stroke:var(--text);fill:none;stroke-width:2;stroke-linecap:round}

.modal-head{
  padding:32px 32px 24px;
  background:linear-gradient(135deg,#E8F0FE 0%,#E8F0FE 100%);
  border-bottom:1px solid var(--border);
  border-radius:20px 20px 0 0;
}
.modal-head-row{display:flex;align-items:center;gap:10px;margin-bottom:14px;flex-wrap:wrap}
.modal-flag{font-size:28px;line-height:1}
.modal-channel-tag{
  font-size:11px;font-weight:700;
  padding:4px 10px;border-radius:100px;
  letter-spacing:.04em;
}
.modal-niche{
  font-size:11px;color:var(--hint);font-weight:600;
  text-transform:uppercase;letter-spacing:.06em;
  background:rgba(255,255,255,0.7);
  padding:4px 10px;border-radius:100px;
}
.modal-title{font-size:24px;font-weight:800;color:var(--text);letter-spacing:-.02em;line-height:1.2;margin-bottom:16px}
.modal-hero-metric{
  background:#fff;border:1px solid #E8F0FE;
  border-radius:12px;padding:16px 20px;
  display:flex;align-items:baseline;gap:14px;
}
.modal-cover{
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(226,232,244,0.95);
  background: #fff;
}
.modal-cover img{
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
}
.modal-hero-num{font-size:32px;font-weight:800;color:var(--blue);letter-spacing:-.03em;line-height:1}
.modal-hero-lbl{font-size:12px;color:var(--muted);font-weight:600;text-transform:uppercase;letter-spacing:.05em}

.modal-body{padding:24px 32px 32px}
.modal-section{margin-bottom:22px}
.modal-section:last-child{margin-bottom:0}
.modal-section-label{
  display:flex;align-items:center;gap:8px;
  font-size:11px;font-weight:700;
  color:var(--blue);letter-spacing:.08em;
  text-transform:uppercase;margin-bottom:8px;
}
.modal-section-icon{
  width:24px;height:24px;border-radius:7px;
  background:rgba(37,99,235,0.1);
  display:flex;align-items:center;justify-content:center;
}
.modal-section-icon svg{width:13px;height:13px;fill:var(--blue)}
.modal-section-text{font-size:14px;color:var(--text);line-height:1.65}

.modal-stats-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:8px;
}
.modal-stat-card{
  background:#E8F0FE;border:1px solid var(--border);
  border-radius:10px;padding:12px;
}
.modal-stat-num{font-size:18px;font-weight:800;color:var(--text);letter-spacing:-.02em}
.modal-stat-lbl{font-size:10px;color:var(--hint);margin-top:3px;font-weight:600;text-transform:uppercase;letter-spacing:.05em}

.modal-cta{
  background:linear-gradient(135deg,#2563eb 0%,#1d4ed8 100%);
  border-radius:12px;padding:18px 22px;
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  margin-top:8px;
}
.modal-cta-text{font-size:13px;color:#fff;font-weight:600}
.modal-cta-btn{
  background:#fff;color:var(--blue);border:none;
  padding:10px 20px;border-radius:9px;
  font-family:'Manrope',sans-serif;font-size:13px;font-weight:700;
  cursor:pointer;white-space:nowrap;
  transition:transform .15s,box-shadow .2s;
}
.modal-cta-btn:hover{transform:translateY(-1px);box-shadow:0 6px 16px rgba(0,0,0,0.15)}

.case{cursor:pointer}

@media(max-width:768px){
  .modal{max-height:95vh;border-radius:16px}
  .modal-head{padding:24px 20px 18px}
  .modal-title{font-size:20px}
  .modal-hero-num{font-size:26px}
  .modal-body{padding:20px}
  .modal-stats-grid{grid-template-columns:1fr 1fr}
  .modal-cta{flex-direction:column;align-items:stretch;text-align:center}
}

/* ===================================
   ABOUT SECTION
=================================== */
.about-section{
  position:relative;
  padding:100px 24px 120px;
  background:
    radial-gradient(ellipse 75% 55% at 15% 25%, rgba(186,220,255,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(193,215,255,0.38) 0%, transparent 55%),
    #E8F0FE;
  overflow:hidden;
}
.about-section::before{
  content:"";
  position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(148,163,184,.22) 1px,transparent 1px);
  background-size:28px 28px;
  pointer-events:none;
  z-index:0;
}
.about-section::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:100px;
  background:linear-gradient(to bottom, transparent, #E8F0FE);
  pointer-events:none;
  z-index:1;
}
.about-section .container{max-width:1100px;margin:0 auto;position:relative;z-index:1}

.about-section .section-label{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:#2563eb;background:rgba(37,99,235,.07);
  border:1px solid rgba(37,99,235,.18);border-radius:100px;
  padding:6px 16px;margin-bottom:20px;
  
}
.about-section .section-label::before{
  content:"";width:6px;height:6px;border-radius:50%;background:#2563eb;
}
.about-section .section-title{
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size:clamp(30px,4vw,46px);font-weight:800;line-height:1.1;
  color:#0f172a;margin-bottom:56px;
}
.about-section .section-title span{
  background:linear-gradient(135deg,#1d4ed8 0%,#3b82f6 60%,#60a5fa 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}

.about-section .top-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  margin-bottom:24px;
  align-items:stretch;
}
.about-section .top-grid > *{min-width:0}
.about-section .bio-card{
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(148,163,184,.25);
  border-radius:24px;padding:40px 36px;
  box-shadow:0 4px 32px rgba(37,99,235,.07),0 1px 0 rgba(255,255,255,.8) inset;
  
  display:flex;flex-direction:column;
}
.about-section .bio-intro{font-size:15px;font-weight:500;color:#2563eb;margin-bottom:16px}
.about-section .bio-text{font-size:15px;line-height:1.78;color:#334155;margin-bottom:16px}
.about-section .bio-text:last-of-type{margin-bottom:0}
.about-section .bio-text strong{color:#0f172a;font-weight:600}

.about-section .skills-block{margin-top:28px}
.about-section .skills-title{
  font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:#94a3b8;margin-bottom:10px;
}
.about-section .skills-row{display:flex;flex-wrap:wrap;gap:7px}
.about-section .skill-tag{
  font-size:12.5px;font-weight:500;padding:5px 13px;border-radius:8px;
  border:1px solid transparent;transition:all .2s;
}
.about-section .skill-tag.marketing{background:rgba(37,99,235,.07);color:#1d4ed8;border-color:rgba(37,99,235,.15)}
.about-section .skill-tag.dev{background:rgba(15,23,42,.05);color:#334155;border-color:rgba(15,23,42,.1)}
.about-section .skill-tag:hover{transform:translateY(-1px);box-shadow:0 3px 10px rgba(0,0,0,.08)}

.about-section .photo-card{
  position:relative;border-radius:24px;overflow:hidden;
  box-shadow:0 4px 32px rgba(37,99,235,.1);
  
  min-height:420px;
}
.about-section .photo-card img.bg{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center 20%;
  display:block;transition:transform .6s ease;
}
.about-section .photo-card:hover img.bg{transform:scale(1.04)}
.about-section .photo-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to bottom,rgba(15,23,42,.02) 0%,rgba(15,23,42,.12) 35%,rgba(15,23,42,.82) 100%);
}
.about-section .photo-content{position:absolute;bottom:0;left:0;right:0;padding:32px 28px;z-index:2}
.about-section .photo-eyebrow{
  font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(255,255,255,.55);margin-bottom:10px;
  display:flex;align-items:center;gap:6px;
}
.about-section .photo-eyebrow::before{
  content:"";width:18px;height:1.5px;background:rgba(255,255,255,.4);display:inline-block;
}
.about-section .photo-title{
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size:26px;font-weight:800;color:#fff;line-height:1.25;margin-bottom:10px;letter-spacing:-.01em;
}
.about-section .photo-sub{font-size:14px;font-weight:400;color:rgba(255,255,255,.6);line-height:1.55}

.about-section .certs-card{
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(148,163,184,.25);
  border-radius:24px;padding:36px 36px 40px;
  box-shadow:0 4px 32px rgba(37,99,235,.07),0 1px 0 rgba(255,255,255,.8) inset;
  
}
.about-section .certs-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.about-section .cert-item{
  background:#fff;border:1px solid rgba(148,163,184,.25);
  border-radius:18px;overflow:hidden;
  transition:transform .25s,box-shadow .25s;cursor:pointer;
}
.about-section .bio-card,
.about-section .photo-card,
.about-section .certs-card,
.about-section .cert-item{max-width:100%}
.about-section .cert-item:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(37,99,235,.13)}
.about-section .cert-img-wrap{width:100%;background:#E8F0FE;padding:12px 12px 0}
.about-section .cert-img-wrap img{width:100%;height:auto;display:block;border-radius:10px 10px 0 0}
.about-section .cert-info{padding:16px 18px 18px}
.about-section .cert-category{font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;margin-bottom:5px}
.about-section .cert-category.marketing{color:#2563eb}
.about-section .cert-category.dev{color:#6366f1}
.about-section .cert-name{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:5px}
.about-section .cert-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.about-section .cert-issuer{font-size:12px;color:#64748b;font-weight:500}
.about-section .cert-badge{
  font-size:10px;font-weight:700;letter-spacing:.04em;background:rgba(37,99,235,.08);
  color:#2563eb;border-radius:5px;padding:2px 7px;
}
.about-section .cert-badge.dev{background:rgba(99,102,241,.08);color:#6366f1}
.about-section .cert-hours{font-size:11px;color:#94a3b8;font-weight:500;margin-top:4px}

.lightbox{
  display:none;position:fixed;inset:0;background:rgba(15,23,42,.9);
  backdrop-filter:blur(10px);z-index:1000;align-items:center;justify-content:center;padding:24px;
}
.lightbox.open{display:flex}
.lightbox img{max-width:500px;width:100%;border-radius:16px;box-shadow:0 32px 80px rgba(0,0,0,.5)}
.lightbox-close{
  position:fixed;top:20px;right:24px;font-size:32px;color:#fff;cursor:pointer;opacity:.7;
  transition:opacity .2s;background:none;border:none;padding:4px;
}
.lightbox-close:hover{opacity:1}


/* ===================================
   ADVANTAGES SECTION
=================================== */

.adv-section{
  position:relative;
  padding:110px 24px 120px;
  background:
    radial-gradient(ellipse 75% 55% at 15% 25%, rgba(186,220,255,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(193,215,255,0.38) 0%, transparent 55%),
    #E8F0FE;
  overflow:hidden;
}
.adv-section::before{
  content:'';
  position:absolute;inset:0;
  background-image:radial-gradient(circle, rgba(148,163,184,0.2) 1px, transparent 1px);
  background-size:28px 28px;
  pointer-events:none;z-index:0;
}
.adv-section::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:100px;
  background:linear-gradient(to bottom, transparent, #E8F0FE);
  pointer-events:none;
  z-index:1;
}
.adv-section .container{max-width:1100px;margin:0 auto;position:relative;z-index:1}
.adv-section .section-header{text-align:left;margin-bottom:64px}
.adv-section .section-label{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:#2563eb;background:rgba(37,99,235,.07);
  border:1px solid rgba(37,99,235,.18);border-radius:100px;
  padding:6px 16px;margin-bottom:22px;
}
.adv-section .section-label::before{content:'';width:6px;height:6px;border-radius:50%;background:#2563eb}
.adv-section .section-title{font-size:clamp(30px,4vw,46px);font-weight:800;line-height:1.1;color:#0f172a;margin-bottom:14px;letter-spacing:-.02em}
.adv-section .section-title span{
  background:linear-gradient(135deg,#1d4ed8 0%,#3b82f6 60%,#60a5fa 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.adv-section .section-sub{font-size:15px;color:#64748b;max-width:480px;margin:0;line-height:1.6}
.adv-section .adv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.adv-section .adv-card{
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(148,163,184,.22);
  border-radius:22px;padding:36px 32px 32px;
  box-shadow:0 2px 20px rgba(37,99,235,.06),0 1px 0 rgba(255,255,255,.85) inset;
  transition:transform .28s cubic-bezier(.34,1.56,.64,1),box-shadow .28s ease;
  
  position:relative;cursor:default;
}
.adv-section .adv-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(37,99,235,.13),0 1px 0 rgba(255,255,255,.85) inset}
.adv-section .adv-card::before{
  content:'';position:absolute;top:0;left:24px;right:24px;height:2px;
  border-radius:0 0 4px 4px;
  background:linear-gradient(90deg,transparent,rgba(37,99,235,.3),transparent);
  opacity:0;transition:opacity .3s;
}
.adv-section .adv-card:hover::before{opacity:1}
.adv-section .card-icon{
  width:60px;height:60px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:22px;
  transition:transform .3s cubic-bezier(.34,1.56,.64,1);
}
.adv-section .adv-card:hover .card-icon{transform:scale(1.1) rotate(-4deg)}
.adv-section .card-title{font-size:17px;font-weight:700;color:#0f172a;margin-bottom:10px;line-height:1.3}
.adv-section .card-text{font-size:14px;color:#64748b;line-height:1.65}
.adv-section .card-text strong{color:#334155;font-weight:600}
.adv-section .bottom-strip{
  margin-top:52px;
  background:rgba(255,255,255,.72);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(148,163,184,.22);border-radius:18px;
  padding:24px 32px;display:flex;align-items:center;justify-content:space-between;
  gap:24px;flex-wrap:wrap;
  box-shadow:0 2px 20px rgba(37,99,235,.06);
  
}
.adv-section .strip-stat{display:flex;align-items:flex-start;gap:14px}
.adv-section .strip-num{font-size:18px;font-weight:800;color:#2563eb;line-height:1.2;letter-spacing:-.01em}
.adv-section .strip-lbl{font-size:13px;color:#64748b;font-weight:500;line-height:1.35}
.adv-section .strip-divider{width:1px;height:36px;background:rgba(148,163,184,.22)}
.adv-section .strip-cta{
  display:inline-flex;align-items:center;gap:8px;
  background:#2563eb;color:#fff;
  font-size:14px;font-weight:600;
  padding:12px 24px;border-radius:12px;text-decoration:none;
  transition:background .2s,transform .2s;white-space:nowrap;font-family:inherit;
  border:none;cursor:pointer;
}
.adv-section .strip-cta:hover{background:#1d4ed8;transform:translateY(-1px)}
@media (max-width:860px){.adv-section .adv-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){
  .adv-section .adv-grid{grid-template-columns:1fr}
  .adv-section{padding:60px 16px 80px}
  .adv-section .bottom-strip{flex-direction:column;align-items:flex-start}
  .adv-section .strip-divider{display:none}
}

@media (max-width:1200px){
  .about-section{
    padding:90px 20px 100px;
  }
  .about-section .top-grid{
    gap:20px;
  }
  .about-section .section-title{
    margin-bottom:44px;
    font-size:clamp(28px,4vw,42px);
    overflow-wrap:anywhere;
  }
}

@media (max-width:992px){
  .about-section .top-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
  .about-section .section-title{
    max-width:14ch;
    margin-bottom:34px;
    line-height:1.1;
  }
  .about-section .photo-card{
    min-height:420px;
  }
}

@media (max-width:860px){
  .about-section{
    padding:64px 16px 84px;
  }
  .about-section .photo-card{
    min-height:360px;
  }
  .about-section .certs-grid{
    grid-template-columns:1fr;
  }
  .about-section .bio-card,
  .about-section .certs-card{
    padding:24px 20px;
  }
  .about-section .section-title{
    margin-bottom:28px;
    max-width:none;
    font-size:clamp(26px,7vw,34px);
    line-height:1.12;
    overflow-wrap:anywhere;
  }
  .about-section .photo-content{
    padding:24px 20px;
  }
  .about-section .photo-title{
    font-size:22px;
    line-height:1.2;
    overflow-wrap:anywhere;
  }
  .about-section .photo-sub{
    font-size:13px;
    line-height:1.45;
  }
  .about-section .photo-sub br{
    display:none;
  }
}

@media (max-width:560px){
  .about-section .bio-card,
  .about-section .certs-card{
    padding:20px 16px;
    border-radius:20px;
  }
  .about-section .bio-text{
    font-size:14px;
    line-height:1.7;
  }
  .about-section .skill-tag{
    font-size:12px;
    padding:5px 11px;
  }
  .about-section .photo-card{
    min-height:320px;
    border-radius:20px;
  }
  .about-section .photo-title{
    font-size:20px;
  }
}

@media (max-width:420px){
  .about-section{
    padding:56px 12px 76px;
  }
  .about-section .section-label{
    font-size:11px;
    padding:5px 12px;
    margin-bottom:16px;
  }
  .about-section .section-title{
    font-size:clamp(28px,9.4vw,36px);
    margin-bottom:22px;
  }
  .about-section .photo-card{
    min-height:280px;
  }
  .about-section .cert-info{
    padding:14px 14px 16px;
  }
}

/* =========================
   Google Certs Section
========================= */
.gcerts-section{
  position:relative;
  padding:110px 24px 120px;
  background:
    radial-gradient(ellipse 75% 55% at 15% 25%, rgba(186,220,255,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(193,215,255,0.38) 0%, transparent 55%),
    #E8F0FE;
  overflow:hidden;
}
.gcerts-section::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle, rgba(148,163,184,0.2) 1px, transparent 1px);
  background-size:28px 28px;
  pointer-events:none;
  z-index:0;
}
.gcerts-section::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:100px;
  background:linear-gradient(to bottom, transparent, #E8F0FE);
  pointer-events:none;
  z-index:1;
}
.gcerts-section .container{max-width:1100px;margin:0 auto;position:relative;z-index:1}

.gcerts-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:52px;
  flex-wrap:wrap;
  gap:20px;
  
}
.gcerts-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#2563EB;
  background:rgba(37,99,235,.07);
  border:1px solid rgba(37,99,235,.18);
  border-radius:100px;
  padding:6px 16px;
  margin-bottom:16px;
}
.gcerts-label::before{content:'';width:6px;height:6px;border-radius:50%;background:#2563EB}
.gcerts-title{font-size:clamp(30px,4vw,46px);font-weight:800;line-height:1.1;color:#0F172A;letter-spacing:-.02em}
.gcerts-title span{
  background:linear-gradient(135deg,#1D4ED8 0%,#3B82F6 60%,#60A5FA 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.gcerts-sub{font-size:15px;color:#64748B;margin-top:10px;line-height:1.6}

.gcerts-badge{
  display:flex;
  align-items:center;
  gap:12px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(148,163,184,.22);
  border-radius:16px;
  padding:16px 22px;
  box-shadow:0 2px 16px rgba(37,99,235,.07);
  flex-shrink:0;
}
.gcerts-google-g{
  font-size:28px;
  font-weight:700;
  background:linear-gradient(135deg,#4285F4 0%,#EA4335 40%,#FBBC05 70%,#34A853 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.gcerts-badge-title{font-size:13px;font-weight:700;color:#0F172A}
.gcerts-badge-sub{font-size:11px;color:#64748B;margin-top:2px}
.gcerts-badge-count{
  display:flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:8px;
  background:rgba(37,99,235,.08);
  font-size:15px;
  font-weight:800;
  color:#2563EB;
}

.gcerts-carousel-wrap{
  position:relative;
  padding-bottom:56px;
}
.gcerts-grid{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:calc((100% - 40px) / 3);
  gap:20px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:4px 4px 18px;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.gcerts-grid::-webkit-scrollbar{display:none}
.gcert-card{
  scroll-snap-align:start;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(148,163,184,.22);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 2px 20px rgba(37,99,235,.06),0 1px 0 rgba(255,255,255,.85) inset;
  transition:transform .28s cubic-bezier(.34,1.56,.64,1),box-shadow .28s ease;
  
  cursor:pointer;
  position:relative;
}
.gcert-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(37,99,235,.14)}
.gcert-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg,#4285F4,#EA4335,#FBBC05,#34A853);
  border-radius:22px 22px 0 0;
}

.gcert-img-wrap{position:relative;width:100%;background:#E8F0FE;overflow:hidden;padding:20px 20px 0}
.gcert-img-wrap img{width:100%;height:auto;display:block;border-radius:12px 12px 0 0;transition:transform .5s ease}
.gcert-card:hover .gcert-img-wrap img{transform:scale(1.03)}

.gcert-zoom-overlay{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,0);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .25s;
  border-radius:12px 12px 0 0;
  margin:20px 20px 0;
}
.gcert-zoom-icon{opacity:0;transform:scale(.7);transition:all .25s}
.gcert-card:hover .gcert-zoom-overlay{background:rgba(15,23,42,.25)}
.gcert-card:hover .gcert-zoom-icon{opacity:1;transform:scale(1)}

.gcert-info{padding:18px 20px 20px;border-top:1px solid rgba(148,163,184,.22)}
.gcert-platform{display:flex;align-items:center;gap:6px;margin-bottom:8px}
.gcert-platform-dot{
  width:18px;
  height:18px;
  border-radius:4px;
  background:linear-gradient(135deg,#4285F4,#34A853);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.gcert-platform-name{font-size:11px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#4285F4}
.gcert-name{font-size:15px;font-weight:700;color:#0F172A;line-height:1.35;margin-bottom:8px}
.gcert-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.gcert-issuer{font-size:12px;color:#64748B;font-weight:500}
.gcert-year{
  font-size:10px;
  font-weight:700;
  letter-spacing:.04em;
  background:rgba(66,133,244,.08);
  color:#4285F4;
  border-radius:5px;
  padding:2px 7px;
}

.gcerts-lightbox{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.92);
  backdrop-filter:blur(14px);
  z-index:1000;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.gcerts-lightbox.open{display:flex}
.gcerts-lightbox-inner{position:relative;max-width:520px;width:100%}
.gcerts-lightbox img{width:100%;border-radius:16px;box-shadow:0 32px 80px rgba(0,0,0,.5);display:block}
.gcerts-lightbox-close{
  position:fixed;
  top:20px;
  right:24px;
  width:40px;
  height:40px;
  border-radius:10px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  font-size:20px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s;
}
.gcerts-lightbox-close:hover{background:rgba(255,255,255,.22)}
.gcerts-lb-prev,.gcerts-lb-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:10px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s;
  font-size:24px;
  line-height:1;
}
.gcerts-lb-prev{left:-52px}
.gcerts-lb-next{right:-52px}
.gcerts-lb-prev:hover,.gcerts-lb-next:hover{background:rgba(255,255,255,.22)}
.gcerts-lb-caption{text-align:center;margin-top:14px;font-size:13px;color:rgba(255,255,255,.55)}
.gcerts-arrows{
  position:absolute;
  right:6px;
  bottom:6px;
  margin-top:0;
  z-index:3;
  padding:6px;
  border-radius:12px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(148,163,184,.25);
  box-shadow:0 6px 18px rgba(37,99,235,.12);
}

@media(max-width:860px){
  .gcerts-grid{
    grid-auto-columns:calc((100% - 16px) / 2);
    gap:16px;
  }
}
@media(max-width:768px){
  .gcerts-arrows{display:flex}
}
@media(max-width:560px){
  .gcerts-grid{
    grid-auto-columns:100%;
    gap:12px;
  }
  .gcerts-section{padding:60px 16px 80px}
  .gcerts-carousel-wrap{padding-bottom:18px}
  .gcerts-lb-prev{left:-42px}
  .gcerts-lb-next{right:-42px}
  .gcerts-arrows{display:none}
}
@keyframes cardIn{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}

/* ===================================

   REVIEWS SECTION (SAFE PREFIXED)

=================================== */
.rvw-section{
  position:relative;
  padding:110px 24px 120px;
  background:
    radial-gradient(ellipse 75% 55% at 15% 25%, rgba(186,220,255,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(193,215,255,0.38) 0%, transparent 55%),
    #E8F0FE;
  overflow:hidden;
}
.rvw-section::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle, rgba(148,163,184,0.2) 1px, transparent 1px);
  background-size:28px 28px;
  pointer-events:none;
  z-index:0;
}
.rvw-section::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;height:100px;
  background:linear-gradient(to bottom, transparent, #E8F0FE);
  pointer-events:none;
  z-index:1;
}
.rvw-container{
  max-width:1100px;
  margin:0 auto;
  position:relative;
  z-index:2;
}
.rvw-head{margin-bottom:52px}
.rvw-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:#2563EB;
  background:rgba(37,99,235,0.07);
  border:1px solid rgba(37,99,235,0.18);
  border-radius:100px;
  padding:6px 16px;
  margin-bottom:16px;
}
.rvw-label::before{
  content:'';
  width:6px;height:6px;border-radius:50%;
  background:#2563EB;
}
.rvw-title{
  font-size:clamp(30px,4vw,46px);
  font-weight:800;
  line-height:1.1;
  color:#0F172A;
  letter-spacing:-0.02em;
  margin-bottom:10px;
}
.rvw-title span{
  background:linear-gradient(135deg,#1D4ED8 0%, #3B82F6 60%, #60A5FA 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.rvw-sub{
  font-size:15px;
  color:#64748B;
  line-height:1.6;
}

.rvw-carousel-wrap{
  overflow:hidden;
  margin:0 -8px;
  padding:8px 8px 4px;
}
.rvw-track{
  display:flex;
  gap:20px;
  transition:transform .5s cubic-bezier(.4,0,.2,1);
  will-change:transform;
  cursor:grab;
  user-select:none;
}
.rvw-track.dragging{
  cursor:grabbing;
  transition:none;
}
.rvw-track.is-static{
  justify-content:center;
  cursor:default;
  transform:none !important;
}
.rvw-track.is-static .rvw-card{
  flex:0 1 min(430px, calc(50% - 10px));
}

.rvw-card{
  flex:0 0 calc((100% - 40px) / 3);
  background:rgba(255,255,255,0.72);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(148,163,184,0.22);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 2px 20px rgba(37,99,235,0.06), 0 1px 0 rgba(255,255,255,0.85) inset;
  transition:transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease;
  cursor:pointer;
}
.rvw-card:hover{
  transform:translateY(-5px);
  box-shadow:0 14px 36px rgba(37,99,235,0.13);
}

.rvw-card-img-wrap{
  position:relative;
  width:100%;
  background:#f1f5f9;
  padding:14px 14px 0;
}
.rvw-card-img-wrap img{
  width:100%;
  height:auto;
  display:block;
  border-radius:10px 10px 0 0;
  transition:transform .5s ease;
}
.rvw-card:hover .rvw-card-img-wrap img{transform:scale(1.02)}

.rvw-zoom-overlay{
  position:absolute;
  top:14px; left:14px; right:14px; bottom:0;
  background:rgba(15,23,42,0);
  display:flex; align-items:center; justify-content:center;
  border-radius:10px 10px 0 0;
  transition:background .25s;
}
.rvw-zoom-icon{
  opacity:0;
  transform:scale(.7);
  transition:all .25s;
}
.rvw-card:hover .rvw-zoom-overlay{background:rgba(15,23,42,0.22)}
.rvw-card:hover .rvw-zoom-icon{opacity:1;transform:scale(1)}

.rvw-card-num{
  position:absolute;
  top:22px; left:22px;
  width:26px; height:26px;
  border-radius:8px;
  background:rgba(37,99,235,.9);
  color:#fff;
  font-size:11px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(8px);
  z-index:2;
}

.rvw-footer{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-top:36px;
}
.rvw-dots{
  display:flex;
  gap:6px;
  align-items:center;
}
.rvw-dot{
  width:6px;
  height:6px;
  border-radius:3px;
  background:rgba(37,99,235,0.2);
  transition:all .3s;
  cursor:pointer;
}
.rvw-dot.active{
  width:22px;
  background:#2563EB;
}
.rvw-nav-btn{
  width:44px;height:44px;
  border-radius:12px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(148,163,184,0.22);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition:all .2s;
  box-shadow:0 2px 12px rgba(37,99,235,0.07);
  color:#0F172A;
  flex-shrink:0;
}
.rvw-nav-btn:hover{
  background:#fff;
  box-shadow:0 6px 20px rgba(37,99,235,0.14);
  transform:translateY(-1px);
}
.rvw-nav-btn:active{transform:scale(.95)}
.rvw-nav-btn svg{pointer-events:none}

.rvw-lightbox{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(15,23,42,0.92);
  backdrop-filter:blur(14px);
  z-index:1000;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.rvw-lightbox.open{display:flex}
.rvw-lightbox-inner{
  position:relative;
  max-width:560px;
  width:100%;
}
.rvw-lightbox img{
  width:100%;
  border-radius:16px;
  box-shadow:0 32px 80px rgba(0,0,0,.5);
  display:block;
}
.rvw-lightbox-close{
  position:fixed;
  top:20px; right:24px;
  width:40px; height:40px;
  border-radius:10px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  font-size:20px;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s;
  font-family:inherit;
}
.rvw-lightbox-close:hover{background:rgba(255,255,255,.22)}
.rvw-lb-prev,.rvw-lb-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px; height:40px;
  border-radius:10px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s;
  font-family:inherit;
}
.rvw-lb-prev{left:-56px}
.rvw-lb-next{right:-56px}
.rvw-lb-prev:hover,.rvw-lb-next:hover{background:rgba(255,255,255,.22)}
.rvw-lb-caption{
  text-align:center;
  margin-top:14px;
  font-size:13px;
  color:rgba(255,255,255,.45);
}

@media (max-width:900px){
  .rvw-card{flex:0 0 calc((100% - 20px) / 2)}
  .rvw-track.is-static .rvw-card{flex:0 1 min(420px, calc(50% - 10px))}
}
@media (max-width:580px){
  .rvw-card{flex:0 0 100%}
  .rvw-section{padding:60px 16px 80px}
  .rvw-lb-prev{left:-44px}
  .rvw-lb-next{right:-44px}
  .rvw-track.is-static .rvw-card{flex:0 0 100%}
}

/* Footer */
.footer { position: relative; overflow: hidden; }

.footer-fade {
  display: none;
}

.footer-body {
  background: linear-gradient(160deg, #1a47c8 0%, #2056d4 40%, #1a3fa3 100%);
  position: relative;
  border-top: 1px solid rgba(37,99,235,0.18);
}
.footer-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.footer-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 5% 50%, rgba(255,255,255,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 95% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.brand-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.brand-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}
.brand-role {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.brand-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  margin: 0 8px;
  vertical-align: middle;
}
.brand-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}

.brand-socials {
  display: flex;
  gap: 8px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
  flex-shrink: 0;
}
.social-btn:hover {
  background: rgba(255,255,255,0.18);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
}
.bottom-legal {
  display: flex;
  gap: 20px;
}
.bottom-legal a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.18s;
}
.bottom-legal a:hover {
  color: rgba(255,255,255,0.7);
}

@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .brand-divider {
    display: none;
  }
}

/* ===================================
   CONTACT MODAL
=================================== */
body.cfm-lock{overflow:hidden}
.cfm-backdrop{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(15,23,42,0.52);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  z-index:3000;
}
.cfm-backdrop.open{display:flex}
.cfm-modal{
  width:min(1100px,100%);
  max-height:min(92vh,900px);
  overflow:auto;
  background:rgba(255,255,255,0.8);
  border:1px solid rgba(148,163,184,0.25);
  border-radius:24px;
  box-shadow:0 24px 80px rgba(15,23,42,0.24),0 1px 0 rgba(255,255,255,0.9) inset;
  padding:36px 30px;
  position:relative;
  animation:cfmFadeUp .26s ease;
  font-family:'Plus Jakarta Sans','Manrope',sans-serif;
}
.cfm-close{
  position:absolute;
  top:12px;
  right:12px;
  width:36px;
  height:36px;
  border-radius:10px;
  border:1px solid rgba(148,163,184,0.25);
  background:#fff;
  color:#0f172a;
  cursor:pointer;
  font-size:18px;
  line-height:1;
}
.cfm-layout{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:28px;
  align-items:start;
}
.cfm-left{min-width:0}
.cfm-section-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#2563eb;
  background:rgba(37,99,235,.07);
  border:1px solid rgba(37,99,235,.18);
  border-radius:100px;
  padding:6px 16px;
  margin-bottom:18px;
}
.cfm-section-label::before{
  content:'';
  width:6px;
  height:6px;
  border-radius:50%;
  background:#2563eb;
}
.cfm-title{
  font-size:clamp(30px,4vw,46px);
  line-height:1.1;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-.02em;
  margin-bottom:12px;
}
.cfm-title span{
  background:linear-gradient(135deg,#1d4ed8 0%,#3b82f6 60%,#60a5fa 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.cfm-sub{
  font-size:16px;
  color:#64748b;
  line-height:1.65;
  margin-bottom:18px;
}
.cfm-info-cards{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.cfm-info-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  background:rgba(255,255,255,0.75);
  border:1px solid rgba(148,163,184,0.22);
  border-radius:14px;
}
.cfm-info-icon{
  width:40px;
  height:40px;
  border-radius:11px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  flex-shrink:0;
}
.cfm-info-icon svg{
  width:26px;
  height:26px;
  display:block;
}
.cfm-info-icon.blue{background:rgba(37,99,235,0.1)}
.cfm-info-icon.green{background:rgba(16,185,129,0.1)}
.cfm-info-icon.indigo{background:rgba(99,102,241,0.1)}
.cfm-info-title{
  font-size:13px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:2px;
}
.cfm-info-sub{
  font-size:12px;
  color:#64748b;
}
.cfm-form-card{
  background:rgba(255,255,255,0.76);
  border:1px solid rgba(148,163,184,0.22);
  border-radius:20px;
  padding:24px 22px;
}
.cfm-form-title{
  font-size:20px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:6px;
}
.cfm-form-sub{
  font-size:13px;
  color:#64748b;
  margin-bottom:18px;
}
.cfm-field{margin-bottom:14px}
.cfm-label{
  display:block;
  font-size:11px;
  font-weight:700;
  color:#64748b;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:8px;
}
.cfm-input{
  width:100%;
  border:1.5px solid rgba(148,163,184,0.28);
  border-radius:12px;
  padding:12px 14px;
  font-size:15px;
  color:#0f172a;
  background:#fff;
  outline:none;
  transition:border-color .2s, box-shadow .2s;
  font-family:'Plus Jakarta Sans','Manrope',sans-serif;
}
.cfm-input:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 3px rgba(37,99,235,0.12);
}
.cfm-input.error{border-color:#ef4444}
.cfm-textarea{min-height:110px;resize:vertical}
.cfm-messenger-group{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.cfm-messenger-btn{
  flex:1;
  min-width:110px;
  border:1.5px solid rgba(148,163,184,0.28);
  border-radius:12px;
  background:#fff;
  padding:11px 10px;
  color:#475569;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:all .2s;
  font-family:'Plus Jakarta Sans','Manrope',sans-serif;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.cfm-messenger-btn svg{
  width:22px;
  height:22px;
  display:block;
  flex-shrink:0;
}
.cfm-messenger-btn span{
  line-height:1;
}
.cfm-messenger-btn:hover{
  border-color:#2563eb;
  color:#2563eb;
}
.cfm-messenger-btn.active{
  border-color:#2563eb;
  background:rgba(37,99,235,0.08);
  color:#2563eb;
}
.cfm-messenger-btn.error{border-color:#ef4444}
.cfm-submit{
  width:100%;
  border:none;
  border-radius:14px;
  background:#2563eb;
  color:#fff;
  font-size:16px;
  font-weight:800;
  padding:14px;
  margin-top:8px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:'Plus Jakarta Sans','Manrope',sans-serif;
  transition:background .2s, transform .15s, box-shadow .2s;
  box-shadow:0 8px 22px rgba(37,99,235,0.26);
}
.cfm-submit:hover{background:#1d4ed8;transform:translateY(-1px)}
.cfm-submit:disabled{opacity:.7;cursor:not-allowed;transform:none}
.cfm-spinner{
  width:18px;
  height:18px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.35);
  border-top-color:#fff;
  animation:cfmSpin .7s linear infinite;
  display:none;
}
.cfm-submit.loading .cfm-spinner{display:block}
.cfm-submit.loading .cfm-btn-text{display:none}
.cfm-error{
  margin-top:10px;
  border-radius:10px;
  padding:10px 12px;
  font-size:13px;
  color:#ef4444;
  border:1px solid rgba(239,68,68,.22);
  background:rgba(239,68,68,.08);
  display:none;
  text-align:center;
}
.cfm-success{
  text-align:center;
  padding:18px 8px 6px;
  display:none;
}
.cfm-success.show{display:block}
.cfm-success-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 12px;
  font-size:28px;
  background:rgba(16,185,129,.14);
}
.cfm-success-title{
  font-size:24px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:6px;
}
.cfm-success-sub{
  color:#64748b;
  font-size:14px;
  line-height:1.6;
}
.cfm-toast{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:3200;
  background:#10b981;
  color:#fff;
  border-radius:12px;
  padding:12px 16px;
  font-size:14px;
  font-weight:700;
  box-shadow:0 12px 28px rgba(16,185,129,.35);
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.cfm-toast.show{
  opacity:1;
  transform:translateY(0);
}
@keyframes cfmFadeUp{
  from{opacity:0;transform:translateY(14px) scale(.98)}
  to{opacity:1;transform:translateY(0) scale(1)}
}
@keyframes cfmSpin{to{transform:rotate(360deg)}}

@media (max-width:980px){
  .cfm-layout{
    grid-template-columns:1fr;
    gap:20px;
  }
}
@media (max-width:700px){
  .cfm-modal{
    padding:24px 16px 18px;
    border-radius:18px;
    max-height:min(92vh,760px);
  }
  .cfm-title{font-size:34px}
  .cfm-messenger-group{gap:8px}
  .cfm-messenger-btn{min-width:100%;flex:1 1 100%}
  .cfm-toast{
    left:16px;
    right:16px;
    bottom:16px;
    text-align:center;
  }
}

/* ===================================
   AUDIT SECTION
=================================== */
.audit-section{
  position:relative;
  padding:100px 24px 110px;
  background:
    radial-gradient(ellipse 75% 55% at 15% 25%, rgba(186,220,255,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(193,215,255,0.38) 0%, transparent 55%),
    #E8F0FE;
  overflow:hidden;
}
.audit-section::before{
  content:'';
  position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(148,163,184,0.2) 1px,transparent 1px);
  background-size:28px 28px;
  pointer-events:none;z-index:0;
}
.audit-section .container{max-width:1100px;margin:0 auto;position:relative;z-index:1}

.audit-card{
  background:linear-gradient(135deg,#1a3fa3 0%,#2563EB 50%,#1D4ED8 100%);
  border-radius:28px;
  padding:60px 64px;
  position:relative;
  overflow:hidden;
  box-shadow:0 24px 64px rgba(37,99,235,0.35);
}
.audit-card::before{
  content:'';
  position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,0.07) 1px,transparent 1px);
  background-size:28px 28px;
  pointer-events:none;
}
.audit-card::after{
  content:'';
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%,rgba(255,255,255,0.07) 0%,transparent 55%),
    radial-gradient(ellipse 40% 60% at 100% 10%,rgba(255,255,255,0.05) 0%,transparent 50%);
  pointer-events:none;
}

.audit-inner{
  position:relative;z-index:1;
  display:grid;
  grid-template-columns:1fr auto;
  gap:48px;
  align-items:center;
}

.audit-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:100px;padding:6px 16px;
  font-size:11px;font-weight:700;
  letter-spacing:0.1em;text-transform:uppercase;
  color:rgba(255,255,255,0.85);
  margin-bottom:22px;
}
.audit-badge::before{
  content:'';
  width:6px;height:6px;border-radius:50%;
  background:#60A5FA;
  box-shadow:0 0 6px rgba(96,165,250,0.8);
}

.audit-title{
  font-size:clamp(24px,3vw,38px);
  font-weight:800;line-height:1.15;
  color:white;margin-bottom:16px;
  letter-spacing:-0.02em;
}
.audit-title em{
  font-style:normal;
  color:#93C5FD;
}

.audit-sub{
  font-size:15px;color:rgba(255,255,255,0.65);
  line-height:1.65;margin-bottom:32px;
  max-width:520px;
}

.audit-includes{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:0}
.audit-pill{
  display:flex;align-items:center;gap:7px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:100px;padding:7px 14px;
  font-size:13px;font-weight:500;
  color:rgba(255,255,255,0.82);
}
.audit-pill svg{opacity:0.7;flex-shrink:0}

.audit-right{
  display:flex;flex-direction:column;
  align-items:center;gap:16px;
  flex-shrink:0;
}

.audit-price-block{
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.18);
  border-radius:18px;
  padding:24px 28px;
  text-align:center;
  min-width:200px;
}
.price-label{
  font-size:11px;font-weight:600;letter-spacing:0.08em;
  text-transform:uppercase;color:rgba(255,255,255,0.45);
  margin-bottom:8px;
}
.price-value{
  font-size:36px;font-weight:800;color:white;
  line-height:1;margin-bottom:4px;
  letter-spacing:-0.02em;
}
.price-sub{font-size:12px;color:rgba(255,255,255,0.5);font-weight:500}

.audit-cta{
  display:flex;align-items:center;justify-content:center;gap:8px;
  width:100%;
  background:white;color:#1D4ED8;
  font-family:'Manrope',sans-serif;font-size:15px;font-weight:700;
  padding:14px 24px;border-radius:14px;border:none;
  cursor:pointer;text-decoration:none;
  transition:transform 0.2s,box-shadow 0.2s;
  box-shadow:0 4px 16px rgba(0,0,0,0.15);
  white-space:nowrap;
}
.audit-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(0,0,0,0.2);
}
.audit-cta svg{flex-shrink:0}

.audit-guarantee{
  display:flex;align-items:center;gap:6px;
  font-size:11px;color:rgba(255,255,255,0.4);font-weight:500;
}
.audit-guarantee::before{content:'🔒';font-size:12px}

.audit-stats{
  display:flex;gap:0;
  margin-top:32px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  overflow:hidden;
}
.audit-stat{
  flex:1;padding:18px 24px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,0.1);
}
.audit-stat:last-child{border-right:none}
.stat-num{font-size:24px;font-weight:800;color:white;line-height:1;margin-bottom:4px;letter-spacing:-0.02em}
.stat-lbl{font-size:11px;color:rgba(255,255,255,0.45);font-weight:500}

/* reveal animation */
.reveal{opacity:0;transform:translateY(24px);transition:opacity 0.7s cubic-bezier(0.4,0,0.2,1),transform 0.7s cubic-bezier(0.4,0,0.2,1)}
.reveal.is-visible{opacity:1;transform:translateY(0)}

@media(max-width:860px){
  .audit-inner{grid-template-columns:1fr;gap:32px}
  .audit-right{align-items:stretch}
  .audit-card{padding:36px 28px}
  .audit-stats{flex-wrap:wrap}
  .audit-stat{min-width:50%;border-bottom:1px solid rgba(255,255,255,0.1)}
}
@media(max-width:480px){
  .audit-section{padding:60px 16px 80px}
  .audit-card{padding:28px 20px}
  .audit-includes{gap:8px}
}

/* ===================================
   STICKY SOCIAL BUTTONS
=================================== */
.sticky-socials{
  position:fixed;
  right:24px;
  bottom:32px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999;
}
.sticky-btn{
  width:52px;height:52px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;
  box-shadow:0 4px 16px rgba(0,0,0,0.18);
  transition:transform 0.25s cubic-bezier(0.34,1.56,0.64,1),box-shadow 0.25s ease;
  position:relative;
}
.sticky-btn:hover{
  transform:scale(1.12) translateY(-2px);
  box-shadow:0 8px 28px rgba(0,0,0,0.22);
}
.sticky-btn.tg{background:#2AABEE}
.sticky-btn.wa{background:#25D366}
.sticky-btn::before{
  content:'';
  position:absolute;inset:0;
  border-radius:50%;
  background:inherit;
  opacity:0.4;
  animation:stickyPulse 2.5s ease-out infinite;
}
.sticky-btn.wa::before{animation-delay:1.2s}
@keyframes stickyPulse{
  0%  {transform:scale(1);opacity:0.4}
  70% {transform:scale(1.55);opacity:0}
  100%{transform:scale(1.55);opacity:0}
}
.sticky-btn .tooltip{
  position:absolute;
  right:calc(100% + 10px);
  top:50%;transform:translateY(-50%);
  background:#0F172A;color:white;
  font-family:'Manrope',sans-serif;
  font-size:12px;font-weight:600;
  white-space:nowrap;
  padding:6px 12px;border-radius:8px;
  opacity:0;pointer-events:none;
  transition:opacity 0.2s;
}
.sticky-btn .tooltip::after{
  content:'';
  position:absolute;
  top:50%;right:-5px;
  transform:translateY(-50%);
  border:5px solid transparent;
  border-left-color:#0F172A;
  border-right:0;
}
.sticky-btn:hover .tooltip{opacity:1}
@media(max-width:480px){
  .sticky-socials{right:16px;bottom:20px;gap:10px}
  .sticky-btn{width:46px;height:46px}
  .sticky-btn .tooltip{display:none}
}
