  :root {
    color-scheme: dark;
    --bg: #080C14;
    --bg2: #0D1220;
    --bg3: #111827;
    --surface: #151D2E;
    --surface2: #1C2740;
    --border: #1E2D45;
    --accent: #00EFC4;
    --accent2: #00D4B0;
    --accent-glow: rgba(0,239,196,0.15);
    --green: #10B981;
    --green-pale: rgba(16,185,129,0.12);
    --amber: #F59E0B;
    --amber-pale: rgba(245,158,11,0.1);
    --text: #F1F5F9;
    --text2: #94A3B8;
    --text3: #475569;
    --mira: #8B5CF6;
    --nav-bg: rgba(8,12,20,0.85);
    --operators-strip-bg: linear-gradient(180deg, rgba(13,18,32,0.92) 0%, rgba(8,12,20,0.98) 100%);
    --operator-logo-bg: rgba(21,29,46,0.82);
    --operator-logo-border: rgba(30,45,69,0.95);
    --surface-muted: rgba(21,29,46,0.78);
    --overlay-bg: rgba(0,0,0,0.75);
    --shadow-soft: 0 20px 60px rgba(15,23,42,0.22);
    --shadow-strong: 0 40px 100px rgba(0,0,0,0.4);
    --grid-line: rgba(30,45,69,0.3);
  }


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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.25s ease, color 0.25s ease;
  }

  /* ── NOISE TEXTURE ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .nav-logo img {
    height: 126px;
    width: auto;
  }

  .nav-mobile-cta {
    display: none;
    background: var(--accent);
    color: #071410;
    text-decoration: none;
    padding: 0.55rem 0.95rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
  }

  .lang-btn {
    min-width: 40px;
    height: 34px;
    padding: 0 0.7rem;
    border: none;
    border-radius: 9px;
    background: transparent;
    color: var(--text2);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s;
  }

  .lang-btn:hover {
    color: var(--text);
    background: var(--accent-glow);
  }

  .lang-btn.active {
    background: var(--accent);
    color: #071410;
  }


  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--accent);
    color: #071410 !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.2s !important;
  }

  .nav-cta:hover {
    background: var(--accent2) !important;
    color: #071410 !important;
    transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
  }

  .hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(0,239,196,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--grid-line) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,239,196,0.1);
    border: 1px solid rgba(0,239,196,0.25);
    border-radius: 100px;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--accent2);
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease both;
  }

  .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
  }

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

  .hero h1 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.1s ease both;
  }

  .hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent2), #00C8F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text2);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
    margin-bottom: 4rem;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: #071410;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0,239,196,0.25);
  }

  .btn-primary:hover {
    background: #00D4B0;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0,239,196,0.4);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text2);
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
    border: 1px solid var(--border);
    cursor: pointer;
  }

  .btn-secondary:hover {
    color: var(--text);
    border-color: var(--accent);
    background: var(--accent-glow);
  }

  /* ── HERO STATS ── */
  .hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.4s ease both;
  }

  .stat-pill {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
  }

  .stat-pill .num {
    font-family: 'Syne', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent2);
  }

  .stat-pill .label {
    font-size: 0.8125rem;
    color: var(--text2);
  }

  /* ── SUPPORTED OPERATORS ── */
  .operators-strip {
    padding: 1.5rem 0 2.5rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--operators-strip-bg);
    overflow: hidden;
  }

  .operators-strip .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .operators-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .operators-kicker {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text2);
  }

  .operators-note {
    font-size: 0.95rem;
    color: var(--text2);
  }

  .operators-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .operators-track {
    display: flex;
    width: max-content;
    gap: 1rem;
    animation: operatorsScroll 28s linear infinite;
  }

  .operators-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }

  .operator-logo {
    width: 164px;
    height: 72px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    border-radius: 18px;
    background: var(--operator-logo-bg);
    border: 1px solid var(--operator-logo-border);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
  }

  .operator-logo::before {
    content: '';
    position: absolute;
    inset: 20% 18%;
    background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 45%, transparent 75%);
    filter: blur(10px);
    pointer-events: none;
  }

  .operator-logo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.96;
  }

  @keyframes operatorsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 0.5rem)); }
  }

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

  /* ── SECTION COMMONS ── */
  section {
    position: relative;
    z-index: 1;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .section-sub {
    font-size: 1.0625rem;
    color: var(--text2);
    max-width: 540px;
    line-height: 1.7;
  }

  /* ── PROBLEM ── */
  .problem {
    padding: 6rem 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .problem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .problem-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .problem-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
  }

  .problem-card:hover { border-color: rgba(239,68,68,0.4); }

  .problem-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: #EF4444;
    border-radius: 3px 0 0 3px;
  }

  .problem-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
  }

  .problem-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FCA5A5;
    margin-bottom: 0.25rem;
  }

  .problem-card p {
    font-size: 0.9375rem;
    color: var(--text2);
    line-height: 1.6;
  }

  /* ── SOLUTION ── */
  .solution {
    padding: 7rem 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .solution-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }

  .solution-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .solution-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    transition: opacity 0.35s;
    opacity: 0.55;
  }

  .solution-card.mira-card::before { background: rgba(139,92,246,0.35); }
  .solution-card.desk-card::before { background: rgba(0,239,196,0.25); }

  .solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
  .solution-card:hover::before { opacity: 0.8; }
  .solution-card.mira-card:hover { border-color: rgba(139,92,246,0.5); }
  .solution-card.desk-card:hover { border-color: rgba(0,239,196,0.45); }

  .sol-product-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 0.625rem;
    position: relative;
  }

  .sol-product-name {
    font-family: 'Syne', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    position: relative;
  }

  .solution-card p {
    font-size: 0.9375rem;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .sol-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
    position: relative;
  }

  .sol-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    background: rgba(139,92,246,0.12);
    border: 1px solid rgba(139,92,246,0.25);
    color: #C4B5FD;
  }

  .sol-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    position: relative;
  }

  .sol-stat {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem 0.75rem;
    text-align: center;
  }

  .sol-stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: #C4B5FD;
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .sol-stat-label {
    font-size: 0.7rem;
    color: var(--text3);
    line-height: 1.3;
  }

  .sol-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 2rem;
    position: relative;
    flex: 1;
  }

  .sol-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    color: var(--text2);
  }

  .sol-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--text3);
  }

  .mira-card .sol-features li::before { background: #A78BFA; }
  .desk-card .sol-features li::before { background: var(--accent); }

  .sol-desk-mock {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.75rem;
    position: relative;
  }

  .sol-mock-input {
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
    color: var(--text2);
    border-bottom: 1px solid var(--border);
    background: var(--surface2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .sol-mock-input::before {
    content: '🔍';
    font-size: 0.875rem;
    flex-shrink: 0;
  }

  .sol-mock-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
  }

  .sol-mock-result:last-child { border-bottom: none; }

  .sol-mock-result span:first-child { color: var(--text); }

  .sol-mock-result span:last-child {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--accent);
  }

  .sol-mock-result-more {
    justify-content: center;
    color: var(--text3) !important;
    font-size: 0.75rem !important;
  }

  .sol-mock-result-more span { color: var(--text3) !important; }

  .sol-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    position: relative;
    margin-top: auto;
  }

  .sol-cta-mira {
    background: rgba(139,92,246,0.15);
    color: #C4B5FD;
    border: 1px solid rgba(139,92,246,0.3);
  }

  .sol-cta-mira:hover {
    background: rgba(139,92,246,0.25);
    border-color: rgba(139,92,246,0.5);
    transform: translateY(-2px);
  }

  .sol-cta-desk {
    background: rgba(0,239,196,0.1);
    color: var(--accent);
    border: 1px solid rgba(0,239,196,0.25);
  }

  .sol-cta-desk:hover {
    background: rgba(0,239,196,0.18);
    border-color: rgba(0,239,196,0.45);
    transform: translateY(-2px);
  }

  /* ── MIRA HIGHLIGHT ── */
  .mira-section {
    padding: 7rem 0;
  }

  .mira-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .mira-chat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
  }

  .chat-header {
    background: var(--surface2);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
  }

  .chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mira), #C084FC);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .chat-name {
    font-weight: 600;
    font-size: 0.9375rem;
  }

  .chat-status {
    font-size: 0.75rem;
    color: var(--green);
  }

  .chat-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .msg {
    display: flex;
    gap: 0.625rem;
    align-items: flex-end;
  }

  .msg.user { flex-direction: row-reverse; }

  .msg-bubble {
    max-width: 75%;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .msg.ai .msg-bubble {
    background: var(--surface2);
    color: var(--text);
    border-bottom-left-radius: 4px;
  }

  .msg.user .msg-bubble {
    background: var(--accent);
    color: white;
    border-bottom-right-radius: 4px;
  }

  .msg-time {
    font-size: 0.6875rem;
    color: var(--text3);
    margin-bottom: 0.125rem;
  }

  .msg-response-time {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--green-pale);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 100px;
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    color: var(--green);
    font-weight: 600;
    margin-top: 0.25rem;
  }

  /* ── HOW IT WORKS ── */
  .how {
    padding: 7rem 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
  }

  .how-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
  }

  .steps::before {
    content: '';
    position: absolute;
    top: 2.25rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--border), var(--border), transparent);
  }

  .step {
    text-align: center;
    position: relative;
  }

  .step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
  }

  .step h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .step p {
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.6;
  }


  /* ── SOCIAL PROOF ── */
  .proof {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
  }

  .proof-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .testimonial {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s;
  }

  .testimonial:hover {
    border-color: rgba(0,239,196,0.3);
    transform: translateY(-3px);
  }

  .test-quote {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    line-height: 1;
  }

  .test-text {
    font-size: 0.9375rem;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .test-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .test-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid rgba(0,239,196,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
  }

  .test-name {
    font-weight: 600;
    font-size: 0.9375rem;
  }

  .test-company {
    font-size: 0.8125rem;
    color: var(--text3);
  }

  /* ── CTA ── */
  .cta-section {
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

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

  .cta-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.1;
  }

  .cta-section p {
    font-size: 1.125rem;
    color: var(--text2);
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-note {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--text3);
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
    background: var(--bg);
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text2);
  }

  .footer-logo span { color: var(--accent); }

  .footer-text {
    font-size: 0.875rem;
    color: var(--text3);
  }

  /* ── MODAL ── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay-bg);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .modal-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .modal {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 480px;
    transform: translateY(20px);
    transition: transform 0.3s;
  }

  .modal-overlay.open .modal { transform: translateY(0); }

  .modal h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .modal p {
    color: var(--text2);
    font-size: 0.9375rem;
    margin-bottom: 1.75rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text2);
    margin-bottom: 0.5rem;
  }

  .form-group input, .form-group select {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input:focus,
  .form-group select:focus { border-color: var(--accent); }

  .form-group select option { background: var(--bg3); }

  .modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--surface2);
    border: none;
    color: var(--text2);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .modal-close:hover { color: var(--text); background: var(--border); }

  .modal { position: relative; }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .problem-inner,
    .mira-inner { gap: 3rem; }
    .featured-inner { gap: 1.75rem; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .testimonials { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    nav {
      height: 60px;
      padding: 0 1rem;
    }
    .nav-links { display: none; }
    .nav-mobile-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .lang-switcher {
      gap: 0.15rem;
      padding: 0.15rem;
    }
    .lang-btn {
      min-width: 34px;
      height: 32px;
      padding: 0 0.5rem;
      font-size: 0.68rem;
    }
    .hero {
      min-height: auto;
      padding: 6.5rem 1rem 2.75rem;
    }
    .hero-glow {
      width: 460px;
      height: 320px;
      top: 14%;
    }
    .hero-grid { background-size: 40px 40px; }
    .hero-badge {
      margin-bottom: 1.25rem;
      padding: 0.4rem 0.8rem;
      font-size: 0.75rem;
      line-height: 1.4;
      flex-wrap: wrap;
      justify-content: center;
    }
    .hero h1 {
      font-size: clamp(2.1rem, 11vw, 3.4rem);
      margin-bottom: 1rem;
    }
    .hero-sub {
      font-size: 0.98rem;
      line-height: 1.65;
      margin-bottom: 1.5rem;
    }
    .hero-actions {
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }
    .btn-primary,
    .btn-secondary {
      width: 100%;
      justify-content: center;
      padding: 0.95rem 1.15rem;
    }
    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }
    .stat-pill {
      min-width: 0;
      border-radius: 18px;
      padding: 0.85rem 0.9rem;
      align-items: flex-start;
      flex-direction: column;
      gap: 0.2rem;
    }
    .stat-pill .num { font-size: 1rem; }
    .stat-pill .label { font-size: 0.75rem; line-height: 1.35; }
    .operators-strip { padding: 1.25rem 0 2rem; }
    .operators-label {
      align-items: flex-start;
      justify-content: flex-start;
    }
    .operators-note { font-size: 0.875rem; }
    .operators-track { animation-duration: 22s; }
    .operator-logo {
      width: 132px;
      height: 60px;
      padding: 0.75rem 1rem;
      border-radius: 16px;
    }
    .container { padding: 0 1rem; }
    .section-title {
      font-size: clamp(1.6rem, 8vw, 2.2rem);
      line-height: 1.12;
    }
    .section-sub {
      font-size: 0.98rem;
      line-height: 1.65;
    }
    .problem,
    .solution,
    .mira-section,
    .how,
    .proof,
    .cta-section {
      padding: 4.5rem 0;
    }
    .problem-inner,
    .solution-grid,
    .mira-inner { grid-template-columns: 1fr; gap: 2rem; }
    .solution-header,
    .how-header,
    .proof-header { margin-bottom: 2.5rem; }
    .problem-card,
    .solution-card,
    .testimonial { padding: 1.25rem; }
    .sol-stats { grid-template-columns: repeat(3, 1fr); }
    .steps {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
    .steps::before { display: none; }
    .step {
      text-align: left;
      padding-left: 3.5rem;
    }
    .step-num {
      position: absolute;
      left: 0;
      top: 0;
      margin: 0;
    }
    .agent-row {
      grid-template-columns: 1fr;
      gap: 0.9rem;
      padding: 0;
      border-bottom: none;
    }
    .agent-dot-wrap {
      align-items: flex-start;
      padding-top: 0;
    }
    .agent-card {
      grid-template-columns: 1fr;
      padding: 1.1rem;
    }
    .agent-trigger {
      min-width: 0;
      width: 100%;
      text-align: left;
    }
    .agent-badge {
      display: inline-flex;
      margin-left: 0;
      margin-top: 0.4rem;
    }
    .mira-chat {
      border-radius: 18px;
      box-shadow: var(--shadow-soft);
    }
    .chat-body { padding: 1rem; }
    .msg-bubble {
      max-width: 88%;
      font-size: 0.84rem;
    }
    .testimonials { grid-template-columns: 1fr; }
    .cta-section::before {
      width: 360px;
      height: 260px;
    }
    .cta-section p {
      font-size: 1rem;
      margin-bottom: 1.75rem;
    }
    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }
    .modal-overlay {
      align-items: flex-end;
      padding: 0.75rem;
    }
    .modal {
      max-width: none;
      border-radius: 20px 20px 0 0;
      padding: 1.4rem 1rem 1rem;
    }

  }

  @media (max-width: 480px) {
    .hero { padding-top: 6rem; }
    .hero-stats { grid-template-columns: 1fr; }
    .operators-kicker { font-size: 0.74rem; }
    .operators-note { font-size: 0.82rem; }
    .operator-logo {
      width: 118px;
      height: 56px;
    }
    .problem-card {
      padding: 1.1rem 1rem 1.1rem 1.15rem;
      gap: 0.9rem;
    }
    .problem-card h3 { font-size: 1.25rem; }
    .sol-icon,
    .step-num,
    .agent-dot {
      width: 42px;
      height: 42px;
    }
    .price-amount { font-size: 2.2rem; }
    .footer-inner { align-items: center; text-align: center; }
  }

  /* ── FAQ ── */
  .faq {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
  }

  .faq-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
  }

  .faq-item.open {
    border-color: rgba(0,239,196,0.35);
  }

  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
  }

  .faq-q:hover { color: var(--accent); }

  .faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--border);
    position: relative;
    transition: border-color 0.3s, background 0.3s, transform 0.35s;
  }

  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--text2);
    border-radius: 2px;
    transition: opacity 0.25s, background 0.2s;
  }

  .faq-icon::before {
    width: 10px;
    height: 1.5px;
    transform: translate(-50%, -50%);
  }

  .faq-icon::after {
    width: 1.5px;
    height: 10px;
    transform: translate(-50%, -50%);
  }

  .faq-item.open .faq-icon {
    border-color: var(--accent);
    background: var(--accent-glow);
    transform: rotate(45deg);
  }

  .faq-item.open .faq-icon::before,
  .faq-item.open .faq-icon::after {
    background: var(--accent);
  }

  .faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
  }

  .faq-item.open .faq-a {
    grid-template-rows: 1fr;
  }

  .faq-a-inner {
    overflow: hidden;
  }

  .faq-a-inner p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--text2);
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .faq { padding: 4.5rem 0; }
    .faq-q {
      padding: 1rem 1.25rem;
      font-size: 0.9375rem;
    }
    .faq-a-inner p { padding: 0 1.25rem 1rem; }
  }
