/* ============================================================
       HELIX DUO PHARMACEUTICALS — DEEP OBSIDIAN HEALTHCARE DARK THEME
       ============================================================ */
    :root {
      /* Deep Dark Obsidian Base Palette derived from logo dark blue (#002967, #050911) */
      --bg-dark: #050911;
      --bg-alt: #090F1E;
      --bg-secondary: #090F1E;
      --bg-card: #0E1629;
      --bg-card-hover: #152037;

      /* Pure Logo Color Palette */
      --logo-navy: #002967;
      /* Logo Dark Navy Blue */
      --primary: #0EA5E9;
      /* Logo Precision Sapphire Blue */
      --primary-light: #38BDF8;
      /* Logo Bright Sky Blue */
      --cyan: #00B5B4;
      /* Logo Bright Teal / Cyan */
      --teal: #00B5B4;
      /* Logo Cyan (Strict Palette) */

      /* Typography Palette (Shades of White & Crisp Slate) */
      --text: #FFFFFF;
      /* Pure White Primary Text */
      --text-secondary: #F1F5F9;
      /* Off-White Secondary Text */
      --text-muted: #CBD5E1;
      /* Light Slate White */
      --text-subtle: #94A3B8;
      /* Soft Muted White/Slate */

      /* Borders & Glassmorphism */
      --border: rgba(255, 255, 255, 0.08);
      --border-glow: rgba(14, 165, 233, 0.35);

      /* Dashboard Color Aliases */
      --color-muted: #CBD5E1;
      --color-cyan: #00B5B4;
      --color-green: #10B981;
      --color-red: #EF4444;

      /* Typography System */
      --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
      --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

      /* Radii & Shadows */
      --radius-sm: 10px;
      --radius-md: 18px;
      --radius-lg: 20px;
      --radius-full: 9999px;

      --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.6);
      --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.7);
      --shadow-lg: 0 20px 50px rgba(14, 165, 233, 0.12);

      --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden !important;
    }

    body {
      font-family: var(--font-body);
      background-color: var(--bg-dark);
      color: var(--text);
      width: 100%;
      max-width: 100%;
      overflow-x: hidden !important;
      position: relative;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* Structural & Media Overflow Containment */
    header, main, footer, section, .container {
      max-width: 100%;
    }

    img, video, iframe, canvas, svg {
      max-width: 100%;
    }

    /* ── Healthcare-Inspired Subtle Background Mesh & Molecular Network ── */
    .bg-mesh {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
      pointer-events: none;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.07) 0%, transparent 60%),
        linear-gradient(225deg, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
        linear-gradient(45deg, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        linear-gradient(to bottom, #050911, #03060C);
    }

    .bg-mesh::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(to right, rgba(199, 212, 229, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(199, 212, 229, 0.05) 1px, transparent 1px);
      background-size: 36px 36px;
      opacity: 0.5;
    }

    .mesh-ball {
      position: absolute;
      border-radius: 50%;
      filter: blur(140px);
      opacity: 0.15;
      animation: floatMesh 20s ease-in-out infinite alternate;
      will-change: transform;
    }

    .mesh-1 {
      width: 650px;
      height: 650px;
      background: var(--primary);
      top: -10%;
      left: -10%;
    }

    .mesh-2 {
      width: 550px;
      height: 550px;
      background: var(--cyan);
      bottom: 10%;
      right: -5%;
      animation-delay: -6s;
    }

    .mesh-3 {
      width: 500px;
      height: 500px;
      background: var(--teal);
      top: 40%;
      right: 20%;
      animation-delay: -12s;
      opacity: 0.1;
    }

    @keyframes floatMesh {
      0% {
        transform: translate(0, 0) scale(1);
      }

      100% {
        transform: translate(60px, 40px) scale(1.1);
      }
    }

    /* ── Typography & Gradients ── */
    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-heading);
      line-height: 1.15;
    }

    .gradient-text {
      background: linear-gradient(135deg, #FFFFFF 0%, #38BDF8 50%, #00B5B4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .gradient-blue {
      background: linear-gradient(135deg, #38BDF8 0%, #00B5B4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* ── Layout Container ── */
    .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .section {
      padding: 6rem 0;
      position: relative;
    }

    .section-alt {
      background-color: var(--bg-alt);
    }

    /* ── Section Label ── */
    .sec-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 6px 16px;
      border-radius: var(--radius-full);
      background: rgba(14, 165, 233, 0.12);
      border: 1px solid rgba(56, 189, 248, 0.25);
      color: #FFFFFF;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
      text-decoration: none !important;
    }

    .sec-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--primary-light);
      box-shadow: 0 0 8px var(--primary-light);
    }

    /* ── Buttons ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      padding: 14px 32px;
      border-radius: var(--radius-full);
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
      cursor: pointer;
      border: none;
      text-align: center;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: #FFFFFF;
      box-shadow: 0 8px 25px rgba(14, 165, 233, 0.25);
    }

    .btn-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 35px rgba(14, 165, 233, 0.38);
      color: #FFFFFF;
    }

    .btn-ghost {
      background: rgba(26, 45, 68, 0.6);
      color: var(--text);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .btn-ghost:hover {
      background: var(--bg-card-hover);
      border-color: var(--primary-light);
      transform: translateY(-3px);
      color: var(--primary-light);
    }

    /* ── Header Navbar (Full-Width Sticky Top Bar) ── */
    header {
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 1000;
    }

    .navbar {
      position: relative;
      transform: none;
      width: 100%;
      max-width: 100%;
      padding: 1rem 3rem;
      background: rgba(5, 9, 17, 0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
      transition: var(--transition);
    }

    .navbar.scrolled {
      background: rgba(5, 9, 17, 0.92);
      border-bottom-color: rgba(14, 165, 233, 0.2);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      background: #FFFFFF;
      padding: 8px 18px;
      border-radius: var(--radius-md);
      border: 1px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.25);
      transition: var(--transition);
    }

    .nav-logo-img {
      height: 42px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 2px 4px rgba(0, 41, 103, 0.15));
      transition: transform 0.3s ease;
    }

    .nav-logo:hover {
      border-color: var(--primary);
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), 0 0 22px rgba(14, 165, 233, 0.4);
      background: #FFFFFF;
      transform: translateY(-1px);
    }

    .nav-logo:hover .nav-logo-img {
      transform: scale(1.05);
    }

    .nav-logo-text {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .nav-logo-title {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 1.15rem;
      line-height: 1;
      text-align: center;
    }

    .brand-helix {
      color: #002967;
    }

    .brand-duo {
      color: #007D88;
    }

    .nav-logo-sub {
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #002967;
      font-weight: 700;
      margin-top: 3px;
      text-align: center;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-link {
      color: #FFFFFF !important;
      text-decoration: none !important;
      font-size: 0.9rem;
      font-weight: 600;
      transition: var(--transition);
    }

    .nav-link:hover {
      color: var(--primary-light) !important;
      text-decoration: none !important;
    }

    /* ── Hero ── */
    .hero {
      min-height: calc(100vh - 80px);
      padding-top: 5rem;
      padding-bottom: 5rem;
      display: flex;
      align-items: center;
      background: linear-gradient(180deg, rgba(14, 165, 233, 0.08) 0%, rgba(5, 9, 17, 0.95) 50%, #0A0F1B 100%), linear-gradient(135deg, #050911 0%, #0A0F1B 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-title {
      font-size: clamp(2.2rem, 3.2vw, 3.2rem);
      margin-bottom: 1.25rem;
      letter-spacing: -0.02em;
      color: #F8FAFC;
    }

    .hero-tagline-ticker {
      font-size: 1.15rem;
      color: var(--primary-light);
      font-family: var(--font-heading);
      font-style: italic;
      font-weight: 600;
      margin-bottom: 1.25rem;
      min-height: 28px;
    }

    .hero-subtitle {
      font-size: 1.05rem;
      color: var(--text-muted);
      margin-bottom: 2.5rem;
      max-width: 580px;
      line-height: 1.7;
    }

    .hero-cta-group {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .hero-pillars {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
    }

    .pillar-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 6px 14px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-full);
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--primary-light);
      box-shadow: var(--shadow-sm);
    }

    /* ── Cards Grid ── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
      gap: 1.75rem;
    }

    /* ── Distinct Module-Specific Card Architectures ── */

    /* Style 1: Why Helix Duo — Top-Border Accent Elevation Cards */
    .pillar-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 2.25rem;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .pillar-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--cyan));
      opacity: 0.8;
      transition: var(--transition);
    }

    .pillar-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      background: var(--bg-card-hover);
      border-color: var(--border-glow);
    }

    .pillar-card:hover::before {
      height: 6px;
    }

    /* Style 2: Core Values — Floating Diamond Monogram Cards */
    .value-card {
      background: linear-gradient(135deg, #151D2A 0%, #1E293B 100%);
      border: 1px dashed rgba(56, 189, 248, 0.25);
      border-radius: var(--radius-md);
      padding: 2rem 1.75rem;
      text-align: center;
      transition: var(--transition);
      position: relative;
    }

    .value-card:hover {
      background: var(--bg-card-hover);
      border-style: solid;
      border-color: var(--primary-light);
      transform: scale(1.03);
      box-shadow: var(--shadow-md);
    }

    .value-badge {
      display: inline-block;
      padding: 4px 12px;
      background: rgba(14, 165, 233, 0.15);
      border-radius: var(--radius-full);
      color: var(--primary-light);
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    /* Modern Dual-Glass Vision & Mission Cards */
    .modern-vm-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 3rem 2.5rem;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .modern-vm-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--cyan));
    }

    .modern-vm-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      background: var(--bg-card-hover);
      border-color: var(--border-glow);
    }

    .vm-icon-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2rem;
    }

    .vm-icon-circle {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(6, 182, 212, 0.2));
      border: 1px solid rgba(56, 189, 248, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-light);
    }

    .vm-chip-tag {
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--primary-light);
      padding: 6px 14px;
      background: rgba(14, 165, 233, 0.12);
      border-radius: var(--radius-full);
      border: 1px solid rgba(56, 189, 248, 0.2);
    }

    .mission-checklist {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 1.25rem;
    }

    .mission-check-row {
      display: flex;
      align-items: flex-start;
      gap: 0.85rem;
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .mission-check-bullet {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(16, 185, 129, 0.2);
      color: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.8rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* Style 3: Therapeutic Divisions — Left-Accent Clinical Bar Cards */
    .clinical-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-left: 5px solid var(--primary);
      border-radius: var(--radius-sm);
      padding: 1.75rem 2rem;
      transition: var(--transition);
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
      box-shadow: var(--shadow-sm);
    }

    .clinical-card:hover {
      border-left-color: var(--cyan);
      background: var(--bg-card-hover);
      transform: translateX(6px);
      box-shadow: var(--shadow-md);
    }

    /* Style 4: Portfolio Categories — Capsule Pill Minimal Cards */
    .portfolio-pill-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.75rem 1.5rem;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .portfolio-pill-card:hover {
      background: linear-gradient(180deg, #151D2A 0%, #1E293B 100%);
      border-color: var(--primary-light);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .card-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(14, 165, 233, 0.12);
      border: 1px solid rgba(56, 189, 248, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-light);
      margin-bottom: 1.5rem;
    }

    .card-title {
      font-size: 1.35rem;
      color: var(--text);
      margin-bottom: 0.75rem;
    }

    /* Style 5: Our Vision & Mission — Split Horizon Layout */
    .vision-hero-banner {
      background: linear-gradient(135deg, #0F172A 0%, #0284C7 60%, #06B6D4 100%);
      border-radius: var(--radius-lg);
      padding: 3.5rem 3rem;
      color: #FFFFFF;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .vision-hero-banner::after {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }

    .mission-grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.25rem;
    }

    .mission-pill-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .mission-pill-card:hover {
      border-color: var(--primary-light);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      background: var(--bg-card-hover);
    }

    .mission-num-badge {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: rgba(14, 165, 233, 0.15);
      color: var(--primary-light);
      font-weight: 800;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .card-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 3D Product Card */
    .product-3d-card {
      position: relative;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 3rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: var(--shadow-lg);
      transition: transform 0.2s ease-out, box-shadow 0.4s ease;
      transform-style: preserve-3d;
      perspective: 1000px;
    }

    .product-3d-card:hover {
      border-color: var(--border-glow);
      box-shadow: 0 25px 60px rgba(6, 182, 212, 0.2);
    }

    .product-img {
      max-width: 240px;
      height: auto;
      filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
      transform: translateZ(40px);
    }

    .product-tag {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: rgba(16, 185, 129, 0.15);
      border: 1px solid rgba(16, 185, 129, 0.35);
      color: var(--teal);
      padding: 4px 12px;
      border-radius: var(--radius-full);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    /* ── Flagship Monograph Module Architecture ── */
    .flagship-card {
      position: relative;
      background: linear-gradient(135deg, rgba(14, 22, 41, 0.98) 0%, rgba(9, 15, 30, 0.96) 100%);
      border: 1px solid rgba(14, 165, 233, 0.35);
      border-radius: var(--radius-lg);
      padding: 3.5rem 3rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(14, 165, 233, 0.15);
      overflow: hidden;
      transition: var(--transition);
    }

    .flagship-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, #00B5B4 0%, #38BDF8 50%, #0EA5E9 100%);
      box-shadow: 0 0 15px rgba(56, 189, 248, 0.8);
    }

    .flagship-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 3.5rem;
      align-items: center;
    }

    .flagship-img-col {
      position: relative;
      background: rgba(5, 9, 17, 0.6);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 3rem 2rem 2.25rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: inset 0 0 30px rgba(14, 165, 233, 0.08);
      transition: var(--transition);
    }

    .flagship-img-col:hover {
      border-color: var(--border-glow);
      box-shadow: inset 0 0 40px rgba(14, 165, 233, 0.15), 0 15px 40px rgba(0, 0, 0, 0.5);
    }

    .product-glow-halo {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(14, 165, 233, 0.28) 0%, rgba(0, 181, 180, 0.08) 50%, transparent 70%);
      filter: blur(25px);
      pointer-events: none;
    }

    .flagship-status-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 5px 12px;
      background: rgba(14, 165, 233, 0.15);
      border: 1px solid rgba(14, 165, 233, 0.4);
      border-radius: var(--radius-full);
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--primary-light);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .pulse-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 8px var(--cyan);
      animation: pulseGlow 2s infinite alternate;
    }

    @keyframes pulseGlow {
      0% { opacity: 0.4; transform: scale(0.9); }
      100% { opacity: 1; transform: scale(1.25); }
    }

    .flagship-bottle-info {
      margin-top: 1.75rem;
      text-align: center;
      z-index: 1;
    }

    .flagship-bottle-info h4 {
      font-size: 1.3rem;
      color: var(--text);
      font-weight: 700;
    }

    .flagship-bottle-info span {
      font-size: 0.82rem;
      color: var(--primary-light);
      font-weight: 600;
      display: block;
      margin-top: 3px;
    }

    .flagship-title {
      font-size: 2.2rem;
      color: var(--text);
      margin-bottom: 0.85rem;
      line-height: 1.2;
    }

    .flagship-subtitle {
      color: var(--text-muted);
      line-height: 1.7;
      font-size: 1.02rem;
      margin-bottom: 1.75rem;
    }

    .flagship-spec-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .flagship-spec-item {
      background: var(--bg-alt);
      padding: 1.1rem;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      transition: var(--transition);
    }

    .flagship-spec-item:hover {
      border-color: var(--border-glow);
      background: var(--bg-card-hover);
    }

    .flagship-spec-label {
      font-size: 0.72rem;
      color: var(--text-subtle);
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 0.06em;
      display: block;
      margin-bottom: 4px;
    }

    .flagship-spec-value {
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--primary-light);
    }

    .flagship-action-group {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .flagship-note {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--cyan);
    }

    /* Checklist Grid */
    .checklist-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.25rem;
    }

    .checklist-card {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.25rem 1.5rem;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .checklist-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      background: var(--bg-card-hover);
      border-color: var(--primary-light);
    }

    .check-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(16, 185, 129, 0.2);
      color: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.9rem;
      min-width: 28px;
    }

    .check-text {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text);
    }

    /* Timeline Journey */
    .journey-box {
      background: linear-gradient(135deg, #0B0F19 0%, #0F172A 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 4rem 3rem;
      color: #FFFFFF;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .journey-quote {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-style: italic;
      margin: 2rem 0;
      color: var(--primary-light);
    }

    /* Contact Section */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 3.5rem;
    }

    .contact-box {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 3rem;
      box-shadow: var(--shadow-md);
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-lbl {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      padding: 14px 18px;
      background: var(--bg-alt);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 0.95rem;
      outline: none;
      transition: var(--transition);
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: var(--primary-light);
      box-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
    }

    /* ── Blog & Insights Section ── */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
      gap: 2rem;
    }

    .blog-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      background: var(--bg-card-hover);
      border-color: var(--border-glow);
    }

    .blog-thumb {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(6, 182, 212, 0.2));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-light);
      position: relative;
    }

    .blog-content {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .blog-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.8rem;
      color: var(--text-subtle);
      margin-bottom: 0.75rem;
    }

    .blog-category {
      color: var(--primary-light);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .blog-title {
      font-family: var(--font-heading);
      font-size: 1.35rem;
      color: var(--text);
      line-height: 1.35;
      margin-bottom: 0.75rem;
      transition: var(--transition);
    }

    .blog-card:hover .blog-title {
      color: var(--primary-light);
    }

    .blog-snippet {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    .blog-read-more {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--primary-light);
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      transition: var(--transition);
    }

    .blog-read-more:hover {
      color: var(--cyan);
      gap: 0.75rem;
    }

    /* ── Info Pages & Minimal Hero ── */
    .page-hero {
      position: relative;
      padding: 3.5rem 0 2rem;
      background: var(--bg-dark);
      border-bottom: 1px solid var(--border);
      text-align: center;
    }

    .page-hero::before {
      display: none;
    }

    .page-hero .container {
      position: relative;
      z-index: 2;
    }

    .page-hero .sec-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.3rem 0.85rem;
      background: rgba(14, 165, 233, 0.08);
      border: 1px solid rgba(14, 165, 233, 0.2);
      border-radius: var(--radius-full);
      color: var(--primary-light);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .page-title {
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 0.75rem;
      letter-spacing: -0.02em;
    }

    .page-subtitle {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.5;
    }

    .page-hero-meta {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      margin-top: 1rem;
      font-size: 0.82rem;
      color: var(--text-subtle);
    }

    .page-hero-meta span {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    /* ── Info Page Simplified Layout ── */
    .info-content-section {
      padding: 3rem 0 5rem;
      background: var(--bg-dark);
    }

    .info-layout {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 2.5rem;
      align-items: start;
    }

    .info-sidebar {
      position: sticky;
      top: 90px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.25rem;
    }

    .info-sidebar-title {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-subtle);
      margin-bottom: 0.85rem;
      padding-bottom: 0.4rem;
      border-bottom: 1px solid var(--border);
    }

    .info-toc-list {
      list-style: none;
      padding: 0;
      margin: 0 0 1.25rem 0;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .info-toc-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.75rem;
      border-radius: 6px;
      color: var(--text-muted);
      font-size: 0.85rem;
      font-weight: 500;
      text-decoration: none;
      transition: var(--transition);
    }

    .info-toc-link:hover,
    .info-toc-link.active {
      color: #FFFFFF;
      background: rgba(14, 165, 233, 0.1);
      border-left: 2px solid var(--primary);
    }

    .info-switcher-box {
      background: var(--bg-alt);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.85rem;
    }

    .info-switcher-title {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-subtle);
      margin-bottom: 0.5rem;
    }

    .info-switcher-links {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .info-switcher-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--primary-light);
      font-size: 0.82rem;
      font-weight: 600;
      text-decoration: none;
      padding: 0.35rem 0.5rem;
      border-radius: 4px;
      transition: var(--transition);
    }

    .info-switcher-link:hover {
      background: rgba(14, 165, 233, 0.08);
      color: #FFFFFF;
    }

    /* ── Legal Document Content ── */
    .legal-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 2.25rem 2.5rem;
    }

    .legal-section {
      margin-bottom: 2.25rem;
      scroll-margin-top: 100px;
    }

    .legal-section:last-child {
      margin-bottom: 0;
    }

    .legal-heading {
      font-size: 1.25rem;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.65rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--border);
    }

    .legal-heading-num {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(14, 165, 233, 0.1);
      border: 1px solid rgba(14, 165, 233, 0.2);
      color: var(--primary-light);
      font-size: 0.82rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .legal-text {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .legal-text:last-child {
      margin-bottom: 0;
    }

    .legal-callout {
      background: rgba(14, 165, 233, 0.05);
      border-left: 3px solid var(--primary);
      border-radius: 4px;
      padding: 1rem 1.25rem;
      margin: 1.25rem 0;
      color: var(--text-secondary);
    }

    .legal-callout-warning {
      background: rgba(245, 158, 11, 0.08);
      border-left: 4px solid #F59E0B;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 1.25rem 1.5rem;
      margin: 1.5rem 0;
      color: var(--text-secondary);
    }

    .legal-callout-title {
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 0.4rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .legal-callout-warning .legal-callout-title {
      color: #FBBF24;
    }

    .legal-callout .legal-callout-title {
      color: var(--primary-light);
    }

    /* ── FAQ Search & Categories ── */
    .faq-search-wrapper {
      position: relative;
      max-width: 640px;
      margin: 2rem auto 0;
    }

    .faq-search-input {
      width: 100%;
      padding: 1.1rem 1.5rem 1.1rem 3.2rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-full);
      color: #FFFFFF;
      font-size: 0.98rem;
      outline: none;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .faq-search-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 25px rgba(14, 165, 233, 0.25);
    }

    .faq-search-icon {
      position: absolute;
      left: 1.25rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-subtle);
      pointer-events: none;
    }

    .faq-categories {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .faq-pill {
      padding: 0.65rem 1.35rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-full);
      color: var(--text-muted);
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }

    .faq-pill:hover {
      color: #FFFFFF;
      border-color: rgba(14, 165, 233, 0.4);
      background: var(--bg-card-hover);
    }

    .faq-pill.active {
      background: var(--primary);
      color: #FFFFFF;
      border-color: var(--primary);
      box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
    }

    /* ── Enhanced FAQ Accordion ── */
    .faq-list {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .faq-item:hover {
      border-color: rgba(14, 165, 233, 0.3);
      box-shadow: var(--shadow-md);
    }

    .faq-item.open {
      border-color: var(--border-glow);
      background: var(--bg-card-hover);
    }

    .faq-head {
      width: 100%;
      padding: 1.5rem 1.75rem;
      background: none;
      border: none;
      color: #FFFFFF;
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 600;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      cursor: pointer;
    }

    .faq-title-wrap {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .faq-badge {
      padding: 0.2rem 0.65rem;
      border-radius: 6px;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      background: rgba(14, 165, 233, 0.12);
      color: var(--primary-light);
      border: 1px solid rgba(14, 165, 233, 0.2);
    }

    .faq-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(14, 165, 233, 0.1);
      border: 1px solid rgba(14, 165, 233, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, color 0.3s ease;
      color: var(--primary-light);
      font-weight: 700;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--primary);
      border-color: var(--primary);
      color: #FFFFFF;
    }

    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
      color: var(--text-muted);
      font-size: 0.96rem;
      padding: 0 1.75rem;
      line-height: 1.75;
    }

    .faq-item.open .faq-body {
      max-height: 400px;
      padding: 0 1.75rem 1.75rem;
    }

    .faq-no-results {
      text-align: center;
      padding: 4rem 2rem;
      background: var(--bg-card);
      border: 1px dashed var(--border);
      border-radius: var(--radius-md);
      color: var(--text-subtle);
      display: none;
    }

    /* ── FAQ Contact CTA Box ── */
    .faq-contact-card {
      background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(0, 181, 180, 0.08) 100%);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg);
      padding: 3rem 2rem;
      text-align: center;
      margin-top: 4rem;
      position: relative;
      overflow: hidden;
    }

    .faq-contact-title {
      font-size: 1.6rem;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 0.75rem;
    }

    .faq-contact-desc {
      color: var(--text-muted);
      max-width: 540px;
      margin: 0 auto 1.75rem;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Responsive adjustments for info layout */
    @media (max-width: 992px) {
      .info-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .info-sidebar {
        position: relative;
        top: 0;
      }

      .legal-card {
        padding: 2rem 1.5rem;
      }
    }

    /* ── Modal Popups for Terms & Privacy ── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.6);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-container {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      max-width: 1000px;
      width: 100%;
      max-height: 85vh;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-lg);
      transform: translateY(20px);
      transition: var(--transition);
    }

    .modal-overlay.active .modal-container {
      transform: translateY(0);
    }

    .modal-header {
      padding: 1.75rem 2rem;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .modal-title {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      color: var(--primary);
    }

    .modal-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--bg-alt);
      border: 1px solid var(--border);
      color: var(--text);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: var(--transition);
    }

    .modal-close:hover {
      background: var(--primary);
      color: #FFFFFF;
    }

    .modal-body {
      padding: 2rem;
      overflow-y: auto;
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    .modal-body h4 {
      color: var(--text);
      margin: 1.5rem 0 0.5rem;
      font-size: 1.1rem;
    }

    .modal-body h4:first-child {
      margin-top: 0;
    }

    /* Contact Info Card & Icon Styling */
    .contact-info-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2.25rem;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .contact-info-card:hover {
      box-shadow: var(--shadow-md);
      border-color: var(--border-glow);
      background: var(--bg-card-hover);
    }

    .contact-item-row {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 1.1rem;
      border-radius: var(--radius-md);
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      margin-bottom: 1rem;
      transition: var(--transition);
    }

    .contact-item-row:last-child {
      margin-bottom: 0;
    }

    .contact-item-row:hover {
      background: var(--bg-card-hover);
      border-color: var(--primary-light);
      transform: translateX(4px);
      box-shadow: var(--shadow-sm);
    }

    .contact-icon-pill {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(6, 182, 212, 0.2));
      border: 1px solid rgba(56, 189, 248, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-light);
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .contact-item-label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-bottom: 2px;
    }

    .contact-item-val {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text);
      text-decoration: none;
      transition: var(--transition);
    }

    .contact-item-val:hover {
      color: var(--primary-light);
    }

    /* Footer & Social Icons */
    .footer {
      border-top: 1px solid var(--border);
      padding: 4rem 0 2rem;
      background: #0A121E;
    }

    .social-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .social-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--bg-card);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-light);
      text-decoration: none;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .social-icon:hover {
      background: var(--primary);
      color: #FFFFFF;
      border-color: var(--primary);
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
    }

    .foot-btm {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
      color: var(--text-subtle);
      font-size: 0.85rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    /* Responsive Drawer */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 32px;
      height: 32px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 1001;
    }

    .nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: var(--transition);
    }

    .nav-toggle.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .nav-mobile-drawer {
      position: absolute;
      top: calc(100% + 0.75rem);
      left: 0;
      right: 0;
      background: rgba(14, 22, 41, 0.96);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      box-shadow: var(--shadow-lg), 0 0 30px rgba(14, 165, 233, 0.15);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-10px);
      transition: var(--transition);
      z-index: 1000;
    }

    .nav-mobile-drawer.active {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mobile-nav-link {
      color: var(--text);
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 600;
      padding: 0.65rem 0.75rem;
      border-bottom: 1px solid var(--border);
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active {
      color: var(--primary-light);
      background: rgba(14, 165, 233, 0.1);
      padding-left: 1rem;
    }

    /* Responsive Media Queries for Appbar & Layout */
    @media (max-width: 1200px) {
      .nav-links {
        gap: 1.2rem;
      }

      .nav-link {
        font-size: 0.82rem;
      }
    }

    @media (max-width: 1080px) {

      .nav-links,
      .nav-cta {
        display: none !important;
      }

      .nav-toggle {
        display: flex;
      }

      .navbar {
        padding: 0.65rem 1.25rem;
      }
    }

    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
      }

      .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-cta-group {
        justify-content: center;
      }

      .hero-pillars {
        justify-content: center;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 992px) {
      #vision-mission .container>div {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
      }

      #products>.container>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
      }

      .flagship-card {
        padding: 2rem 1.25rem !important;
      }

      .flagship-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
      }

      .flagship-text-col {
        order: 1 !important;
        width: 100% !important;
      }

      .flagship-img-col {
        order: 2 !important;
        width: 100% !important;
      }

      #products div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
      }
    }

    @media (max-width: 768px) {
      /* Mobile Heading & Typography Scaling */
      h1, .hero-title, .page-title {
        font-size: clamp(1.65rem, 6.5vw, 2.25rem) !important;
        line-height: 1.2 !important;
      }

      h2, .section-title, .sec-title, .legal-heading {
        font-size: clamp(1.35rem, 5.2vw, 1.75rem) !important;
        line-height: 1.25 !important;
      }

      h3, .card-title {
        font-size: clamp(1.15rem, 4.2vw, 1.35rem) !important;
        line-height: 1.3 !important;
      }

      h4 {
        font-size: clamp(1rem, 3.8vw, 1.15rem) !important;
        line-height: 1.35 !important;
      }

      h5, h6 {
        font-size: 0.95rem !important;
      }

      .section {
        padding: 3.5rem 0;
      }

      .hero {
        padding-top: 3.5rem;
        padding-bottom: 3rem;
      }

      .cards-grid {
        grid-template-columns: 1fr;
      }

      .modern-vm-card {
        padding: 2rem 1.5rem;
      }

      .contact-box {
        padding: 1.5rem;
      }

      .contact-info-card {
        padding: 1.5rem;
      }

      .navbar {
        padding: 0.85rem 1.5rem;
      }

      .nav-logo-img {
        height: 34px;
      }

      .nav-mobile-drawer {
        border-radius: var(--radius-md);
        padding: 1.25rem;
        top: 100%;
      }

      .foot-btm {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
      }

      /* Mobile Background Mesh Optimization */
      .bg-mesh {
        width: 100vw;
        height: 100vh;
      }

      .mesh-1 {
        width: 320px;
        height: 320px;
        filter: blur(60px);
        top: -5%;
        left: -15%;
        opacity: 0.25;
      }

      .mesh-2 {
        width: 280px;
        height: 280px;
        filter: blur(50px);
        bottom: 5%;
        right: -10%;
        opacity: 0.2;
      }

      .mesh-3 {
        width: 240px;
        height: 240px;
        filter: blur(45px);
        top: 35%;
        right: 5%;
        opacity: 0.15;
      }
    }

    @media (max-width: 480px) {
      /* Extra Small Mobile Typography Scaling */
      h1, .hero-title, .page-title {
        font-size: clamp(1.45rem, 5.8vw, 1.85rem) !important;
      }

      h2, .section-title, .sec-title, .legal-heading {
        font-size: clamp(1.2rem, 4.5vw, 1.45rem) !important;
      }

      h3, .card-title {
        font-size: clamp(1.05rem, 3.8vw, 1.2rem) !important;
      }

      h4 {
        font-size: 0.95rem !important;
      }

      .container {
        padding: 0 1rem;
      }

      .navbar {
        padding: 0.75rem 1rem;
      }

      .hero-cta-group {
        flex-direction: column;
        width: 100%;
      }

      .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .hero-pillars {
        gap: 0.5rem;
      }

      .pillar-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
      }

      .sec-tag {
        font-size: 0.72rem;
        padding: 4px 10px;
      }

      .contact-item-row {
        flex-direction: flex-start;
        gap: 0.85rem;
        padding: 0.85rem;
      }

      .contact-item-val {
        font-size: 0.95rem;
        word-break: break-all;
      }

      .vm-icon-header {
        margin-bottom: 1.25rem;
      }

      .vm-icon-circle {
        width: 48px;
        height: 48px;
      }
    }
    /* ── Animated Website Opening Preloader ── */
    #site-preloader {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background-color: #050911;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #site-preloader.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    .preloader-wrapper {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.75rem;
    }

    .preloader-logo-box {
      position: relative;
      width: 130px;
      height: 130px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .preloader-ring {
      position: absolute;
      inset: -12px;
      border-radius: 50%;
      border: 2px solid transparent;
      border-top-color: var(--primary-light);
      border-right-color: var(--cyan);
      animation: preloaderSpin 1.4s linear infinite;
      box-shadow: 0 0 25px rgba(56, 189, 248, 0.3);
    }

    .preloader-ring-outer {
      position: absolute;
      inset: -24px;
      border-radius: 50%;
      border: 1px dashed rgba(56, 189, 248, 0.25);
      animation: preloaderSpinReverse 3.5s linear infinite;
    }

    .preloader-img {
      width: 90px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 0 15px rgba(14, 165, 233, 0.6));
      animation: preloaderPulse 1.8s ease-in-out infinite alternate;
    }

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

    .preloader-title {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      background: linear-gradient(135deg, #FFFFFF 0%, #38BDF8 60%, #00B5B4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .preloader-subtitle {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-subtle);
      margin-top: 4px;
    }

    .preloader-progress-bar {
      width: 160px;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-full);
      overflow: hidden;
      margin-top: 0.5rem;
    }

    .preloader-progress-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--primary), var(--cyan), var(--primary-light));
      border-radius: var(--radius-full);
      animation: preloaderProgress 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
    }

    @keyframes preloaderSpin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes preloaderSpinReverse {
      0% { transform: rotate(360deg); }
      100% { transform: rotate(0deg); }
    }

    @keyframes preloaderPulse {
      0% { transform: scale(0.94); opacity: 0.85; }
      100% { transform: scale(1.06); filter: drop-shadow(0 0 28px rgba(0, 181, 180, 0.8)); opacity: 1; }
    }

    @keyframes preloaderProgress {
      0% { width: 0%; }
      50% { width: 65%; }
      100% { width: 100%; }
    }

