/* =========================================================
   YDR — YASMIN PRODUCTION | Camera & Production Gear Rental
   Design tokens — Blue & White, modern glow theme
   ========================================================= */
:root{
  --blue-deep:   #0b63d6;
  --blue-mid:    #2f8cff;
  --blue-bright: #5fb1ff;
  --blue-sky:    #8fd1ff;
  --blue-pale:   #eef6ff;
  --blue-pale-2: #dcedff;
  --navy:        #071a3d;
  --ink:         #16274a;
  --ink-soft:    #5b6d8c;
  --line:        rgba(11,99,214,.16);
  --white:       #ffffff;
  --radius-s: 12px;
  --radius-m: 20px;
  --radius-l: 30px;
  --shadow-soft: 0 10px 30px -12px rgba(11,99,214,.28);
  --shadow-lift: 0 22px 46px -16px rgba(11,99,214,.42);
  --ff-display: 'Space Grotesk', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --ff-mono: 'IBM Plex Mono', monospace;
  --container: 1240px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

h1,h2,h3,h4{ font-family:var(--ff-display); margin:0; line-height:1.08; letter-spacing:-0.02em; color:var(--navy); }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
img{ max-width:100%; display:block; }

::selection{ background:var(--blue-mid); color:#fff; }

::-webkit-scrollbar{ width:10px; height:10px; }
::-webkit-scrollbar-track{ background:var(--blue-pale); }
::-webkit-scrollbar-thumb{ background:linear-gradient(var(--blue-deep),var(--blue-mid)); border-radius:10px; border:2px solid var(--blue-pale); }

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

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--ff-mono); font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--blue-deep); font-weight:600; margin-bottom:14px;
  background:var(--blue-pale); border:1px solid rgba(11,99,214,.25); padding:6px 14px 6px 10px; border-radius:999px;
}
.eyebrow::before{ content:''; width:7px; height:7px; border-radius:50%; background:linear-gradient(135deg,var(--blue-mid),var(--blue-sky)); display:inline-block; box-shadow:0 0 0 4px rgba(47,140,255,.18); }

.section-head{ max-width:640px; margin-bottom:44px; }
.section-head h2{ font-size:clamp(28px,4vw,44px); margin-bottom:14px; }
.section-head p{ color:var(--ink-soft); font-size:16.5px; line-height:1.6; }
.section{ padding:100px 0; position:relative; }
.section.tight{ padding:70px 0; }
.section.on-blue{ background:linear-gradient(180deg,var(--blue-pale),#fff 90%); position:relative; overflow:hidden; }
.section.on-blue::before{
  content:''; position:absolute; width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle,rgba(95,177,255,.28),transparent 70%);
  top:-220px; right:-160px; pointer-events:none;
}

/* ---------- Buttons (oval, bright) ---------- */
.btn{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--ff-display); font-weight:600; font-size:15px;
  padding:16px 30px; border-radius:999px; border:none;
  overflow:hidden;
  transition:transform .3s cubic-bezier(.2,.9,.3,1), box-shadow .3s ease, background .3s ease, color .3s ease;
}
.btn::after{
  content:''; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.55) 48%,transparent 66%);
  transform:translateX(-120%); transition:transform .7s ease;
}
.btn:hover::after{ transform:translateX(120%); }

.btn-primary{
  background:linear-gradient(135deg,var(--blue-deep),var(--blue-mid) 60%,var(--blue-bright));
  color:#fff; box-shadow:0 12px 26px -8px rgba(11,99,214,.55), 0 2px 0 rgba(255,255,255,.25) inset;
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 18px 34px -8px rgba(11,99,214,.6), 0 2px 0 rgba(255,255,255,.25) inset; }
.btn-primary:active{ transform:translateY(0); }

.btn-ghost{
  background:#fff; color:var(--blue-deep); box-shadow:var(--shadow-soft); border:1.5px solid rgba(11,99,214,.3);
}
.btn-ghost:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lift); background:var(--blue-pale); }
.btn-ghost:active{ transform:translateY(0); }

.btn-sm{ padding:12px 20px; font-size:13.5px; }
.btn svg{ width:16px; height:16px; }

/* ---------- Focus ---------- */
a:focus-visible, button:focus-visible, input:focus-visible{
  outline:3px solid var(--blue-mid); outline-offset:3px; border-radius:6px;
}

