/* ═══════════════════════════════════════════════
   SWING TRADING — Futuristic Cinematic Theme
   ═══════════════════════════════════════════════ */

:root {
  --bg: #030509;
  --bg-2: #070b14;
  --bg-3: #0b1220;
  --card: rgba(255, 255, 255, 0.03);
  --card-border: rgba(120, 200, 255, 0.1);
  --text: #e8f0f8;
  --muted: #7f8ea6;
  --bull: #00ff9d;
  --bull-dim: #00cc7a;
  --bear: #ff4d6a;
  --cyan: #00d4ff;
  --gold: #ffc94d;
  --accent-grad: linear-gradient(120deg, #00ff9d 0%, #00d4ff 55%, #7b8cff 100%);
  --font-hud: "Orbitron", sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--bull); color: #02120a; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: 110px 0; position: relative; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #16233c; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--bull-dim); }

/* ═══════════ SCANLINES (subtle CRT feel) ═══════════ */
.scanlines {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent 0 3px, rgba(255, 255, 255, 0.015) 3px 4px
  );
}

/* ═══════════ HUD FRAME (futuristic corner brackets) ═══════════ */
.hud { position: relative; }
.hud::before, .hud::after {
  content: ""; position: absolute; width: 18px; height: 18px;
  border: 2px solid rgba(0, 255, 157, 0.45);
  transition: all .35s ease; pointer-events: none; z-index: 1;
}
.hud::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; border-radius: 6px 0 0 0; }
.hud::after { bottom: -2px; right: -2px; border-left: 0; border-top: 0; border-radius: 0 0 6px 0; }
.hud:hover::before, .hud:hover::after { width: 32px; height: 32px; border-color: var(--cyan); }

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-candles { display: flex; align-items: flex-end; justify-content: center; gap: 8px; height: 70px; margin-bottom: 24px; }
.preloader-candles span {
  width: 12px; border-radius: 3px; background: var(--bull);
  animation: candleGrow 1s ease-in-out infinite alternate;
  box-shadow: 0 0 18px rgba(0, 255, 157, .5);
}
.preloader-candles span:nth-child(1) { height: 24px; animation-delay: 0s; }
.preloader-candles span:nth-child(2) { height: 36px; animation-delay: .12s; background: var(--bear); box-shadow: 0 0 18px rgba(255,77,106,.4); }
.preloader-candles span:nth-child(3) { height: 46px; animation-delay: .24s; }
.preloader-candles span:nth-child(4) { height: 56px; animation-delay: .36s; background: var(--cyan); box-shadow: 0 0 18px rgba(0,212,255,.5); }
.preloader-candles span:nth-child(5) { height: 68px; animation-delay: .48s; }
@keyframes candleGrow { from { transform: scaleY(.55); } to { transform: scaleY(1.15); } }
.preloader-text { font-family: var(--font-hud); font-weight: 700; letter-spacing: .4em; font-size: 15px; }
.preloader-sub { color: var(--bull); font-size: 11px; margin-top: 10px; letter-spacing: .18em; font-family: var(--font-hud); opacity: .7; animation: blink 1.2s step-end infinite; }
@keyframes blink { 50% { opacity: .25; } }