/* ============================================================
   ADMIN PORTAL & DASHBOARD STYLES (X3von-Style Layout)
   ============================================================ */

/* Admin Login Page */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-dark);
  position: relative;
  overflow-x: hidden;
}

.login-wrap {
  width: 100%;
  max-width: 420px;
  z-index: 1;
}

.brand {
  text-align: center;
  margin-bottom: 2.25rem;
}

.brand img {
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.25));
}

.brand h1 {
  font-family: var(--font-mono, "Space Grotesk", monospace);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.login-card {
  background: rgba(14, 22, 41, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: border-color 0.3s ease;
}

.login-card:hover {
  border-color: rgba(14, 165, 233, 0.25);
}

.login-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.login-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.btn-login {
  width: 100%;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.45);
}

.btn-login:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.error-msg {
  display: none;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  color: #FCA5A5;
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.error-msg.visible {
  display: block;
  animation: fadeIn 0.3s ease;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--primary);
}

/* Dashboard Topbar & Sidebar Layout */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(9, 15, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 0 calc(250px + 1.5rem);
  z-index: 100;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-left h2 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.topbar-left span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-box {
  position: relative;
  width: 220px;
}

.search-box input {
  width: 100%;
  padding: 0.45rem 0.85rem 0.45rem 2.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.82rem;
  outline: none;
  transition: all 0.2s ease;
}

.search-box input:focus {
  border-color: var(--primary);
  background: rgba(14, 165, 233, 0.06);
  width: 260px;
}

.search-box svg {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--text-subtle);
  pointer-events: none;
}

.admin-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

.admin-pill::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}

