/* ============================================
   OnChainTrailer – Main Stylesheet
   Design: Dark forensic / high-trust aesthetic
   Fonts: Syne (display) + DM Sans (body)
   ============================================ */

:root {
  --bg: #070b10;
  --bg2: #0d1420;
  --bg3: #111827;
  --card: #0f1923;
  --card-border: rgba(255,255,255,0.06);
  --accent: #00d4ff;
  --accent2: #0086ff;
  --accent-glow: rgba(0, 212, 255, 0.15);
  --green: #10b981;
  --red: #ef4444;
  --text: #e8edf5;
  --text-muted: #7a8899;
  --text-dim: #3d4f61;
  --nav-h: 70px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 40px rgba(0,0,0,0.5);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section { padding: 90px 0; }
.dark-section { background: var(--bg2); }

/* ── NAV ────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(7, 11, 16, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  transition: background var(--transition);
}

.nav.scrolled {
  background: rgba(7, 11, 16, 0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.logo strong { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

/* Language Switcher */
.lang-switcher { position: relative; margin-left: 8px; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn:hover { color: var(--text); border-color: var(--accent); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  min-width: 160px;
  padding: 6px;
  box-shadow: var(--shadow);
  z-index: 200;
}
.lang-dropdown.open { display: block; animation: fadeDown 0.15s ease; }
.lang-dropdown a {
  display: block;
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  border-radius: 6px;
}
.lang-dropdown a:hover { background: rgba(255,255,255,0.06); color: var(--text); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,134,255,0.12), transparent 70%);
  top: -100px; left: -100px;
  animation: pulse 6s ease-in-out infinite;
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.08), transparent 70%);
  bottom: 0; right: 0;
  animation: pulse 8s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-content { position: relative; z-index: 1; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  margin: 20px 0 34px;
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--accent); }
.trust-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.03em; text-transform: uppercase; }
.trust-divider { width: 1px; height: 36px; background: var(--card-border); }

/* Chain visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chain-visual {
  position: relative;
  width: 340px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chain-node {
  position: absolute;
  width: 64px;
  height: 64px;
  background: var(--card);
  border: 1.5px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,212,255,0.1);
}
.node-1 { left: 20px; top: 50%; transform: translateY(-50%); border-color: var(--accent); }
.node-3 { right: 20px; top: 50%; transform: translateY(-50%); border-color: var(--accent); }
.node-2 {
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-color: var(--red);
  box-shadow: 0 0 24px rgba(239, 68, 68, 0.25);
  animation: flagPulse 2s ease-in-out infinite;
}
.flag-label {
  position: absolute;
  bottom: -24px;
  font-size: 0.7rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@keyframes flagPulse {
  0%, 100% { box-shadow: 0 0 24px rgba(239, 68, 68, 0.25); }
  50% { box-shadow: 0 0 40px rgba(239, 68, 68, 0.5); }
}

.chain-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--red));
  top: 50%;
  animation: scanLine 3s ease-in-out infinite;
}
.line-1 { left: 84px; width: 80px; transform: translateY(-1px); }
.line-2 { right: 84px; width: 80px; transform: translateY(-1px); background: linear-gradient(90deg, var(--red), var(--accent)); }

@keyframes scanLine {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.scan-ring {
  position: absolute;
  width: 110px; height: 110px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 50%;
  animation: scanRing 2.5s ease-in-out infinite;
}
@keyframes scanRing {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.chain-label {
  position: absolute;
  bottom: 0;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

/* ── BUTTONS ────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: #fff;
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}
.btn-primary.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 22px;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--text);
  transform: translateY(-2px);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 8px;
  transition: all var(--transition);
}
.btn-wa:hover {
  background: #22c55e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* ── SECTION HEADERS ────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 14px auto 0;
}

/* ── SCAM GRID ──────────────────────────── */
.scam-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.scam-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.scam-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.scam-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.scam-card:hover::before { height: 100%; }

.scam-icon { font-size: 2rem; margin-bottom: 16px; }
.scam-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.scam-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ── STEPS ──────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.step:hover { transform: translateY(-4px); border-color: rgba(0, 212, 255, 0.2); }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 212, 255, 0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step-content h3 { margin-bottom: 10px; font-size: 1.05rem; }
.step-content p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ── WHY US ─────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-text { }
.why-text p { color: var(--text-muted); margin: 16px 0 24px; font-size: 1.02rem; }

.why-list { list-style: none; margin-bottom: 36px; }
.why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.93rem;
}
.why-list li:last-child { border-bottom: none; }
.check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  font-size: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.cert-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 20px;
}
.cert-badge { font-size: 2.2rem; }
.cert-text strong { font-family: 'Syne', sans-serif; display: block; margin-bottom: 4px; }
.cert-text p { font-size: 0.85rem; color: var(--text-muted); }

