 /* =============================================
       CSS CUSTOM PROPERTIES
    ============================================= */
    :root {
      --primary:        #155dfc;
      --primary-dark:   #0e49d4;
      --primary-light:  #4a7ffd;
      --primary-pale:   #eff4ff;
      --secondary:      #155dfc;
      --accent:         #3b72fd;
      --white:          #ffffff;
      --bg:             #ffffff;
      --bg-section:     #f5f8ff;
      --card-bg:        #ffffff;
      --card-border:    #dde6fd;
      --text-dark:      #0d1b3e;
      --text-body:      #374151;
      --text-muted:     #6b7280;
      --text-light:     #9ca3af;
      --success:        #16a34a;
      --gradient-brand: linear-gradient(135deg, #155dfc 0%, #3b72fd 100%);
      --gradient-hero:  linear-gradient(160deg, #ffffff 0%, #eff4ff 50%, #dde6fd 100%);
      --shadow-sm:      0 2px 8px rgba(21, 93, 252, 0.08);
      --shadow-md:      0 6px 24px rgba(21, 93, 252, 0.14);
      --shadow-lg:      0 12px 40px rgba(21, 93, 252, 0.18);
      --shadow-glow:    0 0 32px rgba(21, 93, 252, 0.22);
      --radius:         16px;
      --radius-sm:      10px;
      --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg);
      color: var(--text-body);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      color: var(--text-dark);
    }

    /* =============================================
       SCROLLBAR
    ============================================= */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

    /* =============================================
       UTILITY
    ============================================= */
    .gradient-text {
      background: var(--gradient-brand);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--primary-pale);
      border: 1px solid rgba(29, 110, 245, 0.2);
      color: var(--primary);
      font-size: 0.82rem;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .section-title {
      font-size: clamp(1.75rem, 4vw, 2.6rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 14px;
      color: var(--text-dark);
    }

    .section-subtitle {
      font-size: 1.02rem;
      color: var(--text-muted);
      max-width: 580px;
      line-height: 1.75;
    }

    section { padding: 96px 0; }

    /* =============================================
       BUTTONS
    ============================================= */
    .btn-brand {
      background: var(--gradient-brand);
      border: none;
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      padding: 13px 30px;
      border-radius: 50px;
      font-size: 0.97rem;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 18px rgba(29, 110, 245, 0.35);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }
    .btn-brand:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(29, 110, 245, 0.5);
      color: #fff;
    }

    .btn-outline-brand {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      padding: 11px 28px;
      border-radius: 50px;
      font-size: 0.97rem;
      transition: var(--transition);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }
    .btn-outline-brand:hover {
      background: var(--primary-pale);
      color: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    /* =============================================
       LANGUAGE SWITCHER
    ============================================= */
    .lang-switch {
      display: inline-flex;
      background: var(--primary-pale);
      border: 1px solid rgba(29,110,245,0.2);
      border-radius: 50px;
      padding: 3px;
      gap: 2px;
    }
    .lang-switch button {
      border: none;
      background: transparent;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 0.78rem;
      color: var(--text-muted);
      padding: 4px 12px;
      border-radius: 50px;
      cursor: pointer;
      transition: var(--transition);
    }
    .lang-switch button.active {
      background: var(--primary);
      color: #fff;
    }

    /* =============================================
       NAVBAR
    ============================================= */
    .navbar-custom {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(29, 110, 245, 0.1);
      padding: 14px 0;
      transition: var(--transition);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    .navbar-custom.scrolled {
      padding: 10px 0;
      box-shadow: var(--shadow-md);
    }

    .navbar-brand-logo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      background: var(--gradient-brand);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      letter-spacing: -0.5px;
    }
    .navbar-brand-logo .logo-icon {
      width: 36px;
      height: 36px;
      background: var(--gradient-brand);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.1rem;
      flex-shrink: 0;
      -webkit-text-fill-color: white;
    }

    .nav-link-custom {
      color: var(--text-body) !important;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 500;
      font-size: 0.93rem;
      padding: 7px 14px !important;
      border-radius: 8px;
      transition: var(--transition);
      text-decoration: none;
    }
    .nav-link-custom:hover,
    .nav-link-custom.active-link {
      color: var(--primary) !important;
      background: var(--primary-pale);
    }

    /* Hamburger button custom */
    .navbar-toggler-custom {
      background: var(--primary-pale);
      border: 1.5px solid rgba(29, 110, 245, 0.25);
      border-radius: 10px;
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
    }
    .navbar-toggler-custom:hover {
      background: var(--primary);
      border-color: var(--primary);
    }
    .navbar-toggler-custom:hover .toggler-icon {
      color: white;
    }
    .toggler-icon {
      color: var(--primary);
      font-size: 1.35rem;
      transition: var(--transition);
      pointer-events: none;
    }

    /* Mobile menu panel */
    @media (max-width: 991px) {
      .navbar-collapse {
        background: #ffffff;
        border: 1px solid var(--card-border);
        border-radius: var(--radius);
        padding: 16px 12px;
        margin-top: 10px;
        box-shadow: var(--shadow-md);
      }
      .navbar-collapse .navbar-nav {
        gap: 4px;
      }
      .navbar-collapse .d-flex {
        margin-top: 12px;
        flex-direction: column;
        gap: 8px;
      }
      .navbar-collapse .btn-brand,
      .navbar-collapse .btn-outline-brand {
        justify-content: center;
        width: 100%;
      }
      .navbar-collapse .lang-switch {
        width: 100%;
        justify-content: center;
      }
    }

    /* =============================================
       HERO SECTION
    ============================================= */
    #hero {
      min-height: 100vh;
      background: var(--gradient-hero);
      position: relative;
      display: flex;
      align-items: center;
      padding-top: 90px;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      top: -200px; right: -100px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(29, 110, 245, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    #hero::after {
      content: '';
      position: absolute;
      bottom: -150px; left: -80px;
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-content { position: relative; z-index: 2; }

    .hero-live-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1.5px solid rgba(29, 110, 245, 0.2);
      color: var(--primary);
      font-size: 0.82rem;
      font-weight: 600;
      padding: 7px 16px;
      border-radius: 50px;
      margin-bottom: 22px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      box-shadow: var(--shadow-sm);
      animation: fadeInDown 0.6s ease forwards;
    }
    .live-dot {
      width: 8px; height: 8px;
      background: #22c55e;
      border-radius: 50%;
      animation: blink 1.5s ease-in-out infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.2; }
    }

    .hero-title {
      font-size: clamp(2.2rem, 5.5vw, 4.2rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 22px;
      animation: fadeInUp 0.7s ease forwards;
      animation-delay: 0.1s;
      opacity: 0;
      color: var(--text-dark);
    }

    .hero-subtitle {
      font-size: clamp(0.98rem, 2vw, 1.15rem);
      color: var(--text-muted);
      margin-bottom: 36px;
      max-width: 520px;
      line-height: 1.75;
      animation: fadeInUp 0.7s ease forwards;
      animation-delay: 0.2s;
      opacity: 0;
    }

    .hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 44px;
      animation: fadeInUp 0.7s ease forwards;
      animation-delay: 0.3s;
      opacity: 0;
    }

    .hero-stats {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      animation: fadeInUp 0.7s ease forwards;
      animation-delay: 0.4s;
      opacity: 0;
    }
    .stat-divider {
      width: 1px;
      background: rgba(29, 110, 245, 0.2);
      align-self: stretch;
    }
    .stat-number {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      background: var(--gradient-brand);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
    }
    .stat-label {
      font-size: 0.78rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* ---- Chat Mockup ---- */
    .chat-mockup-wrapper {
      position: relative;
      z-index: 2;
      animation: floatY 5s ease-in-out infinite;
    }
    @keyframes floatY {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }

    .chat-mockup {
      background: #fff;
      border: 1.5px solid var(--card-border);
      border-radius: 22px;
      padding: 22px;
      max-width: 340px;
      margin: 0 auto;
      box-shadow: var(--shadow-lg);
    }

    .chat-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--card-border);
      margin-bottom: 16px;
    }
    .chat-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--gradient-brand);
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 1.1rem; flex-shrink: 0;
    }
    .chat-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600; font-size: 0.92rem;
      color: var(--text-dark);
    }
    .chat-status {
      font-size: 0.72rem; color: #16a34a;
      display: flex; align-items: center; gap: 4px;
    }
    .chat-status::before {
      content: '';
      display: inline-block;
      width: 6px; height: 6px;
      background: #16a34a; border-radius: 50%;
    }

    .chat-messages {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 16px;
      max-height: 190px;
      overflow: hidden;
    }
    .msg {
      max-width: 82%;
      padding: 9px 13px;
      border-radius: 14px;
      font-size: 0.87rem;
      line-height: 1.5;
    }
    .msg-received {
      background: var(--bg-section);
      color: var(--text-body);
      border-bottom-left-radius: 4px;
      align-self: flex-start;
    }
    .msg-sent {
      background: var(--gradient-brand);
      color: white;
      border-bottom-right-radius: 4px;
      align-self: flex-end;
    }
    .msg-time {
      font-size: 0.67rem;
      color: rgba(0,0,0,0.3);
      text-align: right;
      margin-top: 2px;
    }
    .msg-sent .msg-time { color: rgba(255,255,255,0.6); }

    .chat-input-area {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--bg-section);
      border: 1.5px solid var(--card-border);
      border-radius: 50px;
      padding: 9px 14px;
    }
    .chat-input-area input {
      flex: 1; background: none; border: none;
      outline: none; color: var(--text-body); font-size: 0.87rem;
    }
    .chat-input-area input::placeholder { color: var(--text-light); }
    .chat-send-btn {
      width: 30px; height: 30px;
      border-radius: 50%;
      background: var(--gradient-brand);
      border: none;
      display: flex; align-items: center; justify-content: center;
      color: white; cursor: pointer; flex-shrink: 0;
      transition: var(--transition);
    }
    .chat-send-btn:hover { transform: scale(1.1); }

    /* Floating badges on hero */
    .float-badge {
      position: absolute;
      background: #fff;
      border: 1.5px solid var(--card-border);
      border-radius: 12px;
      padding: 9px 14px;
      display: flex; align-items: center; gap: 8px;
      font-size: 0.78rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      color: var(--text-dark);
      box-shadow: var(--shadow-md);
      z-index: 3;
      white-space: nowrap;
    }
    .float-badge-1 {
      top: 8%; right: -4%;
      animation: fbadge1 4s ease-in-out infinite;
    }
    .float-badge-2 {
      bottom: 16%; left: -6%;
      animation: fbadge2 5s ease-in-out infinite;
    }
    @keyframes fbadge1 {
      0%, 100% { transform: translateY(0) rotate(-2deg); }
      50% { transform: translateY(-8px) rotate(1deg); }
    }
    @keyframes fbadge2 {
      0%, 100% { transform: translateY(0) rotate(2deg); }
      50% { transform: translateY(-10px) rotate(-1deg); }
    }
    @media (max-width: 991px) {
      .float-badge-1, .float-badge-2 { display: none; }
      .chat-mockup-wrapper { margin-top: 48px; }
    }

    /* =============================================
       TRUST BAR
    ============================================= */
    .trust-bar {
      background: #fff;
      border-top: 1px solid var(--card-border);
      border-bottom: 1px solid var(--card-border);
      padding: 20px 0;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-muted);
      font-size: 0.86rem;
      font-weight: 500;
      justify-content: center;
    }
    .trust-item i { color: var(--primary); font-size: 1rem; }

    /* =============================================
       FEATURES SECTION
    ============================================= */
    #features { background: var(--bg); }

    .feature-card {
      background: var(--card-bg);
      border: 1.5px solid var(--card-border);
      border-radius: var(--radius);
      padding: 30px 26px;
      height: 100%;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gradient-brand);
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition);
    }
    .feature-card:hover {
      transform: translateY(-7px);
      border-color: rgba(29, 110, 245, 0.3);
      box-shadow: var(--shadow-lg);
    }
    .feature-card:hover::before { transform: scaleX(1); }

    .feature-icon {
      width: 56px; height: 56px;
      border-radius: 14px;
      background: var(--primary-pale);
      border: 1.5px solid rgba(29, 110, 245, 0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 18px;
      transition: var(--transition);
    }
    .feature-card:hover .feature-icon {
      background: var(--gradient-brand);
      transform: scale(1.1) rotate(4deg);
    }
    .feature-card:hover .feature-icon i { color: white !important; }

    .feature-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 1.08rem;
      color: var(--text-dark);
      margin-bottom: 10px;
    }
    .feature-desc {
      color: var(--text-muted);
      font-size: 0.91rem;
      line-height: 1.7;
    }

    /* =============================================
       HOW IT WORKS
    ============================================= */
    #how-it-works { background: var(--bg-section); }

    .steps-line {
      position: absolute;
      top: 40px;
      left: calc(16.66% + 20px);
      right: calc(16.66% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
      z-index: 0;
      opacity: 0.25;
    }
    @media (max-width: 767px) { .steps-line { display: none; } }

    .step-card {
      position: relative;
      z-index: 1;
      text-align: center;
    }
    .step-number {
      width: 72px; height: 72px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      background: var(--gradient-brand);
      color: white;
      box-shadow: 0 6px 20px rgba(29, 110, 245, 0.35);
      transition: var(--transition);
    }
    .step-card:hover .step-number {
      transform: scale(1.1);
      box-shadow: 0 8px 30px rgba(29, 110, 245, 0.5);
    }
    .step-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--text-dark);
      margin-bottom: 8px;
    }
    .step-desc {
      color: var(--text-muted);
      font-size: 0.89rem;
      line-height: 1.65;
    }

    /* =============================================
       TESTIMONIALS
    ============================================= */
    #testimonials { background: var(--bg-section); }

    .testimonial-card {
      background: var(--card-bg);
      border: 1.5px solid var(--card-border);
      border-radius: var(--radius);
      padding: 26px;
      height: 100%;
      transition: var(--transition);
    }
    .testimonial-card:hover {
      border-color: rgba(29, 110, 245, 0.3);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .testimonial-stars {
      color: #f59e0b;
      font-size: 0.88rem;
      margin-bottom: 14px;
      display: flex; gap: 2px;
    }
    .testimonial-text {
      color: var(--text-body);
      font-size: 0.91rem;
      line-height: 1.7;
      margin-bottom: 18px;
      font-style: italic;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .author-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--gradient-brand);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.95rem; color: white;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700; flex-shrink: 0;
    }
    .author-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600; font-size: 0.88rem;
      color: var(--text-dark);
    }
    .author-location { font-size: 0.78rem; color: var(--text-light); }

    /* =============================================
       FAQ SECTION
    ============================================= */
    #faq { background: var(--bg); }

    .faq-accordion .accordion-item {
      background: var(--card-bg);
      border: 1.5px solid var(--card-border) !important;
      border-radius: var(--radius-sm) !important;
      margin-bottom: 10px;
      overflow: hidden;
      transition: var(--transition);
    }
    .faq-accordion .accordion-item:hover {
      border-color: rgba(29, 110, 245, 0.3) !important;
    }
    .faq-accordion .accordion-button {
      background: transparent;
      color: var(--text-dark);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 18px 22px;
      box-shadow: none;
      transition: var(--transition);
    }
    .faq-accordion .accordion-button:not(.collapsed) {
      background: var(--primary-pale);
      color: var(--primary-dark);
    }
    .faq-accordion .accordion-button::after {
      filter: none;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23155dfc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    .faq-accordion .accordion-body {
      color: var(--text-muted);
      font-size: 0.91rem;
      line-height: 1.75;
      padding: 0 22px 20px;
    }

    /* =============================================
       CTA SECTION
    ============================================= */
    #cta { background: var(--bg-section); padding: 80px 0; }

    .cta-box {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      border-radius: 24px;
      padding: 72px 40px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .cta-box::before {
      content: '';
      position: absolute;
      top: -80px; left: -80px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
      border-radius: 50%;
    }
    .cta-box::after {
      content: '';
      position: absolute;
      bottom: -60px; right: -60px;
      width: 260px; height: 260px;
      background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    .cta-content { position: relative; z-index: 1; }
    .cta-box .section-title { color: #fff; }
    .cta-box .section-subtitle { color: rgba(255,255,255,0.85); }

    .btn-cta-white {
      background: #fff;
      color: var(--primary);
      border: none;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      padding: 13px 30px;
      border-radius: 50px;
      font-size: 0.97rem;
      transition: var(--transition);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    }
    .btn-cta-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.2);
      color: var(--primary-dark);
    }
    .btn-cta-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.7);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      padding: 11px 28px;
      border-radius: 50px;
      font-size: 0.97rem;
      transition: var(--transition);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-cta-outline:hover {
      background: rgba(255,255,255,0.15);
      border-color: #fff;
      color: #fff;
      transform: translateY(-2px);
    }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: var(--text-dark);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 56px 0 28px;
    }
    .footer-brand {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 1.45rem;
      background: linear-gradient(135deg, #60a5fa, #93c5fd);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 10px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .footer-brand .footer-logo-icon {
      width: 34px; height: 34px;
      background: linear-gradient(135deg, #60a5fa, #93c5fd);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; -webkit-text-fill-color: white; color: white; flex-shrink: 0;
    }
    .footer-desc {
      color: rgba(255,255,255,0.45);
      font-size: 0.86rem;
      line-height: 1.7;
      max-width: 270px;
    }
    .footer-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 14px;
    }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 9px; }
    .footer-links a {
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      font-size: 0.88rem;
      transition: var(--transition);
    }
    .footer-links a:hover { color: #93c5fd; }
    .footer-divider {
      height: 1px;
      background: rgba(255,255,255,0.08);
      margin: 36px 0 22px;
    }
    .footer-copyright {
      color: rgba(255,255,255,0.3);
      font-size: 0.82rem;
    }
    .social-links { display: flex; gap: 10px; }
    .social-link {
      width: 36px; height: 36px;
      border-radius: 9px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4);
      font-size: 0.95rem;
      text-decoration: none;
      transition: var(--transition);
    }
    .social-link:hover {
      background: rgba(96, 165, 250, 0.2);
      border-color: rgba(96, 165, 250, 0.4);
      color: #93c5fd;
      transform: translateY(-2px);
    }

    /* =============================================
       ANIMATIONS
    ============================================= */
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-16px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
    }
    .delay-1 { transition-delay: 0.08s; }
    .delay-2 { transition-delay: 0.16s; }
    .delay-3 { transition-delay: 0.24s; }
    .delay-4 { transition-delay: 0.32s; }

    /* =============================================
       SKIP LINK
    ============================================= */
    .skip-link {
      position: absolute;
      top: -40px; left: 0;
      background: var(--primary);
      color: white;
      padding: 8px 16px;
      text-decoration: none;
      font-weight: 600;
      z-index: 9999;
      border-radius: 0 0 8px 0;
      transition: top 0.3s;
    }
    .skip-link:focus { top: 0; }

    /* =============================================
       MOBILE RESPONSIVE
    ============================================= */
    @media (max-width: 767px) {
      .hero-cta-group { flex-direction: column; align-items: flex-start; }
      .hero-cta-group .btn-brand,
      .hero-cta-group .btn-outline-brand { width: 100%; justify-content: center; }
      .hero-stats { gap: 18px; }
      .cta-box { padding: 48px 22px; }
      .footer-bottom { text-align: center; justify-content: center; }
      section { padding: 68px 0; }
    }

    /* =============================================
       FAQ CATEGORY TABS
    ============================================= */
    .faq-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-bottom: 32px;
    }
    .faq-tab-btn {
      background: var(--card-bg);
      border: 1.5px solid var(--card-border);
      color: var(--text-muted);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      padding: 7px 18px;
      border-radius: 50px;
      cursor: pointer;
      transition: var(--transition);
    }
    .faq-tab-btn:hover,
    .faq-tab-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: white;
    }