/* LegalHelp — shared site styles (homepage + subpages) */
  :root {
    --bg: #060810;
    --bg-alt: #0d0f1a;
    --surface: #141720;
    --surface-2: #1c2030;
    --text: #f0f2ff;
    --text-muted: #8a8fa8;
    --text-dim: #555a70;
    --border: #1e2238;
    --border-strong: #2a2f4a;
    --accent: #c9a84c;
    --accent-hover: #dbb85a;
    --accent-soft: rgba(201,168,76,0.12);
    --accent-border: rgba(201,168,76,0.25);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    background: rgba(6,8,16,0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
  }

  .logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo-mark {
    width: 32px; height: 32px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .nav-links { display: flex; gap: 0; list-style: none; }

  .nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0 16px;
    height: 64px;
    display: flex;
    align-items: center;
    transition: color 0.15s;
  }

  .nav-links a:hover { color: var(--text); }

  /* Icons */
  .ico {
    width: 22px; height: 22px;
    display: inline-block;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
    flex-shrink: 0;
  }
  .ico-sm { width: 16px; height: 16px; }

  /* Services dropdown */
  .nav-links { align-items: center; }
  .nav-item { position: relative; }
  .nav-item.has-dropdown > a { display: flex; align-items: center; gap: 6px; }
  .ico-caret { width: 13px; height: 13px; stroke-width: 2; transition: transform 0.2s; }
  .nav-item.has-dropdown:hover .ico-caret { transform: rotate(180deg); }
  .dropdown {
    position: absolute;
    top: 64px; left: 0;
    min-width: 268px;
    background: rgba(13,15,26,0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    box-shadow: 0 24px 48px rgba(0,0,0,0.45);
    z-index: 210;
  }
  .nav-item.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: none; }
  .dropdown a {
    display: flex;
    align-items: center;
    gap: 11px;
    height: auto;
    padding: 11px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
  }
  .dropdown a:hover { background: var(--surface-2); color: var(--text); }
  .dropdown a .ico { width: 18px; height: 18px; color: var(--accent); }

  /* Mobile burger + menu */
  .nav-burger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 4px;
    align-items: center;
  }
  .nav-burger .ico { width: 26px; height: 26px; }
  .mobile-menu {
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(6,8,16,0.98);
    backdrop-filter: blur(16px);
    z-index: 190;
    transform: translateX(100%);
    transition: transform 0.28s ease, visibility 0.28s;
    overflow-y: auto;
    padding: 20px;
    visibility: hidden;
  }
  .mobile-menu.open { transform: none; visibility: visible; }
  .mobile-menu-inner { display: flex; flex-direction: column; gap: 2px; }
  .mm-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    padding: 8px 12px 6px;
  }
  .mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
  }
  .mobile-menu a:hover, .mobile-menu a:active { background: var(--surface); color: var(--text); }
  .mobile-menu a .ico { width: 20px; height: 20px; color: var(--accent); }
  .mm-divider { height: 1px; background: var(--border); margin: 10px 4px; }
  .mm-cta {
    justify-content: center;
    background: var(--accent);
    color: #000 !important;
    font-weight: 600;
    margin-top: 14px;
  }
  .mm-cta:hover, .mm-cta:active { background: var(--accent-hover); color: #000 !important; }
  @media (max-width: 768px) { .nav-burger { display: inline-flex; } }
  @media (max-width: 480px) { .nav-right .btn-nav { display: none; } }

  .nav-right { display: flex; align-items: center; gap: 12px; }

  .btn-nav {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 9px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.15s;
  }

  .btn-nav:hover { background: var(--accent-hover); }

  /* ── HERO SLIDER ── */
  .hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    opacity: 0;
    transition: opacity 1s ease;
  }

  .slide.active { opacity: 1; }
  .slide:nth-child(1) { background-image: url('hero-bg.jpg'); }
  .slide:nth-child(2) { background-image: url('crypto-bg.jpg'); background-position: center 50%; }
  .slide:nth-child(3) { background-image: url('hero-bg-2.jpg'); }

  .slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(6,8,16,0.97) 0%, rgba(6,8,16,0.80) 50%, rgba(6,8,16,0.35) 100%),
      linear-gradient(to top, rgba(6,8,16,0.70) 0%, transparent 45%);
  }

  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 160px 48px 120px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .slide-text { display: none; }
  .slide-text.active { display: block; }

  .slide-text h1,
  .slide-text h2,
  .slide-text .hero-eyebrow,
  .slide-text .hero-sub,
  .slide-text .hero-actions,
  .slide-text .hero-trust {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .slide-text.in .hero-eyebrow { opacity:1; transform:none; transition-delay: 0.1s; }
  .slide-text.in h1, .slide-text.in h2 { opacity:1; transform:none; transition-delay: 0.2s; }
  .slide-text.in .hero-sub     { opacity:1; transform:none; transition-delay: 0.35s; }
  .slide-text.in .hero-actions { opacity:1; transform:none; transition-delay: 0.45s; }
  .slide-text.in .hero-trust   { opacity:1; transform:none; transition-delay: 0.55s; }

  .slider-controls {
    position: absolute;
    bottom: 40px;
    left: 48px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .slider-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(240,242,255,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, width 0.3s;
  }

  .slider-dot.active { background: var(--accent); width: 24px; border-radius: 3px; }

  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px; height: 44px;
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    background: rgba(6,8,16,0.5);
    backdrop-filter: blur(8px);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s, color 0.15s;
  }

  .slider-arrow:hover { border-color: var(--accent); color: var(--accent); }
  .slider-arrow.prev { left: 32px; }
  .slider-arrow.next { right: 32px; }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
  }

  .hero-eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--accent);
    flex-shrink: 0;
  }

  .hero h1, .hero h2 {
    font-size: 84px;
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -3px;
    color: var(--text);
    margin-bottom: 24px;
  }

  .hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 500px;
  }

  .hero-actions { display: flex; gap: 12px; align-items: center; margin-bottom: 56px; }

  .btn-primary {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.15s;
  }

  .btn-primary:hover { background: var(--accent-hover); }

  .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
  }

  .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

  .hero-trust {
    display: flex;
    gap: 32px;
    align-items: center;
  }

  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
  }

  .hero-trust-item::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
  }

  /* Hero panel */
  .hero-panel {
    background: rgba(20,23,32,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    overflow: hidden;
  }

  .panel-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13,15,26,0.8);
  }

  .panel-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #4ade80;
  }

  .live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .case-row {
    padding: 13px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
  }

  .case-row:last-child { border-bottom: none; }

  .case-id { font-weight: 500; color: var(--text); }
  .case-country { color: var(--text-muted); font-size: 12px; margin-top: 2px; }
  .case-amount { font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }

  .badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 3px;
    display: inline-block;
    margin-top: 3px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .badge-green { background: rgba(74,222,128,0.08); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
  .badge-blue { background: rgba(130,138,255,0.10); color: #818cf8; border: 1px solid rgba(130,138,255,0.2); }
  .badge-gold { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-border); }

  /* ── STATS BAR ── */
  .stats {
    border-top: 1px solid var(--border);
    background: var(--bg-alt);
  }

  .stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-box {
    padding: 40px 40px 40px 0;
    border-right: 1px solid var(--border);
  }

  .stat-box:not(:first-child) { padding-left: 40px; }
  .stat-box:last-child { border-right: none; }

  .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -1.5px;
    line-height: 1;
  }

  .stat-number span { color: var(--accent); }
  .stat-desc { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

  /* ── HOW IT WORKS ── */
  .section { padding: 96px 48px; }
  .section-inner { max-width: 1280px; margin: 0 auto; }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--accent);
  }

  .section-title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.1;
  }

  .section-sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 64px;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }

  .step-card {
    background: var(--surface);
    padding: 36px 32px;
    position: relative;
  }

  .step-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .step-num-badge {
    width: 24px; height: 24px;
    border: 1px solid var(--accent-border);
    border-radius: 4px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
  }

  .step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
  }

  .step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .step-arrow {
    position: absolute;
    right: -14px;
    top: 36px;
    width: 28px; height: 28px;
    background: var(--bg-alt);
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--accent);
    z-index: 10;
  }

  .step-card:last-child .step-arrow { display: none; }

  /* ── SERVICES ── */
  .services-section {
    padding: 96px 48px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }

  .service-card {
    background: var(--surface);
    padding: 36px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.15s;
  }

  .service-card:hover { background: var(--surface-2, #1c2030); }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
  }

  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 48px; height: 48px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
  }

  .service-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }

  .service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* ── CRYPTO HIGHLIGHT ── */
  .crypto-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
  }

  .crypto-bg {
    position: absolute;
    inset: 0;
    background-image: url('crypto-bg.jpg');
    background-size: cover;
    background-position: center;
  }

  .crypto-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6,8,16,0.97) 0%, rgba(6,8,16,0.90) 45%, rgba(6,8,16,0.50) 100%);
  }

  .crypto-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 48px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .crypto-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-strong);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    overflow: hidden;
  }

  .crypto-stat {
    background: rgba(20,23,32,0.85);
    backdrop-filter: blur(12px);
    padding: 28px;
  }

  .crypto-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -1px;
    line-height: 1;
  }

  .crypto-stat-value span { color: var(--accent); }
  .crypto-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

  .crypto-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }

  .crypto-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
  }

  .crypto-feature-icon {
    width: 28px; height: 28px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--accent);
  }

  /* ── WHY US ── */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
  }

  .why-card {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    transition: border-color 0.2s;
  }

  .why-card:hover { border-color: var(--accent-border); }

  .why-icon {
    width: 48px; height: 48px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
  }

  .why-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
  }

  .why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    padding: 96px 48px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('team-bg.jpg');
    background-size: cover;
    background-position: center 40%;
    opacity: 0.07;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
  }

  .testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px; right: 28px;
    font-size: 64px;
    color: var(--accent);
    opacity: 0.2;
    font-weight: 700;
    line-height: 1;
  }

  .stars {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .testimonial-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--surface-2, #1c2030);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
  }

  .author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
  }

  .author-role {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 2px;
  }

  /* ── TEAM ── */
  .team-section {
    padding: 96px 48px;
    position: relative;
    overflow: hidden;
  }

  .team-bg {
    position: absolute;
    inset: 0;
    background-image: url('team-bg.jpg');
    background-size: cover;
    background-position: center 40%;
    opacity: 0.08;
  }

  .team-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
  }

  .team-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface);
    transition: border-color 0.2s;
  }

  .team-card:hover { border-color: var(--accent-border); }

  .team-img {
    height: 220px;
    background: var(--surface-2, #1c2030);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
  }

  .team-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,23,32,1) 0%, transparent 50%);
  }

  .team-info { padding: 24px; }

  .team-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
  }

  .team-role {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
  }

  .team-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .team-langs {
    display: flex;
    gap: 6px;
    margin-top: 16px;
    flex-wrap: wrap;
  }

  .lang-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 3px;
    background: var(--surface-2, #1c2030);
    border: 1px solid var(--border);
    color: var(--text-muted);
  }

  /* ── FAQ ── */
  .faq-section {
    padding: 96px 48px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
  }

  .faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-top: 0;
    align-items: start;
  }

  .faq-sidebar h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
    margin-top: 16px;
  }

  .faq-sidebar p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
    background: var(--surface);
  }

  .faq-item:last-child { border-bottom: none; }

  .faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    gap: 16px;
    user-select: none;
  }

  .faq-question:hover { background: var(--surface-2, #1c2030); }

  .faq-toggle {
    width: 24px; height: 24px;
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--accent);
    flex-shrink: 0;
    transition: background 0.15s;
  }

  .faq-item.open .faq-toggle { background: var(--accent-soft); }

  .faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
  }

  /* ── CTA ── */
  .cta-section {
    padding: 96px 48px;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .cta-inner h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .cta-inner h2 span { color: var(--accent); }

  .cta-inner p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .cta-actions { display: flex; gap: 12px; justify-content: center; }

  .cta-note {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 16px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 64px 48px 32px;
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

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

  .footer-brand .logo { margin-bottom: 16px; display: inline-flex; }

  .footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 20px;
  }

  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-decoration: none;
  }

  .footer-contact-item:hover { color: var(--text); }

  .footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; }

  .footer-col li { margin-bottom: 10px; }

  .footer-col a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
  }

  .footer-col a:hover { color: var(--text); }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-dim);
  }


  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 132px 32px 96px; }
    .hero-panel { max-width: 460px; }
    .hero h1, .hero h2 { font-size: 60px; letter-spacing: -2px; }
    .crypto-inner { grid-template-columns: 1fr; gap: 48px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step-card:nth-child(2) .step-arrow { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .slider-arrow { display: none; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .section,
    .services-section,
    .testimonials-section,
    .team-section,
    .faq-section,
    .cta-section { padding: 64px 20px; }
    .crypto-inner { padding: 64px 20px; }
    .hero-inner { padding: 116px 20px 72px; }
    .hero h1, .hero h2 { font-size: 42px; letter-spacing: -1.5px; }
    .hero-sub { font-size: 16px; margin-bottom: 36px; }
    .hero-actions { flex-wrap: wrap; }
    .hero-trust { flex-wrap: wrap; gap: 16px; }
    .section-title { font-size: 32px; letter-spacing: -1px; }
    .cta-inner h2 { font-size: 34px; }
    .faq-sidebar h2 { font-size: 32px; }

    .stats-inner { grid-template-columns: 1fr 1fr; padding: 0 20px; }
    .stat-box { padding: 28px 20px; border-right: 1px solid var(--border); }
    .stat-box:nth-child(even) { border-right: none; }
    .stat-box:nth-child(1),
    .stat-box:nth-child(2) { border-bottom: 1px solid var(--border); }
    .stat-number { font-size: 34px; }

    .steps-grid,
    .services-grid,
    .why-grid,
    .team-grid { grid-template-columns: 1fr; }
    .step-arrow { display: none; }
    .crypto-stats { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
    .cta-actions,
    .hero-actions { flex-direction: column; align-items: stretch; }
    .cta-actions .btn-primary,
    .cta-actions .btn-outline { text-align: center; }
  }

  @media (max-width: 420px) {
    .hero h1, .hero h2 { font-size: 36px; }
    .crypto-stats { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: 1fr; }
    .stat-box { border-right: none; }
    .stat-box:nth-child(1),
    .stat-box:nth-child(2),
    .stat-box:nth-child(3) { border-bottom: 1px solid var(--border); }
  }

/* ── FORM (shared, service pages) ── */
.form-section { padding: 96px 48px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.form-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; max-width: 1280px; margin: 0 auto; }
.form-intro h2 { margin-bottom: 16px; }
.form-intro p { font-size: 16px; color: var(--text-muted); line-height: 1.8; max-width: 420px; margin-bottom: 24px; }
.form-trust { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.form-trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.form-trust-item .ico { width: 18px; height: 18px; color: var(--accent); }
.form-card { background: var(--surface); border: 1px solid var(--border-strong); border-radius: 10px; padding: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.02em; }
.form-field label .req { color: var(--accent); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: 6px;
  padding: 12px 14px; font-size: 14px; font-family: inherit; color: var(--text);
  transition: border-color 0.15s; width: 100%;
}
.form-field textarea { resize: vertical; min-height: 96px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--accent); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-dim); }
.form-field select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 13px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.form-file {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border: 1px dashed var(--border-strong); border-radius: 6px; font-size: 13px;
  color: var(--text-muted); cursor: pointer; transition: border-color 0.15s, color 0.15s;
}
.form-file:hover { border-color: var(--accent); color: var(--text); }
.form-file .ico { width: 18px; height: 18px; color: var(--accent); }
.form-file input { display: none; }
.form-submit { margin-top: 24px; }
.form-submit .btn-primary { width: 100%; text-align: center; padding: 15px; font-size: 15px; }
.form-note { font-size: 12px; color: var(--text-dim); margin-top: 14px; line-height: 1.6; }

@media (max-width: 1024px) { .form-layout { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 768px) {
  .form-section { padding: 64px 20px; }
  .form-card { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
}


/* ── MOBILE BACKGROUNDS (portrait 1080x1920) ── */
@media (max-width: 768px) {
  .slide:nth-child(1) { background-image: url('hero-bg-mobile.jpg'); }
  .slide:nth-child(2) { background-image: url('crypto-bg-mobile.jpg'); }
  .slide:nth-child(3) { background-image: url('hero-bg-2-mobile.jpg'); }
  .crypto-bg { background-image: url('crypto-bg-mobile.jpg'); }
}
