/*
Theme Name: GADI World
Version: 1.4.0
License: Private
Text Domain: gadi-world
*/

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

  :root {
    --sky: #38BDF8;
    --sky-dim: #0EA5E9;
    --sky-glow: rgba(56,189,248,0.15);
    --sky-border: rgba(56,189,248,0.25);
    --bg: #080C12;
    --bg2: #0D1219;
    --bg3: #111820;
    --white: #F0F6FF;
    --muted: #6B8399;
    --card: rgba(13,18,25,0.85);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom Cursor */
  .cursor {
    position: fixed; width: 10px; height: 10px;
    background: var(--sky); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: screen;
  }
  .cursor-ring {
    position: fixed; width: 38px; height: 38px;
    border: 1px solid rgba(56,189,248,0.5); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.18s ease;
  }

  /* Noise overlay */
  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.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 1; opacity: 0.4;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 22px 5%;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(8,12,18,0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(56,189,248,0.08);
    transition: all 0.3s ease;
  }
  nav.scrolled { padding: 14px 5%; }

  .nav-logo {
    display: flex; align-items: center;
    text-decoration: none;
  }
  .nav-logo svg { display: block; }
  .nav-logo img { height: 44px; width: auto; display: block; }
  .nav-logo a { display: flex; align-items: center; }

  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: var(--muted); font-size: 0.8rem; font-weight: 500;
    text-decoration: none; letter-spacing: 0.12em; text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--sky); }

  .nav-cta {
    padding: 10px 24px; background: transparent;
    border: 1px solid var(--sky-border); color: var(--sky);
    font-family: 'Montserrat', sans-serif; font-size: 0.78rem;
    letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
    cursor: none; border-radius: 0;
    transition: all 0.25s ease; text-decoration: none;
  }
  .nav-cta:hover { background: var(--sky-glow); border-color: var(--sky); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; }
  .hamburger span { display: block; width: 24px; height: 1px; background: var(--sky); transition: 0.3s; }
  .hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; padding: 120px 6% 80px;
    overflow: hidden;
  }

  /* Animated grid background */
  .grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(56,189,248,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    animation: gridDrift 20s ease-in-out infinite alternate;
  }
  @keyframes gridDrift { from { transform: translateY(0); } to { transform: translateY(-20px); } }

  /* Orbs */
  .orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
  .orb-1 {
    width: 600px; height: 600px; top: -200px; left: -200px;
    background: radial-gradient(circle, rgba(56,189,248,0.12), transparent 70%);
    animation: orbFloat 12s ease-in-out infinite;
  }
  .orb-2 {
    width: 400px; height: 400px; bottom: -100px; right: -100px;
    background: radial-gradient(circle, rgba(14,165,233,0.1), transparent 70%);
    animation: orbFloat 15s ease-in-out infinite reverse;
  }
  @keyframes orbFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
  }

  .hero-inner {
    position: relative; z-index: 2;
    text-align: center; max-width: 800px; margin: 0 auto;
  }

  .badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border: 1px solid var(--sky-border);
    border-radius: 100px; background: var(--sky-glow);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sky); font-weight: 600;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease both;
  }
  .badge-dot {
    width: 6px; height: 6px; background: var(--sky);
    border-radius: 50%; animation: pulse 2s ease infinite; flex-shrink: 0;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 700; line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    animation: fadeUp 0.9s 0.1s ease both;
  }

  .hero-title .line-sky { display: block; white-space: nowrap;
    display: block;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    font-weight: 600;
    background: linear-gradient(90deg, var(--sky), #7DD3FC, var(--sky));
    background-size: 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
    margin-top: 4px; line-height: 1.3;
  }
  @keyframes shimmer { 0% { background-position: 0%; } 100% { background-position: 200%; } }

  .hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    color: var(--muted); font-weight: 400; line-height: 1.85;
    max-width: 540px; margin: 24px auto 40px;
    animation: fadeUp 1s 0.2s ease both;
  }

  .hero-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; flex-wrap: wrap;
    animation: fadeUp 1s 0.3s ease both;
  }

  .btn-primary {
    padding: 13px 32px;
    background: var(--sky); color: var(--bg);
    font-family: 'Montserrat', sans-serif; font-weight: 600;
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; border-radius: 0; border: none; cursor: none;
    position: relative; overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 32px rgba(56,189,248,0.25);
  }
  .btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: white; opacity: 0; transition: opacity 0.3s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(56,189,248,0.45); }
  .btn-primary:hover::after { opacity: 0.1; }

  .btn-ghost {
    padding: 13px 32px; background: transparent;
    border: 1px solid rgba(255,255,255,0.12); color: var(--white);
    font-family: 'Montserrat', sans-serif; font-weight: 400;
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; border-radius: 0; cursor: none;
    transition: all 0.3s ease;
  }
  .btn-ghost:hover { border-color: var(--sky-border); color: var(--sky); background: var(--sky-glow); }

  .hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 28px; margin-top: 56px;
    padding-top: 32px; border-top: 1px solid rgba(56,189,248,0.08);
    animation: fadeUp 1s 0.5s ease both;
    flex-wrap: wrap;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem; font-weight: 700; color: var(--white);
    line-height: 1;
  }
  .stat-num span { color: var(--sky); }
  .stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; color: var(--muted);
    letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px;
  }
  .stat-divider { width: 1px; height: 36px; background: rgba(56,189,248,0.15); }

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

  /* SECTION BASE */
  section { padding: 100px 5%; position: relative; z-index: 2; }
  .section-label {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--sky); font-weight: 500; margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
    line-height: 1.15; margin-bottom: 20px;
  }
  .section-sub { color: var(--muted); font-size: 1rem; line-height: 1.75; max-width: 520px; }

  /* ABOUT */
  .about { background: var(--bg2); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto;
  }
  .about-visual { position: relative; aspect-ratio: 1; max-width: 420px; }

  .about-kicker {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem; font-weight: 400; font-style: italic;
    color: var(--muted); margin-bottom: 12px; line-height: 1.4;
  }
  .about-kicker span { color: var(--sky); font-style: italic; }

  .about .section-title {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    line-height: 1.25; margin-bottom: 18px;
  }
  .about .section-sub { font-size: 0.9rem; line-height: 1.8; max-width: 100%; }

  /* Pillars */
  .pillars { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
  .pillar {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 15px 18px;
    background: rgba(56,189,248,0.03);
    border: 1px solid rgba(56,189,248,0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  .pillar:hover { background: rgba(56,189,248,0.07); border-color: var(--sky-border); transform: translateX(4px); }
  .pillar-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
  .pillar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--white); margin-bottom: 3px;
  }
  .pillar-text { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }
  .about-box {
    position: absolute; inset: 0;
    border: 1px solid var(--sky-border); border-radius: 4px;
    background: linear-gradient(135deg, rgba(56,189,248,0.05), transparent);
    overflow: hidden;
  }
  .about-box::before {
    content: ''; position: absolute; top: -1px; left: 20%; right: 20%;
    height: 2px; background: linear-gradient(90deg, transparent, var(--sky), transparent);
  }
  .about-center {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .about-ring {
    width: 220px; height: 220px; border-radius: 50%;
    border: 1px solid var(--sky-border);
    display: flex; align-items: center; justify-content: center;
    position: relative; animation: rotate 20s linear infinite;
  }
  @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  .about-ring::before {
    content: ''; position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 8px; background: var(--sky); border-radius: 50%;
  }
  .about-inner {
    width: 140px; height: 140px; border-radius: 50%;
    border: 1px solid rgba(56,189,248,0.1);
    background: radial-gradient(circle, rgba(56,189,248,0.1), transparent);
    display: flex; align-items: center; justify-content: center;
    animation: rotate 20s linear infinite reverse;
  }
  .about-icon { font-size: 2.5rem; }
  .about-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(56,189,248,0.15) 1px, transparent 1px);
    background-size: 20px 20px;
  }

  /* FEATURES */
  .features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; max-width: 1100px; margin: 52px auto 0;
  }
  .feature-card {
    background: var(--bg2); padding: 36px 32px;
    border: 1px solid rgba(255,255,255,0.04);
    position: relative; overflow: hidden;
    transition: all 0.35s ease; cursor: none;
    display: flex; flex-direction: column;
  }
  .feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 1px; background: linear-gradient(90deg, transparent, var(--sky), transparent);
    opacity: 0; transition: opacity 0.35s;
  }
  .feature-card:hover { background: var(--bg3); transform: translateY(-3px); }
  .feature-card:hover::before { opacity: 1; }
  .feature-icon {
    font-size: 1.5rem; margin-bottom: 18px;
    display: inline-flex; width: 46px; height: 46px;
    align-items: center; justify-content: center;
    background: var(--sky-glow); border: 1px solid var(--sky-border);
    border-radius: 10px; flex-shrink: 0;
  }
  .feature-cat {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sky); margin-bottom: 8px;
  }
  .feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; line-height: 1.3;
  }
  .feature-text { color: var(--muted); font-size: 0.82rem; line-height: 1.75; flex: 1; }
  .feature-list {
    list-style: none; margin-top: 16px;
    display: flex; flex-direction: column; gap: 7px;
    padding-top: 16px; border-top: 1px solid rgba(56,189,248,0.08);
  }
  .feature-list li {
    font-size: 0.75rem; color: var(--muted);
    display: flex; align-items: center; gap: 8px;
    font-family: 'Montserrat', sans-serif; letter-spacing: 0.04em;
  }
  .feature-list li::before { content: '✦'; color: var(--sky); font-size: 0.5rem; flex-shrink: 0; }

  /* WHO IT'S FOR */
  .who { background: var(--bg2); }
  .who-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto;
  }
  .who-list { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
  .who-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px 24px;
    background: var(--card); border: 1px solid rgba(56,189,248,0.08);
    border-radius: 4px; backdrop-filter: blur(10px);
    transition: border-color 0.3s;
  }
  .who-item:hover { border-color: var(--sky-border); }
  .who-check {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--sky-glow); border: 1px solid var(--sky-border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--sky); font-size: 0.65rem; margin-top: 2px;
  }
  .who-item-title { font-weight: 500; font-size: 0.95rem; margin-bottom: 4px; }
  .who-item-text { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

  .who-quote {
    background: var(--bg3); border: 1px solid var(--sky-border);
    border-radius: 4px; padding: 48px 44px; position: relative;
    overflow: hidden;
  }
  .who-quote::before {
    content: '"';
    font-family: 'Montserrat', sans-serif;
    font-size: 10rem; line-height: 1; color: rgba(56,189,248,0.08);
    position: absolute; top: -20px; left: 24px;
    pointer-events: none;
  }
  .who-quote blockquote {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem; font-weight: 400; line-height: 1.5;
    color: var(--white); margin-bottom: 24px; position: relative; z-index: 1;
  }
  .who-author { display: flex; align-items: center; gap: 14px; }
  .who-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-dim), var(--sky));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; color: var(--bg);
  }
  .who-name { font-weight: 500; font-size: 0.9rem; }
  .who-role { font-size: 0.78rem; color: var(--muted); }

  /* TESTIMONIALS */
  .testimonials { overflow: hidden; padding: 100px 0; }
  .testimonials-header { text-align: center; margin-bottom: 60px; padding: 0 5%; }
  .testimonials-track {
    display: flex; gap: 24px;
    animation: scrollLeft 30s linear infinite;
    width: max-content;
  }
  @keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .testimonials-track:hover { animation-play-state: paused; }
  .t-card {
    width: 320px; flex-shrink: 0;
    background: var(--bg2); border: 1px solid rgba(56,189,248,0.1);
    border-radius: 4px; padding: 28px;
    transition: border-color 0.3s;
  }
  .t-card:hover { border-color: var(--sky-border); }
  .t-stars { color: var(--sky); font-size: 0.75rem; letter-spacing: 3px; margin-bottom: 16px; }
  .t-text { font-size: 0.9rem; line-height: 1.7; color: var(--muted); margin-bottom: 20px; }
  .t-author { display: flex; align-items: center; gap: 12px; }
  .t-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--sky-glow); border: 1px solid var(--sky-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 600; color: var(--sky);
  }
  .t-name { font-weight: 500; font-size: 0.85rem; }
  .t-role { font-size: 0.75rem; color: var(--muted); }

  /* PRICING */
  .pricing { background: var(--bg2); }
  .pricing-inner { max-width: 1100px; margin: 0 auto; }
  .pricing-header { text-align: center; margin-bottom: 56px; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .price-card {
    background: var(--bg3); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px; padding: 44px 36px;
    position: relative; overflow: hidden; transition: all 0.3s;
    display: flex; flex-direction: column;
  }
  .price-card.featured {
    border-color: var(--sky-border);
    background: linear-gradient(135deg, rgba(56,189,248,0.06), var(--bg3));
  }
  .price-card.featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: linear-gradient(90deg, transparent, var(--sky), transparent);
  }

  /* Blurred / Coming Soon cards */
  .price-card.locked {
    position: relative; overflow: hidden;
    border-color: rgba(255,255,255,0.04);
  }
  .price-card-blur {
    filter: blur(7px); pointer-events: none; user-select: none;
    flex: 1;
  }
  .price-card-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; z-index: 5;
    background: rgba(8,12,18,0.25);
    backdrop-filter: blur(2px);
  }
  .coming-soon-badge {
    font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 700; color: var(--sky);
    padding: 6px 18px; border: 1px solid var(--sky-border);
    border-radius: 100px; background: rgba(56,189,248,0.1);
    animation: pulse 2.5s ease infinite;
  }
  .coming-soon-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem; font-weight: 700; color: var(--white);
    letter-spacing: 0.04em;
  }

  .price-badge {
    display: inline-block; padding: 4px 12px; font-size: 0.65rem;
    letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
    background: var(--sky); color: var(--bg); border-radius: 100px;
    margin-bottom: 20px; align-self: flex-start;
  }
  .price-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem; font-weight: 600; margin-bottom: 8px;
  }
  .price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem; font-weight: 700; line-height: 1;
    margin: 16px 0 4px; color: var(--white);
  }
  .price-amount sup { font-size: 1.2rem; vertical-align: super; }
  .price-amount span { font-size: 0.95rem; color: var(--muted); font-weight: 400; }
  .price-billing { font-size: 0.78rem; color: var(--sky); margin-bottom: 12px; }
  .price-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
  .price-divider { height: 1px; background: rgba(56,189,248,0.1); margin-bottom: 24px; }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; flex: 1; }
  .price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; line-height: 1.5; }
  .price-features li::before { content: '✦'; color: var(--sky); font-size: 0.6rem; margin-top: 4px; flex-shrink: 0; }

  /* APPLICATION MODAL */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(8,12,18,0.92); backdrop-filter: blur(16px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px; opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal {
    background: var(--bg3); border: 1px solid var(--sky-border);
    border-radius: 6px; max-width: 580px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    padding: 52px 48px; position: relative;
    transform: translateY(24px);
    transition: transform 0.35s ease;
  }
  .modal-overlay.open .modal { transform: translateY(0); }
  .modal::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: linear-gradient(90deg, transparent, var(--sky), transparent);
  }
  .modal-close {
    position: absolute; top: 20px; right: 20px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(56,189,248,0.08); border: 1px solid var(--sky-border);
    color: var(--muted); font-size: 1.1rem; cursor: none;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }
  .modal-close:hover { color: var(--white); background: rgba(56,189,248,0.15); }
  .modal-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sky); margin-bottom: 10px; }
  .modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem; font-weight: 700; margin-bottom: 10px;
  }
  .modal-notice {
    font-size: 0.82rem; color: var(--muted); line-height: 1.65;
    margin-bottom: 32px; padding: 14px 18px;
    background: rgba(56,189,248,0.05); border-left: 2px solid var(--sky);
    border-radius: 0 4px 4px 0;
  }
  .modal-notice strong { color: var(--white); }

  .form-group { margin-bottom: 20px; }
  .form-label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
  .form-input, .form-select, .form-textarea {
    width: 100%; background: var(--bg2);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 3px;
    color: var(--white); font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem; padding: 13px 16px;
    transition: border-color 0.2s; outline: none;
    appearance: none;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--sky-border); background: rgba(13,18,25,0.9);
  }
  .form-input::placeholder, .form-textarea::placeholder { color: rgba(107,131,153,0.5); }
  .form-select { cursor: none; }
  .form-select option { background: var(--bg3); }
  .form-textarea { resize: vertical; min-height: 90px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-submit {
    width: 100%; padding: 16px; margin-top: 8px;
    background: var(--sky); color: var(--bg);
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
    border: none; border-radius: 0; cursor: none;
    transition: all 0.3s; box-shadow: 0 0 30px rgba(56,189,248,0.25);
  }
  .form-submit:hover { box-shadow: 0 0 50px rgba(56,189,248,0.45); transform: translateY(-1px); }

  .guarantee-badge {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 18px; font-size: 0.7rem;
    color: var(--muted); letter-spacing: 0.08em;
    animation: fadeUp 1s 0.4s ease both;
  }
  .guarantee-icon { font-size: 0.9rem; }

  .price-guarantee {
    text-align: center; margin-top: 12px;
    font-size: 0.72rem; color: var(--muted);
    letter-spacing: 0.06em;
  }

  /* CTA */
  .cta-section {
    text-align: center; padding: 120px 5%;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(56,189,248,0.07), transparent 70%);
    pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
  .cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 600;
    line-height: 1.1; margin-bottom: 20px;
  }
  .cta-sub { color: var(--muted); margin-bottom: 44px; font-size: 1rem; line-height: 1.75; }

  /* FOOTER */
  footer {
    border-top: 1px solid rgba(56,189,248,0.08);
    padding: 40px 5%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
  }
  .footer-logo {
    display: flex; align-items: center;
  }
  .footer-logo svg { display: block; }
  .footer-logo img { height: 38px; width: auto; display: block; }
  .footer-logo a { display: flex; align-items: center; }
  .footer-text { font-size: 0.78rem; color: var(--muted); }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: 0.78rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--sky); }

  /* Hide custom cursor on touch/mobile */
  @media (hover: none) and (pointer: coarse) {
    body { cursor: auto !important; }
    .cursor, .cursor-ring { display: none !important; }
    * { cursor: auto !important; }
    a, button, .nav-cta, .btn-primary, .btn-ghost, select,
    .hamburger, .form-submit, .form-select, .modal-close,
    .lang-toggle, .contact-send, .page-close { cursor: pointer !important; }
  }
  .reveal { opacity: 0; transform: translateY(32px); transition: all 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ═══════════════════════════════════════════════
     LANG TOGGLE BUTTON
  ═══════════════════════════════════════════════ */
  .lang-toggle {
    display: inline-flex; align-items: center;
    padding: 5px 9px;
    border: 1px solid rgba(56,189,248,0.25);
    border-radius: 2px;
    background: transparent;
    color: rgba(56,189,248,0.55);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem; font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 8px;
    vertical-align: middle;
    flex-shrink: 0;
  }
  .lang-toggle:hover { color: var(--sky); border-color: var(--sky-border); background: var(--sky-glow); }

  /* ═══════════════════════════════════════════════
     ARABIC / RTL OVERRIDES
  ═══════════════════════════════════════════════ */
  body.lang-ar { direction: rtl; }

  /* AR — hide EN text, show AR text */
  body.lang-ar .en { display: none !important; }
  body.lang-ar .ar { display: block !important; }
  body.lang-ar span.ar { display: inline !important; }
  body.lang-ar span.en { display: none !important; }

  /* EN — hide AR text (default) */
  .ar { display: none !important; }
  span.ar { display: none !important; }

  /* AR — all fonts → Tajawal */
  body.lang-ar h1, body.lang-ar h2, body.lang-ar h3,
  body.lang-ar .section-title, body.lang-ar .hero-title,
  body.lang-ar .cta-title, body.lang-ar .modal-title,
  body.lang-ar .feature-title, body.lang-ar .price-name,
  body.lang-ar .price-amount, body.lang-ar .who-quote blockquote,
  body.lang-ar .about-kicker {
    font-family: 'Tajawal', sans-serif;
    font-weight: 800; letter-spacing: 0;
  }
  body.lang-ar p, body.lang-ar li, body.lang-ar label,
  body.lang-ar .section-sub, body.lang-ar .hero-sub,
  body.lang-ar .pillar-text, body.lang-ar .feature-text,
  body.lang-ar .who-item-text, body.lang-ar .price-desc,
  body.lang-ar .cta-sub, body.lang-ar .modal-notice,
  body.lang-ar .stat-label, body.lang-ar .price-billing {
    font-family: 'Tajawal', sans-serif;
    font-weight: 400; letter-spacing: 0; line-height: 1.9;
  }
  body.lang-ar .badge, body.lang-ar .section-label,
  body.lang-ar .feature-cat, body.lang-ar .price-badge,
  body.lang-ar .nav-links a, body.lang-ar .nav-cta,
  body.lang-ar .btn-primary, body.lang-ar .btn-ghost,
  body.lang-ar .form-submit, body.lang-ar .form-label,
  body.lang-ar .coming-soon-badge, body.lang-ar .guarantee-badge,
  body.lang-ar .price-guarantee, body.lang-ar .footer-text,
  body.lang-ar .footer-links a, body.lang-ar .lang-toggle,
  body.lang-ar select, body.lang-ar input, body.lang-ar button {
    font-family: 'Tajawal', sans-serif; letter-spacing: 0;
  }

  /* AR — RTL layout fixes */
  body.lang-ar nav { flex-direction: row-reverse; }
  body.lang-ar .pillar:hover { transform: translateX(-4px); }
  body.lang-ar .who-quote::before { left: auto; right: 24px; }
  body.lang-ar .modal-notice { border-left: none; border-right: 2px solid var(--sky); border-radius: 4px 0 0 4px; }
  body.lang-ar .modal-close { right: auto; left: 20px; }
  body.lang-ar .hero-title, body.lang-ar .badge, body.lang-ar .section-label { letter-spacing: 0; }
  body.lang-ar .price-features li { flex-direction: row-reverse; justify-content: flex-end; }
  body.lang-ar select, body.lang-ar input { text-align: right; direction: rtl; }
  body.lang-ar .form-row { direction: rtl; }
  body.lang-ar .stat-num { direction: ltr; }
  body.lang-ar .hero-stats { direction: ltr; }
  body.lang-ar .qualified-list li { flex-direction: row-reverse; justify-content: flex-end; }

  /* MOBILE — 900px */
  @media (max-width: 900px) {
    /* Nav */
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-cta { display: none; }
    .lang-toggle { margin-left: 0; }
    .nav-overlay { display: none !important; }
    .nav-links.open {
      display: flex; flex-direction: column;
      position: fixed; top: 0; right: 0;
      width: 80%; max-width: 320px; height: 100vh;
      background: #0D1219;
      border-left: 1px solid rgba(56,189,248,0.15);
      padding: 80px 32px 40px;
      align-items: flex-start;
      justify-content: flex-start; gap: 0;
      z-index: 99999;
      box-shadow: -20px 0 60px rgba(0,0,0,0.9);
      animation: slideIn 0.3s cubic-bezier(0.4,0,0.2,1);
      overflow-y: auto;
    }
    @keyframes slideIn {
      from { transform: translateX(100%); }
      to   { transform: translateX(0); }
    }
    .nav-links.open li {
      width: 100%;
      border-bottom: 1px solid rgba(56,189,248,0.08);
    }
    .nav-links.open li:first-child { border-top: 1px solid rgba(56,189,248,0.08); }
    .nav-links.open a {
      display: block; width: 100%;
      font-size: 0.85rem; font-weight: 600;
      color: var(--white) !important;
      letter-spacing: 0.15em; text-transform: uppercase;
      padding: 20px 0;
      transition: all 0.2s;
    }
    .nav-links.open a:hover { color: var(--sky) !important; padding-left: 8px; }
    /* X close button */
    .nav-close {
      position: fixed; top: 16px; right: 16px;
      width: 40px; height: 40px;
      background: #0D1219;
      border: 1px solid rgba(56,189,248,0.3);
      border-radius: 50%;
      display: none; align-items: center; justify-content: center;
      color: var(--sky); font-size: 1rem;
      cursor: pointer; z-index: 100000;
      transition: all 0.2s;
    }
    .nav-close:hover { background: rgba(56,189,248,0.15); }
    .nav-close.visible { display: flex; }
    body.menu-open { overflow: hidden; }

    /* Hero */
    .hero { padding: 100px 6% 60px; }
    .stat-divider { display: none; }
    .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }

    /* Sections */
    section { padding: 70px 5%; }
    .about-grid, .who-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { max-width: 300px; margin: 0 auto; }
    .pillar:hover { transform: none; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    /* Modal */
    .form-row { grid-template-columns: 1fr; }
    .modal { padding: 32px 24px; width: 95%; max-height: 90vh; }

    /* Footer */
    footer { flex-direction: column; text-align: center; gap: 20px; }
    .footer-links { justify-content: center; }
  }

  /* MOBILE — 600px */
  @media (max-width: 600px) {
    nav { padding: 16px 5%; }
    .hero { padding: 90px 5% 50px; }
    .hero-title { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
    .hero-title .line-sky { font-size: clamp(1.1rem, 4.5vw, 1.7rem); white-space: normal; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary, .btn-ghost { width: 100%; max-width: 320px; text-align: center; }
    .guarantee-badge { font-size: 0.65rem; }
    section { padding: 60px 5%; }
    .section-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
    .who-quote { padding: 32px 24px; }
    .who-quote blockquote { font-size: 1.3rem; }
    .cta-section { padding: 80px 5%; }
    .modal { padding: 28px 20px; }
    .modal-title { font-size: 1.6rem; }
  }

  /* MOBILE — 380px (small phones) */
  @media (max-width: 380px) {
    .hero-title { font-size: 1.6rem; }
    .hero-title .line-sky { font-size: 1.3rem; white-space: normal; }
    .badge { font-size: 0.55rem; letter-spacing: 0.08em; padding: 5px 12px; text-align: center; }
    .hero-title .line-sky { white-space: normal; font-size: clamp(1.2rem, 4.5vw, 1.8rem); }
    .hero-stats { gap: 16px; }
    .stat-num { font-size: 1.6rem; }
    .btn-primary, .btn-ghost { padding: 14px 20px; font-size: 0.72rem; }
  }