/* ═══════════ CURSOR GLOW ═══════════ */
.cursor-glow {
  position: fixed; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, .06) 0%, rgba(0,255,157,.04) 35%, transparent 65%);
  pointer-events: none; z-index: 1; transform: translate(-50%, -50%);
  transition: opacity .3s;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ═══════════ NAVBAR ═══════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0; transition: all .4s ease;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(3, 5, 9, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--card-border);
}
.nav-inner { width: min(1280px, 94%); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand-mark {
  color: var(--bull); font-size: 24px; line-height: 1;
  filter: drop-shadow(0 0 10px rgba(0,255,157,.8));
  animation: markPulse 2.4s ease-in-out infinite;
}
@keyframes markPulse { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.brand-name { font-family: var(--font-hud); font-weight: 700; letter-spacing: .1em; font-size: 15px; }
.brand-name span { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color .25s, text-shadow .25s;
}
.nav-links a:hover { color: var(--bull); text-shadow: 0 0 14px rgba(0,255,157,.6); }
.nav-cta {
  color: #02120a !important; background: var(--accent-grad);
  padding: 10px 22px; border-radius: 8px; font-weight: 700 !important;
  box-shadow: 0 0 24px rgba(0, 255, 157, .35);
  transition: transform .25s, box-shadow .25s !important;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(0, 212, 255, .55); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
  padding: 140px 20px 100px;
}
.hero-stars { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .8; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.hero-grid-floor {
  position: absolute; left: -25%; right: -25%; bottom: -18%; height: 55%;
  background-image:
    linear-gradient(rgba(0, 255, 157, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 157, .12) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(600px) rotateX(62deg);
  mask-image: linear-gradient(to top, black 20%, transparent 90%);
  animation: floorScroll 3.2s linear infinite;
}
@keyframes floorScroll { from { background-position: 0 0; } to { background-position: 0 56px; } }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(110px); }
.hero-glow-1 { width: 560px; height: 560px; background: rgba(0, 255, 157, .1); top: -160px; right: -120px; animation: drift 12s ease-in-out infinite alternate; }
.hero-glow-2 { width: 480px; height: 480px; background: rgba(0, 212, 255, .09); bottom: -180px; left: -140px; animation: drift 14s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(40px, 30px) scale(1.12); } }

.hero-content { position: relative; z-index: 2; max-width: 940px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(0, 255, 157, .35); border-radius: 6px;
  padding: 8px 20px; font-size: 11.5px; letter-spacing: .18em;
  color: var(--bull); background: rgba(0, 255, 157, .05);
  margin-bottom: 34px; font-weight: 600; font-family: var(--font-hud);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bull); animation: pulse 1.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0,255,157,.6); } 70% { box-shadow: 0 0 0 12px rgba(0,255,157,0); } 100% { box-shadow: 0 0 0 0 rgba(0,255,157,0); } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8.2vw, 96px);
  font-weight: 700; line-height: 1.02; letter-spacing: -.01em;
  text-transform: uppercase;
}
.hero-title .line { display: block; }
.hero-title em { font-style: normal; color: var(--cyan); text-shadow: 0 0 40px rgba(0,212,255,.5); }
.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 26px rgba(0, 255, 157, .35));
}

/* glitch flicker on the money word */
.glitch { position: relative; animation: glitchFlicker 6s infinite; }
@keyframes glitchFlicker {
  0%, 91%, 94%, 98%, 100% { opacity: 1; transform: translateX(0) skewX(0); }
  92% { opacity: .75; transform: translateX(3px) skewX(-4deg); }
  93% { opacity: 1; transform: translateX(-3px) skewX(3deg); }
  96% { opacity: .85; transform: translateX(2px); }
}

