    /* ========== HERO SECTION - PREMIUM ========== */
    .hero-section {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #E8EFF9 0%, #E4EBF5 100%);
    }

    /* Decorative blobs — larger, more vivid */
    .hero-section::before {
      content: '';
      position: absolute;
      top: -15%;
      right: -5%;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(74, 144, 217, 0.12) 0%, transparent 65%);
      pointer-events: none;
      animation: float 8s ease-in-out infinite;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -25%;
      left: -8%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(56, 178, 172, 0.10) 0%, transparent 65%);
      pointer-events: none;
      animation: float 10s ease-in-out infinite reverse;
    }

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

    .hero-headline {
      font-size: clamp(2.25rem, 5vw, 3.75rem);
      font-weight: 800;
      line-height: 1.08;
      margin-bottom: var(--space-6);
      letter-spacing: -0.03em;
      color: var(--text-primary);
    }

    [data-theme="dark"] .hero-headline {
      text-shadow: 0 0 40px rgba(56, 189, 248, 0.15);
    }

    .hero-subheadline {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto var(--space-6);
      line-height: 1.7;
    }

    .hero-reassurance {
      font-size: var(--text-sm);
      color: var(--text-muted);
      margin-bottom: var(--space-8);
      padding: var(--space-3) var(--space-5);
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: var(--radius-full);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      display: inline-block;
      transition: all 0.3s ease;
    }

    [data-theme="dark"] .hero-reassurance {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .hero-reassurance:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .hero-cta-group {
      display: flex;
      justify-content: center;
      gap: var(--space-4);
      flex-wrap: wrap;
      margin-bottom: var(--space-12);
    }

    /* ========== ADVANCED DASHBOARD SHOWCASE ========== */
    .dashboard-showcase {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-6);
      margin-top: var(--space-12);
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }

    /* Ambient Background Glow — brighter */
    .dashboard-showcase::before {
      content: '';
      position: absolute;
      top: -10%;
      left: 10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(74, 144, 217, 0.18) 0%, transparent 65%);
      filter: blur(60px);
      z-index: 0;
      animation: float 8s ease-in-out infinite;
    }

    .dashboard-showcase::after {
      content: '';
      position: absolute;
      bottom: -10%;
      right: 10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(72, 187, 120, 0.14) 0%, transparent 65%);
      filter: blur(60px);
      z-index: 0;
      animation: float 10s ease-in-out infinite reverse;
    }

    .dash-card {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: var(--radius-xl);
      padding: var(--space-6);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      position: relative;
      z-index: 1;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(255, 255, 255, 0.5);
    }

    /* Gradient accent line on top */
    .dash-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-primary), var(--teal-primary));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .dash-card:hover::before {
      opacity: 1;
    }

    .dash-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.12),
        0 0 40px rgba(74, 144, 217, 0.06);
      border-color: rgba(74, 144, 217, 0.15);
      z-index: 10;
    }

    [data-theme="dark"] .dash-card {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.06);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    [data-theme="dark"] .dash-card:hover {
      box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(56, 189, 248, 0.08);
      border-color: rgba(56, 189, 248, 0.15);
    }

    /* Card Header */
    .dash-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: var(--space-6);
      position: relative;
      z-index: 2;
    }

    .dash-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .dash-badge {
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: var(--radius-full);
      box-shadow: var(--neu-inset);
      background: var(--bg-surface);
    }

    .dash-badge-secure {
      color: var(--success);
      border: 1px solid rgba(72, 187, 120, 0.2);
      background: rgba(72, 187, 120, 0.1);
    }

    .dash-badge-live {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--accent-primary);
      border: 1px solid rgba(74, 144, 217, 0.2);
      background: rgba(74, 144, 217, 0.1);
    }

    .live-dot {
      width: 6px;
      height: 6px;
      background: var(--accent-primary);
      border-radius: 50%;
      box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.2);
      animation: pulse 2s infinite;
    }

    /* Risk Gauge Enhanced */
    .risk-gauge {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: var(--space-4);
      filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.05));
    }

    .gauge-bg {
      stroke: var(--border-default);
      transition: stroke 0.3s;
    }

    .gauge-fill {
      filter: drop-shadow(0 0 4px rgba(236, 201, 75, 0.5));
      animation: gaugeLoad 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    .risk-score {
      display: flex;
      align-items: baseline;
      gap: 2px;
      margin-top: -10px;
    }

    .risk-value {
      font-size: 48px;
      font-weight: 800;
      background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .risk-out-of {
      font-size: var(--text-lg);
      font-weight: 500;
      color: var(--text-muted);
    }

    .dash-caption {
      font-size: var(--text-xs);
      color: var(--text-muted);
      text-align: center;
      padding-top: var(--space-4);
      border-top: 1px solid var(--border-subtle);
    }

    /* Signal List Enhanced */
    .signal-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .signal-item {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      padding: var(--space-3) 0;
      font-size: var(--text-sm);
      color: var(--text-secondary);
      border-bottom: 1px solid var(--border-subtle);
      transition: all 0.2s;
    }

    .signal-item:last-child {
      border-bottom: none;
    }

    .signal-item:hover {
      padding-left: 4px;
      color: var(--text-primary);
    }

    .signal-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    }

    .signal-ok .signal-dot {
      background: var(--success);
      box-shadow: 0 0 8px rgba(72, 187, 120, 0.4);
    }

    .signal-warn .signal-dot {
      background: var(--warning);
      box-shadow: 0 0 8px rgba(236, 201, 75, 0.4);
    }

    .signal-alert .signal-dot {
      background: var(--danger);
      box-shadow: 0 0 8px rgba(245, 101, 101, 0.4);
      animation: pulse 1.5s infinite;
    }

    /* Monitoring Status Enhanced */
    .status-stats {
      background: var(--bg-surface);
      border-radius: var(--radius-lg);
      padding: var(--space-4);
      margin-bottom: var(--space-4);
      box-shadow: var(--neu-inset);
    }

    .status-row {
      display: flex;
      justify-content: space-between;
      padding: var(--space-1) 0;
      font-size: var(--text-sm);
    }

    .status-label {
      color: var(--text-muted);
    }

    .status-value {
      color: var(--text-primary);
      font-weight: 600;
      font-family: 'Monaco', monospace;
      font-size: var(--text-xs);
    }

    /* Progress Bar Enhanced */
    .progress-bar-container {
      margin-top: var(--space-6);
    }

    .progress-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: var(--space-2);
      font-size: var(--text-xs);
      font-weight: 600;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .progress-bar-bg {
      height: 6px;
      background: var(--bg-surface);
      border-radius: var(--radius-full);
      box-shadow: var(--neu-inset);
      overflow: hidden;
      position: relative;
    }

    .progress-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--accent-primary), var(--teal-primary));
      border-radius: var(--radius-full);
      position: relative;
      width: 85%;
      box-shadow: 0 0 10px rgba(74, 144, 217, 0.4);
      animation: progressLoad 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    .progress-bar-fill::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transform: translateX(-100%);
      animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
      100% {
        transform: translateX(100%);
      }
    }

    /* ========== TRUST BADGES PREMIUM ========== */
    .trust-badges {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: var(--space-4);
      margin-top: var(--space-10);
      position: relative;
      z-index: 2;
    }

    .trust-badge-item {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      padding: 10px 20px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(8px);
      border: 1px solid var(--border-default);
      border-radius: 40px;
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--text-secondary);
      box-shadow: var(--neu-raised-sm);
      transition: all 0.3s ease;
      cursor: default;
    }

    [data-theme="dark"] .trust-badge-item {
      background: rgba(22, 27, 34, 0.6);
      color: var(--text-primary);
    }

    .trust-badge-item:hover {
      transform: translateY(-2px);
      box-shadow: var(--neu-raised);
      border-color: var(--accent-primary);
      color: var(--accent-primary);
    }

    .trust-badge-item:hover .badge-icon {
      color: var(--accent-primary);
      filter: drop-shadow(0 0 5px rgba(74, 144, 217, 0.4));
    }

    .badge-icon {
      width: 20px;
      height: 20px;
      color: var(--text-muted);
      transition: all 0.3s ease;
    }

    @media (max-width: 900px) {
      .dashboard-showcase {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: var(--space-6);
      }

      .trust-badges {
        gap: var(--space-3);
      }

      .trust-badge-item {
        font-size: var(--text-xs);
        padding: 8px 16px;
      }
    }



    /* Responsive Dashboard */
    @media (max-width: 768px) {
      .dashboard-showcase {
        grid-template-columns: 1fr;
        max-width: 400px;
      }

      .trust-badges {
        gap: var(--space-2);
      }

      .trust-badge-item {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-xs);
      }
    }

    /* ========== PROBLEM SECTION ========== */
    .problem-section {
      background: var(--bg-base);
    }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-12);
      align-items: center;
    }

    .problem-content h2 {
      margin-bottom: var(--space-6);
    }

    .problem-list {
      list-style: none;
      padding: 0;
      margin: var(--space-6) 0;
    }

    .problem-list li {
      padding: var(--space-3) var(--space-4);
      padding-left: var(--space-10);
      position: relative;
      color: var(--text-secondary);
      background: var(--bg-base);
      border-radius: var(--radius-lg);
      margin-bottom: var(--space-3);
      box-shadow: var(--neu-raised-sm);
    }

    .problem-list li::before {
      content: '→';
      position: absolute;
      left: var(--space-4);
      color: var(--accent-primary);
      font-weight: bold;
    }

    .solution-highlight {
      background: var(--bg-base);
      border-radius: var(--radius-2xl);
      padding: var(--space-8);
      box-shadow: var(--neu-card), 0 0 30px rgba(74, 144, 217, 0.1);
    }

    /* Section Badge */
    .section-badge {
      display: inline-block;
      padding: var(--space-2) var(--space-4);
      background: linear-gradient(135deg, var(--accent-soft), var(--teal-soft));
      color: var(--accent-primary);
      font-size: var(--text-xs);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      border-radius: var(--radius-full);
      margin-bottom: var(--space-4);
      border: 1px solid var(--border-subtle);
    }

    /* ========== BENEFITS SECTION (Premium) ========== */
    .benefit-card {
      padding: var(--space-8);
      text-align: center;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(74, 144, 217, 0.12);
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    [data-theme="dark"] .benefit-card {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.06);
    }

    .benefit-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-primary), var(--teal-primary));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .benefit-card:hover::before {
      opacity: 1;
    }

    .benefit-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1), 0 0 40px rgba(74, 144, 217, 0.08);
      border-color: rgba(74, 144, 217, 0.2);
    }

    [data-theme="dark"] .benefit-card:hover {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 40px rgba(56, 189, 248, 0.06);
      border-color: rgba(56, 189, 248, 0.15);
    }

    .benefit-card:hover::before {
      opacity: 1;
      height: 3px;
    }

    .benefit-icon-container {
      position: relative;
      display: inline-block;
      margin-bottom: var(--space-5);
    }

    .benefit-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto var(--space-4);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5));
      border-radius: var(--radius-xl);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    [data-theme="dark"] .benefit-icon {
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .benefit-card:hover .benefit-icon {
      background: linear-gradient(135deg, var(--accent-primary), var(--teal-primary));
      color: white;
      box-shadow: 0 8px 24px rgba(74, 144, 217, 0.35);
      transform: scale(1.08);
    }

    .benefit-number {
      position: absolute;
      top: -6px;
      right: -6px;
      width: 22px;
      height: 22px;
      background: linear-gradient(135deg, var(--accent-primary), var(--teal-primary));
      color: white;
      font-size: 11px;
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(74, 144, 217, 0.4);
    }

    .benefit-card h3 {
      margin-bottom: var(--space-3);
      color: var(--text-primary);
      font-size: var(--text-lg);
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .benefit-card p {
      color: var(--text-muted);
      line-height: 1.7;
      font-size: var(--text-sm);
    }

    /* Staggered animation for benefit cards */
    .benefit-card:nth-child(1) {
      animation-delay: 0.1s;
    }

    .benefit-card:nth-child(2) {
      animation-delay: 0.2s;
    }

    .benefit-card:nth-child(3) {
      animation-delay: 0.3s;
    }

    .benefit-card:nth-child(4) {
      animation-delay: 0.4s;
    }

    /* ========== HOW IT WORKS (Premium) ========== */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-6);
      position: relative;
    }

    /* Connection line — glowing gradient */
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 50px;
      left: 15%;
      right: 15%;
      height: 3px;
      background: linear-gradient(90deg, transparent 0%, var(--accent-primary) 30%, var(--teal-primary) 70%, transparent 100%);
      border-radius: 2px;
      z-index: 0;
      box-shadow: 0 0 12px rgba(74, 144, 217, 0.3);
    }

    .step-card {
      text-align: center;
      padding: var(--space-6);
      position: relative;
      z-index: 1;
      border-radius: var(--radius-xl);
      transition: all 0.3s ease;
    }

    .step-card:hover {
      background: rgba(255, 255, 255, 0.5);
      transform: translateY(-4px);
    }

    [data-theme="dark"] .step-card:hover {
      background: rgba(255, 255, 255, 0.04);
    }

    .step-number {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--gradient-accent);
      color: var(--text-inverse);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: var(--text-xl);
      margin: 0 auto var(--space-4);
      box-shadow: 0 8px 24px rgba(74, 144, 217, 0.3);
      transition: all 0.3s ease;
    }

    .step-card:hover .step-number {
      transform: scale(1.08);
      box-shadow: 0 12px 32px rgba(74, 144, 217, 0.4);
    }

    .step-card h3 {
      font-size: var(--text-lg);
      margin-bottom: var(--space-2);
      color: var(--text-primary);
    }

    .step-card p {
      font-size: var(--text-sm);
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ========== WHY SECTION (Premium) ========== */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-8);
    }

    .why-card {
      padding: var(--space-10);
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .why-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-primary), var(--teal-primary));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .why-card:hover::before {
      opacity: 1;
    }

    [data-theme="dark"] .why-card {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.06);
    }

    .why-card:hover {
      transform: translateY(-6px);
      box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(74, 144, 217, 0.06);
      border-color: rgba(74, 144, 217, 0.15);
    }

    [data-theme="dark"] .why-card:hover {
      box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(56, 189, 248, 0.06);
      border-color: rgba(56, 189, 248, 0.15);
    }

    .why-icon-wrap {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 80px;
      height: 80px;
      margin-bottom: var(--space-6);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
      border-radius: var(--radius-2xl);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    [data-theme="dark"] .why-icon-wrap {
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .why-card:hover .why-icon-wrap {
      background: linear-gradient(135deg, var(--accent-primary), var(--teal-primary));
      box-shadow: 0 8px 28px rgba(74, 144, 217, 0.4);
      transform: scale(1.05);
    }

    .why-icon {
      width: 40px;
      height: 40px;
      color: var(--accent-primary);
      transition: color 0.3s ease;
    }

    .why-card:hover .why-icon {
      color: white;
    }

    .why-card h3 {
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: var(--space-4);
      letter-spacing: -0.02em;
    }

    .why-card p {
      color: var(--text-muted);
      line-height: 1.8;
      font-size: var(--text-base);
      max-width: 320px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .why-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ========== AUDIENCE SECTION ========== */
    .audience-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-8);
    }

    .audience-card {
      padding: var(--space-8);
    }

    .audience-card h3 {
      margin-bottom: var(--space-4);
      display: flex;
      align-items: center;
      gap: var(--space-3);
    }

    .audience-list {
      list-style: none;
      padding: 0;
    }

    .audience-list li {
      padding: var(--space-3) 0;
      display: flex;
      align-items: flex-start;
      gap: var(--space-3);
    }

    .audience-list li svg {
      flex-shrink: 0;
      margin-top: 2px;
    }

    .for-you .audience-list li svg {
      color: var(--success);
    }

    .not-for-you .audience-list li svg {
      color: var(--text-muted);
    }

    /* ========== TRUST SECTION (Premium) ========== */
    .trust-section {
      background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-dark) 50%, var(--bg-base) 100%);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-6);
    }

    .trust-item {
      text-align: center;
      padding: var(--space-8);
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: var(--radius-xl);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    [data-theme="dark"] .trust-item {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.06);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .trust-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(74, 144, 217, 0.06);
      border-color: rgba(74, 144, 217, 0.15);
    }

    [data-theme="dark"] .trust-item:hover {
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(56, 189, 248, 0.06);
      border-color: rgba(56, 189, 248, 0.15);
    }

    .trust-item h4 {
      font-size: var(--text-3xl);
      margin-bottom: var(--space-2);
      font-weight: 800;
      background: linear-gradient(135deg, var(--accent-primary), var(--teal-primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .trust-item p {
      font-size: var(--text-sm);
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ========== LOGOS SECTION ========== */
    .logos-section {
      padding: var(--space-12) 0;
      background: var(--bg-base);
      overflow: hidden;
    }

    .logos-header {
      text-align: center;
      margin-bottom: var(--space-8);
    }

    .logos-header p {
      font-size: var(--text-sm);
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .logos-marquee {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .logos-marquee::before,
    .logos-marquee::after {
      content: '';
      position: absolute;
      top: 0;
      width: 200px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    .logos-marquee::before {
      left: 0;
      background: linear-gradient(to right, var(--bg-base) 0%, transparent 100%);
    }

    .logos-marquee::after {
      right: 0;
      background: linear-gradient(to left, var(--bg-base) 0%, transparent 100%);
    }

    .logos-track {
      display: flex;
      animation: marquee 25s linear infinite;
      width: max-content;
    }

    .logos-marquee:hover .logos-track {
      animation-play-state: paused;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: var(--space-4) var(--space-10);
      opacity: 0.5;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      flex-shrink: 0;
    }

    .logo-item:hover {
      opacity: 1;
      transform: scale(1.08);
    }

    .logo-item img {
      max-height: 36px;
      width: auto;
      filter: grayscale(100%);
      transition: all 0.4s ease;
    }

    .logo-item:hover img {
      filter: grayscale(0%);
    }

    .logo-placeholder {
      font-size: var(--text-xl);
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 0.05em;
      white-space: nowrap;
      transition: color 0.3s ease;
    }

    .logo-item:hover .logo-placeholder {
      color: var(--text-secondary);
    }

    /* ========== CONTACT SECTION (Premium) ========== */
    .contact-section {
      text-align: center;
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: var(--radius-3xl);
      padding: var(--space-16) var(--space-8);
      margin: var(--space-16) 0;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
      position: relative;
      overflow: hidden;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-primary), var(--teal-primary), var(--accent-primary));
    }

    [data-theme="dark"] .contact-section {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.06);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .contact-section h2 {
      margin-bottom: var(--space-4);
    }

    .contact-section p {
      margin-bottom: var(--space-8);
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ========== FOOTER OVERRIDES ========== */
    .footer {
      background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-dark) 100%);
      padding: var(--space-16) 0 var(--space-8);
    }

    .footer-nav {
      display: grid;
      grid-template-columns: 2fr repeat(4, 1fr);
      gap: var(--space-8);
      margin-bottom: var(--space-12);
    }

    .footer-brand p {
      color: var(--text-muted);
      font-size: var(--text-sm);
      margin-top: var(--space-4);
      max-width: 280px;
      line-height: 1.6;
    }

    .footer-column h4 {
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: var(--space-4);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
    }

    .footer-link {
      color: var(--text-muted);
      font-size: var(--text-sm);
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      display: inline-block;
    }

    .footer-link:hover {
      color: var(--accent-primary);
      transform: translateX(4px);
    }

    .footer-bottom {
      padding-top: var(--space-8);
      border-top: 1px solid var(--border-default);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-4);
    }

    .footer-bottom p {
      color: var(--text-muted);
      font-size: var(--text-sm);
    }

    /* ========== THEME TOGGLE ========== */
    .theme-toggle-container {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      padding: var(--space-2) var(--space-3);
      background: var(--bg-base);
      border-radius: var(--radius-full);
      box-shadow: var(--neu-raised-sm);
    }

    .theme-label {
      font-size: var(--text-xs);
      font-weight: 500;
      color: var(--text-secondary);
    }

    .theme-toggle {
      position: relative;
      width: 48px;
      height: 24px;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
    }

    .theme-toggle-track {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      background: var(--bg-surface);
      border-radius: var(--radius-full);
      box-shadow: var(--neu-inset);
      overflow: hidden;
    }

    .theme-toggle-sun,
    .theme-toggle-moon {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 10px;
      transition: opacity 0.3s ease;
      z-index: 1;
    }

    .theme-toggle-sun {
      left: 6px;
      opacity: 1;
    }

    .theme-toggle-moon {
      right: 6px;
      opacity: 0.4;
    }

    .theme-toggle-thumb {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 18px;
      height: 18px;
      background: var(--gradient-accent);
      border-radius: 50%;
      box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Dark mode active state */
    [data-theme="dark"] .theme-toggle-thumb {
      transform: translateX(24px);
    }

    [data-theme="dark"] .theme-toggle-sun {
      opacity: 0.4;
    }

    [data-theme="dark"] .theme-toggle-moon {
      opacity: 1;
    }

    /* Dark mode header adjustment */
    [data-theme="dark"] .header {
      background: rgba(15, 20, 25, 0.85);
    }

    [data-theme="dark"] .header.scrolled {
      background: rgba(15, 20, 25, 0.95);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    /* Dark mode hero adjustment */
    [data-theme="dark"] .hero-section {
      background: linear-gradient(180deg, #151B22 0%, #0F1419 100%);
    }

    [data-theme="dark"] .hero-section::before {
      background: radial-gradient(circle, rgba(99, 179, 237, 0.08) 0%, transparent 70%);
    }

    [data-theme="dark"] .hero-section::after {
      background: radial-gradient(circle, rgba(56, 178, 172, 0.06) 0%, transparent 70%);
    }

    /* Dark mode logos section */
    [data-theme="dark"] .logos-section {
      background: var(--bg-base);
    }

    [data-theme="dark"] .logos-marquee::before {
      background: linear-gradient(to right, var(--bg-base) 0%, transparent 100%);
    }

    [data-theme="dark"] .logos-marquee::after {
      background: linear-gradient(to left, var(--bg-base) 0%, transparent 100%);
    }

    /* Footer column animations */
    .footer-column {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease;
    }

    .footer-column.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========== PRICING NOTE ========== */
    .pricing-note {
      text-align: center;
      font-size: var(--text-sm);
      color: var(--text-muted);
      margin-top: var(--space-8);
      padding: var(--space-4);
      background: var(--bg-surface);
      border-radius: var(--radius-lg);
      box-shadow: var(--neu-inset);
    }

    /* ========== SECTION HEADER (Premium) ========== */
    .section-header {
      max-width: 600px;
      margin: 0 auto var(--space-12);
      text-align: center;
    }

    .section-header h2 {
      margin-bottom: var(--space-4);
      letter-spacing: -0.02em;
    }

    .section-header p {
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ========== DASHBOARD PREVIEW (Premium) ========== */
    .dashboard-preview {
      margin-top: var(--space-16);
      padding: var(--space-2);
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: var(--radius-3xl);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    }

    [data-theme="dark"] .dashboard-preview {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.06);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .dashboard-preview-inner {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
      border-radius: var(--radius-2xl);
      padding: var(--space-8);
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
    }

    [data-theme="dark"] .dashboard-preview-inner {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .steps-grid::before {
        display: none;
      }

      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-nav {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: var(--space-16) 0;
      }

      .hero-section {
        padding: 6rem 0 var(--space-12);
      }

      .hero-headline {
        font-size: 2.5rem;
      }

      .hero-subheadline {
        font-size: 1rem;
      }

      .hero-cta-group {
        flex-direction: column;
        align-items: center;
      }

      .hero-cta-group .btn {
        width: 100%;
        max-width: 300px;
      }

      .dashboard-showcase {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: var(--space-6);
      }

      .problem-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
      }

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

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

      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
      }

      .pricing-card.featured {
        transform: none;
      }

      .footer-nav {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-reassurance {
        font-size: var(--text-xs);
        padding: var(--space-3) var(--space-4);
        border-radius: var(--radius-lg);
        display: block;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
      }

      .section-header {
        margin-bottom: var(--space-8);
      }

      .contact-section {
        padding: var(--space-12) var(--space-4);
      }

      .contact-section h2 {
        font-size: 1.75rem;
      }
    }

    @media (max-width: 480px) {
      .hero-headline {
        font-size: 2.25rem;
      }

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

      .footer-nav {
        grid-template-columns: 1fr;
        gap: var(--space-10);
      }

      .section-header h2 {
        font-size: 1.75rem;
      }

      .trust-bar {
        flex-direction: column;
        gap: var(--space-2);
        padding: var(--space-4);
        border-radius: var(--radius-xl);
        align-items: center;
        text-align: center;
      }

      .trust-bar-separator {
        display: none;
      }

      .footer-nav {
        gap: var(--space-8);
      }
    }

    /* ========== MOBILE NAVIGATION ========== */
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text-primary);
      cursor: pointer;
      padding: var(--space-2);
      z-index: calc(var(--z-fixed) + 2);
    }

    .hamburger-icon {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .mobile-nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(228, 235, 245, 0.95);
      /* Semi-transparent bg-base */
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: calc(var(--z-fixed) + 1);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--space-6);
      transform: translateY(-100%);
      visibility: hidden;
      pointer-events: none;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
      padding: var(--space-8);
    }

    [data-theme="dark"] .mobile-nav-overlay {
      background: rgba(26, 32, 44, 0.95);
      /* Semi-transparent dark bg */
    }

    .mobile-nav-overlay.active {
      transform: translateY(0);
      visibility: visible;
      pointer-events: all;
    }

    .mobile-nav-link {
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--text-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .mobile-nav-link:hover {
      color: var(--accent-primary);
    }

    @media (max-width: 1100px) {
      .header-actions {
        display: none;
        /* Hide desktop actions on smaller screens, move to mobile menu */
      }

      .nav {
        display: none;
      }

      .mobile-menu-toggle {
        display: block;
      }
    }

    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: var(--space-6);
      right: var(--space-6);
      width: 48px;
      height: 48px;
      background: var(--bg-surface);
      color: var(--accent-primary);
      border-radius: 50%;
      box-shadow: var(--neu-raised);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.3s ease;
      z-index: 99;
      border: none;
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top:hover {
      color: var(--accent-primary);
      transform: translateY(-4px);
      box-shadow: var(--neu-raised), 0 0 15px rgba(74, 144, 217, 0.3);
    }

    .back-to-top svg {
      width: 24px;
      height: 24px;
    }

    /* Adjust Theme Toggle Position */
    .theme-toggle-corner {
      right: calc(var(--space-6) + 48px + var(--space-4));
      /* Shift left of back-to-top */
    }

    .sample-showcase-badge {
      display: inline-flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 6px 16px;
      margin: var(--space-6) auto 0;
      background: rgba(72, 187, 120, 0.1);
      border: 1px solid rgba(72, 187, 120, 0.2);
      border-radius: 20px;
      box-shadow: var(--neu-inset);
      font-size: 11px;
      color: var(--success);
      font-weight: 600;
      letter-spacing: 0.02em;
      opacity: 0.9;
      transition: all 0.3s ease;
      white-space: nowrap;
      line-height: 1;
    }

    .sample-showcase-badge:hover {
      opacity: 1;
      transform: translateY(-1px);
      box-shadow: 0 0 15px rgba(72, 187, 120, 0.2);
      border-color: rgba(72, 187, 120, 0.4);
    }

    .sample-showcase-badge svg {
      width: 12px;
      height: 12px;
      color: var(--success);
    }

    /* ========== ULTRA-PREMIUM HEADER STYLES ========== */
    :root {
      --header-island-width: 1200px;
      --header-island-top: 24px;
      --header-island-height: 72px;
      --glass-bg-light: rgba(255, 255, 255, 0.75);
      --glass-bg-dark: rgba(15, 20, 24, 0.75);
      --island-shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.05);
      --island-shadow-dark: 0 10px 30px -10px rgba(0, 0, 0, 0.8), 0 0 1px 1px rgba(255, 255, 255, 0.05);
    }

    .header-ultra-premium {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 2000;
      display: flex;
      justify-content: center;
      padding: var(--header-island-top) var(--space-6);
      pointer-events: none;
      /* Allow clicks through to background if not on island */
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    }

    /* Smart Scroll States */
    .header-ultra-premium.hide {
      transform: translateY(-120%);
      opacity: 0;
    }

    .header-island {
      pointer-events: auto;
      /* Re-enable for the island */
      width: 100%;
      max-width: var(--header-island-width);
      height: 80px;
      /* Increased for airiness */
      background: var(--glass-bg-light);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 32px;
      /* Smoother corners */
      box-shadow: var(--island-shadow-light);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      align-items: center;
      padding: 0 var(--space-8);
      /* Wider padding */
      overflow: visible;
      /* Ensure nothing is clipped */
    }

    [data-theme="dark"] .header-island {
      background: var(--glass-bg-dark);
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: var(--island-shadow-dark);
    }

    /* Compact mode when scrolled */
    .header-ultra-premium.compact {
      padding-top: 12px;
    }

    .header-ultra-premium.compact .header-island {
      max-width: 1000px;
      height: 64px;
      border-radius: 32px;
    }

    .header-inner-island {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    /* Logo Advanced */
    .logo-ultra-premium {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      text-decoration: none;
    }

    .logo-icon-wrapper {
      position: relative;
      transition: transform 0.4s var(--ease-bounce);
    }

    .logo-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 120%;
      height: 120%;
      background: var(--accent-primary);
      filter: blur(15px);
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.8);
      transition: all 0.4s ease;
      z-index: -1;
    }

    .logo-ultra-premium:hover .logo-icon-wrapper {
      transform: scale(1.1) rotate(5deg);
    }

    .logo-ultra-premium:hover .logo-glow {
      opacity: 0.3;
      transform: translate(-50%, -50%) scale(1.1);
    }

    .logo-text-ultra {
      font-weight: 800;
      font-size: var(--text-lg);
      letter-spacing: -0.03em;
      background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Advanced Nav */
    .nav-ultra {
      display: flex;
      align-items: center;
      gap: var(--space-1);
      position: relative;
      background: rgba(0, 0, 0, 0.03);
      padding: 4px;
      border-radius: 16px;
    }

    [data-theme="dark"] .nav-ultra {
      background: rgba(255, 255, 255, 0.03);
    }

    .nav-link-ultra {
      padding: 8px 16px;
      color: var(--text-secondary);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      border-radius: 12px;
      position: relative;
    }

    .nav-link-ultra:hover {
      color: var(--text-primary);
      background: rgba(255, 255, 255, 0.1);
    }

    [data-theme="dark"] .nav-link-ultra:hover {
      background: rgba(255, 255, 255, 0.05);
    }

    /* Actions */
    .header-actions-ultra {
      display: flex;
      align-items: center;
      gap: var(--space-3);
    }

    .cta-ultra-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }

    /* Buttons Ultra */
    .btn-ultra {
      padding: 12px 28px;
      border-radius: 16px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      position: relative;
      /* overflow: hidden; Removed to prevent badge clipping */
    }

    .btn-shimmer-container {
      position: absolute;
      inset: 0;
      border-radius: inherit;
      overflow: hidden;
      pointer-events: none;
      z-index: 1;
    }

    .btn-ghost-ultra {
      color: var(--text-secondary);
      border: 1px solid transparent;
    }

    .btn-ghost-ultra:hover {
      color: var(--text-primary);
      background: var(--bg-surface);
      border-color: var(--border-subtle);
      transform: translateY(-2px);
    }

    .btn-primary-ultra {
      background: var(--gradient-accent);
      color: white;
      box-shadow: 0 8px 16px -4px var(--accent-soft);
      border: none;
    }

    .btn-primary-ultra:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 24px -6px var(--accent-soft);
    }

    .btn-content {
      position: relative;
      z-index: 5;
    }

    /* Liquid Shimmer */
    .liquid-shimmer {
      position: absolute;
      top: 0;
      left: -150%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg,
          transparent,
          rgba(255, 255, 255, 0.4),
          transparent);
      transition: all 0.8s ease;
      filter: blur(10px);
      transform: skewX(-20deg);
      z-index: 2;
    }

    .btn-primary-ultra:hover .liquid-shimmer {
      left: 150%;
    }

    /* Badge Free Ultra */
    .badge-ultra-free {
      position: absolute;
      top: -12px;
      right: -12px;
      background: #10B981;
      /* Emerald 500 */
      color: white;
      font-size: 9px;
      font-weight: 900;
      padding: 4px 10px;
      border-radius: 20px;
      border: 2px solid var(--glass-bg-light);
      box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
      animation: pulse-ultra 3s infinite;
      z-index: 10;
      pointer-events: none;
    }

    [data-theme="dark"] .badge-ultra-free {
      border-color: var(--bg-surface);
    }

    @keyframes pulse-ultra {
      0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
      }

      50% {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.6);
      }

      100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
      }
    }

    /* Mobile Menu Toggle Premium */
    .mobile-menu-toggle-premium {
      display: none;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      pointer-events: auto;
    }

    [data-theme="dark"] .mobile-menu-toggle-premium {
      background: rgba(255, 255, 255, 0.05);
    }

    .mobile-menu-toggle-premium svg {
      width: 24px;
      height: 24px;
      stroke: var(--text-primary);
      stroke-width: 2.5;
      stroke-linecap: round;
    }

    /* Premium Mobile Nav Overlay Styles */
    .mobile-nav-overlay-ultra {
      position: fixed;
      inset: 0;
      z-index: 3000;
      background: rgba(15, 20, 24, 0.4);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      opacity: 0;
      visibility: hidden;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      justify-content: flex-end;
    }

    .mobile-nav-overlay-ultra.active {
      opacity: 1;
      visibility: visible;
    }

    .mobile-nav-content {
      width: 85%;
      max-width: 400px;
      background: var(--bg-surface);
      height: 100%;
      transform: translateX(100%);
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      padding: var(--space-8) var(--space-6);
      display: flex;
      flex-direction: column;
      gap: var(--space-10);
      box-shadow: -20px 0 50px rgba(0, 0, 0, 0.3);
    }

    .mobile-nav-overlay-ultra.active .mobile-nav-content {
      transform: translateX(0);
    }

    .mobile-nav-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .mobile-close-btn {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: 8px;
      color: var(--text-primary);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .mobile-links-ultra {
      display: flex;
      flex-direction: column;
      gap: var(--space-6);
    }

    .mobile-link-item {
      font-size: 24px;
      font-weight: 700;
      color: var(--text-primary);
      text-decoration: none;
      transition: transform 0.3s ease;
      padding-left: var(--space-2);
      border-left: 0px solid var(--accent-primary);
    }

    .mobile-link-item:hover {
      transform: translateX(10px);
      color: var(--accent-primary);
    }

    .mobile-actions-ultra {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: var(--space-4);
    }

    /* Responsive Adjustments: Mobile Comfort */
    @media (max-width: 992px) {
      .nav-ultra {
        display: none;
      }

      .header-actions-ultra .btn-ghost-ultra {
        display: none;
      }

      .mobile-menu-toggle-premium {
        display: flex;
      }

      .header-island {
        height: 72px;
        padding: 0 var(--space-5);
        max-width: 96%;
        margin: 0 auto;
      }
    }

    @media (max-width: 576px) {
      .logo-text-ultra {
        font-size: 16px;
      }

      .header-island {
        height: 64px;
        padding: 0 var(--space-4);
        border-radius: 20px;
      }

      .btn-primary-ultra {
        padding: 10px 18px;
        font-size: 13px;
      }

      .badge-ultra-free {
        top: -10px;
        right: -8px;
        font-size: 8px;
      }

      .logo svg,
      .logo img {
        width: 32px;
        height: 32px;
      }
    }

    @media (max-width: 380px) {
      .logo-text-ultra {
        display: none;
      }
    }

    /* ========== PREMIUM AUDIENCE SECTION ========== */
    .audience-section-premium {
      position: relative;
      overflow: hidden;
    }

    .audience-grid-premium {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-8);
      margin-top: var(--space-12);
    }

    /* Card Base Structure */
    .audience-card-premium {
      position: relative;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    .audience-card-premium.perfect-fit {
      animation-delay: 0.2s;
    }

    .audience-card-premium.not-a-fit {
      animation-delay: 0.3s;
    }

    /* Glow Effect Background */
    .card-glow-effect {
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      opacity: 0;
      transition: opacity 0.6s ease;
      pointer-events: none;
      z-index: 0;
    }

    .perfect-fit-glow {
      background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    }

    .not-fit-glow {
      background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
    }

    .audience-card-premium:hover .card-glow-effect {
      opacity: 1;
    }

    /* Gradient Border Wrapper */
    .gradient-border-wrapper {
      position: relative;
      padding: 3px;
      border-radius: var(--radius-2xl);
      background: linear-gradient(135deg, transparent, transparent);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .perfect-fit-border {
      background: linear-gradient(135deg,
          rgba(34, 197, 94, 0.3) 0%,
          rgba(16, 185, 129, 0.2) 50%,
          rgba(34, 197, 94, 0.3) 100%);
      background-size: 200% 200%;
    }

    .not-fit-border {
      background: linear-gradient(135deg,
          rgba(100, 116, 139, 0.3) 0%,
          rgba(71, 85, 105, 0.2) 50%,
          rgba(100, 116, 139, 0.3) 100%);
      background-size: 200% 200%;
    }

    .audience-card-premium:hover .gradient-border-wrapper {
      background-position: 100% 100%;
      animation: borderShimmer 3s ease-in-out infinite;
    }

    @keyframes borderShimmer {

      0%,
      100% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }
    }

    /* Card Inner Content */
    .card-inner {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: calc(var(--radius-2xl) - 3px);
      padding: var(--space-10);
      position: relative;
      z-index: 1;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    [data-theme="dark"] .card-inner {
      background: rgba(30, 41, 59, 0.85);
    }

    .audience-card-premium:hover .card-inner {
      transform: translateY(-6px);
      box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
    }

    /* Card Header */
    .card-header-premium {
      display: flex;
      align-items: center;
      gap: var(--space-4);
      margin-bottom: var(--space-8);
    }

    .icon-badge {
      width: 56px;
      height: 56px;
      border-radius: var(--radius-xl);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
    }

    .perfect-fit-badge {
      background: linear-gradient(135deg, #22C55E, #10B981);
      box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
    }

    .not-fit-badge {
      background: linear-gradient(135deg, #64748B, #475569);
      box-shadow: 0 8px 20px rgba(100, 116, 139, 0.3);
    }

    .audience-card-premium:hover .icon-badge {
      transform: rotate(360deg) scale(1.1);
      box-shadow: 0 12px 30px rgba(34, 197, 94, 0.5);
    }

    .icon-badge svg {
      color: white;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

    .card-title-premium {
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.3;
      letter-spacing: -0.02em;
    }

    /* List Styling */
    .audience-list-premium {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: var(--space-4);
    }

    .audience-item-premium {
      display: flex;
      align-items: flex-start;
      gap: var(--space-4);
      padding: var(--space-4);
      border-radius: var(--radius-lg);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 0;
      transform: translateX(-20px);
      animation: slideInLeft 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    .audience-item-premium:hover {
      background: rgba(255, 255, 255, 0.5);
      transform: translateX(8px);
      padding-left: var(--space-6);
    }

    [data-theme="dark"] .audience-item-premium:hover {
      background: rgba(51, 65, 85, 0.5);
    }

    /* Icon Wrapper */
    .icon-wrapper {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .perfect-fit-icon {
      background: rgba(34, 197, 94, 0.15);
      border: 1px solid rgba(34, 197, 94, 0.3);
    }

    .not-fit-icon {
      background: rgba(100, 116, 139, 0.15);
      border: 1px solid rgba(100, 116, 139, 0.3);
    }

    .audience-item-premium:hover .icon-wrapper {
      transform: rotate(15deg) scale(1.15);
    }

    .perfect-fit-icon svg {
      color: #22C55E;
      stroke-width: 3;
    }

    .not-fit-icon svg {
      color: #64748B;
      stroke-width: 3;
    }

    .audience-item-premium span {
      flex: 1;
      font-size: var(--text-base);
      line-height: 1.7;
      color: var(--text-secondary);
      font-weight: 500;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .audience-grid-premium {
        grid-template-columns: 1fr;
        gap: var(--space-6);
      }

      .card-inner {
        padding: var(--space-8);
      }

      .card-title-premium {
        font-size: var(--text-lg);
      }

      .icon-badge {
        width: 48px;
        height: 48px;
      }

      .icon-badge svg {
        width: 24px;
        height: 24px;
      }

      .audience-item-premium {
        padding: var(--space-3);
      }

      .audience-item-premium span {
        font-size: var(--text-sm);
      }
    }

    @media (max-width: 480px) {
      .card-header-premium {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
      }

      .icon-wrapper {
        width: 32px;
        height: 32px;
      }
    }

    /* ========== PREMIUM NEWSLETTER SECTION ========== */
    .newsletter-section-premium {
      padding: var(--space-12) 0;
      border-bottom: 1px solid var(--border-subtle);
      margin-bottom: var(--space-12);
      position: relative;
    }

    .newsletter-card-premium {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
    }

    /* Glow Effect */
    .newsletter-glow-effect {
      position: absolute;
      top: -50%;
      left: -20%;
      width: 140%;
      height: 200%;
      background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.6s ease;
      pointer-events: none;
      z-index: 0;
    }

    .newsletter-card-premium:hover .newsletter-glow-effect {
      opacity: 1;
    }

    /* Gradient Border */
    .newsletter-gradient-border {
      position: relative;
      padding: 3px;
      border-radius: var(--radius-2xl);
      background: linear-gradient(135deg,
          rgba(56, 189, 248, 0.4) 0%,
          rgba(14, 165, 233, 0.3) 50%,
          rgba(56, 189, 248, 0.4) 100%);
      background-size: 200% 200%;
      transition: all 0.4s ease;
    }

    .newsletter-card-premium:hover .newsletter-gradient-border {
      animation: borderShimmer 3s ease-in-out infinite;
    }

    /* Card Inner */
    .newsletter-inner {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: calc(var(--radius-2xl) - 3px);
      padding: var(--space-10);
      position: relative;
      z-index: 1;
    }

    [data-theme="dark"] .newsletter-inner {
      background: rgba(30, 41, 59, 0.9);
    }

    /* Header */
    .newsletter-header {
      text-align: center;
      margin-bottom: var(--space-8);
    }

    .newsletter-badge {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      padding: var(--space-2) var(--space-4);
      background: rgba(56, 189, 248, 0.15);
      border: 1px solid rgba(56, 189, 248, 0.3);
      border-radius: var(--radius-full);
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--accent-primary);
      margin-bottom: var(--space-4);
      transition: all 0.3s ease;
    }

    .newsletter-badge:hover {
      background: rgba(56, 189, 248, 0.2);
      transform: translateY(-2px);
    }

    .newsletter-badge svg {
      color: var(--accent-primary);
    }

    .newsletter-title {
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.4;
      letter-spacing: -0.02em;
      margin: 0;
    }

    /* Form */
    .newsletter-form-premium {
      display: flex;
      gap: var(--space-4);
      align-items: flex-start;
      margin-bottom: var(--space-6);
    }

    .form-group-premium {
      position: relative;
      flex: 1;
      min-width: 200px;
    }

    .form-input-premium {
      width: 100%;
      padding: var(--space-4) var(--space-2);
      background: transparent;
      border: none;
      border-bottom: 2px solid var(--border-default);
      font-size: var(--text-base);
      color: var(--text-primary);
      outline: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .form-input-premium:focus {
      border-bottom-color: var(--accent-primary);
    }

    .form-label-premium {
      position: absolute;
      left: var(--space-2);
      top: var(--space-4);
      font-size: var(--text-base);
      color: var(--text-muted);
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .form-input-premium:focus~.form-label-premium,
    .form-input-premium:not(:placeholder-shown)~.form-label-premium {
      top: -4px;
      font-size: var(--text-xs);
      color: var(--accent-primary);
      font-weight: 600;
    }

    .input-underline {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-primary), var(--accent-dark));
      transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .form-input-premium:focus~.input-underline {
      width: 100%;
    }

    /* Button */
    .btn-newsletter-premium {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      padding: var(--space-4) var(--space-6);
      background: linear-gradient(135deg, var(--accent-primary), var(--accent-dark));
      color: white;
      font-size: var(--text-base);
      font-weight: 700;
      border: none;
      border-radius: var(--radius-lg);
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
      position: relative;
      overflow: hidden;
    }

    .btn-newsletter-premium::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
    }

    .btn-newsletter-premium:hover::before {
      left: 100%;
    }

    .btn-newsletter-premium:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(56, 189, 248, 0.4);
    }

    .btn-newsletter-premium:active {
      transform: translateY(0);
    }

    .btn-newsletter-premium svg {
      transition: transform 0.3s ease;
    }

    .btn-newsletter-premium:hover svg {
      transform: translateX(4px);
    }

    /* Trust Indicators */
    .newsletter-trust {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: var(--space-4);
      flex-wrap: wrap;
    }

    .trust-item-inline {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      font-size: var(--text-sm);
      color: var(--text-muted);
      font-weight: 500;
    }

    .trust-item-inline svg {
      color: var(--success);
      flex-shrink: 0;
    }

    .trust-separator {
      width: 4px;
      height: 4px;
      background: var(--border-default);
      border-radius: 50%;
      opacity: 0.5;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .newsletter-section-premium {
        padding: var(--space-8) 0;
      }

      .newsletter-inner {
        padding: var(--space-8);
      }

      .newsletter-title {
        font-size: var(--text-lg);
      }

      .newsletter-form-premium {
        flex-direction: column;
        gap: var(--space-4);
      }

      .btn-newsletter-premium {
        width: 100%;
        justify-content: center;
      }

      .newsletter-trust {
        flex-direction: column;
        gap: var(--space-2);
      }

      .trust-separator {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .newsletter-badge {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
      }

      .newsletter-badge svg {
        width: 16px;
        height: 16px;
      }

      .newsletter-title {
        font-size: var(--text-base);
      }

      .trust-item-inline {
        font-size: var(--text-xs);
      }
    }

    /* ========== PREMIUM FOOTER NAVIGATION ========== */
    .footer-nav-premium {
      margin-bottom: var(--space-10);
    }

    /* Footer Brand Premium */
    .footer-brand-premium .logo-premium {
      display: inline-flex;
      align-items: center;
      gap: var(--space-3);
      margin-bottom: var(--space-4);
      transition: transform 0.3s ease;
    }

    .footer-brand-premium .logo-premium:hover {
      transform: translateX(4px);
    }

    .footer-brand-premium .brand-description {
      margin-bottom: var(--space-3);
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .footer-brand-premium .brand-location {
      font-size: var(--text-xs);
      color: var(--text-muted);
      margin-bottom: var(--space-4);
    }

    /* Social Icons Premium */
    .social-icons-premium {
      display: flex;
      gap: var(--space-3);
      flex-wrap: wrap;
    }

    .social-icon-premium {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-lg);
      background: var(--bg-secondary);
      border: 1px solid var(--border-default);
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
    }

    .social-icon-premium svg {
      width: 20px;
      height: 20px;
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
    }

    .social-icon-premium::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
    }

    /* LinkedIn */
    .social-icon-premium.linkedin::before {
      background: linear-gradient(135deg, #0077B5, #00A0DC);
    }

    .social-icon-premium.linkedin:hover {
      border-color: #0077B5;
      transform: translateY(-4px) rotate(-5deg);
      box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
    }

    .social-icon-premium.linkedin:hover::before {
      opacity: 1;
    }

    .social-icon-premium.linkedin:hover svg {
      color: white;
    }

    /* Twitter */
    .social-icon-premium.twitter::before {
      background: linear-gradient(135deg, #1DA1F2, #0C85D0);
    }

    .social-icon-premium.twitter:hover {
      border-color: #1DA1F2;
      transform: translateY(-4px) rotate(5deg);
      box-shadow: 0 8px 20px rgba(29, 161, 242, 0.3);
    }

    .social-icon-premium.twitter:hover::before {
      opacity: 1;
    }

    .social-icon-premium.twitter:hover svg {
      color: white;
    }

    /* GitHub */
    .social-icon-premium.github::before {
      background: linear-gradient(135deg, #333, #24292e);
    }

    .social-icon-premium.github:hover {
      border-color: #333;
      transform: translateY(-4px) rotate(-5deg);
      box-shadow: 0 8px 20px rgba(51, 51, 51, 0.3);
    }

    .social-icon-premium.github:hover::before {
      opacity: 1;
    }

    .social-icon-premium.github:hover svg {
      color: white;
    }

    /* Instagram */
    .social-icon-premium.instagram::before {
      background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
    }

    .social-icon-premium.instagram:hover {
      border-color: #E1306C;
      transform: translateY(-4px) rotate(5deg);
      box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
    }

    .social-icon-premium.instagram:hover::before {
      opacity: 1;
    }

    .social-icon-premium.instagram:hover svg {
      color: white;
    }

    /* YouTube */
    .social-icon-premium.youtube::before {
      background: linear-gradient(135deg, #FF0000, #CC0000);
    }

    .social-icon-premium.youtube:hover {
      border-color: #FF0000;
      transform: translateY(-4px) rotate(-5deg);
      box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
    }

    .social-icon-premium.youtube:hover::before {
      opacity: 1;
    }

    .social-icon-premium.youtube:hover svg {
      color: white;
    }

    /* Footer Columns Premium */
    .footer-column-premium h4 {
      font-size: var(--text-sm);
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--text-primary);
      margin-bottom: var(--space-5);
      position: relative;
      padding-bottom: var(--space-2);
    }

    .footer-column-premium h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 24px;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-primary), transparent);
      transition: width 0.3s ease;
    }

    .footer-column-premium:hover h4::after {
      width: 48px;
    }

    /* Footer Links Premium */
    .footer-link-premium {
      display: inline-block;
      position: relative;
      padding: var(--space-2) 0;
    }

    .footer-link-premium span {
      position: relative;
      transition: color 0.3s ease;
    }

    .footer-link-premium::before {
      content: '';
      position: absolute;
      bottom: var(--space-2);
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-primary), var(--accent-dark));
      transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .footer-link-premium::after {
      content: '→';
      position: absolute;
      right: -20px;
      opacity: 0;
      color: var(--accent-primary);
      font-weight: 700;
      transition: all 0.3s ease;
    }

    .footer-link-premium:hover {
      color: var(--accent-primary);
    }

    .footer-link-premium:hover::before {
      width: 100%;
    }

    .footer-link-premium:hover::after {
      opacity: 1;
      right: -16px;
    }

    .footer-link-premium:hover span {
      color: var(--accent-primary);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .social-icons-premium {
        gap: var(--space-2);
      }

      .social-icon-premium {
        width: 40px;
        height: 40px;
      }

      .social-icon-premium svg {
        width: 18px;
        height: 18px;
      }
    }

    @media (max-width: 480px) {
      .footer-column-premium h4 {
        font-size: var(--text-xs);
      }

      .social-icon-premium {
        width: 36px;
        height: 36px;
      }

      .social-icon-premium svg {
        width: 16px;
        height: 16px;
      }
    }

    /* ========== UTILITY CLASSES (Replacing Inline Styles) ========== */

    /* Section labels / eyebrow text */
    .section-eyebrow {
      font-size: var(--text-xs);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent-primary);
      font-weight: 600;
      margin-bottom: var(--space-2);
    }

    .section-eyebrow-block {
      font-size: var(--text-xs);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent-primary);
      font-weight: 600;
      display: block;
      margin-bottom: var(--space-2);
    }

    .section-eyebrow-mb3 {
      font-size: var(--text-xs);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent-primary);
      font-weight: 600;
      margin-bottom: var(--space-3);
    }

    .section-eyebrow-success {
      font-size: var(--text-xs);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--success);
      font-weight: 600;
      margin-bottom: var(--space-3);
    }

    /* Logo section text */
    .logos-subtitle {
      font-size: var(--text-lg);
      font-weight: 600;
      color: var(--text-primary);
    }

    /* Solution section */
    .solution-title {
      margin-bottom: var(--space-4);
    }

    .solution-description {
      color: var(--text-secondary);
      margin-bottom: var(--space-6);
    }

    .solution-emphasis {
      font-weight: 500;
      color: var(--text-primary);
    }

    /* Dashboard inline helpers */
    .score-denominator {
      font-size: var(--text-lg);
      color: var(--text-muted);
    }

    .dashboard-caption {
      font-size: var(--text-sm);
    }

    .text-success-strong {
      color: var(--success);
    }

    .status-update-text {
      color: var(--success);
    }

    /* Trust indicators row */
    .trust-indicators-row {
      text-align: center;
      margin-top: var(--space-12);
    }

    .trust-badges-row {
      display: flex;
      justify-content: center;
      gap: var(--space-8);
      flex-wrap: wrap;
      margin-bottom: var(--space-6);
    }

    .trust-badge-inline {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      color: var(--text-muted);
      font-size: var(--text-sm);
    }

    .trust-badge-inline svg {
      color: var(--success);
    }

    /* CTA section */
    .cta-description {
      max-width: 550px;
      margin: 0 auto var(--space-4);
    }

    .cta-benefits-row {
      display: flex;
      justify-content: center;
      gap: var(--space-6);
      margin-bottom: var(--space-6);
      flex-wrap: wrap;
    }

    .cta-benefit-item {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      color: var(--text-muted);
      font-size: var(--text-sm);
    }

    .cta-benefit-item svg {
      color: var(--success);
    }

    .cta-buttons-wrap {
      flex-wrap: wrap;
    }

    .cta-footnote {
      font-size: var(--text-xs);
      color: var(--text-muted);
      margin-top: var(--space-4);
    }

    /* Additional services cards */
    .addon-card {
      padding: var(--space-6);
    }

    .addon-card h4 {
      font-size: var(--text-lg);
      margin-bottom: var(--space-2);
    }

    .addon-price {
      font-size: var(--text-2xl);
      margin: var(--space-2) 0;
    }

    .addon-description {
      font-size: var(--text-sm);
      margin-bottom: var(--space-4);
    }

    .addon-period {
      font-size: var(--text-sm);
    }

    /* Pricing note */
    .pricing-guarantee {
      display: block;
      margin-bottom: var(--space-2);
      color: var(--text-primary);
      font-weight: 500;
    }

    /* Book a Demo button inline style replacement */
    .btn-book-demo {
      border: 1px solid var(--border-default);
      background: var(--bg-surface);
    }

    /* Dashboard showcase sample badge centering */
    .sample-badge-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    /* Mobile CTA full-width */
    .btn-mobile-full {
      width: 100%;
      text-align: center;
    }

    /* ========== PREMIUM MOBILE MENU __________ */
    .mobile-nav-overlay-ultra {
      background: rgba(10, 15, 25, 0.6);
      /* Darker, richer backdrop */
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
    }

    .mobile-nav-content {
      background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
      width: 90%;
      max-width: 420px;
      padding: 0;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    [data-theme="dark"] .mobile-nav-content {
      background: linear-gradient(165deg, #1a202c 0%, #171923 100%);
      box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    }

    /* Decorative Orbs */
    .mobile-nav-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      z-index: 0;
      opacity: 0.5;
      pointer-events: none;
    }

    .mobile-nav-orb-1 {
      top: -100px;
      right: -100px;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(74, 144, 217, 0.2), transparent);
    }

    .mobile-nav-orb-2 {
      bottom: -50px;
      left: -50px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(72, 187, 120, 0.15), transparent);
    }

    /* Header */
    .mobile-nav-header {
      padding: var(--space-6);
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 10;
    }

    .mobile-nav-brand {
      display: flex;
      align-items: center;
      gap: var(--space-3);
    }

    .mobile-nav-logo-text {
      font-weight: 700;
      font-size: var(--text-lg);
      letter-spacing: -0.02em;
      color: var(--text-primary);
    }

    .mobile-close-btn {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      color: var(--text-muted);
      transition: all 0.3s ease;
    }

    .mobile-close-btn:hover {
      background: var(--bg-hover);
      color: var(--text-primary);
      transform: rotate(90deg);
    }

    /* Accent Bar */
    .mobile-nav-accent-bar {
      height: 1px;
      width: 100%;
      background: linear-gradient(90deg, transparent, var(--border-default), transparent);
      margin-bottom: var(--space-4);
    }

    /* Navigation Links */
    .mobile-links-ultra {
      flex: 1;
      padding: 0 var(--space-6);
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
      position: relative;
      z-index: 10;
    }

    .mobile-link-item {
      display: flex;
      align-items: center;
      gap: var(--space-4);
      padding: var(--space-3) var(--space-4);
      border-radius: var(--radius-xl);
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
      border: 1px solid transparent;
      background: transparent;
    }

    .mobile-link-item:hover {
      background: var(--bg-elevated);
      border-color: var(--border-subtle);
      transform: translateX(6px);
    }

    .mobile-link-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: var(--bg-surface);
      color: var(--text-muted);
      box-shadow: var(--neu-inset);
      transition: all 0.3s ease;
    }

    .mobile-link-item:hover .mobile-link-icon {
      color: var(--accent-primary);
      background: white;
      box-shadow: 0 4px 12px rgba(74, 144, 217, 0.2);
    }

    [data-theme="dark"] .mobile-link-item:hover .mobile-link-icon {
      background: var(--bg-surface);
      color: var(--accent-primary);
    }

    .mobile-link-text {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .mobile-link-title {
      font-weight: 600;
      color: var(--text-primary);
      font-size: var(--text-base);
    }

    .mobile-link-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .mobile-link-arrow {
      color: var(--text-muted);
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s ease;
    }

    .mobile-link-item:hover .mobile-link-arrow {
      opacity: 1;
      transform: translateX(0);
      color: var(--accent-primary);
    }

    /* Staggered Animation */
    .mobile-link-anim {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
      transition-delay: calc(var(--anim-order) * 0.08s);
    }

    .mobile-nav-overlay-ultra.active .mobile-link-anim {
      opacity: 1;
      transform: translateY(0);
    }

    /* Actions & Footer */
    .mobile-actions-ultra {
      padding: var(--space-6);
      position: relative;
      z-index: 10;
      /*border-top: 1px solid var(--border-subtle);*/
      margin-top: auto;
    }

    .mobile-cta-primary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, var(--accent-primary), var(--accent-dark));
      color: white;
      font-weight: 600;
      border-radius: var(--radius-xl);
      margin-bottom: var(--space-3);
      box-shadow: 0 4px 15px rgba(74, 144, 217, 0.3);
      transition: transform 0.3s ease;
    }

    .mobile-cta-primary:active {
      transform: scale(0.98);
    }

    .mobile-cta-whatsapp {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 12px;
      color: var(--text-secondary);
      font-size: var(--text-sm);
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .mobile-cta-whatsapp:hover {
      color: #25D366;
    }

    .mobile-nav-footer {
      padding: 0 var(--space-6) var(--space-8);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mobile-nav-social {
      display: flex;
      gap: var(--space-4);
    }

    .mobile-social-icon {
      color: var(--text-muted);
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
    }

    .mobile-social-icon:hover {
      color: var(--text-primary);
    }

    .mobile-theme-toggle {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      cursor: pointer;
    }

    /* Theme Toggle Logic */
    .theme-icon-moon {
      display: none;
    }

    [data-theme="dark"] .theme-icon-sun {
      display: none;
    }

    [data-theme="dark"] .theme-icon-moon {
      display: block;
    }
