    /* ==========================================
       CSS CUSTOM PROPERTIES — DESIGN TOKENS
    ========================================== */
    :root {
      --bg:           #0A0A0A;
      --surface:      #121212;
      --surface-2:    #1A1A1A;
      --text-primary: #FFFFFF;
      --text-secondary: #C8C8C8;
      --text-muted:   #9E9E9E;
      --accent-start: #00D4FF;
      --accent-end:   #0066FF;
      --accent-grad:  linear-gradient(135deg, #00D4FF, #0066FF);
      --border:       rgba(255,255,255,0.08);
      --border-hover: rgba(255,255,255,0.16);
      --glow:         0 0 40px rgba(0,212,255,0.15);
      --glow-strong:  0 0 60px rgba(0,212,255,0.3);
      --radius-sm:    8px;
      --radius-md:    16px;
      --radius-lg:    24px;
      --radius-xl:    40px;
      --font-display: 'Inter', sans-serif;
      --font-body:    'Inter', sans-serif;
      --nav-h:        72px;
      --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
      --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
    }

    /* ==========================================
       RESET & BASE
    ========================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      background: var(--bg);
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    ul { list-style: none; }
    :focus-visible {
      outline: 2px solid var(--accent-start);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* ==========================================
       TYPOGRAPHY
    ========================================== */
    h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; }
    .display { font-size: clamp(3rem, 8vw, 7rem); font-weight: 800; line-height: 1.0; letter-spacing: -0.04em; }
    .heading-xl { font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 800; }
    .heading-lg { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 700; }
    .heading-md { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 700; }
    .label {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent-start);
    }

    /* ==========================================
       UTILITY
    ========================================== */
    .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    @media (min-width: 768px) { .container { padding: 0 48px; } }
    @media (min-width: 1280px) { .container { padding: 0 64px; } }

    .grad-text {
      background: var(--accent-grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }
    section { padding: 96px 0; }
    @media (max-width: 768px) { section { padding: 64px 0; } }

    /* ==========================================
       SCROLL FADE ANIMATION
    ========================================== */
    .fade-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up.delay-1 { transition-delay: 0.1s; }
    .fade-up.delay-2 { transition-delay: 0.2s; }
    .fade-up.delay-3 { transition-delay: 0.3s; }
    .fade-up.delay-4 { transition-delay: 0.4s; }
    .fade-up.delay-5 { transition-delay: 0.5s; }

    /* ==========================================
       NOISE GRAIN OVERLAY
    ========================================== */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 9999;
      pointer-events: none;
      background-image: url("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.035'/%3E%3C/svg%3E");
      opacity: 0.4;
    }

    /* ==========================================
       BUTTONS
    ========================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 52px;
      padding: 0 28px;
      border-radius: 100px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      transition: var(--transition);
      white-space: nowrap;
      min-width: 44px;
    }
    .btn-primary {
      background: var(--accent-grad);
      color: #fff;
      box-shadow: 0 0 30px rgba(0,212,255,0.25);
    }
    .btn-primary:hover {
      box-shadow: 0 0 50px rgba(0,212,255,0.45);
      transform: translateY(-2px);
    }
    .btn-ghost {
      background: transparent;
      color: #FFFFFF;
      border: 1px solid rgba(255,255,255,0.25);
    }
    .btn-ghost:hover {
      border-color: rgba(255,255,255,0.4);
      color: #FFFFFF;
      background: rgba(255,255,255,0.06);
    }
    .btn-lg { height: 60px; padding: 0 40px; font-size: 1rem; }
    .btn svg { flex-shrink: 0; }

    /* ==========================================
       NAVIGATION
    ========================================== */
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-h);
      display: flex; align-items: center;
      transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
      border-bottom: 1px solid transparent;
    }
      background: rgba(10,10,10,0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-color: var(--border);
    }
    .nav-inner {
      display: flex; align-items: center;
      justify-content: space-between;
      width: 100%;
    }
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      background: var(--accent-grad);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      flex-shrink: 0;
    }
      display: none;
      gap: 36px;
    }
    @media (min-width: 1024px) {
    }
      font-size: 0.9rem;
      color: var(--text-secondary);
      transition: color var(--transition);
      font-weight: 500;
    }
      display: flex; align-items: center; gap: 12px;
    }

      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      width: 44px; height: 44px;
      gap: 5px;
      border-radius: var(--radius-sm);
      transition: background var(--transition);
      flex-shrink: 0;
    }
      display: block; height: 1.5px; border-radius: 2px;
      background: var(--text-primary);
      transition: var(--transition);
      transform-origin: center;
    }

    /* ==========================================
       DRAWER
    ========================================== */
      position: fixed; inset: 0; z-index: 1001;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      opacity: 0; pointer-events: none;
      transition: opacity var(--transition);
    }

      position: fixed; top: 0; right: 0; bottom: 0;
      z-index: 1002;
      width: min(360px, 90vw);
      background: rgba(18,18,18,0.95);
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      border-left: 1px solid var(--border);
      display: flex; flex-direction: column;
      padding: 0;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .drawer.open { transform: translateX(0); }

      display: flex; align-items: center;
      justify-content: space-between;
      padding: 0 28px;
      height: var(--nav-h);
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }
      font-family: var(--font-display);
      font-size: 1.4rem; font-weight: 800;
      letter-spacing: -0.04em;
      background: var(--accent-grad);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      border-radius: var(--radius-sm);
      color: var(--text-secondary);
      transition: var(--transition);
    }

      flex: 1; overflow-y: auto;
      padding: 24px 0;
    }

      display: block;
      font-family: var(--font-display);
      font-size: 1.4rem; font-weight: 700;
      color: var(--text-secondary);
      padding: 14px 28px;
      transition: var(--transition);
      letter-spacing: -0.02em;
      opacity: 0;
      transform: translateX(20px);
      line-height: 1.2;
    }
      opacity: 1;
      transform: translateX(0);
    }


    /* Accordion */
      width: 100%;
      display: flex; align-items: center; justify-content: space-between;
      font-family: var(--font-display);
      font-size: 1.4rem; font-weight: 700;
      color: var(--text-secondary);
      padding: 14px 28px;
      transition: var(--transition);
      letter-spacing: -0.02em;
      opacity: 0;
      transform: translateX(20px);
      line-height: 1.2;
    }
      opacity: 1; transform: translateX(0);
    }
      width: 20px; height: 20px;
      transition: transform var(--transition);
      flex-shrink: 0;
      opacity: 0.5;
    }
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .drawer-sub-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.95rem; font-weight: 400;
      color: var(--text-muted);
      padding: 10px 28px 10px 42px;
      transition: var(--transition);
    }
    .drawer-sub-item::before {
      content: '';
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--accent-start);
      opacity: 0.5;
      flex-shrink: 0;
    }
    .drawer-sub-item:hover { color: var(--text-primary); }
    .drawer-sub-item:hover::before { opacity: 1; }

    .drawer-footer {
      padding: 20px 24px 28px;
      border-top: 1px solid var(--border);
      flex-shrink: 0;
    }
    .drawer-footer .btn {
      width: 100%; height: 56px; font-size: 0.95rem;
      box-shadow: 0 0 40px rgba(0,212,255,0.2);
    }
    .drawer-footer .btn:hover {
      box-shadow: 0 0 60px rgba(0,212,255,0.4);
    }

    /* ==========================================
       CONTACT PAGE HERO
    ========================================== */
    .contact-hero {
      padding-top: calc(var(--nav-h) + 80px);
      padding-bottom: 80px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .contact-hero-bg {
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
    }
    .contact-blob {
      position: absolute; border-radius: 50%;
      filter: blur(120px); opacity: 0.10;
      animation: blobFloat 8s ease-in-out infinite;
    }
    .contact-blob-1 {
      width: 500px; height: 500px;
      background: #00D4FF;
      top: -120px; right: -80px;
    }
    .contact-blob-2 {
      width: 380px; height: 380px;
      background: #0066FF;
      bottom: -60px; left: -60px;
      animation-delay: -3s;
    }
    @keyframes blobFloat {
      0%, 100% { transform: translate(0,0) scale(1); }
      33% { transform: translate(20px,-30px) scale(1.05); }
      66% { transform: translate(-15px, 20px) scale(0.95); }
    }
    .contact-hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    }
    .contact-hero-inner {
      position: relative; z-index: 1;
      max-width: 760px; margin: 0 auto;
    }
    .contact-hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(0,212,255,0.06);
      border: 1px solid rgba(0,212,255,0.15);
      border-radius: 100px;
      padding: 6px 18px 6px 12px;
      margin-bottom: 32px;
    }
    .contact-hero-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--accent-start);
      box-shadow: 0 0 8px rgba(0,212,255,0.8);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(0.85); }
    }
    .contact-hero h1 {
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.0;
      margin-bottom: 24px;
    }
    .contact-hero p {
      font-size: 1.15rem;
      color: var(--text-secondary);
      line-height: 1.75;
      max-width: 560px;
      margin: 0 auto;
    }

    /* ==========================================
       CONTACT CHANNELS STRIP
    ========================================== */
    .channels-strip {
      padding: 0 0 80px;
    }
    .channels-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    @media (min-width: 640px) { .channels-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .channels-grid { grid-template-columns: repeat(4, 1fr); } }

    .channel-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
      text-decoration: none;
      color: inherit;
    }
    .channel-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--glow);
      border-color: rgba(0,212,255,0.2);
    }
    .channel-icon {
      width: 48px; height: 48px;
      border-radius: var(--radius-sm);
      background: rgba(0,212,255,0.06);
      border: 1px solid rgba(0,212,255,0.12);
      display: flex; align-items: center; justify-content: center;
      color: var(--accent-start);
      flex-shrink: 0;
    }
    .channel-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 4px;
    }
    .channel-value {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
    }
    .channel-sub {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-top: 2px;
    }
    .channel-arrow {
      margin-top: auto;
      display: flex; align-items: center; gap: 6px;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--accent-start);
      opacity: 0;
      transform: translateX(-6px);
      transition: var(--transition);
    }
    .channel-card:hover .channel-arrow {
      opacity: 1;
      transform: translateX(0);
    }

    /* ==========================================
       MAIN CONTACT SECTION
    ========================================== */
    .contact-main {
      background: var(--surface);
      padding: 96px 0;
    }
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 64px;
    }
    @media (min-width: 1024px) {
      .contact-layout { grid-template-columns: 5fr 7fr; align-items: start; }
    }

    /* Left side */
    .contact-left {}
    .contact-left .section-label { display: block; margin-bottom: 16px; }
    .contact-left h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .contact-left > p {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 48px;
    }

    /* Office hours card */
    .hours-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 28px;
      margin-bottom: 32px;
    }
    .hours-card-title {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 20px;
    }
    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.875rem;
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-day { color: var(--text-secondary); }
    .hours-time { color: var(--text-primary); font-weight: 500; }
    .hours-time.closed { color: var(--text-muted); }

    /* Response badge */
    .response-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(0,212,255,0.05);
      border: 1px solid rgba(0,212,255,0.15);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      margin-bottom: 40px;
    }
    .response-badge-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #00ff88;
      box-shadow: 0 0 8px rgba(0,255,136,0.8);
      flex-shrink: 0;
    }
    .response-badge-text {
      font-size: 0.875rem;
      color: var(--text-secondary);
    }
    .response-badge-text strong {
      color: var(--text-primary);
      font-weight: 600;
    }

    /* Socials */
    .contact-socials-title {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .contact-socials {
      display: flex; gap: 10px;
    }
    .social-btn {
      width: 44px; height: 44px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted);
      font-size: 0.8rem; font-weight: 600;
      transition: var(--transition);
    }
    .social-btn:hover {
      border-color: rgba(0,212,255,0.3);
      color: var(--accent-start);
      background: rgba(0,212,255,0.05);
    }

    /* ==========================================
       CONTACT FORM
    ========================================== */
    .contact-form-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
    }
    @media (max-width: 640px) { .contact-form-card { padding: 32px 24px; } }
    .contact-form-card h3 {
      font-size: 1.6rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 8px;
    }
    .contact-form-card .form-subtitle {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 36px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    @media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px;
    }
    .form-group:last-child { margin-bottom: 0; }
    .form-label {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .form-input, .form-textarea, .form-select {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 14px 18px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--text-primary);
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
      width: 100%;
    }
    .form-select { cursor: pointer; }
    .form-select option { background: var(--surface-2); }
    .form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
    .form-input:focus, .form-textarea:focus, .form-select:focus {
      border-color: rgba(0,212,255,0.4);
      box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
    }
    .form-textarea { resize: vertical; min-height: 140px; }

    /* Budget range pills */
    .budget-pills {
      display: flex; flex-wrap: wrap; gap: 10px;
    }
    .budget-pill {
      padding: 8px 16px;
      border: 1px solid var(--border);
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--text-muted);
      cursor: pointer;
      transition: var(--transition);
      background: transparent;
      font-family: var(--font-body);
    }
    .budget-pill:hover {
      border-color: rgba(0,212,255,0.3);
      color: var(--accent-start);
      background: rgba(0,212,255,0.05);
    }
    .budget-pill.selected {
      border-color: var(--accent-start);
      color: var(--accent-start);
      background: rgba(0,212,255,0.08);
    }

    .form-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 28px 0;
    }
    .form-submit-btn {
      margin-top: 8px;
      width: 100%;
      height: 56px;
      font-size: 1rem;
      font-weight: 700;
    }
    .form-privacy {
      margin-top: 14px;
      font-size: 0.78rem;
      color: var(--text-muted);
      text-align: center;
    }
    .form-privacy a { color: var(--accent-start); }

    /* ==========================================
       MAP SECTION
    ========================================== */
    .map-section {
      padding: 0 0 96px;
    }
    .map-section-header {
      margin-bottom: 40px;
    }
    .map-section-header .section-label { display: block; margin-bottom: 12px; }
    .map-section-header h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -0.03em;
    }
    .map-section-header p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      margin-top: 12px;
    }
    .map-wrapper {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      height: 420px;
      position: relative;
    }
    .map-wrapper iframe {
      width: 100%; height: 100%;
      display: block;
      filter: invert(90%) hue-rotate(180deg) saturate(0.7) brightness(0.85);
    }
    .map-overlay-card {
      position: absolute;
      top: 24px; left: 24px;
      background: rgba(18,18,18,0.9);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      z-index: 10;
    }
    .map-overlay-card h4 {
      font-size: 1rem; font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }
    .map-overlay-card p {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ==========================================
       FAQ STRIP
    ========================================== */
    .faq-strip {
      background: var(--surface);
      padding: 80px 0;
    }
    .faq-strip-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .faq-strip-header .section-label { display: block; margin-bottom: 12px; }
    .faq-strip-header h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -0.03em;
    }
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 24px 0;
      text-align: left;
      font-family: var(--font-display);
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text-primary);
      transition: color var(--transition);
      cursor: pointer;
      background: none;
      border: none;
    }
    .faq-trigger:hover { color: var(--accent-start); }
    .faq-trigger[aria-expanded="true"] { color: var(--accent-start); }
    .faq-icon {
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: var(--transition);
      color: var(--text-muted);
      font-size: 1.2rem; font-weight: 300; line-height: 1;
    }
    .faq-trigger[aria-expanded="true"] .faq-icon {
      background: rgba(0,212,255,0.08);
      border-color: rgba(0,212,255,0.3);
      color: var(--accent-start);
      transform: rotate(45deg);
    }
    .faq-body {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    .faq-body.open { max-height: 240px; }
    .faq-body-inner {
      padding-bottom: 24px;
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.75;
      max-width: 680px;
    }

    /* ==========================================
       CTA STRIP
    ========================================== */
    .cta-strip {
      padding: 96px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-blob {
      position: absolute; border-radius: 50%;
      filter: blur(100px); pointer-events: none;
    }
    .cta-blob-1 {
      width: 400px; height: 400px;
      background: rgba(0,212,255,0.08);
      top: -100px; left: 50%;
      transform: translateX(-50%);
    }
    .cta-blob-2 {
      width: 300px; height: 300px;
      background: rgba(0,102,255,0.08);
      bottom: -80px; right: 10%;
    }
    .cta-inner {
      position: relative; z-index: 1;
      max-width: 680px; margin: 0 auto;
    }
    .cta-inner .section-label { display: block; margin-bottom: 20px; }
    .cta-inner h2 {
      font-size: clamp(2rem, 4.5vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }
    .cta-inner p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 40px; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ==========================================
       FOOTER
    ========================================== */
    footer {
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 60px 0 40px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    @media (min-width: 768px) {
      .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
    }
    .footer-logo {
      font-family: var(--font-display);
      font-size: 1.8rem; font-weight: 800;
      letter-spacing: -0.04em;
      background: var(--accent-grad);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      display: inline-block;
      margin-bottom: 16px;
    }
    .footer-brand p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; max-width: 260px; }
    .footer-socials { display: flex; gap: 10px; margin-top: 24px; }
    .footer-col h4 {
      font-family: var(--font-display);
      font-size: 0.85rem; font-weight: 700;
      letter-spacing: 0.05em; text-transform: uppercase;
      color: var(--text-primary); margin-bottom: 20px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-col a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
    .footer-col a:hover { color: var(--text-primary); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 28px;
      display: flex; flex-wrap: wrap;
      gap: 16px; justify-content: space-between; align-items: center;
    }
    .footer-copyright { font-size: 0.8rem; color: var(--text-muted); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { font-size: 0.8rem; color: var(--text-muted); transition: color var(--transition); }
    .footer-legal a:hover { color: var(--text-secondary); }

    /* ==========================================
       SKIP LINK
    ========================================== */
    .skip-link {
      position: absolute; top: -100%;
      left: 16px; z-index: 9999;
      background: var(--accent-start);
      color: var(--bg);
      padding: 12px 20px;
      border-radius: var(--radius-sm);
      font-weight: 600;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 16px; }

    /* ==========================================
       CUSTOM CURSOR (DESKTOP)
    ========================================== */
      body { cursor: none; }
      a, button { cursor: none; }
    }
        display: block;
        position: fixed; z-index: 99999;
        pointer-events: none; top: 0; left: 0;
      }
        width: 8px; height: 8px; border-radius: 50%;
        background: var(--accent-start);
        position: absolute;
        transform: translate(-50%,-50%);
        transition: transform 0.1s, width 0.2s, height 0.2s, opacity 0.2s;
      }
        width: 36px; height: 36px; border-radius: 50%;
        border: 1px solid rgba(0,212,255,0.4);
        position: absolute;
        transform: translate(-50%,-50%);
        transition: transform 0.12s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
      }
        width: 56px; height: 56px;
        border-color: rgba(0,212,255,0.6);
      }
    }

    /* Section header shared */
    .section-label {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent-start);
    }