/* =========================================================
   PRELOADER
   ========================================================= */
#preloader{
  position:fixed; inset:0; z-index:9999; background:var(--white);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .6s ease, visibility .6s ease;
}
#preloader.hide{ opacity:0; visibility:hidden; }
.iris{ width:88px; height:88px; filter:drop-shadow(0 6px 18px rgba(11,99,214,.35)); }

/* =========================================================
   NAV
   ========================================================= */
header{
  position:fixed; top:0; left:0; right:0; z-index:900;
  padding:22px 0; transition:padding .35s ease, background .35s ease, box-shadow .35s ease;
}
header.scrolled{
  padding:12px 0; background:rgba(255,255,255,.8); backdrop-filter:blur(16px) saturate(160%);
  box-shadow:0 8px 30px -14px rgba(11,99,214,.35);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }

.logo{ display:flex; align-items:center; gap:11px; font-family:var(--ff-display); font-weight:700; font-size:19px; color:var(--navy); }
.logo .mark{
  width:40px; height:40px; border-radius:13px;
  background:linear-gradient(135deg,var(--blue-deep),var(--blue-mid));
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  box-shadow:0 8px 18px -6px rgba(11,99,214,.55);
}
.logo .mark svg{ width:21px; height:21px; }
.logo span small{ display:block; font-family:var(--ff-mono); font-weight:500; font-size:9.5px; letter-spacing:.12em; color:var(--ink-soft); text-transform:uppercase; margin-top:1px; }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  font-size:14.5px; font-weight:600; position:relative; padding:4px 0; color:var(--ink);
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; border-radius:2px;
  background:linear-gradient(90deg,var(--blue-deep),var(--blue-bright));
  transition:width .3s ease;
}
.nav-links a:hover::after{ width:100%; }
.nav-links a:hover{ color:var(--blue-deep); }

