
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0a1628;
    --navy2: #112240;
    --blue: #1a6cf7;
    --blue2: #2d7fff;
    --cyan: #00c6ff;
    --accent: #ff6b35;
    --accent2: #ff8c5a;
    --white: #ffffff;
    --light: #f5f8ff;
    --light2: #eaf0fd;
    --text: #1e293b;
    --muted: #64748b;
    --border: rgba(26,108,247,0.12);
    --card-bg: rgba(255,255,255,0.85);
    --shadow: 0 8px 40px rgba(26,108,247,0.12);
    --shadow2: 0 24px 64px rgba(26,108,247,0.18);
    --radius: 20px;
    --radius2: 14px;
    --transition: 0.38s cubic-bezier(.4,0,.2,1);
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
  }

  /* ── CURSOR ── */
  .cursor {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--blue);
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: multiply;
    transition: transform 0.15s ease, width 0.2s, height 0.2s, background 0.2s;
    transform: translate(-50%,-50%);
  }
  .cursor-ring {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.35s ease, width 0.25s, height 0.25s, opacity 0.25s;
    transform: translate(-50%,-50%);
    opacity: 0.5;
  }
  @media (max-width: 768px) { .cursor, .cursor-ring { display: none; } }

  /* ── SCROLL PROGRESS ── */
  #progress-bar {
    position: fixed; top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--accent));
    z-index: 9997;
    width: 0%;
    transition: width 0.1s linear;
  }

  /* ── HEADER ── */
  header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 900;
    padding: 0 2rem;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    background-color: white;
  }
  header.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 32px rgba(26,108,247,0.10);
    padding: 0 2rem;
  }
  .header-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }
  .logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(26,108,247,0.30);
    position: relative; overflow: hidden;
  }
  .logo-icon::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
    border-radius: inherit;
  }
  .logo-icon i { color: white; font-size: 1.2rem; z-index: 1; }
  .logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
  }
  .logo-text span { color: var(--blue); }
  .logo-sub { font-size: 0.65rem; color: var(--muted); font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; }

  nav { display: flex; align-items: center; gap: 2rem; }
  nav a {
    text-decoration: none; font-weight: 500; font-size: 0.92rem;
    color: var(--text);
    position: relative; padding: 4px 0;
    transition: color var(--transition);
  }
  nav a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    border-radius: 2px;
    transition: width var(--transition);
  }
  nav a:hover { color: var(--blue); }
  nav a:hover::after { width: 100%; }

  .cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: white;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 600; font-size: 0.9rem;
    text-decoration: none;
    border: none; cursor: pointer;
    box-shadow: 0 4px 20px rgba(26,108,247,0.35);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    position: relative; overflow: hidden;
  }
  .cta-btn::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
  }
  .cta-btn:hover::before { left: 100%; }
  .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(26,108,247,0.45); }
  .cta-btn:active { transform: translateY(0); }

  .cta-btn.accent {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    box-shadow: 0 4px 20px rgba(255,107,53,0.35);
  }
  .cta-btn.accent:hover { box-shadow: 0 8px 32px rgba(255,107,53,0.45); }

  .cta-btn.outline {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
    box-shadow: none;
  }
  .cta-btn.outline:hover { background: var(--blue); color: white; box-shadow: 0 8px 32px rgba(26,108,247,0.25); }

  /* HAMBURGER */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 6px;
    background: none; border: none;
  }
  .hamburger span {
    display: block; width: 24px; height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .mobile-nav {
    display: none;
    position: fixed; top: 76px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 60px rgba(26,108,247,0.12);
    z-index: 899;
    transform: translateY(-20px); opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
  }
  .mobile-nav.open { display: block; transform: translateY(0); opacity: 1; }
  .mobile-nav a {
    display: block; padding: 0.9rem 0;
    border-bottom: 1px solid var(--light2);
    text-decoration: none; font-weight: 500; color: var(--text);
    font-size: 1rem;
    transition: color var(--transition), padding var(--transition);
  }
  .mobile-nav a:hover { color: var(--blue); padding-left: 8px; }
  .mobile-nav .cta-btn { width: 100%; justify-content: center; margin-top: 1rem; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: 76px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
    opacity: 0.18;
  }
  .hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0a1628 0%, #112240 40%, #0d2454 70%, #0a1628 100%);
  }
  /* animated blobs */
  .blob {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.18;
    animation: blobFloat 8s ease-in-out infinite;
  }
  .blob-1 { width: 600px; height: 600px; background: var(--blue); top: -100px; right: -150px; animation-delay: 0s; }
  .blob-2 { width: 400px; height: 400px; background: var(--cyan); bottom: -100px; left: -80px; animation-delay: 2.5s; }
  .blob-3 { width: 300px; height: 300px; background: var(--accent); top: 40%; right: 30%; animation-delay: 5s; }
  @keyframes blobFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(20px,-20px) scale(1.05); }
    66% { transform: translate(-15px,15px) scale(0.97); }
  }

  /* grid overlay */
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(26,108,247,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26,108,247,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
  }
  @keyframes gridMove { 0%{background-position:0 0;} 100%{background-position:60px 60px;} }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 1100px; margin: 0 auto;
    text-align: center;
    padding: 6rem 2rem 5rem;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(26,108,247,0.18);
    border: 1px solid rgba(26,108,247,0.35);
    color: var(--cyan);
    padding: 6px 18px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeDown 0.7s ease both;
  }
  .hero-badge i { font-size: 0.75rem; }
  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 50px);
    font-weight: 800; color: white;
    line-height: 1.1; margin-bottom: 1.4rem;
    animation: fadeUp 0.8s 0.2s ease both;
  }
  .hero h1 .highlight {
    background: linear-gradient(135deg, var(--blue2), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero p {
    font-size: 1.15rem; color: rgba(255,255,255,0.75);
    max-width: 1100px; margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeUp 0.8s 0.4s ease both;
  }
  .hero-btns {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.6s ease both;
  }
  .hero-btns .cta-btn { font-size: 1rem; padding: 14px 30px; }

  .hero-stats {
    display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
    margin-top: 4rem;
    animation: fadeUp 0.8s 0.8s ease both;
  }
  .hero-stat {
    text-align: center;
    position: relative;
  }
  .hero-stat::after {
    content: ''; position: absolute;
    right: -1.5rem; top: 10%; height: 80%;
    width: 1px; background: rgba(255,255,255,0.15);
  }
  .hero-stat:last-child::after { display: none; }
  .hero-stat .num {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem; font-weight: 800;
    color: white;
    background: linear-gradient(135deg, white, var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-stat .label { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 500; }

  /* ── SCROLL INDICATOR ── */
  .scroll-ind {
    position: absolute; bottom: 10px; left: 45%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 2;
    animation: fadeUp 1s 1.2s ease both;
  }
  .scroll-ind span { font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; }
  .scroll-mouse {
    width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.3); border-radius: 13px;
    display: flex; justify-content: center; padding-top: 7px;
  }
  .scroll-mouse::before {
    content: ''; width: 4px; height: 8px;
    background: rgba(255,255,255,0.6); border-radius: 2px;
    animation: scrollWheel 1.8s ease infinite;
  }
  @keyframes scrollWheel { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(10px);opacity:0} }

  /* ── SECTIONS ── */
  section { position: relative; }
  .section-inner { max-width: 1280px; margin: 0 auto; padding: 100px 2rem; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--light2); color: var(--blue);
    padding: 5px 16px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .section-tag i { font-size: 0.7rem; }
  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800; color: var(--navy);
    line-height: 1.15; margin-bottom: 1.2rem;
  }
  .section-title .accent-word {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .section-lead { font-size: 1.05rem; color: var(--muted); max-width: 620px; line-height: 1.75; }

  /* ── DISCLAIMER BANNER ── */
  .disclaimer-banner {
    background: linear-gradient(135deg, #fff3ee, #fff8f5);
    border-top: 3px solid var(--accent);
    padding: 1rem 2rem;
    text-align: center;
  }
  .disclaimer-banner p {
    font-size: 0.85rem; color: var(--text);
    max-width: 900px; margin: 0 auto;
  }
  .disclaimer-banner strong { color: var(--accent); }

  /* ── HOW IT WORKS ── */
  .how-section { background: var(--light); }
  .steps-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; margin-top: 4rem;
    position: relative;
  }
  .steps-grid::before {
    content: '';
    position: absolute; top: 60px; left: 20%; right: 20%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--blue), transparent);
    z-index: 0;
    opacity: 0.3;
  }
  @media (max-width: 900px) { .steps-grid::before { display: none; } }
  .step-card {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative; z-index: 1;
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
  }
  .step-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,108,247,0.03) 0%, transparent 60%);
    transition: opacity var(--transition);
    opacity: 0;
  }
  .step-card:hover::before { opacity: 1; }
  .step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow2); }
  .step-num {
    position: absolute; top: 1.2rem; right: 1.5rem;
    font-family: 'Syne', sans-serif; font-size: 4rem; font-weight: 800;
    color: rgba(26,108,247,0.06); line-height: 1;
  }
  .step-icon {
    width: 70px; height: 70px; margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(26,108,247,0.30);
    position: relative;
  }
  .step-icon::after {
    content: '';
    position: absolute; inset: 0; border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
  }
  .step-icon i { color: white; font-size: 1.6rem; z-index: 1; }
  .step-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem; font-weight: 700; color: var(--navy);
    margin-bottom: 0.7rem;
  }
  .step-card p { font-size: 0.93rem; color: var(--muted); line-height: 1.7; }

  /* ── SERVICES ── */
  .services-section { background: white; }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.8rem; margin-top: 4rem;
  }
  .service-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    position: relative; overflow: hidden;
    cursor: default;
  }
  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--transition);
  }
  .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow2); background: white; }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 58px; height: 58px;
    background: linear-gradient(135deg, rgba(26,108,247,0.12), rgba(0,198,255,0.12));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.3rem;
    transition: background var(--transition);
  }
  .service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
  }
  .service-icon i {
    font-size: 1.4rem; color: var(--blue);
    transition: color var(--transition);
  }
  .service-card:hover .service-icon i { color: white; }
  .service-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.7rem; }
  .service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

  /* ── WHY CHOOSE US ── */
  .why-section { background: var(--navy); color: white; overflow: hidden; }
  .why-section .section-title { color: white; }
  .why-section .section-lead { color: rgba(255,255,255,0.65); }
  .why-section .section-tag { background: rgba(26,108,247,0.2); color: var(--cyan); }
  .why-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 4rem; }
  @media (max-width: 768px) { .why-content { grid-template-columns: 1fr; } }
  .why-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
  }
  .why-orb {
    width: 340px; height: 340px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(26,108,247,0.15), rgba(0,198,255,0.1));
    border: 1px solid rgba(26,108,247,0.2);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    animation: orbPulse 4s ease-in-out infinite;
  }
  @keyframes orbPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(26,108,247,0.15); }
    50% { transform: scale(1.03); box-shadow: 0 0 80px rgba(26,108,247,0.30); }
  }
  .why-orb-inner {
    width: 220px; height: 220px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 20px 60px rgba(26,108,247,0.5);
    position: relative;
    animation: innerOrb 6s ease-in-out infinite;
  }
  @keyframes innerOrb {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  .why-orb-inner i { font-size: 4rem; color: white; }
  .why-orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(26,108,247,0.25);
    animation: ringExpand 3s ease-out infinite;
  }
  .why-orb-ring:nth-child(1) { width: 370px; height: 370px; animation-delay: 0s; }
  .why-orb-ring:nth-child(2) { width: 420px; height: 420px; animation-delay: 1s; }
  .why-orb-ring:nth-child(3) { width: 480px; height: 480px; animation-delay: 2s; }
  @keyframes ringExpand {
    0% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 0; transform: scale(1.05); }
  }
  .why-points { display: flex; flex-direction: column; gap: 1.5rem; }
  .why-point {
    display: flex; gap: 1.2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius2);
    padding: 1.4rem 1.5rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
  }
  .why-point:hover { background: rgba(26,108,247,0.1); border-color: rgba(26,108,247,0.3); transform: translateX(8px); }
  .why-point-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(26,108,247,0.35);
  }
  .why-point-icon i { color: white; font-size: 1.1rem; }
  .why-point h4 { font-size: 1rem; font-weight: 600; color: white; margin-bottom: 0.3rem; }
  .why-point p { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

  /* ── ABOUT ── */
  .about-section { background: var(--light); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 4rem; }
  @media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
  .about-img-wrap {
    position: relative; border-radius: 24px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(26,108,247,0.15);
  }
  .about-img-wrap img {
    width: 100%; height: 420px; object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .about-img-wrap:hover img { transform: scale(1.04); }
  .about-img-badge {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 14px; padding: 1rem 1.4rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    display: flex; align-items: center; gap: 12px;
  }
  .about-img-badge i { font-size: 1.5rem; color: var(--blue); }
  .about-img-badge strong { display: block; font-size: 1rem; color: var(--navy); font-weight: 700; }
  .about-img-badge span { font-size: 0.78rem; color: var(--muted); }
  .about-text { display: flex; flex-direction: column; gap: 1.2rem; }
  .about-text p { font-size: 0.97rem; color: var(--muted); line-height: 1.8; }
  .about-notice {
    background: linear-gradient(135deg, #fff3ee, #fff8f5);
    border: 1px solid rgba(255,107,53,0.25);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius2);
    padding: 1.2rem 1.4rem;
    margin-top: 0.5rem;
  }
  .about-notice h4 { font-size: 0.9rem; font-weight: 700; color: var(--accent); margin-bottom: 0.4rem; display: flex; align-items: center; gap: 8px; }
  .about-notice p { font-size: 0.87rem; color: var(--text); line-height: 1.65; }

  /* ── DISCLAIMER ── */
  .disclaimer-section { background: white; }
  .disclaimer-card {
    background: linear-gradient(135deg, #0a1628, #112240);
    border-radius: 24px;
    padding: 3rem;
    color: white;
    position: relative; overflow: hidden;
    margin-top: 3rem;
  }
  .disclaimer-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--blue));
  }
  .disclaimer-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 12px;
  }
  .disclaimer-card h3 i { color: var(--accent); }
  .disclaimer-list { display: flex; flex-direction: column; gap: 1rem; }
  .disclaimer-item {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 0.93rem; color: rgba(255,255,255,0.78);
    line-height: 1.6;
  }
  .disclaimer-item i { color: var(--accent); margin-top: 3px; min-width: 18px; }

  /* ── CONTACT ── */
  .contact-section { background: var(--light); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; margin-top: 4rem; }
  @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

  .contact-info { display: flex; flex-direction: column; gap: 2rem; }
  .contact-cta-box {
    background: linear-gradient(135deg, var(--navy), var(--navy2));
    border-radius: var(--radius);
    padding: 2.5rem;
    color: white;
    position: relative; overflow: hidden;
  }
  .contact-cta-box::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(26,108,247,0.25), transparent 60%);
  }
  .contact-cta-box h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    margin-bottom: 0.7rem; position: relative;
  }
  .contact-cta-box p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; position: relative; }
  .contact-cta-box .cta-btn { position: relative; font-size: 1.05rem; padding: 14px 28px; }
  .contact-details { display: flex; flex-direction: column; gap: 1rem; }
  .contact-detail {
    display: flex; gap: 1rem; align-items: center;
    background: white; border-radius: var(--radius2);
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-decoration: none; color: var(--text);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .contact-detail:hover { transform: translateX(6px); box-shadow: var(--shadow2); }
  .contact-detail-icon {
    width: 46px; height: 46px; min-width: 46px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
  }
  .contact-detail-icon i { color: white; font-size: 1.1rem; }
  .contact-detail-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
  .contact-detail-val { font-size: 1rem; font-weight: 600; color: var(--navy); }

  /* FORM */
  .contact-form-card {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow2);
    border: 1px solid var(--border);
  }
  .contact-form-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem; font-weight: 700; color: var(--navy);
    margin-bottom: 1.8rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
  .form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); letter-spacing: 0.03em; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius2);
    font-family: inherit; font-size: 0.93rem;
    background: var(--light); color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    outline: none;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,108,247,0.12);
    background: white;
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit { width: 100%; padding: 14px; font-size: 1rem; margin-top: 0.5rem; border-radius: var(--radius2); }
  .form-success {
    display: none; text-align: center; padding: 1.5rem;
    background: linear-gradient(135deg, #eafaf1, #d5f5e3);
    border-radius: var(--radius2);
    border: 1px solid rgba(39,174,96,0.3);
  }
  .form-success i { font-size: 2.5rem; color: #27ae60; margin-bottom: 0.8rem; display: block; }
  .form-success h4 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.4rem; }
  .form-success p { color: var(--muted); font-size: 0.9rem; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 4rem 2rem 2rem;
  }
  .footer-inner { max-width: 1280px; margin: 0 auto; }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
  .footer-brand .logo { margin-bottom: 1rem; }
  .footer-brand .logo-text,
  .footer-brand .logo-sub { color: rgba(255,255,255,0.85); }
  .footer-brand p { font-size: 0.87rem; line-height: 1.75; color: rgba(255,255,255,0.5); max-width: 280px; }
  .footer-brand .notice {
    font-size: 0.8rem; margin-top: 1rem;
    color: var(--accent2);
    background: rgba(255,107,53,0.1);
    border: 1px solid rgba(255,107,53,0.2);
    border-radius: 8px; padding: 8px 12px;
  }
  .footer-col h4 { font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 1.2rem; letter-spacing: 0.04em; }
  .footer-col a {
    display: block; color: rgba(255,255,255,0.5); text-decoration: none;
    font-size: 0.875rem; margin-bottom: 0.7rem;
    transition: color var(--transition), padding var(--transition);
  }
  .footer-col a:hover { color: var(--cyan); padding-left: 6px; }
  .footer-bottom {
    padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    font-size: 0.8rem; color: rgba(255,255,255,0.35);
  }
  .footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
  .footer-bottom a:hover { color: var(--cyan); }

  /* ── FLOATING CALL BTN (mobile) ── */
  .floating-call {
    position: fixed; bottom: 24px; right: 24px;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: white; border: none; cursor: pointer;
    width: 58px; height: 58px; border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(26,108,247,0.45);
    z-index: 800; font-size: 1.4rem;
    animation: floatPop 0.5s ease both, floatRing 2s 1s ease infinite;
    text-decoration: none;
  }
  @keyframes floatPop { 0%{transform:scale(0);opacity:0} 100%{transform:scale(1);opacity:1} }
  @keyframes floatRing {
    0%,100%{ box-shadow:0 8px 30px rgba(26,108,247,0.45); }
    50%{ box-shadow:0 8px 50px rgba(26,108,247,0.7),0 0 0 12px rgba(26,108,247,0.12); }
  }
  @media (max-width: 768px) { .floating-call { display: flex; } }

  /* ── REVEAL ANIMATIONS ── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
  @keyframes fadeDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }

  /* ── PARTICLES ── */
  #particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

  /* ── RESPONSIVE HELPERS ── */
  @media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .header-inner .cta-btn { display: none; }
    .section-inner { padding: 70px 1.5rem; }
    .hero-stats { gap: 2rem; }
  }

  /* ── TOOLTIP-STYLE PHONE PULSE (desktop) ── */
  .phone-pulse {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,107,53,0.12);
    border: 1px solid rgba(255,107,53,0.25);
    border-radius: 50px; padding: 6px 14px;
    font-size: 0.82rem; font-weight: 600; color: var(--accent);
    margin-bottom: 1.2rem;
    animation: pulseBorder 2.5s ease-in-out infinite;
  }
  .phone-pulse i { animation: shake 2s ease infinite; }
  @keyframes pulseBorder {
    0%,100%{ box-shadow:0 0 0 0 rgba(255,107,53,0.18); }
    50%{ box-shadow:0 0 0 8px rgba(255,107,53,0); }
  }
  @keyframes shake {
    0%,100%{transform:rotate(0)} 20%{transform:rotate(-12deg)} 40%{transform:rotate(12deg)} 60%{transform:rotate(-8deg)} 80%{transform:rotate(8deg)}
  }