.stat-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
}
.stat-card span {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-card small { font-size: 0.78rem; color: var(--text-muted); }

/* ── TESTIMONIALS ───────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
}
.tcard-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.tcard p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.tcard-author { font-size: 0.82rem; color: var(--text-dim); }
.tcard-author strong { color: var(--text); }

/* ── CTA BAND ───────────────────────────── */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0,134,255,0.1), rgba(0,212,255,0.05));
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.cta-inner { text-align: center; }
.cta-inner h2 { margin-bottom: 14px; }
.cta-inner p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ─────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 16px 0 10px;
  line-height: 1.7;
}
.footer-brand a[href^="mailto"] { color: var(--accent); font-size: 0.9rem; }

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }

.footer-warning {
  margin-top: 18px;
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.78rem;
  color: #f87171;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--card-border);
  font-size: 0.83rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-dim); }
.footer-links a:hover { color: var(--text-muted); }

/* ── FLOATING BUTTONS ───────────────────── */
.float-wa {
  position: fixed;
  left: 24px;
  bottom: 30px;
  width: 54px; height: 54px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  z-index: 900;
}
.float-wa:hover {
  transform: scale(1.1);
  background: #22c55e;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.float-chat {
  position: fixed;
  right: 24px;
  bottom: 30px;
  width: 54px; height: 54px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition);
  z-index: 900;
}
.float-chat:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5); }

.chat-dot {
  position: absolute;
  top: 8px; right: 8px;
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── CHAT WIDGET ────────────────────────── */
.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 100px;
  width: 340px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 901;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.25s ease;
}
.chat-widget.open { display: flex; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  padding: 14px 16px;
}
.chat-avatar {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-header strong { color: #fff; font-size: 0.9rem; display: block; }
.online-badge { color: rgba(255,255,255,0.8); font-size: 0.72rem; }
.chat-close {
  margin-left: auto;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 26px; height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 200px;
  overflow-y: auto;
}
.chat-msg.bot { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 10px 14px; }
.chat-msg p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; }
.chat-msg a { color: var(--accent); }

.chat-input {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--card-border);
}
.chat-input input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  outline: none;
}
.chat-input input:focus { border-color: var(--accent); }
.chat-send {
  width: 36px; height: 36px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all var(--transition);
  flex-shrink: 0;
  align-self: center;
}
.chat-send:hover { background: #fff; color: var(--bg); }

/* ── PAGE INNER HERO ────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,134,255,0.1), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; }

/* ── BREADCRUMB ─────────────────────────── */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }

/* ── FAQ PAGE ───────────────────────────── */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--card-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); color: var(--bg); transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

/* ── CONTACT FORM ───────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 12px; }
.contact-info p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; margin-bottom: 28px; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 12px;
  transition: all var(--transition);
}
.contact-method:hover { border-color: rgba(0,212,255,0.2); transform: translateX(4px); }
.contact-method-icon { font-size: 1.4rem; }
.contact-method-text strong { display: block; font-size: 0.88rem; margin-bottom: 2px; }
.contact-method-text span { font-size: 0.82rem; color: var(--text-muted); }

.form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-card h3 { margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.form-submit:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.3);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 12px;
}

/* ── ABOUT PAGE ─────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.2); }
.team-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--accent); margin-bottom: 12px; }
.team-card p { font-size: 0.86rem; color: var(--text-muted); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
}
.value-icon { font-size: 1.8rem; margin-bottom: 12px; }
.value-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.value-card p { color: var(--text-muted); font-size: 0.88rem; }

/* ── SERVICE PAGE ───────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.2); }
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.service-tag {
  font-size: 0.72rem;
  background: rgba(0,212,255,0.08);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(0,212,255,0.15);
}

/* ── ANIMATIONS & REVEAL ────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── NOTICE BANNER ──────────────────────── */
.notice-banner {
  background: linear-gradient(90deg, rgba(239,68,68,0.08), rgba(239,68,68,0.04));
  border-bottom: 1px solid rgba(239,68,68,0.15);
  padding: 10px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: #f87171;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 998;
  display: none;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 40px); }
  .hero-visual { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(7,11,16,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--card-border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .lang-switcher { width: 100%; margin-top: 12px; }
  .lang-btn { width: 100%; justify-content: center; }
  .lang-dropdown { left: 0; right: 0; }

  .scam-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .chat-widget { left: 16px; right: 16px; width: auto; bottom: 90px; }
  .float-chat { right: 16px; bottom: 24px; }
  .float-wa { left: 16px; bottom: 24px; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .form-card { padding: 24px 20px; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}