.btn-refresh {
  padding: 0.45rem 0.85rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.btn-refresh:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 250px;
  background: var(--bg-alt);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 101;
  padding: 1.25rem 0 1.5rem;
  transition: transform 0.3s ease;
}

.sidebar-brand {
  padding: 0 1.25rem 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-brand img { height: 32px; }

.sidebar-brand strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.sidebar-brand span {
  font-size: 0.72rem;
  color: var(--primary);
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sidebar-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 1.25rem;
  margin: 1.25rem 0 0.4rem;
}

.sidebar-label:first-of-type { margin-top: 0; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  user-select: none;
}

.nav-item svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav-item:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.nav-item.active {
  color: var(--primary);
  border-left-color: var(--primary);
  background: rgba(14, 165, 233, 0.12);
  font-weight: 600;
}

.nav-badge {
  margin-left: auto;
  padding: 0.15rem 0.5rem;
  background: rgba(14, 165, 233, 0.15);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.sidebar-footer {
  margin-top: auto;
  padding: 1rem 1.25rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-profile {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.sidebar-profile .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--logo-navy), var(--primary));
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.sidebar-profile .meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sidebar-profile .meta strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-profile .meta span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.sidebar-logout {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-logout:hover {
  color: #EF4444;
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.08);
}

.main {
  margin-left: 250px;
  margin-top: 64px;
  padding: 2rem;
  flex: 1;
}

.panel { display: none; }
.panel.active { display: block; animation: fadeIn 0.3s ease; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.25s ease;
}

.stat-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.stat-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.stat-card .val {
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--primary);
}

.panel-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.table-wrapper {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  text-align: left;
}

.data-table th {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}

.data-table tbody tr {
  transition: background 0.2s ease;
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.tag-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tag-badge.primary { background: rgba(14, 165, 233, 0.15); color: var(--primary); }
.tag-badge.cyan { background: rgba(0, 181, 180, 0.15); color: var(--cyan); }
.tag-badge.green { background: rgba(16, 185, 129, 0.15); color: #10B981; }

.btn-action {
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-action:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.btn-action.danger:hover {
  color: #EF4444;
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
}

.btn-primary-sm {
  padding: 0.55rem 1.1rem;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-primary-sm:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 13, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: grid;
  animation: fadeIn 0.2s ease;
}

.modal-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  width: 100%;
  max-width: 780px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  position: relative;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.modal-close:hover { color: var(--text); }

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-row label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-weight: 700;
}

.detail-row p {
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  line-height: 1.5;
}

.modal-footer {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.form-group-modal {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group-modal label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.form-group-modal input, .form-group-modal select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  outline: none;
  font-family: var(--font-body);
}

.form-group-modal input:focus {
  border-color: var(--primary);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .topbar { padding-left: 1.5rem; }
  .main { margin-left: 0; }
}

/* ── Floating WhatsApp Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45), 0 6px 24px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  background: #20BA5A;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
