:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --navy-light: #1e2a40;
  --gold: #f5a623;
  --gold-light: #ffc557;
  --white: #ffffff;
  --gray: #8b96aa;
  --light: #e8edf5;
  --accent: #2563eb;
  --danger: #ef4444;
  --success: #22c55e;
  --radius: 12px;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,166,35,0.12);
}

.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
/* Logo key icon */
.logo-lock {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 24px;
  margin-right: 6px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 24' fill='none'%3E%3Ccircle cx='9' cy='12' r='7' stroke='%23f5a623' stroke-width='2.5'/%3E%3Ccircle cx='9' cy='12' r='2.5' fill='%23f5a623'/%3E%3Crect x='15' y='10.5' width='20' height='3' rx='1' fill='%23f5a623'/%3E%3Crect x='29' y='13.5' width='3' height='5' rx='0.5' fill='%23f5a623'/%3E%3Crect x='33' y='13.5' width='3' height='8' rx='0.5' fill='%23f5a623'/%3E%3C/svg%3E") center/contain no-repeat;
}
.logo-lock::before { display: none; }
.logo-lock::after { display: none; }
.logo span { color: var(--gold); }

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
nav a:hover { color: var(--white); }
nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lang-switcher {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
  border: 1px solid rgba(245,166,35,0.35);
  padding: 5px 14px;
  border-radius: 6px;
  transition: all 0.25s;
}
.lang-switcher:hover {
  background: var(--gold);
  color: var(--navy);
}

.header-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 11px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(245,166,35,0.2);
}
.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(245,166,35,0.3);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(37,99,235,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,166,35,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #0a0f1e 0%, #0f172a 50%, #0a0f1e 100%);
}

/* Grid pattern */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 12px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 .accent { color: var(--gold); }
.hero h1 .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.6;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(245,166,35,0.3);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245,166,35,0.4); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }

.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat { }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--gray); margin-top: 2px; }

/* Hero right visual */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 140px;
  z-index: 3;
  text-align: right;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-right-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hrt-number {
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: 4px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 40px rgba(10,15,30,0.9);
}
.hrt-number span {
  font-size: 40px;
  color: var(--gold);
  letter-spacing: 0;
  margin-left: 4px;
}

.hrt-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--light);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.hrt-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
  opacity: 0.6;
}

.hrt-stats {
  display: flex;
  gap: 32px;
}

.hrt-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hrt-stat-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.hrt-stat-desc {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hrt-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.hrt-feature {
  font-size: 16px;
  color: var(--light);
  letter-spacing: 0.5px;
}
.hrt-feature::first-letter {
  color: var(--gold);
}

.hrt-tagline {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-align: right;
  opacity: 0.3;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 24px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  white-space: nowrap;
}
.trust-icon { font-size: 20px; }
.trust-item strong { color: var(--white); }

/* ── SECTIONS ── */
section { padding: 96px 5%; }
.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

/* ── SERVICES ── */
.services { background: var(--navy-mid); }
.services-header { margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(245,166,35,0.3); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }

.service-emoji { font-size: 36px; margin-bottom: 20px; display: block; }
.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.service-price { font-size: 13px; color: var(--gold); font-weight: 500; }

/* ── HOW IT WORKS ── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.4), transparent);
}

.how-step { text-align: center; padding: 0 24px; }
.how-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(245,166,35,0.12);
  border: 2px solid rgba(245,166,35,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  background: var(--navy);
}
.how-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.how-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── AREAS ── */
.areas { background: var(--navy-mid); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 48px;
}
.area-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
}
.area-pill:hover { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.4); color: var(--gold); }
.area-pill.featured { border-color: rgba(245,166,35,0.4); color: var(--gold-light); background: rgba(245,166,35,0.08); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
}
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--light); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}
.review-name { font-size: 14px; font-weight: 600; }
.review-loc { font-size: 12px; color: var(--gray); }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(245,166,35,0.08));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding: 96px 5%;
}
.cta-section .section-title { margin-bottom: 24px; }
.cta-section .section-desc { margin: 0 auto 40px; }