.hero-sub {
  color: var(--muted); font-size: clamp(15px, 2vw, 19px);
  max-width: 660px; margin: 30px auto 0;
}
.hero-sub b { color: var(--bull); }
.hero-actions { display: flex; gap: 18px; justify-content: center; margin-top: 42px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px; border-radius: 10px; text-decoration: none;
  font-weight: 700; font-size: 15px; font-family: var(--font-display);
  letter-spacing: .03em; transition: transform .25s, box-shadow .25s;
  border: 0; cursor: pointer;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.btn span { transition: transform .25s; }
.btn:hover span { transform: translateX(5px); }
.btn-primary {
  background: var(--accent-grad); color: #02120a;
  box-shadow: 0 8px 34px rgba(0, 255, 157, .35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(0, 212, 255, .5); }
.btn-ghost {
  color: var(--text); border: 1px solid var(--card-border);
  background: rgba(255,255,255,.03); backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--bull); color: var(--bull); transform: translateY(-3px); }
.btn-whatsapp { background: #1eba57; color: #fff; box-shadow: 0 8px 30px rgba(30,186,87,.35); }
.btn-whatsapp:hover { transform: translateY(-3px); }
.btn-full { width: 100%; justify-content: center; }

.hero-stats {
  display: flex; gap: clamp(28px, 6vw, 72px); justify-content: center;
  margin-top: 64px; flex-wrap: wrap;
}
.hstat b {
  font-family: var(--font-hud); font-size: clamp(28px, 4vw, 42px);
  color: var(--bull); display: block;
  text-shadow: 0 0 30px rgba(0, 255, 157, .4);
}
.hstat span { color: var(--muted); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  z-index: 2; font-family: var(--font-hud);
}
.mouse { width: 24px; height: 38px; border: 2px solid var(--muted); border-radius: 14px; display: flex; justify-content: center; padding-top: 7px; }
.wheel { width: 3px; height: 8px; background: var(--bull); border-radius: 3px; animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }

/* ═══════════ TICKER ═══════════ */
.ticker-wrap {
  border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border);
  background: var(--bg-2); overflow: hidden; padding: 14px 0;
  position: relative; z-index: 3;
}
.ticker { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: tick 40s linear infinite; }
.ticker-wrap:hover .ticker { animation-play-state: paused; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick-item { font-family: var(--font-hud); font-size: 12.5px; display: inline-flex; gap: 10px; align-items: center; letter-spacing: .05em; }
.tick-item .sym { color: var(--text); font-weight: 600; }
.tick-item .up { color: var(--bull); }
.tick-item .down { color: var(--bear); }

/* ═══════════ TRUST BAR ═══════════ */
.trustbar { padding: 90px 0 20px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.trust-item {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 30px 26px;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.trust-item:hover { transform: translateY(-8px); border-color: rgba(0,255,157,.4); box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 30px rgba(0,255,157,.08); }
.trust-icon { font-size: 30px; margin-bottom: 14px; }
.trust-item h4 { font-family: var(--font-display); font-size: 17px; margin-bottom: 8px; }
.trust-item p { color: var(--muted); font-size: 13.5px; }

/* ═══════════ SECTION HEADERS ═══════════ */
.eyebrow {
  font-family: var(--font-hud); color: var(--cyan);
  letter-spacing: .28em; font-size: 11px; font-weight: 600;
  display: inline-block; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4.6vw, 52px); line-height: 1.12;
  margin-bottom: 22px; letter-spacing: -.01em;
}
.section p { color: var(--muted); font-size: 16px; max-width: 640px; }

/* ═══════════ ABOUT ═══════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; align-items: center; }
.candle-art {
  position: relative; height: 380px;
  background: var(--card); border: 1px solid var(--card-border); border-radius: 16px;
  display: flex; align-items: flex-end; justify-content: center; gap: 16px;
  padding: 40px 30px 56px; overflow: hidden;
}
.candle-art > .ca-candle, .candle-art > .ca-arrow, .candle-art > .ca-label { position: relative; z-index: 2; }
.candle-art::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(0,255,157,.09), transparent 60%),
    linear-gradient(rgba(120,200,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,200,255,.04) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  border: none; width: auto; height: auto; border-radius: 0;
}
.ca-candle {
  width: 30px; height: var(--h); border-radius: 4px;
  animation: caRise 1s cubic-bezier(.2,.9,.3,1.2) both; animation-delay: var(--d);
  transform-origin: bottom;
}
.ca-candle.g { background: linear-gradient(180deg, #7dffce, var(--bull-dim)); box-shadow: 0 0 24px rgba(0,255,157,.35); }
.ca-candle.r { background: linear-gradient(180deg, #ff8fa3, var(--bear)); box-shadow: 0 0 20px rgba(255,77,106,.25); }
.ca-candle::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  top: -18px; width: 3px; height: 18px; background: inherit; border-radius: 2px;
}
@keyframes caRise { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }
.ca-arrow {
  position: absolute; top: 34px; right: 38px; font-size: 44px; color: var(--cyan);
  filter: drop-shadow(0 0 18px rgba(0,212,255,.6));
  animation: markPulse 2s ease-in-out infinite;
}
.ca-label {
  position: absolute; bottom: 18px; left: 24px;
  font-family: var(--font-hud); font-size: 10.5px; letter-spacing: .18em;
  color: var(--bull); opacity: .75; animation: blink 1.6s step-end infinite;
}
.check-list { list-style: none; margin: 26px 0 34px; }
.check-list li {
  padding-left: 34px; position: relative; margin-bottom: 14px;
  color: var(--text); font-size: 15px;
}
.check-list li::before {
  content: "▸"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(0,255,157,.1); color: var(--bull);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}

/* ═══════════ PROGRAMS ═══════════ */
.services { background: var(--bg-2); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.service-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 34px 26px; overflow: visible;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.service-card:hover { transform: translateY(-10px); border-color: rgba(0,255,157,.45); box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 40px rgba(0,255,157,.1); }
.service-card.featured { border-color: rgba(0,212,255,.5); background: linear-gradient(180deg, rgba(0,212,255,.06), var(--card)); }
.sc-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--cyan); color: #001420;
  font-size: 10px; font-weight: 800; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 4px; text-transform: uppercase;
  font-family: var(--font-hud);
}
.sc-num {
  font-family: var(--font-hud); font-size: 40px; font-weight: 700;
  background: linear-gradient(180deg, rgba(120,200,255,.35), transparent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.service-card h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 13.5px; margin-bottom: 20px; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sc-tags span {
  font-size: 10.5px; padding: 5px 12px; border-radius: 4px;
  border: 1px solid var(--card-border); color: var(--cyan); letter-spacing: .06em;
  font-family: var(--font-hud);
}

/* ═══════════ PROFILES ═══════════ */
.profiles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.profile-card {
  border: 1px solid var(--card-border); border-radius: 16px; padding: 36px 28px;
  background: radial-gradient(circle at 50% 0%, rgba(0,212,255,.05), var(--card) 70%);
  text-align: center; transition: transform .35s, border-color .35s;
}
.profile-card:hover { transform: translateY(-10px) scale(1.02); border-color: rgba(0,212,255,.4); }
.pc-icon { font-size: 40px; margin-bottom: 18px; }
.profile-card h3 { font-family: var(--font-display); font-size: 19px; margin-bottom: 12px; }
.profile-card p { color: var(--muted); font-size: 13.5px; margin: 0 auto 18px; }
.pc-fit {
  font-size: 10.5px; color: var(--bull); font-weight: 600; letter-spacing: .1em;
  border-top: 1px dashed var(--card-border); padding-top: 14px;
  font-family: var(--font-hud); text-transform: uppercase;
}

/* ═══════════ CINEMATIC BREAK ═══════════ */
.cine-break {
  padding: 130px 20px; text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(0,212,255,.1), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border);
}
.cine-quote {
  font-family: var(--font-display); font-size: clamp(24px, 3.6vw, 42px);
  font-weight: 600; line-height: 1.35; max-width: 900px; margin: 0 auto;
}

/* ═══════════ TESTIMONIALS ═══════════ */
.t-slider { margin-top: 56px; overflow: hidden; padding: 4px; }
.t-track { display: flex; gap: 26px; transition: transform .65s cubic-bezier(.25,.8,.3,1); }
.t-card {
  flex: 0 0 calc((100% - 52px) / 3);
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 34px 30px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .3s;
}
.t-card:hover { border-color: rgba(0,212,255,.4); }
.t-stars { color: var(--gold); letter-spacing: 4px; font-size: 15px; text-shadow: 0 0 14px rgba(255,201,77,.5); }
.t-card blockquote { color: var(--text); font-size: 14.5px; line-height: 1.75; font-style: italic; flex: 1; }
.t-card figcaption { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
  background: var(--accent-grad); color: #02120a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-hud); font-size: 18px;
}
.t-card figcaption b { display: block; font-family: var(--font-display); font-size: 15px; }
.t-card figcaption span { color: var(--muted); font-size: 12px; }
.t-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 40px; }
.t-btn {
  width: 46px; height: 46px; border-radius: 10px;
  border: 1px solid var(--card-border); background: var(--card); color: var(--text);
  font-size: 17px; cursor: pointer; transition: all .3s;
}
.t-btn:hover { background: var(--bull); color: #02120a; border-color: var(--bull); box-shadow: 0 0 24px rgba(0,255,157,.4); }
.t-dots { display: flex; gap: 8px; }
.t-dots button { width: 9px; height: 9px; border-radius: 3px; border: 0; background: #1d2b47; cursor: pointer; transition: all .3s; padding: 0; }
.t-dots button.active { background: var(--bull); width: 26px; box-shadow: 0 0 12px rgba(0,255,157,.5); }

/* ═══════════ CONTACT ═══════════ */
.contact { background: var(--bg-2); overflow: hidden; }
.contact-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.08), transparent 65%);
  top: -200px; left: -200px; pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: start; position: relative; }
.contact-card {
  display: flex; gap: 20px; align-items: center;
  background: var(--card); border: 1px solid rgba(0,212,255,.3);
  border-radius: 16px; padding: 26px 28px; margin: 30px 0;
  box-shadow: 0 0 40px rgba(0,212,255,.05);
}
.cc-avatar {
  width: 66px; height: 66px; border-radius: 14px; flex-shrink: 0;
  background: var(--accent-grad); color: #02120a;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-hud); font-weight: 900; font-size: 28px;
  box-shadow: 0 0 30px rgba(0,255,157,.35);
}
.cc-info b { font-family: var(--font-hud); font-size: 18px; letter-spacing: .1em; display: block; }
.cc-info > span { color: var(--muted); font-size: 12.5px; display: block; margin-bottom: 10px; }
.cc-phone, .cc-mail { display: block; color: var(--bull); text-decoration: none; font-weight: 600; font-size: 14.5px; margin-top: 4px; }
.cc-phone:hover, .cc-mail:hover { text-decoration: underline; }
.contact-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.contact-form {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 40px 36px;
  backdrop-filter: blur(10px);
}
.contact-form h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 26px; }
.contact-form label { display: block; font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 18px; letter-spacing: .08em; text-transform: uppercase; font-family: var(--font-hud); }
.contact-form input, .contact-form select {
  width: 100%; margin-top: 8px; padding: 14px 16px;
  background: rgba(255,255,255,.04); border: 1px solid var(--card-border);
  border-radius: 8px; color: var(--text); font-family: var(--font-body); font-size: 14.5px;
  outline: none; transition: border-color .3s, box-shadow .3s;
}
.contact-form select option { background: var(--bg-3); }
.contact-form input:focus, .contact-form select:focus {
  border-color: var(--bull); box-shadow: 0 0 0 3px rgba(0,255,157,.12);
}
.form-note { margin-top: 16px; font-size: 13.5px; color: var(--bull); text-align: center; min-height: 20px; }

