
  :root {
    --bg: #030712;
    --bg2: #0a0f1e;
    --bg3: #0d1526;
    --cyan: #00d4ff;
    --cyan2: #0099cc;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --teal: #14b8a6;
    --text: #f0f6ff;
    --text2: #94a3b8;
    --text3: #64748b;
    --border: rgba(0,212,255,0.12);
    --border2: rgba(59,130,246,0.2);
    --glow: 0 0 40px rgba(0,212,255,0.15);
    --glow2: 0 0 60px rgba(139,92,246,0.2);
  }

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

  html { scroll-behavior: smooth; }

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

  /* ===== ANIMATED BG ===== */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 50% at 20% 10%, rgba(0,212,255,0.07) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139,92,246,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 50% 60% at 50% 50%, rgba(20,184,166,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* ===== GRID PATTERN ===== */
  body::after {
    content: '';
    position: fixed;
    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: 50px 50px;
    pointer-events: none;
    z-index: 0;
  }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(3,7,18,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .logo-box {
    width: 42px; height: 42px;
    border-radius: 10px;
    border: 1px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    color: var(--cyan);
    box-shadow: 0 0 15px rgba(0,212,255,0.3);
    position: relative;
    overflow: hidden;
  }

  .logo-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(0,212,255,0.2), transparent, rgba(139,92,246,0.2));
    border-radius: 10px;
  }

  .logo-img {
    width: 48px; height: 48px;
    border-radius: 10px;
    object-fit: contain;
    background: white;
    padding: 3px;
  }

  .logo-text { color: var(--text); font-weight: 700; font-size: 16px; line-height: 1.2; }
  .logo-text span { color: var(--cyan); }

  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { color: var(--text2); text-decoration: none; font-size: 14px; transition: color 0.2s; }
  .nav-links a:hover { color: var(--cyan); }

  /* ===== DROPDOWN ===== */
  .nav-dropdown { position: relative; }
  .nav-dropdown > a {
    display: flex; align-items: center; gap: 5px; cursor: pointer;
  }
  .nav-dropdown > a::after {
    content: '▾'; font-size: 11px; transition: transform 0.3s;
  }
  .nav-dropdown.open > a { color: var(--cyan); }
  .nav-dropdown.open > a::after { transform: rotate(180deg); }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    width: 300px;
    background: rgba(6,12,26,0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1100;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(0,212,255,0.08);
  }
  .nav-dropdown.open .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .dropdown-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; border-radius: 10px; cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
  }
  .dropdown-item:hover { background: rgba(0,212,255,0.07); }
  .di-icon {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.12);
  }
  .di-text { text-align: right; flex: 1; }
  .di-title { font-size: 13px; font-weight: 600; color: var(--text); }
  .di-sub   { font-size: 11px; color: var(--text3); margin-top: 1px; }

  /* ===== SERVICE MODAL ===== */
  .svc-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s;
    padding: 20px;
  }
  .svc-overlay.open { opacity: 1; visibility: visible; }
  .svc-modal {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 20px;
    max-width: 620px; width: 100%;
    padding: 36px;
    transform: scale(0.92);
    transition: transform 0.3s;
    position: relative;
    box-shadow: 0 0 80px rgba(0,212,255,0.12);
  }
  .svc-overlay.open .svc-modal { transform: scale(1); }
  .modal-close {
    position: absolute; top: 18px; left: 18px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--text2); font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s;
  }
  .modal-close:hover { background: rgba(255,255,255,0.12); color: var(--text); }
  .modal-icon {
    width: 64px; height: 64px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; margin-bottom: 20px;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.2);
  }
  .modal-title-en { font-size: 13px; color: var(--cyan); letter-spacing: 1px; margin-bottom: 4px; }
  .modal-title-ar { font-size: 26px; font-weight: 900; margin-bottom: 16px; }
  .modal-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--purple), transparent);
    margin-bottom: 20px;
  }
  .modal-desc-ar {
    font-size: 15px; color: var(--text2); line-height: 1.9;
    text-align: right; direction: rtl; margin-bottom: 16px;
  }
  .modal-desc-en {
    font-size: 14px; color: var(--text3); line-height: 1.8; margin-bottom: 24px;
  }
  .modal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
  .modal-tag {
    padding: 5px 14px; border-radius: 100px; font-size: 12px;
    border: 1px solid rgba(0,212,255,0.2);
    background: rgba(0,212,255,0.06); color: var(--cyan);
  }
  .modal-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border: none; border-radius: 10px;
    color: #000; font-family: 'Cairo', sans-serif;
    font-size: 14px; font-weight: 700; cursor: pointer;
    text-decoration: none; transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,212,255,0.3);
  }
  .modal-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,255,0.45); }

  .nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--cyan2), var(--blue));
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0,153,204,0.3);
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(0,153,204,0.5); }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.25);
    border-radius: 100px;
    font-size: 13px;
    color: var(--cyan);
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }

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

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

  .hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.1s both;
  }

  .hero h1 .line2 { color: var(--cyan); display: block; }
  .hero h1 .line3 {
    background: linear-gradient(90deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
  }

  .hero-sub {
    font-size: 17px;
    color: var(--text2);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeUp 0.8s ease 0.2s both;
  }

  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.3s both;
  }

  .btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border: none;
    border-radius: 10px;
    color: #000;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 30px rgba(0,212,255,0.35);
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(0,212,255,0.5); }

  .btn-secondary {
    padding: 14px 32px;
    background: transparent;
    border: 1px solid var(--border2);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
  }
  .btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.8s ease 0.4s both;
    flex-wrap: wrap;
  }

  .stat-item { text-align: center; }
  .stat-num { font-size: 32px; font-weight: 900; color: var(--cyan); line-height: 1; }
  .stat-label { font-size: 12px; color: var(--text3); margin-top: 4px; }

  /* ===== FLOATING CARDS ===== */
  .hero-visual {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    pointer-events: none;
    animation: fadeUp 0.8s ease 0.5s both;
  }

  @media (max-width: 1100px) { .hero-visual { display: none; } }

  .float-card {
    background: rgba(10,15,30,0.9);
    border: 1px solid var(--border2);
    border-radius: 14px;
    padding: 16px 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 12px;
  }

  .fc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
  .fc-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }
  .fc-icon.cyan { background: rgba(0,212,255,0.12); }
  .fc-icon.purple { background: rgba(139,92,246,0.15); }
  .fc-icon.teal { background: rgba(20,184,166,0.12); }
  .fc-title { font-size: 13px; font-weight: 600; }
  .fc-sub { font-size: 11px; color: var(--text3); }
  .fc-bar {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
  }
  .fc-fill { height: 100%; border-radius: 10px; animation: grow 2s ease 1s both; }
  .fc-fill.c { background: linear-gradient(90deg, var(--cyan), var(--blue)); width: 87%; }
  .fc-fill.p { background: linear-gradient(90deg, var(--purple), var(--blue)); width: 94%; }
  .fc-fill.t { background: linear-gradient(90deg, var(--teal), var(--cyan)); width: 78%; }

  @keyframes grow { from { width: 0; } }

  .float-card:nth-child(1) { animation: float1 6s ease-in-out infinite; }
  .float-card:nth-child(2) { animation: float2 7s ease-in-out infinite; margin-right: 40px; }
  .float-card:nth-child(3) { animation: float1 5s ease-in-out infinite 1s; margin-right: 20px; }

  @keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  @keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }

  /* ===== SECTIONS ===== */
  section { padding: 100px 0; position: relative; z-index: 1; }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    border: 1px solid rgba(139,92,246,0.3);
    border-radius: 100px;
    font-size: 12px;
    color: var(--purple);
    margin-bottom: 16px;
    letter-spacing: 1px;
  }

  .section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section-title span { color: var(--cyan); }

  .section-sub {
    font-size: 16px;
    color: var(--text2);
    max-width: 560px;
    line-height: 1.8;
  }

  /* ===== SERVICES ===== */
  .services { background: var(--bg2); }

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

  .service-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .service-card:hover {
    border-color: rgba(0,212,255,0.3);
    transform: translateY(-4px);
    box-shadow: var(--glow);
  }

  .service-card:hover::before { opacity: 1; }

  .svc-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
  }

  .svc-icon.c1 { background: rgba(0,212,255,0.1); }
  .svc-icon.c2 { background: rgba(139,92,246,0.12); }
  .svc-icon.c3 { background: rgba(20,184,166,0.1); }
  .svc-icon.c4 { background: rgba(59,130,246,0.12); }
  .svc-icon.c5 { background: rgba(236,72,153,0.1); }
  .svc-icon.c6 { background: rgba(245,158,11,0.1); }

  .svc-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
  .svc-desc { font-size: 14px; color: var(--text2); line-height: 1.7; }

  .svc-tags { display: flex; gap: 6px; margin-top: 16px; flex-wrap: wrap; }
  .svc-tag {
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    background: rgba(0,212,255,0.07);
    border: 1px solid rgba(0,212,255,0.15);
    color: var(--cyan);
  }

  /* ===== SECTORS ===== */
  .sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 56px;
  }

  .sector-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }

  .sector-card:hover {
    border-color: rgba(139,92,246,0.4);
    transform: translateY(-4px);
    box-shadow: var(--glow2);
  }

  .sector-emoji { font-size: 48px; margin-bottom: 16px; display: block; }
  .sector-name { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
  .sector-desc { font-size: 13px; color: var(--text3); line-height: 1.6; }

  /* ===== HOW IT WORKS ===== */
  .how { background: var(--bg2); }

  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0;
    margin-top: 56px;
    position: relative;
  }

  .steps::before {
    content: '';
    position: absolute;
    top: 38px;
    right: 12.5%;
    left: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), var(--teal), transparent);
    opacity: 0.3;
  }

  @media (max-width: 768px) { .steps::before { display: none; } }

  .step {
    text-align: center;
    padding: 0 20px;
    position: relative;
  }

  .step-num {
    width: 76px; height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    border: 2px solid;
    transition: all 0.4s;
  }

  .step:nth-child(1) .step-num { border-color: var(--cyan); color: var(--cyan); background: rgba(0,212,255,0.08); }
  .step:nth-child(2) .step-num { border-color: var(--blue); color: var(--blue); background: rgba(59,130,246,0.08); }
  .step:nth-child(3) .step-num { border-color: var(--purple); color: var(--purple); background: rgba(139,92,246,0.08); }
  .step:nth-child(4) .step-num { border-color: var(--teal); color: var(--teal); background: rgba(20,184,166,0.08); }

  .step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
  .step-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }

  /* ===== WHY ===== */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 56px;
  }

  @media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

  .why-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 12px;
    transition: background 0.3s;
  }
  .why-feature:hover { background: rgba(0,212,255,0.04); }

  .wf-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: var(--cyan);
  }

  .wf-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
  .wf-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }

  /* terminal */
  .terminal {
    background: #050b14;
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0,212,255,0.1);
  }
  .terminal-bar {
    background: rgba(0,212,255,0.06);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(0,212,255,0.1);
  }
  .tb-dot { width: 10px; height: 10px; border-radius: 50%; }
  .tb-dot:nth-child(1) { background: #ff5f57; }
  .tb-dot:nth-child(2) { background: #febc2e; }
  .tb-dot:nth-child(3) { background: #28c840; }
  .tb-title { font-size: 12px; color: var(--text3); margin-right: auto; font-family: monospace; }
  .terminal-body { padding: 20px; font-size: 13px; line-height: 2; direction: rtl; }
  .tl { display: flex; gap: 10px; margin-bottom: 4px; }
  .tl-time { color: var(--text3); min-width: 70px; font-family: monospace; font-size: 12px; }
  .tl-user { color: var(--cyan); font-weight: 600; min-width: 60px; }
  .tl-msg { color: #e2e8f0; }
  .tl.ai .tl-user { color: var(--purple); }
  .tl.sys .tl-msg { color: var(--teal); }
  .tl.ok .tl-msg { color: #4ade80; }
  .cursor { display: inline-block; width: 8px; height: 14px; background: var(--cyan); animation: blink 1s infinite; vertical-align: middle; border-radius: 1px; }
  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

  /* ===== PRICING ===== */
  .pricing { background: var(--bg2); }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 56px;
    align-items: start;
  }
  .price-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }
  .price-card.featured {
    border-color: var(--cyan);
    box-shadow: 0 0 40px rgba(0,212,255,0.15);
  }
  .price-card.featured::after {
    content: 'الأكثر طلباً';
    position: absolute;
    top: 18px;
    left: 20px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #000;
  }
  .price-card:hover { transform: translateY(-4px); }
  .plan-name { font-size: 13px; font-weight: 600; color: var(--text3); letter-spacing: 2px; margin-bottom: 8px; }
  .plan-price { font-size: 42px; font-weight: 900; margin-bottom: 4px; color: var(--text); }
  .plan-price span { font-size: 14px; color: var(--text3); font-weight: 400; }
  .plan-desc { font-size: 13px; color: var(--text2); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); line-height: 1.6; }
  .plan-features { list-style: none; margin-bottom: 28px; }
  .plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 12px; color: var(--text2); }
  .plan-features li::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 16px; }
  .plan-btn {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
  }
  .plan-btn.solid {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #000;
    box-shadow: 0 4px 20px rgba(0,212,255,0.3);
  }
  .plan-btn.outline {
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--text);
  }
  .plan-btn:hover { transform: translateY(-2px); }

  /* ===== CTA ===== */
  .cta {
    text-align: center;
    padding: 100px 0;
  }
  .cta-box {
    background: linear-gradient(135deg, rgba(0,212,255,0.07), rgba(139,92,246,0.07));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 70px 40px;
    position: relative;
    overflow: hidden;
  }
  .cta-box::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  }
  .cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  }
  .cta h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 900; margin-bottom: 16px; position: relative; z-index: 1; }
  .cta p { font-size: 16px; color: var(--text2); margin-bottom: 36px; position: relative; z-index: 1; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
  .cta-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    color: var(--text3);
    font-size: 14px;
    position: relative; z-index: 1;
  }
  .cta-email a { color: var(--cyan); text-decoration: none; }
  .cta-email a:hover { text-decoration: underline; }

  /* ===== FOOTER ===== */
  footer {
    background: #020509;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    position: relative; z-index: 1;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  .footer-brand p { font-size: 13px; color: var(--text3); margin-top: 14px; line-height: 1.7; max-width: 280px; }
  .footer-col-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 18px; letter-spacing: 1px; }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a { color: var(--text3); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-links a:hover { color: var(--cyan); }
  .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(--text3);
    flex-wrap: wrap;
    gap: 12px;
  }

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

  .text-center { text-align: center; }

  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border2), transparent);
    margin: 0;
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-stats { gap: 24px; }
    .steps::before { display: none; }
  }
  .lang-switcher {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    transition: all 0.2s;
  }
  .lang-switcher:hover { border-color: var(--cyan); color: var(--cyan); }


  /* ===== FLOATING ILLUSTRATIONS ===== */
  .illustrations-section {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .illus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .illus-card {
    text-align: center;
    position: relative;
  }

  .illus-svg-wrap {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    position: relative;
  }

  .illus-card:nth-child(1) .illus-svg-wrap { animation: floatA 5s ease-in-out infinite; }
  .illus-card:nth-child(2) .illus-svg-wrap { animation: floatB 6s ease-in-out infinite 0.5s; }
  .illus-card:nth-child(3) .illus-svg-wrap { animation: floatA 5.5s ease-in-out infinite 1s; }

  @keyframes floatA {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-18px); }
  }
  @keyframes floatB {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50%       { transform: translateY(-14px) rotate(1deg); }
  }

  .illus-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
  }
  .illus-desc {
    font-size: 13px;
    color: var(--text3);
    line-height: 1.7;
    max-width: 200px;
    margin: 0 auto;
  }

  /* Glow rings behind illustrations */
  .illus-svg-wrap::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
    animation: pulse-ring 3s ease-in-out infinite;
  }
  .illus-card:nth-child(2) .illus-svg-wrap::before {
    background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
  }
  .illus-card:nth-child(3) .illus-svg-wrap::before {
    background: radial-gradient(circle, rgba(20,184,166,0.09) 0%, transparent 70%);
  }

  @keyframes pulse-ring {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
  }

  @media (max-width: 768px) {
    .illus-grid { grid-template-columns: 1fr; gap: 40px; }
    .illus-svg-wrap { width: 180px; height: 180px; }
  }


  .lang-switcher {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 12px; border: 1px solid var(--border);
    border-radius: 8px; text-decoration: none;
    font-size: 13px; font-weight: 600; color: var(--text2);
    transition: all 0.2s;
  }
  .lang-switcher:hover { border-color: var(--cyan); color: var(--cyan); }