.phone-big {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -1px;
  display: block;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.phone-big:hover { color: var(--gold-light); }

/* ── FAQ ── */
.faq-list { margin-top: 48px; max-width: 760px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.faq-q {
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after { content: '+'; font-size: 24px; color: var(--gold); flex-shrink: 0; }
.faq-a {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 14px;
}

/* ── FOOTER ── */
footer {
  background: #060a14;
  padding: 64px 5% 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { display: block; margin-bottom: 16px; font-size: 24px; }
.footer-desc { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.footer-bsp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--success);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--gray); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* FLOATING CALL BTN */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 40px rgba(245,166,35,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  animation: bobble 2s 2s infinite;
}
.float-call:hover { transform: scale(1.05); box-shadow: 0 12px 50px rgba(245,166,35,0.6); }
@keyframes bobble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   HI-TECH FX LAYER
   ══════════════════════════════════════ */

.fx-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* ── Canvas (particle network) ── */
.fx-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: all;
  width: 100%;
  height: 100%;
}

/* ── Scanline ── */
.fx-scanline {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(245,166,35,0.0) 10%,
    rgba(245,166,35,0.25) 50%,
    rgba(245,166,35,0.0) 90%,
    transparent 100%
  );
  box-shadow: 0 0 20px 4px rgba(245,166,35,0.08);
  animation: scanDown 6s linear infinite;
}
@keyframes scanDown {
  0%   { top: -2px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ── Floating hexagons ── */
.fx-hex {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(245,166,35,0.12);
  border-radius: 4px;
  transform: rotate(45deg);
}
.fx-hex::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 2px;
}
.fx-hex-1 {
  top: 12%;  right: 18%;
  animation: hexFloat1 12s ease-in-out infinite, hexSpin 20s linear infinite;
}
.fx-hex-2 {
  top: 55%;  left: 8%;
  width: 50px; height: 50px;
  animation: hexFloat2 10s ease-in-out infinite, hexSpin 25s linear infinite reverse;
  border-color: rgba(37,99,235,0.15);
}
.fx-hex-3 {
  bottom: 15%; right: 35%;
  width: 60px; height: 60px;
  animation: hexFloat3 14s ease-in-out infinite, hexSpin 30s linear infinite;
}

@keyframes hexFloat1 {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%      { transform: rotate(45deg) translate(15px, -20px); }
}
@keyframes hexFloat2 {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%      { transform: rotate(45deg) translate(-10px, 15px); }
}
@keyframes hexFloat3 {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%      { transform: rotate(45deg) translate(12px, 12px); }
}
@keyframes hexSpin {
  from { rotate: 0deg; }
  to   { rotate: 360deg; }
}

/* ── Glow orbs ── */
.fx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.fx-orb-1 {
  width: 300px; height: 300px;
  background: rgba(245,166,35,0.06);
  top: 10%;  right: 10%;
  animation: orbPulse1 8s infinite;
}
.fx-orb-2 {
  width: 200px; height: 200px;
  background: rgba(37,99,235,0.08);
  bottom: 20%; left: 15%;
  animation: orbPulse2 10s infinite;
}
.fx-orb-3 {
  width: 150px; height: 150px;
  background: rgba(245,166,35,0.04);
  top: 50%; right: 40%;
  animation: orbPulse3 12s infinite;
}

@keyframes orbPulse1 {
  0%, 100% { transform: scale(1) translate(0, 0);   opacity: 0.5; }
  50%      { transform: scale(1.3) translate(20px, -10px); opacity: 1; }
}
@keyframes orbPulse2 {
  0%, 100% { transform: scale(1) translate(0, 0);    opacity: 0.4; }
  50%      { transform: scale(1.2) translate(-15px, 10px); opacity: 0.8; }
}
@keyframes orbPulse3 {
  0%, 100% { transform: scale(1);   opacity: 0.3; }
  50%      { transform: scale(1.4); opacity: 0.7; }
}

/* ── Circuit SVG paths ── */
.fx-circuits {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.fx-circuit-path {
  fill: none;
  stroke: rgba(245,166,35,0.12);
  stroke-width: 1;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}
.fx-cp-1 { animation: circuitDraw 4s 0.5s ease forwards, circuitGlow 6s 4.5s ease-in-out infinite; }
.fx-cp-2 { animation: circuitDraw 4s 1.5s ease forwards, circuitGlow 6s 5.5s ease-in-out infinite; }
.fx-cp-3 { animation: circuitDraw 4s 2.5s ease forwards, circuitGlow 6s 6.5s ease-in-out infinite; }

@keyframes circuitDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes circuitGlow {
  0%, 100% { stroke: rgba(245,166,35,0.12); }
  50%      { stroke: rgba(245,166,35,0.35); }
}

.fx-circuit-node {
  fill: rgba(245,166,35,0);
  animation: nodeAppear 0.4s ease forwards;
}
.fx-cn-1 { animation-delay: 3s; }
.fx-cn-2 { animation-delay: 4s; }
.fx-cn-3 { animation-delay: 5s; }

@keyframes nodeAppear {
  to { fill: rgba(245,166,35,0.8); }
}

/* ── Floating particles (CSS) ── */
.fx-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(245,166,35,0.5);
  animation: particleDrift linear infinite;
}
.fx-p-1 { width:3px; height:3px; top:15%; left:25%; animation-duration:18s; animation-delay:0s; }
.fx-p-2 { width:2px; height:2px; top:35%; left:60%; animation-duration:22s; animation-delay:2s; background:rgba(255,255,255,0.3); }
.fx-p-3 { width:4px; height:4px; top:70%; left:40%; animation-duration:15s; animation-delay:1s; }
.fx-p-4 { width:2px; height:2px; top:20%; left:80%; animation-duration:20s; animation-delay:3s; background:rgba(37,99,235,0.5); }
.fx-p-5 { width:3px; height:3px; top:80%; left:15%; animation-duration:17s; animation-delay:4s; background:rgba(255,255,255,0.25); }
.fx-p-6 { width:2px; height:2px; top:45%; left:90%; animation-duration:24s; animation-delay:1.5s; }
.fx-p-7 { width:3px; height:3px; top:60%; left:70%; animation-duration:19s; animation-delay:0.5s; background:rgba(37,99,235,0.4); }
.fx-p-8 { width:2px; height:2px; top:10%; left:50%; animation-duration:21s; animation-delay:2.5s; background:rgba(255,255,255,0.2); }

@keyframes particleDrift {
  0%   { transform: translate(0, 0)        scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translate(60px, -80px)  scale(1.5); opacity: 0.8; }
  90%  { opacity: 1; }
  100% { transform: translate(-40px, -160px) scale(0.5); opacity: 0; }
}

/* ── Radar ping ── */
.fx-radar {
  position: absolute;
  bottom: 25%;
  left: 42%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.fx-radar::before,
.fx-radar::after {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 50%;
  animation: radarPing 3s ease-out infinite;
}
.fx-radar::after {
  animation-delay: 1.5s;
}

@keyframes radarPing {
  0%   { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(3);   opacity: 0; }
}

/* ── Data streams ── */
.fx-datastream {
  position: absolute;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, rgba(245,166,35,0.4), transparent);
  animation: dataFall linear infinite;
}
.fx-ds-1 { left: 20%; animation-duration: 3s; animation-delay: 0s; height: 50px; }
.fx-ds-2 { left: 55%; animation-duration: 4s; animation-delay: 1.2s; height: 70px; }
.fx-ds-3 { left: 78%; animation-duration: 3.5s; animation-delay: 2.4s; height: 40px; }

@keyframes dataFall {
  0%   { top: -80px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}

/* ── Enhanced grid animation on hero-bg ── */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 600px at var(--mx, 70%) var(--my, 50%), rgba(245,166,35,0.04), transparent),
    radial-gradient(circle 400px at 30% 70%, rgba(37,99,235,0.03), transparent);
  animation: bgShift 20s ease-in-out infinite;
}
@keyframes bgShift {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* ══════════════════════════════════════
   3D LOCK & KEY
   ══════════════════════════════════════ */

.lock-scene {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.8);
  width: 320px;
  height: 380px;
  perspective: 1200px;
  z-index: 2;
  pointer-events: none;
}

.lock-group {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: lockSpin 16s ease-in-out infinite;
}

@keyframes lockSpin {
  0%   { transform: rotateY(0deg)   rotateX(5deg); }
  25%  { transform: rotateY(90deg)  rotateX(-3deg); }
  50%  { transform: rotateY(180deg) rotateX(5deg); }
  75%  { transform: rotateY(270deg) rotateX(-3deg); }
  100% { transform: rotateY(360deg) rotateX(5deg); }
}

/* ── Lock body (cube 140×160×60) ── */
.lock-body {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140px;
  height: 160px;
  margin-left: -70px;
  margin-top: -60px;
  transform-style: preserve-3d;
}

.lock-face {
  position: absolute;
  border: 1px solid rgba(245,166,35,0.35);
  background: rgba(245,166,35,0.05);
  backdrop-filter: blur(4px);
}

/* Front */
.lf-front {
  width: 140px;
  height: 160px;
  transform: translateZ(30px);
  background: linear-gradient(160deg, rgba(245,166,35,0.1), rgba(10,15,30,0.85));
  border-color: rgba(245,166,35,0.5);
  box-shadow: 0 0 30px rgba(245,166,35,0.1), inset 0 0 40px rgba(245,166,35,0.03);
}

/* Back */
.lf-back {
  width: 140px;
  height: 160px;
  transform: rotateY(180deg) translateZ(30px);
  background: linear-gradient(160deg, rgba(37,99,235,0.08), rgba(10,15,30,0.9));
  border-color: rgba(37,99,235,0.3);
}

/* Left */
.lf-left {
  width: 60px;
  height: 160px;
  left: -30px;
  transform: rotateY(-90deg) translateZ(0px);
  background: rgba(245,166,35,0.04);
  border-color: rgba(245,166,35,0.2);
}

/* Right */
.lf-right {
  width: 60px;
  height: 160px;
  left: 110px;
  transform: rotateY(90deg) translateZ(0px);
  background: rgba(245,166,35,0.04);
  border-color: rgba(245,166,35,0.2);
}

/* Top */
.lf-top {
  width: 140px;
  height: 60px;
  top: -30px;
  transform: rotateX(90deg) translateZ(0px);
  background: rgba(245,166,35,0.06);
  border-color: rgba(245,166,35,0.25);
}

/* Bottom */
.lf-bottom {
  width: 140px;
  height: 60px;
  top: 130px;
  transform: rotateX(-90deg) translateZ(0px);
  background: rgba(10,15,30,0.9);
  border-color: rgba(245,166,35,0.15);
}

/* ── Keyhole ── */
.keyhole {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}

.keyhole-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: radial-gradient(circle, rgba(245,166,35,0.3), transparent 70%);
  box-shadow: 0 0 20px rgba(245,166,35,0.4), 0 0 60px rgba(245,166,35,0.15);
  margin: 0 auto;
  animation: keyholeGlow 3s ease-in-out infinite;
}