/* ═══════════ FOOTER ═══════════ */
.footer { border-top: 1px solid var(--card-border); padding: 70px 0 30px; background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 50px; padding-bottom: 46px; }
.f-brand p { color: var(--muted); font-size: 13.5px; margin-top: 18px; max-width: 340px; }
.f-col h5 { font-family: var(--font-hud); font-size: 12px; letter-spacing: .2em; margin-bottom: 18px; color: var(--cyan); text-transform: uppercase; }
.f-col a, .f-col span { display: block; color: var(--muted); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color .25s; }
.f-col a:hover { color: var(--bull); }
.disclaimer { border-top: 1px solid var(--card-border); padding-top: 26px; }
.disclaimer p { color: #59647c; font-size: 11.5px; line-height: 1.7; max-width: 100%; }
.disclaimer b { color: #7f8ea6; }
.copyright { margin-top: 14px; text-align: center; letter-spacing: .06em; font-family: var(--font-hud); font-size: 10.5px !important; }

/* ═══════════ REVEAL ANIMATIONS ═══════════ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }
.delay-5 { transition-delay: .6s; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1020px) {
  .trust-grid, .services-grid, .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .t-card { flex: 0 0 calc((100% - 26px) / 2); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 80px 0; }
  .nav-links {
    position: fixed; inset: 0; background: rgba(3,5,9,.97); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 30px;
    opacity: 0; visibility: hidden; transition: .35s;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 20px; }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .trust-grid, .services-grid, .profiles-grid { grid-template-columns: 1fr; }
  .t-card { flex: 0 0 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-stats { gap: 26px; }
  .scroll-hint { display: none; }
  .hero-badge { font-size: 9.5px; letter-spacing: .12em; }
}
