    /* ========== HERO SECTION - PREMIUM ========== */
    .hero-section {
      position: relative;
      overflow: hidden;
      background: var(--bg-base);
      perspective: var(--perspective-hero);
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    .hero-bg-container {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .hero-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6;
      filter: grayscale(0.2) brightness(0.6) contrast(1.15);
      transform: scale(1.1);
    }

    [data-theme="light"] .hero-bg-img {
      opacity: 0.7;
      filter: grayscale(0.1) brightness(1) contrast(1.05);
    }

    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, transparent 20%, var(--bg-base) 90%),
                  linear-gradient(180deg, var(--bg-base) 0%, transparent 30%, transparent 70%, var(--bg-base) 100%);
      z-index: 1;
      opacity: 0.8;
    }

    [data-theme="dark"] .hero-bg-overlay {
      background: radial-gradient(circle at center, transparent 20%, var(--bg-base) 90%),
                  linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 30%, transparent 70%, var(--bg-base) 100%);
      opacity: 0.8;
    }

    @keyframes hero-bg-float {
      0% { transform: scale(1.1) translate(0, 0) rotate(0); }
      100% { transform: scale(1.2) translate(-20px, -20px) rotate(1deg); }
    }

    /* Decorative blobs — larger, more vivid */
    .hero-section::before {
      content: '';
      position: absolute;
      top: -15%;
      right: -5%;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(223, 37, 49, 0.15) 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(223, 37, 49, 0.12) 0%, transparent 65%);
      pointer-events: none;
      animation: float 10s ease-in-out infinite reverse;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: var(--space-12);
      align-items: center;
      text-align: left;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-12);
      align-items: center;
      text-align: left;
      position: relative;
      z-index: 2;
    }

    .hero-text {
      max-width: 600px;
    }

    .hero-headline {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(3rem, 8vw, 5.5rem);
      font-weight: 900;
      line-height: 0.95;
      margin-bottom: var(--space-8);
      letter-spacing: -0.04em;
      color: var(--text-primary);
      text-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .text-gradient {
      background: linear-gradient(135deg, var(--accent-primary) 0%, var(--text-primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    [data-theme="dark"] .hero-headline {
      text-shadow: 0 0 30px rgba(227, 30, 36, 0.1);
      transform: translateZ(30px);
    }

    .trust-bar {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent-300);
      margin-bottom: var(--space-6);
      display: inline-flex;
      align-items: center;
      gap: var(--space-3);
    }

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

    .hero-subheadline {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1.1rem, 2vw, 1.25rem);
      color: var(--text-secondary);
      max-width: 550px;
      margin: 0 0 var(--space-10);
      line-height: 1.5;
      font-weight: 400;
      opacity: 0.9;
    }

    .hero-reassurance {
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: var(--text-muted);
      margin-bottom: var(--space-10);
      padding: var(--space-2) var(--space-6);
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-full);
      display: inline-flex;
      align-items: center;
      gap: var(--space-4);
    }

    [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: flex-start;
      gap: var(--space-6);
      flex-wrap: wrap;
    }

    .hero-visual-column {
      position: relative;
      perspective: 1500px;
    }

    .robot-visual-wrapper {
      position: relative;
      transform-style: preserve-3d;
      animation: robot-float 10s ease-in-out infinite alternate;
    }

    .robot-main-image {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 0 50px rgba(223, 37, 49, 0.2));
      transform: rotateY(-10deg);
    }

    .robot-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 150%;
      height: 150%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(223, 37, 49, 0.15) 0%, transparent 70%);
      filter: blur(50px);
      z-index: -1;
    }

    @keyframes robot-float {
      from { transform: translateY(0) rotateY(-10deg); }
      to { transform: translateY(-20px) rotateY(-5deg); }
    }

    .floating-ui-card {
      position: absolute;
      background: rgba(10, 10, 10, 0.8);
      backdrop-filter: blur(12px);
      padding: 0.75rem 1.25rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: white;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      box-shadow: 0 15px 30px rgba(0,0,0,0.5);
      z-index: 10;
      animation: card-float 6s ease-in-out infinite alternate;
    }

    .card-1 { top: 20%; right: -10%; animation-delay: 0s; }
    .card-2 { bottom: 20%; left: -10%; animation-delay: 1s; }

    @keyframes card-float {
      from { transform: translateZ(30px) translateY(0); }
      to { transform: translateZ(50px) translateY(-15px); }
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      background: #ff4d4d;
      border-radius: 50%;
      box-shadow: 0 0 10px #ff4d4d;
      animation: pulse 2s infinite;
    }

    .pulse-dot.green {
      background: #4ade80;
      box-shadow: 0 0 10px #4ade80;
    }

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

    /* ========== ADVANCED DASHBOARD SHOWCASE ========== */
    .dashboard-showcase {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-4);
      margin-top: -100px;
      position: relative;
      transform-style: preserve-3d;
      transform: rotateX(15deg) rotateY(-10deg) rotateZ(2deg) scale(0.8);
      transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
      z-index: 2;
    }

    .hero-visuals {
      position: relative;
      transform-style: preserve-3d;
    }

    .hero-image-wrapper {
      position: relative;
      transform-style: preserve-3d;
      transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
      border-radius: var(--radius-2xl);
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 100px rgba(223, 37, 49, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
    }

    .hero-main-image {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
      mix-blend-mode: lighten;
    }

    .hero-image-wrapper:hover .hero-main-image {
      transform: scale(1.05);
    }

    .image-glow {
      position: absolute;
      inset: -20px;
      background: radial-gradient(circle, rgba(223, 37, 49, 0.2) 0%, transparent 70%);
      filter: blur(30px);
      z-index: -1;
    }

    .dashboard-showcase:hover {
      transform: rotateX(10deg) rotateY(-5deg) rotateZ(1deg);
    }

    /* Ambient Background Glow — brighter */
    .dashboard-showcase::before {
      content: '';
      position: absolute;
      top: -10%;
      left: 10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(223, 37, 49, 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(223, 37, 49, 0.14) 0%, transparent 65%);
      filter: blur(60px);
      z-index: 0;
      animation: float 10s ease-in-out infinite reverse;
    }

    .dash-card {
      background: rgba(10, 10, 10, 0.8);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: var(--radius-xl);
      padding: var(--space-6);
      box-shadow: var(--shadow-3d);
      position: relative;
      z-index: 1;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transform-style: preserve-3d;
    }

    .dash-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.5s;
    }

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

    .dash-card:hover {
      transform: translateY(-15px) translateZ(40px) rotateX(-5deg);
      box-shadow: var(--shadow-3d-hover);
      border-color: rgba(223, 37, 49, 0.3);
      z-index: 10;
    }

    /* Stack offset effect for cards */
    .dash-risk-card { transform: translateZ(20px); }
    .dash-signals-card { transform: translateZ(50px); }
    .dash-status-card { transform: translateZ(30px); }

    [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(223, 37, 49, 0.15);
      border-color: rgba(223, 37, 49, 0.3);
    }

    /* 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: #FFFFFF;
      opacity: 0.9;
      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: #FFFFFF;
      opacity: 0.85;
      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%);
      }
    }

    /* ========== 3D DECORATIVE ELEMENTS ========== */
    .shape-3d {
      position: absolute;
      pointer-events: none;
      z-index: 0;
      opacity: 0.6;
      filter: blur(2px);
      transform-style: preserve-3d;
    }

    .shape-cube {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--accent-primary), transparent);
      box-shadow: 0 10px 20px rgba(223, 37, 49, 0.2);
      animation: float-3d 10s ease-in-out infinite;
    }

    .shape-sphere {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, var(--teal-primary), transparent);
      box-shadow: 0 15px 30px rgba(56, 178, 172, 0.2);
      animation: float-3d 12s ease-in-out infinite reverse;
    }

    .shape-1 { top: 15%; left: 10%; width: 80px; height: 80px; }
    .shape-2 { bottom: 20%; right: 10%; width: 120px; height: 120px; opacity: 0.3; }
    .shape-3 { top: 40%; right: 5%; width: 40px; height: 40px; opacity: 0.5; }

    @keyframes float-3d {
      0%, 100% { transform: translateY(0) rotateX(0) rotateY(0) translateZ(0); }
      50% { transform: translateY(-30px) rotateX(180deg) rotateY(90deg) translateZ(100px); }
    }

    /* Glow enhancement for hero */
    .hero-section::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(223, 37, 49, 0.05) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* ========== 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) {
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero-text {
        margin: 0 auto;
      }

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

      .dashboard-showcase {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-top: 20px;
        transform: none;
      }

      .hero-image-wrapper {
        transform: none;
      }

      .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-family: var(--font-eyebrow);
      font-size: var(--text-xs);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      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: var(--accent-primary);
      color: white;
      box-shadow: 0 8px 24px rgba(223, 37, 49, 0.35);
      transform: scale(1.08);
    }

    .benefit-number {
      position: absolute;
      top: -6px;
      right: -6px;
      width: 22px;
      height: 22px;
      background: var(--accent-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(223, 37, 49, 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-secondary);
      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 - Removed background to allow floating island effect */

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

    [data-theme="dark"] .theme-toggle-container {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
      background: rgba(255, 255, 255, 0.03);
    }

    [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: 1;
      transform: translateY(0);
      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: 88px;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      /* Increased for airiness */
      background: var(--glass-bg-light);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border-radius: 32px;
      /* Smoother corners */
      box-shadow: var(--island-shadow-light);
      display: flex;
      align-items: center;
      padding: 0 var(--space-10);
      /* Wider padding */
      overflow: visible;
      /* Ensure nothing is clipped */
    }

    [data-theme="dark"] .header-island {
      background: rgba(10, 10, 10, 0.9);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(223, 37, 49, 0.05);
    }

    /* Light Mode Header Contrast */
    [data-theme="light"] .header-island {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    [data-theme="light"] .logo-text-ultra {
      color: #000000 !important;
      -webkit-text-fill-color: #000000 !important;
      background: none !important;
    }

    [data-theme="light"] .nav-link-ultra {
      color: #2D3748 !important;
    }

    [data-theme="light"] .btn-ghost-ultra {
      color: #2D3748 !important;
    }

    /* Responsiveness Fixes */
    @media (max-width: 1200px) {
      .nav-ultra {
        display: none !important;
      }

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

    @media (max-width: 1100px) {
      .header-actions-ultra .btn-ghost-ultra {
        display: none !important;
      }
    }

    /* 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-ultra-premium img {
      width: 44px;
      height: 44px;
      object-fit: contain;
      border-radius: 0;
      box-shadow: none;
    }

    .logo-icon-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.4s var(--ease-bounce);
      background: transparent;
      padding: 0;
      border-radius: 0;
    }

    .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-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      letter-spacing: -0.03em;
      color: var(--text-primary);
      background: none;
      -webkit-text-fill-color: initial;
      white-space: nowrap;
    }

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

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

    .nav-link-ultra {
      padding: 10px 20px;
      color: var(--text-secondary);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      border-radius: 14px;
      position: relative;
      white-space: nowrap;
    }

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

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

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

    /* Buttons Ultra */
    .btn-ultra {
      padding: 12px 28px;
      border-radius: 16px;
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      position: relative;
      white-space: nowrap;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .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;
      min-width: 80px;
    }

    .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: -10px;
      right: -10px;
      background: #10B981;
      color: white;
      font-family: var(--font-ui);
      font-size: 8px;
      font-weight: 900;
      padding: 3px 7px;
      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: 100;
      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-overlay-ultra .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);
      padding: var(--space-4) 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* 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%;
    }

    /* Success State */
    .newsletter-success {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: var(--space-4) 0;
      animation: newsletterFadeIn 0.5s ease forwards;
    }

    .newsletter-success h4 {
      color: var(--text-primary);
      margin-top: var(--space-4);
      margin-bottom: var(--space-1);
      font-size: var(--text-xl);
    }

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

    @keyframes newsletterFadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .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;
      text-decoration: none;
    }

    .footer-brand-premium .logo-premium span {
      font-family: 'Orbitron', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--text-primary);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .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-family: 'Orbitron', sans-serif;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      color: var(--accent-primary);
      margin-bottom: var(--space-6);
      position: relative;
      padding-bottom: var(--space-2);
      text-transform: uppercase;
    }

    .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-overlay-ultra .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-overlay-ultra .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-family: 'Outfit', sans-serif;
      font-weight: 700;
      color: var(--text-primary);
      font-size: var(--text-lg);
    }

    .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;
    }


    /* ==========================================================
       WEBSITE DEVELOPMENT FOR SMALL BUSINESSES SECTION
       ========================================================== */

    /* Section wrapper — subtle teal-shifted gradient to visually separate from security sections */
    .web-dev-section {
      background: linear-gradient(180deg,
        var(--bg-base) 0%,
        rgba(56, 178, 172, 0.04) 40%,
        var(--bg-base) 100%);
      position: relative;
      overflow: hidden;
    }

    .web-dev-section::before {
      content: '';
      position: absolute;
      top: -10%;
      right: -5%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(56, 178, 172, 0.08) 0%, transparent 65%);
      pointer-events: none;
      animation: float 10s ease-in-out infinite;
    }

    .web-dev-section::after {
      content: '';
      position: absolute;
      bottom: -10%;
      left: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(74, 144, 217, 0.06) 0%, transparent 65%);
      pointer-events: none;
      animation: float 12s ease-in-out infinite reverse;
    }

    /* Badge variant */
    .web-dev-badge {
      background: linear-gradient(135deg, rgba(56, 178, 172, 0.15), rgba(56, 178, 172, 0.08));
      color: var(--teal-primary);
      border-color: rgba(56, 178, 172, 0.2);
    }

    /* ---- Intro two-column grid ---- */
    .web-dev-intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-12);
      align-items: center;
      margin-top: var(--space-12);
    }

    .web-dev-intro-text h3 {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      line-height: 1.2;
      color: var(--text-primary);
      margin-bottom: var(--space-4);
      letter-spacing: -0.02em;
    }

    .web-dev-intro-text p {
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: var(--space-6);
    }

    /* ---- Browser Mockup Card ---- */
    .web-dev-intro-visual {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .web-dev-mockup-card {
      width: 100%;
      max-width: 380px;
      background: var(--bg-base);
      border-radius: var(--radius-2xl);
      box-shadow: var(--neu-raised-lg), 0 0 40px rgba(56, 178, 172, 0.1);
      overflow: hidden;
      transition: all 0.4s var(--ease-neu);
      border: 1px solid var(--border-subtle);
      position: relative;
    }

    .web-dev-mockup-card:hover {
      transform: translateY(-8px) rotate(-0.5deg);
      box-shadow: var(--neu-raised-lg), 0 0 60px rgba(56, 178, 172, 0.18);
    }

    .mockup-browser-bar {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      padding: var(--space-3) var(--space-4);
      background: var(--bg-dark);
      border-bottom: 1px solid var(--border-default);
    }

    .mockup-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .mockup-dot.red    { background: #FF5F57; }
    .mockup-dot.yellow { background: #FFBD2E; }
    .mockup-dot.green  { background: #28CA41; }

    .mockup-url {
      margin-left: var(--space-2);
      font-size: var(--text-xs);
      color: var(--text-muted);
      font-family: var(--font-mono);
      background: var(--bg-base);
      padding: 3px 10px;
      border-radius: var(--radius-full);
      border: 1px solid var(--border-default);
      flex: 1;
      text-align: center;
    }

    .mockup-body {
      padding: var(--space-6);
    }

    .mockup-hero-block {
      margin-bottom: var(--space-6);
    }

    .mockup-headline {
      height: 18px;
      background: linear-gradient(90deg, var(--teal-primary), var(--accent-primary));
      border-radius: var(--radius-sm);
      margin-bottom: var(--space-3);
      width: 75%;
      opacity: 0.7;
    }

    .mockup-sub {
      height: 10px;
      background: var(--border-strong);
      border-radius: var(--radius-sm);
      margin-bottom: var(--space-4);
      width: 55%;
    }

    .mockup-btn-row {
      display: flex;
      gap: var(--space-3);
    }

    .mockup-btn {
      height: 32px;
      border-radius: var(--radius-xl);
      flex: 1;
    }

    .mockup-btn.primary {
      background: linear-gradient(135deg, var(--teal-primary), var(--accent-primary));
      max-width: 120px;
    }

    .mockup-btn.ghost {
      background: var(--bg-surface);
      box-shadow: var(--neu-raised-sm);
      max-width: 100px;
    }

    .mockup-stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-3);
      background: var(--bg-surface);
      border-radius: var(--radius-lg);
      padding: var(--space-4);
      box-shadow: var(--neu-inset);
    }

    .mockup-stat {
      text-align: center;
    }

    .mockup-stat-num {
      font-size: var(--text-lg);
      font-weight: 800;
      color: var(--teal-primary);
      line-height: 1;
    }

    .mockup-stat-label {
      font-size: 10px;
      color: var(--text-muted);
      margin-top: 4px;
    }

    .mockup-security-badge {
      position: absolute;
      bottom: var(--space-3);
      right: var(--space-4);
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 600;
      color: var(--success);
      background: rgba(72, 187, 120, 0.1);
      border: 1px solid rgba(72, 187, 120, 0.2);
      padding: 4px 10px;
      border-radius: var(--radius-full);
    }

    /* ---- Feature Cards Grid ---- */
    .web-dev-features-grid {
      margin-top: var(--space-6);
    }

    .web-dev-feature-card {
      padding: var(--space-7);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(56, 178, 172, 0.1);
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    [data-theme="dark"] .web-dev-feature-card {
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(56, 178, 172, 0.08);
    }

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

    .web-dev-feature-card:hover::before {
      opacity: 1;
    }

    .web-dev-feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px -10px rgba(56, 178, 172, 0.15), 0 0 30px rgba(56, 178, 172, 0.05);
      border-color: rgba(56, 178, 172, 0.2);
    }

    .web-dev-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, rgba(56, 178, 172, 0.12), rgba(74, 144, 217, 0.08));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-5);
      color: var(--teal-primary);
      transition: all 0.3s ease;
      box-shadow: var(--neu-raised-sm);
    }

    .web-dev-icon-wrap svg {
      width: 26px;
      height: 26px;
    }

    .web-dev-feature-card:hover .web-dev-icon-wrap {
      background: linear-gradient(135deg, var(--teal-primary), var(--accent-primary));
      color: white;
      box-shadow: 0 8px 24px rgba(56, 178, 172, 0.35);
      transform: scale(1.08);
    }

    .web-dev-feature-card h3 {
      font-size: var(--text-lg);
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: var(--space-3);
    }

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

    /* ---- Pricing Strip ---- */
    .web-dev-pricing-strip {
      margin-top: var(--space-16);
    }

    .web-dev-pricing-card {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: var(--space-12);
      align-items: start;
      background: var(--bg-base);
      border-radius: var(--radius-2xl);
      padding: var(--space-10);
      box-shadow: var(--neu-card), 0 0 40px rgba(56, 178, 172, 0.08);
      border: 1px solid rgba(56, 178, 172, 0.15);
      position: relative;
      overflow: hidden;
    }

    .web-dev-pricing-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--teal-primary), var(--accent-primary));
    }

    [data-theme="dark"] .web-dev-pricing-card {
      border-color: rgba(56, 178, 172, 0.12);
      box-shadow: var(--neu-card), 0 0 40px rgba(56, 178, 172, 0.05);
    }

    .web-dev-pricing-left h3 {
      font-size: var(--text-2xl);
      font-weight: 800;
      color: var(--text-primary);
      margin: var(--space-3) 0 var(--space-4);
    }

    .web-dev-pricing-left > p {
      color: var(--text-secondary);
      margin-bottom: var(--space-6);
      line-height: 1.6;
    }

    .web-dev-pricing-right {
      min-width: 260px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .web-dev-price-display {
      text-align: center;
      background: var(--bg-surface);
      border-radius: var(--radius-xl);
      padding: var(--space-6);
      box-shadow: var(--neu-inset);
      margin-bottom: var(--space-5);
    }

    .web-dev-price-from {
      font-size: var(--text-xs);
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 600;
      display: block;
      margin-bottom: var(--space-2);
    }

    .web-dev-price {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 800;
      background: linear-gradient(135deg, var(--teal-primary), var(--accent-primary));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1;
      margin-bottom: var(--space-2);
    }

    .web-dev-price-note {
      font-size: var(--text-xs);
      color: var(--text-muted);
      display: block;
    }

    .web-dev-guarantee {
      font-size: var(--text-xs);
      color: var(--text-muted);
      text-align: center;
      margin-top: var(--space-4);
      line-height: 1.6;
    }

    /* ---- Social Proof Strip ---- */
    .web-dev-proof-strip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-6);
      margin-top: var(--space-10);
      background: var(--bg-base);
      border-radius: var(--radius-2xl);
      padding: var(--space-6) var(--space-10);
      box-shadow: var(--neu-card);
      flex-wrap: wrap;
    }

    .web-dev-proof-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-1);
    }

    .web-dev-proof-num {
      font-size: var(--text-2xl);
      font-weight: 800;
      color: var(--teal-primary);
      line-height: 1;
    }

    .web-dev-proof-label {
      font-size: var(--text-xs);
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 600;
    }

    .web-dev-proof-divider {
      width: 1px;
      height: 40px;
      background: var(--border-default);
    }

    /* ---- Dark Mode Overrides ---- */
    [data-theme="dark"] .web-dev-mockup-card {
      background: var(--bg-surface);
    }

    [data-theme="dark"] .mockup-browser-bar {
      background: var(--bg-dark);
    }

    [data-theme="dark"] .mockup-url {
      background: var(--bg-surface);
      border-color: var(--border-default);
    }

    /* ---- Responsive ---- */
    @media (max-width: 900px) {
      .web-dev-intro-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
      }

      .web-dev-intro-visual {
        order: -1;
      }

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

      .web-dev-pricing-right {
        min-width: unset;
      }

      .web-dev-proof-strip {
        gap: var(--space-4);
        padding: var(--space-5);
      }

      .web-dev-proof-divider {
        display: none;
      }
    }

    @media (max-width: 600px) {
      .web-dev-proof-strip {
        flex-wrap: wrap;
        gap: var(--space-6);
      }

      .web-dev-proof-item {
        flex: 1 1 40%;
      }

      .web-dev-pricing-card {
        padding: var(--space-6);
      }
    }

    /* ==========================================================
       PREMIUM BENTO GRID — "What We Offer"
       ========================================================== */

    .web-dev-bento-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-5);
      margin-top: var(--space-6);
    }

    /* Base bento card */
    .web-dev-bento-card {
      background: var(--bg-base);
      border-radius: var(--radius-2xl);
      box-shadow: var(--neu-card);
      border: 1px solid var(--border-subtle);
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .web-dev-bento-card:hover::before { opacity: 1; }

    .web-dev-bento-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--neu-card-hover), 0 0 40px rgba(56,178,172,0.1);
      border-color: rgba(56,178,172,0.2);
    }

    [data-theme="dark"] .web-dev-bento-card {
      background: var(--bg-surface);
      border-color: var(--border-default);
    }

    /* Wide hero cards — span 2 of 4 columns */
    .bento-wide {
      grid-column: span 2;
      display: flex;
      flex-direction: column;
      padding: var(--space-8);
      gap: var(--space-5);
    }

    /* Compact cards — span 1 of 4 columns */
    .bento-compact {
      grid-column: span 1;
      padding: var(--space-6);
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
    }

    /* Gradient number badge */
    .bento-num-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, var(--teal-primary), var(--accent-primary));
      color: #fff;
      font-size: 13px;
      font-weight: 800;
      box-shadow: 0 4px 12px rgba(56,178,172,0.35);
      flex-shrink: 0;
      transition: transform 0.3s var(--ease-bounce);
    }

    .web-dev-bento-card:hover .bento-num-badge {
      transform: scale(1.12) rotate(-3deg);
    }

    /* XL icon for wide cards */
    .bento-icon-xl {
      width: 64px; height: 64px;
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, rgba(56,178,172,0.12), rgba(74,144,217,0.08));
      display: flex; align-items: center; justify-content: center;
      color: var(--teal-primary);
      box-shadow: var(--neu-raised-sm);
      transition: all 0.35s ease;
      flex-shrink: 0;
    }

    .bento-icon-xl svg { width: 34px; height: 34px; }

    .web-dev-bento-card:hover .bento-icon-xl {
      background: linear-gradient(135deg, var(--teal-primary), var(--accent-primary));
      color: #fff;
      box-shadow: 0 8px 24px rgba(56,178,172,0.4);
      transform: scale(1.06);
    }

    /* MD icon for compact cards */
    .bento-icon-md {
      width: 48px; height: 48px;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(56,178,172,0.12), rgba(74,144,217,0.06));
      display: flex; align-items: center; justify-content: center;
      color: var(--teal-primary);
      box-shadow: var(--neu-raised-sm);
      transition: all 0.35s ease;
      flex-shrink: 0;
    }

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

    .web-dev-bento-card:hover .bento-icon-md {
      background: linear-gradient(135deg, var(--teal-primary), var(--accent-primary));
      color: #fff;
      box-shadow: 0 6px 18px rgba(56,178,172,0.35);
      transform: scale(1.06);
    }

    /* Card body */
    .bento-card-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
    }

    /* Category tag */
    .bento-tag {
      display: inline-flex;
      align-self: flex-start;
      padding: 4px 12px;
      background: linear-gradient(135deg, rgba(56,178,172,0.12), rgba(74,144,217,0.08));
      border: 1px solid rgba(56,178,172,0.2);
      border-radius: var(--radius-full);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--teal-primary);
    }

    /* Headings inside bento */
    .web-dev-bento-card h4 {
      font-size: var(--text-xl);
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin: 0;
    }

    .web-dev-bento-card h4 span {
      display: block;
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 0;
      margin-top: 2px;
    }

    .web-dev-bento-card p {
      font-size: var(--text-sm);
      color: var(--text-secondary);
      line-height: 1.7;
      margin: 0;
    }

    /* Stat row (wide cards) */
    .bento-stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-4);
      margin-top: auto;
      padding-top: var(--space-5);
      border-top: 1px solid var(--border-subtle);
    }

    .bento-stat {
      display: flex;
      flex-direction: column;
      gap: var(--space-1);
    }

    .bento-stat-num {
      font-size: var(--text-2xl);
      font-weight: 800;
      background: linear-gradient(135deg, var(--teal-primary), var(--accent-primary));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1;
    }

    .bento-stat-label {
      font-size: var(--text-xs);
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* Pill row (compact cards) */
    .bento-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-2);
      margin-top: auto;
    }

    .bento-pill {
      display: inline-flex;
      align-items: center;
      padding: 4px 10px;
      background: var(--bg-surface);
      border: 1px solid var(--border-default);
      border-radius: var(--radius-full);
      font-size: 11px;
      font-weight: 600;
      color: var(--text-muted);
      box-shadow: var(--neu-raised-sm);
      transition: all 0.25s ease;
    }

    .web-dev-bento-card:hover .bento-pill {
      border-color: rgba(56,178,172,0.25);
      color: var(--teal-primary);
      background: rgba(56,178,172,0.06);
    }

    /* Ambient glow per card type */
    .bento-design::after {
      content: '';
      position: absolute;
      bottom: -30%; right: -10%;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(56,178,172,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .bento-mobile::after {
      content: '';
      position: absolute;
      bottom: -30%; right: -10%;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(74,144,217,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Dark mode overrides */
    [data-theme="dark"] .bento-pill {
      background: rgba(255,255,255,0.04);
      border-color: rgba(255,255,255,0.08);
    }

    [data-theme="dark"] .bento-tag {
      background: rgba(56,178,172,0.08);
      border-color: rgba(56,178,172,0.15);
    }

    [data-theme="dark"] .bento-icon-xl,
    [data-theme="dark"] .bento-icon-md {
      background: rgba(56,178,172,0.07);
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .web-dev-bento-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .bento-wide   { grid-column: span 2; }
      .bento-compact { grid-column: span 1; }
    }

    @media (max-width: 640px) {
      .web-dev-bento-grid {
        grid-template-columns: 1fr;
      }
      .bento-wide,
      .bento-compact { grid-column: span 1; }
      .bento-stat-row {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ==========================================================
       WEBSITE DEVELOPMENT HIGHLIGHT HERO
       ========================================================== */

    .web-dev-highlight {
      padding-top: 0 !important;
      overflow: visible !important;
    }

    .web-dev-hero-band {
      position: relative;
      /* Soft premium light mesh */
      background: linear-gradient(135deg, 
        #f8fafc 0%, 
        #e0f2fe 25%, 
        #f1f5f9 50%, 
        #ecfdf5 75%, 
        #f8fafc 100%
      );
      background-size: 400% 400%;
      animation: meshGradient 15s ease infinite;
      padding: var(--space-24) 0;
      margin-bottom: var(--space-16);
      overflow: hidden;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.5s ease;
    }

    [data-theme="dark"] .web-dev-hero-band {
      background: #020617;
      background: linear-gradient(135deg, #020617 0%, #0F172A 50%, #020617 100%);
      border-bottom-color: rgba(56, 178, 172, 0.15);
    }

    @keyframes meshGradient {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Animated Orbs */
    .web-dev-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      z-index: 0;
      opacity: 0.15; /* Subtler for light mode */
      pointer-events: none;
      transition: opacity 0.5s ease;
    }

    [data-theme="dark"] .web-dev-orb {
      opacity: 0.4; /* Stronger for dark mode */
    }

    .web-dev-orb-1 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, var(--teal-primary) 0%, transparent 70%);
      top: -100px;
      right: -50px;
      animation: float 15s ease-in-out infinite;
    }

    .web-dev-orb-2 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
      bottom: -50px;
      left: -50px;
      animation: float 12s ease-in-out infinite reverse;
    }

    .web-dev-orb-3 {
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, #8B5CF6 0%, transparent 70%); /* Purple accent */
      top: 20%;
      left: 30%;
      opacity: 0.2;
      animation: pulse 8s ease-in-out infinite;
    }

    /* Keyframes for Hero Animations */
    @keyframes float {
      0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
      }
      25% {
        transform: translate(40px, -60px) scale(1.1) rotate(5deg);
      }
      50% {
        transform: translate(-30px, 30px) scale(0.9) rotate(-3deg);
      }
      75% {
        transform: translate(20px, 50px) scale(1.05) rotate(2deg);
      }
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 0.2;
      }
      50% {
        transform: scale(1.2);
        opacity: 0.4;
      }
    }

    /* Animated Gradient Text */
    .web-dev-gradient-text {
      background: linear-gradient(135deg, var(--teal-primary) 0%, #60A5FA 50%, var(--teal-primary) 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientShift 4s linear infinite;
    }

    @keyframes gradientShift {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    .web-dev-hero-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 900px !important;
      animation: floatContent 10s ease-in-out infinite;
    }

    @keyframes floatContent {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    /* Eyebrow Pill */
    .web-dev-eyebrow-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 6px 16px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-full);
      color: var(--text-secondary);
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: var(--space-8);
      backdrop-filter: blur(10px);
      box-shadow: var(--neu-raised-sm);
    }

    [data-theme="dark"] .web-dev-eyebrow-pill {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.1);
      color: #94A3B8;
      box-shadow: none;
    }

    .web-dev-eyebrow-dot {
      width: 8px;
      height: 8px;
      background: var(--teal-primary);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--teal-primary);
      animation: pulse 2s infinite;
    }

    .web-dev-hero-headline {
      font-size: clamp(2.5rem, 5vw, 4rem) !important;
      font-weight: 850 !important;
      line-height: 1.1 !important;
      color: var(--text-primary) !important;
      margin-bottom: var(--space-6) !important;
      letter-spacing: -0.03em !important;
    }

    [data-theme="dark"] .web-dev-hero-headline {
      color: #FFFFFF !important;
    }

    .web-dev-hero-sub {
      font-size: clamp(1.1rem, 2vw, 1.25rem);
      color: var(--text-secondary);
      max-width: 700px;
      margin: 0 auto var(--space-10);
      line-height: 1.6;
    }

    [data-theme="dark"] .web-dev-hero-sub {
      color: #94A3B8;
    }

    /* Chips */
    .web-dev-chip-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: var(--space-3);
      margin-bottom: var(--space-12);
    }

    .web-dev-chip {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      font-size: 14px;
      font-weight: 500;
      color: var(--text-primary);
      transition: all 0.3s ease;
      box-shadow: var(--neu-raised-sm);
    }

    [data-theme="dark"] .web-dev-chip {
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(255, 255, 255, 0.05);
      color: #E2E8F0;
      box-shadow: none;
    }

    .web-dev-chip:hover {
      background: var(--bg-elevated);
      border-color: var(--teal-primary);
      transform: translateY(-2px);
      box-shadow: var(--neu-card-hover);
    }

    [data-theme="dark"] .web-dev-chip:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(56, 178, 172, 0.3);
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .web-dev-chip svg {
      color: var(--teal-primary);
    }

    /* Buttons */
    .web-dev-hero-ctas {
      display: flex;
      justify-content: center;
      gap: var(--space-4);
      flex-wrap: wrap;
    }

    .web-dev-btn-primary {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      background: linear-gradient(135deg, var(--teal-primary), var(--accent-primary));
      color: #FFFFFF;
      font-weight: 700;
      font-size: 16px;
      border-radius: var(--radius-xl);
      box-shadow: 0 10px 25px -5px rgba(56, 178, 172, 0.4);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      text-decoration: none;
    }

    .web-dev-btn-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 15px 30px -5px rgba(56, 178, 172, 0.6);
    }

    .web-dev-btn-ghost {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      color: var(--text-primary);
      font-weight: 600;
      font-size: 16px;
      border-radius: var(--radius-xl);
      transition: all 0.3s ease;
      box-shadow: var(--neu-raised-sm);
    }

    [data-theme="dark"] .web-dev-btn-ghost {
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(255, 255, 255, 0.1);
      color: #FFFFFF;
      box-shadow: none;
    }

    .web-dev-btn-ghost:hover {
      background: var(--bg-elevated);
      border-color: var(--teal-primary);
      transform: translateY(-2px);
      box-shadow: var(--neu-card-hover);
    }

    [data-theme="dark"] .web-dev-btn-ghost:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.2);
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    /* Dark mode adjustments for following sections if needed */
    [data-theme="dark"] .web-dev-highlight .web-dev-hero-band {
      background: #020617; /* Even darker for dark theme */
    }

    @media (max-width: 768px) {
      .web-dev-hero-band {
        padding: var(--space-16) 0;
      }
      .web-dev-hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
      }
      .web-dev-btn-primary, .web-dev-btn-ghost {
        justify-content: center;
      }
    }


    /* ==========================================================
       CLIENT FEEDBACK / TESTIMONIALS SECTION
       ========================================================== */

    .web-dev-testimonials {
      position: relative;
      z-index: 1;
    }

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

    .testimonial-card {
      background: var(--bg-base);
      border-radius: var(--radius-2xl);
      padding: var(--space-8);
      box-shadow: var(--neu-card);
      border: 1px solid var(--border-subtle);
      position: relative;
      display: flex;
      flex-direction: column;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--neu-card-hover), 0 10px 30px rgba(56, 178, 172, 0.1);
      border-color: rgba(56, 178, 172, 0.2);
    }

    .testimonial-stars {
      color: #FBBF24; /* Amber star color */
      font-size: 14px;
      margin-bottom: var(--space-4);
      display: flex;
      gap: 2px;
    }

    .testimonial-text {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: var(--space-6);
      flex-grow: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: var(--space-4);
      padding-top: var(--space-4);
      border-top: 1px solid var(--border-subtle);
    }

    .author-info strong {
      display: block;
      font-size: 15px;
      color: var(--text-primary);
      margin-bottom: 2px;
    }

    .author-info span {
      display: block;
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .testimonial-tag {
      position: absolute;
      top: var(--space-8);
      right: var(--space-8);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 4px 10px;
      background: rgba(56, 178, 172, 0.1);
      color: var(--teal-primary);
      border-radius: var(--radius-full);
      border: 1px solid rgba(56, 178, 172, 0.2);
    }

    [data-theme="dark"] .testimonial-card {
      background: var(--bg-surface);
      border-color: var(--border-default);
    }

    [data-theme="dark"] .testimonial-tag {
      background: rgba(56, 178, 172, 0.15);
      border-color: rgba(56, 178, 172, 0.3);
    }

    @media (max-width: 1024px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
      }
    }

    @media (max-width: 640px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
      
      .testimonial-card {
        padding: var(--space-6);
      }
    }

    /* ==========================================================
       THEME ADAPTIVITY FOR WEB-DEV HIGHLIGHT
       ========================================================== */

    [data-theme="light"] .web-dev-hero-band {
      background: #F8FAFC;
      background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 50%, #F8FAFC 100%);
      border-bottom-color: rgba(56, 178, 172, 0.1);
    }
    
    [data-theme="light"] .web-dev-eyebrow-pill {
      background: rgba(0, 0, 0, 0.05);
      border-color: rgba(0, 0, 0, 0.05);
      color: var(--text-secondary);
    }
    
    [data-theme="light"] .web-dev-hero-headline {
      color: var(--text-primary) !important;
    }
    
    [data-theme="light"] .web-dev-hero-sub {
      color: var(--text-secondary) !important;
    }
    
    [data-theme="light"] .web-dev-chip {
      background: var(--bg-surface);
      color: var(--text-secondary);
      border-color: var(--border-subtle);
      box-shadow: var(--neu-raised-sm);
    }
    
    [data-theme="light"] .web-dev-orb {
      opacity: 0.12; /* Subtle orbs in light mode */
    }

    [data-theme="light"] .web-dev-btn-ghost {
      color: var(--text-primary);
      border-color: var(--border-default);
    }

    [data-theme="light"] .web-dev-btn-ghost:hover {
      background: var(--bg-surface);
      border-color: var(--teal-primary);
    }

    /* ==========================================================
       BLOOMEOR-POS SYSTEM HIGHLIGHT
       ========================================================== */
    :root {
      --pos-primary: #6366F1;
      --pos-secondary: #8B5CF6;
      --pos-accent: #EC4899;
      --pos-gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
      --pos-glow: 0 0 30px rgba(99, 102, 241, 0.3);
    }

    .pos-section {
      padding-top: 0 !important;
      overflow: visible !important;
    }

    .pos-hero-band {
      position: relative;
      background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
      padding: var(--space-24) 0;
      margin-bottom: var(--space-16);
      overflow: hidden;
      border-bottom: 1px solid rgba(99, 102, 241, 0.2);
      transition: all 0.5s ease;
    }

    [data-theme="light"] .pos-hero-band {
      background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 50%, #f0f9ff 100%);
      border-bottom-color: rgba(99, 102, 241, 0.1);
    }

    .pos-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      z-index: 0;
      opacity: 0.4;
      pointer-events: none;
      transition: opacity 0.5s ease;
    }

    [data-theme="light"] .pos-orb {
      opacity: 0.15;
    }

    .pos-orb-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, var(--pos-primary) 0%, transparent 70%);
      top: -150px; right: -100px;
      animation: float 18s ease-in-out infinite;
    }

    .pos-orb-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, var(--pos-secondary) 0%, transparent 70%);
      bottom: -100px; left: -100px;
      animation: float 14s ease-in-out infinite reverse;
    }

    .pos-gradient-text {
      background: linear-gradient(135deg, #818CF8 0%, #C084FC 50%, #818CF8 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientShift 4s linear infinite;
    }

    .pos-feature-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: rgba(99, 102, 241, 0.1);
      border: 1px solid rgba(99, 102, 241, 0.2);
      border-radius: var(--radius-full);
      color: var(--pos-primary);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: var(--space-6);
      backdrop-filter: blur(10px);
    }


    [data-theme="light"] .pos-feature-tag {
      background: rgba(99, 102, 241, 0.05);
      color: #4338CA;
    }

    .pos-mockup-wrapper {
      position: relative;
      margin-top: var(--space-12);
      perspective: 1200px;
    }

    .pos-mockup-main {
      background: #1e293b;
      border-radius: var(--radius-2xl);
      border: 12px solid #0f172a;
      box-shadow: 0 50px 100px -20px rgba(0,0,0,0.6), 0 0 40px rgba(99,102,241,0.2);
      overflow: hidden;
      transform: rotateX(8deg);
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .pos-mockup-main:hover {
      transform: rotateX(0deg) translateY(-15px);
      box-shadow: 0 60px 120px -20px rgba(0,0,0,0.7), 0 0 60px rgba(99,102,241,0.3);
    }

    .pos-ui-header {
      height: 50px;
      background: #0f172a;
      display: flex;
      align-items: center;
      padding: 0 var(--space-6);
      justify-content: space-between;
      border-bottom: 1px solid #1e293b;
    }

    .pos-ui-logo { font-weight: 800; color: #fff; font-size: 14px; letter-spacing: -0.02em; }
    .pos-ui-user { width: 24px; height: 24px; background: #334155; border-radius: 50%; }

    .pos-ui-body {
      display: grid;
      grid-template-columns: 1fr 320px;
      height: 480px;
      background: #0f172a;
    }

    .pos-ui-content {
      padding: var(--space-6);
      display: flex;
      flex-direction: column;
      gap: var(--space-6);
      background: #0f172a;
    }

    .pos-ui-categories {
      display: flex;
      gap: var(--space-3);
    }

    .pos-ui-cat {
      padding: 6px 12px;
      background: #1e293b;
      border-radius: var(--radius-md);
      font-size: 11px;
      font-weight: 600;
      color: #94a3b8;
    }

    .pos-ui-cat.active {
      background: var(--pos-primary);
      color: #fff;
    }

    .pos-ui-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-4);
      flex-grow: 1;
    }

    .pos-ui-item {
      background: #1e293b;
      border-radius: var(--radius-xl);
      padding: var(--space-4);
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
      border: 1px solid rgba(255,255,255,0.05);
    }

    .pos-item-img { width: 100%; height: 60px; background: #334155; border-radius: var(--radius-md); }
    .pos-item-name { height: 10px; width: 60%; background: #334155; border-radius: 5px; }
    .pos-item-price { height: 10px; width: 40%; background: var(--pos-primary); opacity: 0.5; border-radius: 5px; }

    .pos-ui-sidebar {
      background: #111827;
      border-left: 1px solid #1e293b;
      display: flex;
      flex-direction: column;
      padding: var(--space-6);
    }

    .pos-ui-cart-header {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: var(--space-6);
      display: flex;
      justify-content: space-between;
    }

    .pos-ui-cart-items {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      gap: var(--space-4);
    }

    .pos-ui-cart-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .pos-cart-info { display: flex; flex-direction: column; gap: 4px; }
    .pos-cart-line { height: 8px; width: 80px; background: #1e293b; border-radius: 4px; }
    .pos-cart-line.sm { width: 40px; }
    .pos-cart-price { font-size: 12px; font-weight: 600; color: #fff; }

    .pos-ui-total {
      margin-top: auto;
      padding-top: var(--space-6);
      border-top: 1px solid #1e293b;
    }

    .pos-total-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: var(--space-4);
    }

    .pos-total-label { font-size: 14px; color: #94a3b8; }
    .pos-total-value { font-size: 18px; font-weight: 800; color: #fff; }

    .pos-pay-btn {
      width: 100%;
      padding: 14px;
      background: var(--pos-gradient);
      border-radius: var(--radius-lg);
      color: #fff;
      font-weight: 700;
      text-align: center;
      box-shadow: 0 8px 20px rgba(99,102,241,0.3);
    }

    @media (max-width: 1024px) {
      .pos-ui-body {
        grid-template-columns: 1fr;
      }
      .pos-ui-sidebar {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .pos-ui-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ========== PREMIUM GLOBAL SECTION STYLES ========== */
    .section-premium {
      padding: var(--space-24) 0;
      position: relative;
      overflow: hidden;
    }

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

    .header-premium-group {
      text-align: center;
      max-width: 800px;
      margin: 0 auto var(--space-16);
      position: relative;
      z-index: 2;
    }

    .eyebrow-premium {
      display: inline-block;
      font-family: 'Outfit', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--accent-primary);
      margin-bottom: var(--space-4);
      padding: 0.5rem 1.25rem;
      background: rgba(223, 37, 49, 0.08);
      border-radius: var(--radius-full);
      border: 1px solid rgba(223, 37, 49, 0.15);
    }

    .heading-premium {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(2.25rem, 5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--text-primary);
      margin-bottom: var(--space-6);
      letter-spacing: -0.02em;
    }

    .subtitle-premium {
      font-family: 'Inter', sans-serif;
      font-size: var(--text-lg);
      line-height: 1.6;
      color: var(--text-secondary);
      max-width: 650px;
      margin: 0 auto;
      opacity: 0.8;
    }

    .card-premium {
      background: rgba(10, 10, 10, 0.4);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-2xl);
      padding: var(--space-10);
      transition: all 0.5s var(--ease-out);
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .card-premium:hover {
      transform: translateY(-8px);
      border-color: var(--accent-soft);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(223, 37, 49, 0.1);
    }

    /* Ambient Glows for Sections */
    .glow-blob {
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(223, 37, 49, 0.03) 0%, transparent 70%);
      filter: blur(80px);
      z-index: 0;
      pointer-events: none;
    }

    .glow-blob-1 { top: -10%; right: -5%; }
    .glow-blob-2 { bottom: -10%; left: -5%; }

    /* ========== LOGOS SECTION ========== */
    .logos-section {
      padding: var(--space-12) 0;
      background: var(--bg-base);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
      overflow: hidden;
      position: relative;
    }

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

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

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

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

    .logos-marquee {
      display: flex;
      overflow: hidden;
      user-select: none;
      gap: var(--space-16);
    }

    .logos-track {
      display: flex;
      gap: var(--space-16);
      flex-shrink: 0;
      min-width: 100%;
      align-items: center;
      justify-content: space-around;
      animation: marquee 40s linear infinite;
    }

    .logo-item {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      transition: all 0.3s ease;
      filter: grayscale(1) brightness(0.8);
      opacity: 0.5;
    }

    .logo-item:hover {
      filter: grayscale(0) brightness(1);
      opacity: 1;
      transform: translateY(-2px);
    }

    .logo-item img {
      height: 32px;
      width: auto;
      object-fit: contain;
    }

    .logo-placeholder {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--text-primary);
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }


    /* ========== PRODUCT SECTION - POS ROBOT ========== */
    .product-showcase {
      padding: var(--space-32) 0;
      background: var(--bg-surface);
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.03);
    }

    [data-theme="light"] .product-showcase {
      background: #fafafa;
      border-top-color: rgba(0, 0, 0, 0.03);
    }

    .product-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: var(--space-24);
      align-items: flex-start; /* Changed from center so the robot doesn't look pushed down */
    }

    @media (max-width: 992px) {
      .product-grid {
        grid-template-columns: 1fr;
        gap: var(--space-16);
        text-align: center;
      }
      .feature-item-premium {
        text-align: left;
      }
    }

    .product-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .product-robot-img {
      width: 100%;
      max-width: 650px;
      height: auto;
      z-index: 2;
      filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
      transform: translateY(-20px); /* Lift the robot slightly to align better with text */
    }

    .product-robot-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(223, 37, 49, 0.08) 0%, transparent 70%);
      z-index: 1;
      filter: blur(60px);
    }

    .feature-list-premium {
      list-style: none;
      padding: 0;
      margin: var(--space-12) 0;
    }

    .feature-item-premium {
      display: flex;
      gap: var(--space-6);
      margin-bottom: var(--space-6);
      padding: var(--space-8);
      background: rgba(255, 255, 255, 0.02);
      border-radius: var(--radius-3xl);
      border: 1px solid rgba(255, 255, 255, 0.04);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    [data-theme="light"] .feature-item-premium {
      background: #ffffff;
      border-color: rgba(0, 0, 0, 0.05);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); /* Slightly stronger shadow for depth */
    }

    .feature-item-premium:hover {
      background: rgba(223, 37, 49, 0.04);
      border-color: rgba(223, 37, 49, 0.15);
      transform: translateY(-8px) translateX(8px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    }

    .feature-icon-premium {
      width: 64px;
      height: 64px;
      background: var(--bg-elevated);
      border-radius: var(--radius-2xl);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #E31E24; /* Hardcode to Bloomeor Red to ensure visibility */
      font-size: 2rem;
      box-shadow: var(--neu-raised-sm);
      flex-shrink: 0;
    }

    [data-theme="light"] .feature-icon-premium {
      background: #ffffff;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
      color: #E31E24; /* Ensure icon is visible against white background */
    }

    /* Fix Text Gradient fading out in light mode */
    [data-theme="light"] .product-showcase .text-gradient {
      background: linear-gradient(135deg, #FF4B4B 0%, #E31E24 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }


    .feature-text-premium h4 {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 8px;
      letter-spacing: -0.02em;
      text-transform: uppercase;
    }

    .feature-text-premium p {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    [data-theme="light"] .feature-text-premium p {
      color: #334155; /* Much darker for elite accessibility */

    }

/* ========== ADVANCED FEATURES GRID - SOVEREIGN GOLD ========== */
.advanced-features-section {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
  padding: var(--space-24) 0;
}

.advanced-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  position: relative;
  z-index: 2;
  padding: 0 var(--space-4);
}

.advanced-feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

[data-theme="light"] .advanced-feature-card {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.advanced-feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), 0 0 40px rgba(223, 37, 49, 0.1);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(223, 37, 49, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.advanced-feature-card:hover .card-glow {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #FF3B3B 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 10px 20px rgba(223, 37, 49, 0.3);
}

.advanced-feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  line-height: 1.3;
}

.advanced-feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .advanced-features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}



/* ========== BLOOMI AI STYLES ========== */
.ai-feature-pill {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.ai-feature-pill:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 112, 243, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@keyframes scan {
  0% { transform: translateY(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* ========== HERO AI TOUCH STYLES ========== */
.hero-ai-touch-container {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1400px;
  height: 600px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  mix-blend-mode: lighten;
  filter: contrast(1.1) brightness(1.2);
}

.hero-ai-touch-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: hero-ai-float 12s ease-in-out infinite;
}

@keyframes hero-ai-float {
  0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 20px rgba(0, 112, 243, 0.1)); }
  50% { transform: translateY(-20px) scale(1.02); filter: drop-shadow(0 0 50px rgba(0, 112, 243, 0.3)); }
}

/* ========== POS HERO REFINEMENT (THEME-AWARE) ========== */
#pos-hero {
  background: var(--bg-base) !important;
  overflow: hidden;
}

#pos-hero .hero-bg-overlay {
  background: linear-gradient(90deg, var(--bg-base) 30%, transparent 70%), 
              radial-gradient(circle at 70% 50%, rgba(0, 112, 243, 0.1), transparent 60%);
  z-index: 2;
}

#pos-hero .hero-bg-img {
  opacity: 0.15 !important;
  filter: grayscale(1) brightness(var(--bg-img-brightness, 0.8)) contrast(1.2) !important;
  mix-blend-mode: var(--bg-img-blend, lighten) !important;
  transform: scale(1.1) translateX(10%);
}

#pos-hero .hero-headline {
  color: var(--text-primary) !important;
  text-shadow: 0 0 40px rgba(255,255,255,0.05);
}