.keyhole-slot {
  width: 10px;
  height: 24px;
  background: linear-gradient(180deg, rgba(245,166,35,0.25), rgba(245,166,35,0.1));
  border: 1px solid rgba(245,166,35,0.4);
  border-top: none;
  margin: 0 auto;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 4px 12px rgba(245,166,35,0.2);
}

@keyframes keyholeGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(245,166,35,0.4), 0 0 60px rgba(245,166,35,0.15); }
  50%      { box-shadow: 0 0 30px rgba(245,166,35,0.7), 0 0 80px rgba(245,166,35,0.25); }
}

/* ── Shackle ── */
.lock-shackle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 70px;
  margin-left: -45px;
  margin-top: -130px;
  transform-style: preserve-3d;
}

.shackle-face {
  position: absolute;
  border-radius: 40px 40px 0 0;
  border: 2px solid rgba(245,166,35,0.4);
  border-bottom: none;
  background: transparent;
}

.sf-front {
  width: 90px;
  height: 70px;
  transform: translateZ(12px);
  border-color: rgba(245,166,35,0.5);
  box-shadow: 0 0 15px rgba(245,166,35,0.15);
}

.sf-back {
  width: 90px;
  height: 70px;
  transform: translateZ(-12px);
  border-color: rgba(245,166,35,0.25);
}