.nav-cta{ display:flex; align-items:center; gap:14px; }
.burger{ display:none; width:44px; height:44px; border-radius:12px; border:1.5px solid rgba(11,99,214,.3); background:#fff; align-items:center; justify-content:center; box-shadow:var(--shadow-soft); }
.burger span{ display:block; width:18px; height:2px; background:var(--blue-deep); position:relative; border-radius:2px; }
.burger span::before,.burger span::after{ content:''; position:absolute; left:0; width:18px; height:2px; border-radius:2px; background:var(--blue-deep); transition:transform .3s ease; }
.burger span::before{ top:-6px; } .burger span::after{ top:6px; }

.mobile-menu{
  position:fixed; inset:0 0 auto 0; top:0; background:linear-gradient(180deg,#fff, var(--blue-pale)); z-index:950;
  transform:translateY(-100%); transition:transform .4s cubic-bezier(.2,.9,.3,1);
  padding:26px 24px; box-shadow:0 20px 50px -20px rgba(11,99,214,.5);
}
.mobile-menu.open{ transform:translateY(0); }
.mobile-menu .mm-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:30px; }
.mobile-menu ul{ display:flex; flex-direction:column; gap:22px; }
.mobile-menu a{ font-family:var(--ff-display); font-size:24px; font-weight:600; color:var(--navy); }
.mobile-menu .close-x{ width:44px; height:44px; border-radius:12px; border:1.5px solid rgba(11,99,214,.3); display:flex; align-items:center; justify-content:center; background:#fff; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative; padding:172px 0 96px; overflow:hidden;
  background:
    radial-gradient(700px 460px at 88% -12%, var(--blue-pale-2), transparent 62%),
    radial-gradient(500px 380px at -6% 30%, var(--blue-pale), transparent 60%),
    var(--white);
}
.blob{ position:absolute; border-radius:50%; filter:blur(70px); opacity:.65; z-index:0; animation:float 12s ease-in-out infinite; }
.blob-1{ width:460px; height:460px; background:linear-gradient(135deg,var(--blue-bright),var(--blue-mid)); top:-160px; right:-140px; }
.blob-2{ width:300px; height:300px; background:linear-gradient(135deg,var(--blue-sky),var(--blue-pale-2)); bottom:-100px; left:-110px; animation-delay:-4s; }
@keyframes float{ 0%,100%{ transform:translate(0,0) scale(1);} 50%{ transform:translate(24px,-32px) scale(1.09);} }

.hero-grid{ position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }

.hero-copy h1{ font-size:clamp(38px,5.4vw,66px); margin-bottom:22px; }
.hero-copy h1 .underline{ position:relative; display:inline-block; color:var(--blue-deep); }
.hero-copy h1 .underline svg{ position:absolute; left:0; bottom:-8px; width:100%; height:14px; }
.hero-copy p.lead{ font-size:18px; color:var(--ink-soft); max-width:520px; margin-bottom:32px; line-height:1.65; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px; }

.hero-stats{ display:flex; gap:34px; flex-wrap:wrap; }
.hero-stats .stat b{ font-family:var(--ff-display); font-size:32px; display:block; background:linear-gradient(135deg,var(--blue-deep),var(--blue-mid)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-stats .stat span{ font-size:12.5px; color:var(--ink-soft); font-family:var(--ff-mono); text-transform:uppercase; letter-spacing:.08em; }

.hero-visual{ position:relative; }
.aperture-ring{ position:absolute; inset:-44px; z-index:0; animation:spin 40s linear infinite; opacity:.6; }
@keyframes spin{ to{ transform:rotate(360deg);} }

.hero-frame{
  position:relative; border-radius:var(--radius-l);
  overflow:hidden; aspect-ratio:4/4.6; background:linear-gradient(160deg,var(--blue-deep),var(--navy));
  box-shadow:0 40px 70px -22px rgba(11,99,214,.55), 0 0 0 1px rgba(255,255,255,.5) inset;
  transition:transform .3s ease;
  transform-style:preserve-3d;
}
.hero-frame img{ width:100%; height:100%; object-fit:cover; opacity:.95; }
.corner{ position:absolute; width:26px; height:26px; z-index:3; opacity:.9; }
.corner.tl{ top:16px; left:16px; border-top:3px solid #fff; border-left:3px solid #fff; border-radius:4px 0 0 0; }
.corner.tr{ top:16px; right:16px; border-top:3px solid #fff; border-right:3px solid #fff; border-radius:0 4px 0 0; }
.corner.bl{ bottom:16px; left:16px; border-bottom:3px solid #fff; border-left:3px solid #fff; border-radius:0 0 0 4px; }
.corner.br{ bottom:16px; right:16px; border-bottom:3px solid #fff; border-right:3px solid #fff; border-radius:0 0 4px 0; }

.float-card{
  position:absolute; background:rgba(255,255,255,.85); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.6); border-radius:var(--radius-m);
  padding:14px 18px; box-shadow:0 18px 34px -14px rgba(11,99,214,.5); display:flex; align-items:center; gap:12px;
  animation:bob 5s ease-in-out infinite;
}
.float-card svg{ width:26px; height:26px; color:var(--blue-deep); flex-shrink:0; }
.float-card b{ display:block; font-family:var(--ff-display); font-size:15px; color:var(--navy); }
.float-card span{ font-size:11.5px; color:var(--ink-soft); }
.fc-1{ top:8%; left:-16%; animation-delay:0s; }
.fc-2{ bottom:10%; right:-14%; animation-delay:-2.4s; }
@keyframes bob{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-12px);} }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee-sec{ background:linear-gradient(90deg,var(--blue-deep),var(--blue-mid) 50%,var(--blue-deep)); padding:20px 0; overflow:hidden; }
.marquee-track{ display:flex; gap:0; width:max-content; animation:scrollx 32s linear infinite; }
.marquee-track:hover{ animation-play-state:paused; }
.marquee-track span{ color:#fff; font-family:var(--ff-mono); font-size:15px; letter-spacing:.06em; padding:0 34px; white-space:nowrap; display:flex; align-items:center; gap:12px; opacity:.95; font-weight:600; }
.marquee-track span::after{ content:'✦'; color:var(--blue-sky); margin-left:34px; }
@keyframes scrollx{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* =========================================================
   FEATURES
   ========================================================= */
.feat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.feat-card{
  border:1px solid var(--line); border-radius:var(--radius-m); padding:30px 24px; background:#fff;
  box-shadow:var(--shadow-soft); transition:transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.feat-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lift); background:linear-gradient(180deg,#fff,var(--blue-pale)); }
.feat-icon{ width:54px; height:54px; border-radius:16px; background:linear-gradient(135deg,var(--blue-deep),var(--blue-mid)); display:flex; align-items:center; justify-content:center; margin-bottom:18px; box-shadow:0 10px 20px -8px rgba(11,99,214,.55); }
.feat-icon svg{ width:26px; height:26px; color:#fff; }
.feat-card h3{ font-size:19px; margin-bottom:10px; }
.feat-card p{ font-size:14.5px; color:var(--ink-soft); line-height:1.6; }

/* =========================================================
   CATALOG
   ========================================================= */
.tabs{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:38px; }
.tab-btn{
  border:1.5px solid rgba(11,99,214,.3); background:#fff; border-radius:999px; padding:11px 22px;
  font-family:var(--ff-display); font-size:13.5px; font-weight:600; color:var(--blue-deep);
  transition:all .25s ease; box-shadow:0 4px 12px -6px rgba(11,99,214,.25);
}
.tab-btn.active, .tab-btn:hover{ background:linear-gradient(135deg,var(--blue-deep),var(--blue-mid)); color:#fff; border-color:transparent; box-shadow:0 10px 20px -8px rgba(11,99,214,.55); }

.cat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.gear-card{
  border:1px solid var(--line); border-radius:var(--radius-m); background:#fff; overflow:hidden;
  transition:transform .4s cubic-bezier(.2,.9,.3,1), box-shadow .4s ease; box-shadow:var(--shadow-soft);
  display:flex; flex-direction:column;
}
.gear-card:hover{ transform:translateY(-10px); box-shadow:var(--shadow-lift); }
.gear-thumb{ position:relative; aspect-ratio:4/3; overflow:hidden; background:linear-gradient(135deg,var(--blue-pale-2),var(--blue-pale)); }
.gear-thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.gear-card:hover .gear-thumb img{ transform:scale(1.08); }
.gear-thumb .ph-fallback{ position:absolute; inset:0; display:none; align-items:center; justify-content:center; flex-direction:column; gap:8px; color:var(--blue-deep); }
.gear-thumb .ph-fallback svg{ width:44px; height:44px; }
.gear-thumb .ph-fallback span{ font-family:var(--ff-mono); font-size:11px; text-transform:uppercase; letter-spacing:.08em; }
.gear-thumb.broken img{ display:none; } .gear-thumb.broken .ph-fallback{ display:flex; }
.gear-thumb .cbadge{ position:absolute; top:12px; left:12px; background:linear-gradient(135deg,var(--blue-deep),var(--blue-mid)); color:#fff; font-family:var(--ff-mono); font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; padding:6px 12px; border-radius:999px; box-shadow:0 6px 14px -6px rgba(11,99,214,.6); }
.gear-thumb .vf{ position:absolute; width:20px; height:20px; opacity:0; transition:opacity .3s ease; }
.gear-card:hover .vf{ opacity:1; }
.vf.tl{ top:12px; right:12px; border-top:2px solid #fff; border-right:2px solid #fff; left:auto; }
.vf.br{ bottom:12px; right:12px; border-bottom:2px solid #fff; border-right:2px solid #fff; }

.gear-body{ padding:20px 20px 22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.gear-body h4{ font-size:16.5px; color:var(--navy); }
.gear-body p{ font-size:13px; color:var(--ink-soft); line-height:1.5; min-height:38px; }
.gear-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:14px; border-top:1px dashed rgba(11,99,214,.25); }
.price{ font-family:var(--ff-mono); font-weight:700; font-size:15.5px; color:var(--blue-deep); }
.price small{ font-size:11px; color:var(--ink-soft); font-weight:400; }
.rent-btn{ width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,var(--blue-deep),var(--blue-mid)); display:flex; align-items:center; justify-content:center; color:#fff; transition:all .3s ease; box-shadow:0 8px 18px -8px rgba(11,99,214,.6); }
.rent-btn:hover{ transform:rotate(45deg) scale(1.08); box-shadow:0 12px 24px -8px rgba(11,99,214,.7); }
.rent-btn svg{ width:16px; height:16px; }

.cat-more{ text-align:center; margin-top:46px; }

/* =========================================================
   PRICE LIST (no images, table style)
   ========================================================= */
.price-toolbar{ display:flex; gap:14px; align-items:center; justify-content:space-between; flex-wrap:wrap; margin-bottom:26px; }
.search-box{ position:relative; flex:1; min-width:240px; max-width:360px; }
.search-box input{
  width:100%; padding:14px 18px 14px 44px; border:1.5px solid rgba(11,99,214,.28); border-radius:999px;
  font-family:var(--ff-body); font-size:14px; background:#fff; box-shadow:var(--shadow-soft);
}
.search-box svg{ position:absolute; left:16px; top:50%; transform:translateY(-50%); width:17px; height:17px; color:var(--blue-deep); }
.price-count{ font-family:var(--ff-mono); font-size:12.5px; color:var(--ink-soft); }

.price-table-wrap{ border:1px solid var(--line); border-radius:var(--radius-m); overflow:hidden; background:#fff; box-shadow:var(--shadow-soft); }
table.price-table{ width:100%; border-collapse:collapse; }
.price-table thead th{
  text-align:left; font-family:var(--ff-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.08em;
  background:linear-gradient(120deg,var(--blue-deep),var(--blue-mid)); color:#fff; padding:16px 22px; position:sticky; top:0;
}
.price-table thead th:last-child, .price-table td:last-child{ text-align:right; }
.price-table tbody tr{ border-top:1px solid rgba(11,99,214,.1); transition:background .2s ease; }
.price-table tbody tr:hover{ background:var(--blue-pale); }
.price-table td{ padding:14px 22px; font-size:14.5px; }
.price-table td.name{ font-weight:600; color:var(--navy); }
.price-table td.cat span{ font-family:var(--ff-mono); font-size:11px; text-transform:uppercase; letter-spacing:.05em; background:var(--blue-pale-2); border:1px solid rgba(11,99,214,.35); color:var(--blue-deep); padding:4px 10px; border-radius:999px; }
.price-table td.harga{ font-family:var(--ff-mono); font-weight:700; white-space:nowrap; color:var(--blue-deep); }
.cat-group-row td{ background:var(--blue-pale); font-family:var(--ff-display); font-weight:700; font-size:13.5px; text-transform:uppercase; letter-spacing:.04em; padding:12px 22px; color:var(--blue-deep); }
.price-note{ margin-top:18px; font-size:13px; color:var(--ink-soft); display:flex; gap:8px; align-items:flex-start; }
.price-note svg{ width:16px; height:16px; flex-shrink:0; margin-top:1px; color:var(--blue-deep); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; }
.step{ position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--radius-m); padding:26px 22px; box-shadow:var(--shadow-soft); transition:transform .3s ease, box-shadow .3s ease; }
.step:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lift); }
.step .num{ font-family:var(--ff-display); font-size:44px; font-weight:700; margin-bottom:8px; background:linear-gradient(135deg,var(--blue-deep),var(--blue-bright)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.step h4{ font-size:17px; margin-bottom:10px; }
.step p{ font-size:13.5px; color:var(--ink-soft); line-height:1.55; }
.step-arrow{ position:absolute; top:30px; right:-30px; width:28px; height:14px; color:var(--blue-mid); z-index:2; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.test-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.test-card{ border:1px solid var(--line); border-radius:var(--radius-m); padding:28px; background:#fff; box-shadow:var(--shadow-soft); display:flex; flex-direction:column; gap:16px; transition:transform .3s ease, box-shadow .3s ease; }
.test-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lift); }
.stars{ display:flex; gap:3px; color:var(--blue-mid); letter-spacing:2px; }
.test-card p.quote{ font-size:14.5px; line-height:1.65; color:var(--ink-soft); }
.test-who{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.test-avatar{ width:44px; height:44px; border-radius:50%; background:linear-gradient(135deg,var(--blue-deep),var(--blue-mid)); color:#fff; font-family:var(--ff-display); display:flex; align-items:center; justify-content:center; font-weight:700; box-shadow:0 8px 18px -8px rgba(11,99,214,.5); }
.test-who b{ display:block; font-size:14px; color:var(--navy); } .test-who span{ font-size:12px; color:var(--ink-soft); }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner{
  position:relative; border-radius:var(--radius-l); overflow:hidden;
  background:linear-gradient(120deg,var(--blue-deep),var(--blue-mid) 55%, var(--blue-bright));
  padding:74px 50px; text-align:center; color:#fff; box-shadow:var(--shadow-lift);
}
.cta-banner h2{ font-size:clamp(26px,3.6vw,42px); margin-bottom:14px; color:#fff; }
.cta-banner p{ opacity:.95; max-width:540px; margin:0 auto 30px; font-size:15.5px; }
.cta-banner .btn-ghost{ background:#fff; color:var(--blue-deep); border:none; box-shadow:0 14px 30px -10px rgba(0,0,0,.35); }
.cta-aperture{ position:absolute; width:360px; height:360px; opacity:.18; right:-70px; top:-90px; animation:spin 50s linear infinite; }

/* =========================================================
   FOOTER
   ========================================================= */
footer{ background:linear-gradient(160deg,var(--navy),#0b2b5c); color:#fff; padding-top:80px; position:relative; overflow:hidden; }
footer::before{ content:''; position:absolute; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle,rgba(95,177,255,.18),transparent 70%); top:-200px; right:-140px; }
.foot-grid{ position:relative; display:grid; grid-template-columns:1.3fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.14); }
.foot-brand .logo{ color:#fff; }
.foot-brand p{ color:rgba(255,255,255,.68); font-size:14px; line-height:1.6; margin:16px 0 20px; max-width:280px; }
.foot-social{ display:flex; gap:10px; }
.foot-social a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.28); display:flex; align-items:center; justify-content:center; transition:background .25s ease, border-color .25s ease, transform .25s ease; }
.foot-social a:hover{ background:linear-gradient(135deg,var(--blue-mid),var(--blue-bright)); border-color:transparent; transform:translateY(-3px); }
.foot-social svg{ width:16px; height:16px; }
footer h5{ font-family:var(--ff-mono); font-size:12px; text-transform:uppercase; letter-spacing:.1em; color:var(--blue-bright); margin-bottom:18px; }
footer ul li{ margin-bottom:12px; }
footer ul a{ color:rgba(255,255,255,.78); font-size:14px; transition:color .2s ease, padding-left .2s ease; }
footer ul a:hover{ color:#fff; padding-left:4px; }
.foot-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; color:rgba(255,255,255,.82); }
.foot-contact svg{ width:17px; height:17px; color:var(--blue-bright); flex-shrink:0; margin-top:2px; }
.foot-bottom{ position:relative; display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:12.5px; color:rgba(255,255,255,.55); flex-wrap:wrap; gap:10px; }

/* ---------- Floating WA + back to top ---------- */
.fab-wa{
  position:fixed; bottom:26px; right:26px; z-index:500; width:62px; height:62px; border-radius:50%;
  background:linear-gradient(135deg,#25D366,#1ebe59); display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -8px rgba(37,211,102,.6); animation:pulse 2.6s ease-in-out infinite;
}
.fab-wa svg{ width:28px; height:28px; color:#fff; }
@keyframes pulse{ 0%,100%{ box-shadow:0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.5);} 50%{ box-shadow:0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 14px rgba(37,211,102,0);} }

.fab-top{
  position:fixed; bottom:30px; right:100px; z-index:500; width:46px; height:46px; border-radius:50%;
  background:#fff; border:1px solid rgba(11,99,214,.25); display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-soft); opacity:0; pointer-events:none; transition:opacity .3s ease, transform .3s ease;
}
.fab-top.show{ opacity:1; pointer-events:auto; }
.fab-top:hover{ transform:translateY(-4px); }
.fab-top svg{ width:18px; height:18px; }

/* ---------- Reveal ---------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.reveal-stagger.in > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay:.05s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay:.12s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay:.19s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay:.26s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay:.33s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay:.4s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1080px){
  .feat-grid{ grid-template-columns:repeat(2,1fr); }
  .cat-grid{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); row-gap:36px; }
  .step-arrow{ display:none; }
  .test-grid{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr 1fr; row-gap:36px; }
}
@media (max-width:860px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ max-width:420px; margin:0 auto; }
  .nav-links{ display:none; }
  .burger{ display:flex; }
  .nav-cta .btn-sm{ display:none; }
}
@media (max-width:640px){
  .section{ padding:70px 0; }
  .feat-grid{ grid-template-columns:1fr; }
  .cat-grid{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr; }
  .cta-banner{ padding:50px 24px; }
  .fc-1, .fc-2{ display:none; }
  .price-table td, .price-table th{ padding:11px 12px; font-size:13px; }
}