#pos-hero .hero-subheadline {
  color: var(--text-secondary) !important;
  opacity: 0.8;
}

#pos-hero .btn-secondary-ultra {
  color: var(--text-primary) !important;
  border-color: var(--border-default) !important;
  background: var(--glass-3d-bg) !important;
}

#pos-hero .hero-image-wrapper {
  background: var(--glass-3d-bg);
  border: 1px solid var(--glass-3d-border);
  padding: 10px;
  border-radius: 30px;
  box-shadow: var(--shadow-3d);
}

/* Light Mode Adjustments */
[data-theme="light"] #pos-hero .hero-bg-img {
  --bg-img-brightness: 1.2;
  --bg-img-blend: multiply;
  opacity: 0.1 !important;
}

[data-theme="light"] .text-gradient-enterprise {
  background: linear-gradient(135deg, #0f172a 0%, #64748b 100%);
}

[data-theme="light"] .hero-sub-pro {
  color: var(--text-secondary) !important;
}

/* ========== PROFESSIONAL REFINEMENTS ========== */
.hero-headline-pro {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem) !important;
  font-weight: 800;
  letter-spacing: -0.05em !important;
  line-height: 1.1 !important;
  text-transform: none;
  margin-bottom: 2.5rem;
}

.text-gradient-enterprise {
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-accent {
  background: linear-gradient(135deg, #E31E24 0%, #ff4d4d 50%, #E31E24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(227, 30, 36, 0.2));
}

.hero-sub-pro {
  font-size: 1.15rem !important;
  line-height: 1.8 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  max-width: 650px !important;
  font-weight: 400;
  letter-spacing: 0.01em;
}