.sf-left {
  width: 24px;
  height: 70px;
  left: -12px;
  border-radius: 12px 12px 0 0;
  transform: rotateY(-90deg) translateZ(0px);
  border-color: rgba(245,166,35,0.2);
  background: rgba(245,166,35,0.03);
}

.sf-right {
  width: 24px;
  height: 70px;
  right: -12px;
  border-radius: 12px 12px 0 0;
  transform: rotateY(90deg) translateZ(0px);
  border-color: rgba(245,166,35,0.2);
  background: rgba(245,166,35,0.03);
}

/* ── Floating 3D Key ── */
.key-3d {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: 100px;
  margin-top: 10px;
  transform-style: preserve-3d;
  animation: keyFloat 4s ease-in-out infinite;
}

@keyframes keyFloat {
  0%, 100% { transform: translateY(0) rotateZ(-25deg); }
  50%      { transform: translateY(-18px) rotateZ(-20deg); }
}

/* ── Key Bow (ring head) ── */
.key-bow-3d {
  position: relative;
  width: 42px;
  height: 42px;
  transform-style: preserve-3d;
}

.kb-face {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  background: rgba(245,166,35,0.06);
  box-sizing: border-box;
}
.kb-front {
  transform: translateZ(7px);
  box-shadow: 0 0 20px rgba(245,166,35,0.3);
}
.kb-back {
  transform: translateZ(-7px);
  border-color: rgba(245,166,35,0.5);
}

.kb-ring-inner {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(245,166,35,0.6);
  box-shadow: 0 0 8px rgba(245,166,35,0.25);
}

/* ── Key Shaft (3D box 75×8×14) ── */
.key-shaft-3d {
  position: absolute;
  left: 38px;
  top: 50%;
  margin-top: -4px;
  width: 75px;
  height: 8px;
  transform-style: preserve-3d;
}

.ks-face {
  position: absolute;
  background: linear-gradient(90deg, rgba(245,166,35,0.9), rgba(245,166,35,0.5));
  border: 1px solid rgba(245,166,35,0.6);
}

.ks-front {
  width: 75px;
  height: 8px;
  transform: translateZ(7px);
  box-shadow: 0 0 12px rgba(245,166,35,0.25);
}
.ks-back {
  width: 75px;
  height: 8px;
  transform: translateZ(-7px);
  background: linear-gradient(90deg, rgba(245,166,35,0.6), rgba(245,166,35,0.3));
  border-color: rgba(245,166,35,0.35);
}
.ks-top {
  width: 75px;
  height: 14px;
  top: -3px;
  transform: rotateX(90deg) translateZ(0px);
  background: rgba(245,166,35,0.15);
  border-color: rgba(245,166,35,0.3);
}
.ks-bottom {
  width: 75px;
  height: 14px;
  top: -3px;
  transform: rotateX(-90deg) translateZ(8px);
  background: rgba(245,166,35,0.08);
  border-color: rgba(245,166,35,0.2);
}
.ks-left {
  width: 14px;
  height: 8px;
  left: -7px;
  transform: rotateY(-90deg) translateZ(0px);
  background: rgba(245,166,35,0.7);
  border-color: rgba(245,166,35,0.5);
}
.ks-right {
  width: 14px;
  height: 8px;
  left: 68px;
  transform: rotateY(90deg) translateZ(0px);
  background: rgba(245,166,35,0.5);
  border-color: rgba(245,166,35,0.4);
  border-radius: 0 2px 2px 0;
}

/* ── Key Teeth (3 teeth, each a 3D block) ── */
.key-teeth-3d {
  position: absolute;
  left: 38px;
  top: 50%;
  margin-top: 4px;
  transform-style: preserve-3d;
}

.kt-tooth {
  position: absolute;
  transform-style: preserve-3d;
}

.kt-t1 { left: 18px; width: 8px; height: 16px; }
.kt-t2 { left: 36px; width: 8px; height: 12px; }
.kt-t3 { left: 54px; width: 8px; height: 20px; }

.kt-face {
  position: absolute;
  background: rgba(245,166,35,0.8);
  border: 1px solid rgba(245,166,35,0.5);
}

.kt-t1 .ktf-front { width: 8px; height: 16px; transform: translateZ(7px); box-shadow: 0 0 6px rgba(245,166,35,0.2); }
.kt-t1 .ktf-back  { width: 8px; height: 16px; transform: translateZ(-7px); background: rgba(245,166,35,0.5); }
.kt-t1 .ktf-side  { width: 14px; height: 16px; left: -3px; transform: rotateY(90deg) translateZ(4px); background: rgba(245,166,35,0.2); border-color: rgba(245,166,35,0.3); }

.kt-t2 .ktf-front { width: 8px; height: 12px; transform: translateZ(7px); box-shadow: 0 0 6px rgba(245,166,35,0.2); }
.kt-t2 .ktf-back  { width: 8px; height: 12px; transform: translateZ(-7px); background: rgba(245,166,35,0.5); }
.kt-t2 .ktf-side  { width: 14px; height: 12px; left: -3px; transform: rotateY(90deg) translateZ(4px); background: rgba(245,166,35,0.2); border-color: rgba(245,166,35,0.3); }

.kt-t3 .ktf-front { width: 8px; height: 20px; transform: translateZ(7px); box-shadow: 0 0 6px rgba(245,166,35,0.2); }
.kt-t3 .ktf-back  { width: 8px; height: 20px; transform: translateZ(-7px); background: rgba(245,166,35,0.5); }
.kt-t3 .ktf-side  { width: 14px; height: 20px; left: -3px; transform: rotateY(90deg) translateZ(4px); background: rgba(245,166,35,0.2); border-color: rgba(245,166,35,0.3); }

/* ── Orbiting rings ── */
.lock-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.12);
  transform-style: preserve-3d;
}

.lock-orbit-1 {
  width: 260px;
  height: 260px;
  margin: -130px 0 0 -130px;
  animation: orbitSpin1 10s linear infinite;
  border-color: rgba(245,166,35,0.15);
}
.lock-orbit-1::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.lock-orbit-2 {
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  animation: orbitSpin2 14s linear infinite reverse;
  border-color: rgba(37,99,235,0.12);
  border-style: dashed;
}
.lock-orbit-2::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.lock-orbit-3 {
  width: 370px;
  height: 370px;
  margin: -185px 0 0 -185px;
  animation: orbitSpin3 20s linear infinite;
  border-color: rgba(245,166,35,0.06);
}
.lock-orbit-3::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245,166,35,0.6);
  box-shadow: 0 0 8px rgba(245,166,35,0.4);
}

@keyframes orbitSpin1 {
  from { transform: rotateX(70deg) rotateZ(0deg); }
  to   { transform: rotateX(70deg) rotateZ(360deg); }
}
@keyframes orbitSpin2 {
  from { transform: rotateX(55deg) rotateY(25deg) rotateZ(0deg); }
  to   { transform: rotateX(55deg) rotateY(25deg) rotateZ(360deg); }
}
@keyframes orbitSpin3 {
  from { transform: rotateX(80deg) rotateY(-15deg) rotateZ(0deg); }
  to   { transform: rotateX(80deg) rotateY(-15deg) rotateZ(360deg); }
}

/* ══════════════════════════════════════
   HERO RIGHT-SIDE FLOATS
   ══════════════════════════════════════ */

.hero-floats {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* ── Mini floating keys ── */
.hf-key {
  position: absolute;
  transform-style: preserve-3d;
}

.hf-key-bow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(245,166,35,0.35);
  background: rgba(245,166,35,0.05);
  box-shadow: 0 0 12px rgba(245,166,35,0.15);
}

.hf-key-shaft {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, rgba(245,166,35,0.4), rgba(245,166,35,0.1));
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -1.5px;
  margin-left: -2px;
  border-radius: 0 2px 2px 0;
}
.hf-key-shaft::after {
  content: '';
  position: absolute;
  right: 0;
  top: 3px;
  width: 3px;
  height: 8px;
  background: rgba(245,166,35,0.3);
  border-radius: 0 0 1px 1px;
}

.hf-key-1 {
  top: 8%;
  right: 12%;
  transform: rotate(-30deg) scale(1.3);
  animation: hfFloat1 8s ease-in-out infinite;
}
.hf-key-2 {
  top: 65%;
  right: 5%;
  transform: rotate(15deg) scale(0.9);
  animation: hfFloat2 10s ease-in-out infinite;
}
.hf-key-3 {
  top: 38%;
  right: 38%;
  transform: rotate(-60deg) scale(1.1);
  animation: hfFloat3 12s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes hfFloat1 {
  0%, 100% { transform: rotate(-30deg) scale(1.3) translate(0, 0); }
  33%      { transform: rotate(-25deg) scale(1.35) translate(-8px, 12px); }
  66%      { transform: rotate(-35deg) scale(1.25) translate(5px, -8px); }
}
@keyframes hfFloat2 {
  0%, 100% { transform: rotate(15deg) scale(0.9) translate(0, 0); }
  50%      { transform: rotate(20deg) scale(0.95) translate(-10px, -15px); }
}
@keyframes hfFloat3 {
  0%, 100% { transform: rotate(-60deg) scale(1.1) translate(0, 0); opacity: 0.6; }
  50%      { transform: rotate(-55deg) scale(1.15) translate(12px, 10px); opacity: 0.4; }
}

/* ── Shield icons ── */
.hf-shield {
  position: absolute;
  color: rgba(245,166,35,0.25);
  filter: drop-shadow(0 0 8px rgba(245,166,35,0.1));
}
.hf-shield svg {
  width: 100%;
  height: 100%;
}

.hf-shield-1 {
  width: 48px;
  height: 48px;
  top: 18%;
  right: 35%;
  animation: hfShield1 9s ease-in-out infinite;
}
.hf-shield-2 {
  width: 32px;
  height: 32px;
  top: 78%;
  right: 28%;
  color: rgba(37,99,235,0.2);
  animation: hfShield2 11s ease-in-out infinite;
}

@keyframes hfShield1 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  50%      { transform: translateY(-15px) rotate(8deg); opacity: 1; }
}
@keyframes hfShield2 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  50%      { transform: translateY(12px) rotate(-5deg); opacity: 0.9; }
}

/* ── Lock icons ── */
.hf-lock {
  position: absolute;
  color: rgba(245,166,35,0.2);
  filter: drop-shadow(0 0 6px rgba(245,166,35,0.08));
}
.hf-lock svg {
  width: 100%;
  height: 100%;
}

.hf-lock-1 {
  width: 40px;
  height: 40px;
  top: 48%;
  right: 8%;
  animation: hfLock1 7s ease-in-out infinite;
}
.hf-lock-2 {
  width: 28px;
  height: 28px;
  top: 25%;
  right: 2%;
  color: rgba(37,99,235,0.18);
  animation: hfLock2 13s ease-in-out infinite;
}

@keyframes hfLock1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(-6px, -10px) scale(1.08); }
  70%      { transform: translate(4px, 5px) scale(0.95); }
}
@keyframes hfLock2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(-8px, 8px) rotate(10deg); }
}

/* ── Geometric rings ── */
.hf-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.1);
}

.hf-ring-1 {
  width: 120px;
  height: 120px;
  top: 5%;
  right: 20%;
  border-color: rgba(245,166,35,0.08);
  animation: hfRingSpin 25s linear infinite;
}
.hf-ring-1::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245,166,35,0.4);
  box-shadow: 0 0 8px rgba(245,166,35,0.3);
}

.hf-ring-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 32%;
  border-style: dashed;
  border-color: rgba(37,99,235,0.1);
  animation: hfRingSpin 18s linear infinite reverse;
}

.hf-ring-3 {
  width: 180px;
  height: 180px;
  top: 30%;
  right: -5%;
  border-color: rgba(245,166,35,0.04);
  animation: hfRingSpin 35s linear infinite;
}

@keyframes hfRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Floating dots (connection nodes) ── */
.hf-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(245,166,35,0.5);
  box-shadow: 0 0 6px rgba(245,166,35,0.3);
}

.hf-dot-1 { width: 4px; height: 4px; top: 12%; right: 8%; animation: hfDotPulse 3s ease-in-out infinite; }
.hf-dot-2 { width: 3px; height: 3px; top: 42%; right: 22%; animation: hfDotPulse 4s 0.5s ease-in-out infinite; background: rgba(37,99,235,0.4); box-shadow: 0 0 6px rgba(37,99,235,0.3); }
.hf-dot-3 { width: 5px; height: 5px; top: 72%; right: 15%; animation: hfDotPulse 3.5s 1s ease-in-out infinite; }
.hf-dot-4 { width: 3px; height: 3px; top: 88%; right: 40%; animation: hfDotPulse 4.5s 1.5s ease-in-out infinite; background: rgba(255,255,255,0.2); box-shadow: 0 0 4px rgba(255,255,255,0.15); }
.hf-dot-5 { width: 4px; height: 4px; top: 55%; right: 42%; animation: hfDotPulse 3s 2s ease-in-out infinite; }

@keyframes hfDotPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.8); opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-visual { display: none; }
  .lock-scene { display: none; }
  .hero-floats { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .how-grid::before { display: none; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 24px; }
  .trust-bar { gap: 16px; }
}
