/* Growthium.app - Main Stylesheet */
/* Generated for WordPress Theme */


    /* ═══════════════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════════════ */
    *, *::before, *::after {
      margin: 0; padding: 0; box-sizing: border-box;
    }

    :root {
      --primary: #4F46E5;
      --secondary: #7C3AED;
      --accent: #2563EB;
      --bg: #FFFFFF;
      --text: #111827;
      --muted: #6B7280;
      --border: rgba(79,70,229,0.12);
      --glass: rgba(255,255,255,0.7);
      --glass-border: rgba(255,255,255,0.9);
      --shadow-sm: 0 2px 12px rgba(79,70,229,0.08);
      --shadow-md: 0 8px 40px rgba(79,70,229,0.14);
      --shadow-lg: 0 24px 80px rgba(79,70,229,0.18);
      --radius: 24px;
      --max-w: 1440px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ═══════════════════════════════════════════════════
       BACKGROUND LAYER
    ═══════════════════════════════════════════════════ */
    .bg-layer {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    /* Subtle grid */
    .bg-layer::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(79,70,229,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,70,229,0.04) 1px, transparent 1px);
      background-size: 64px 64px;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.5;
    }
    .blob-1 {
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(79,70,229,0.12), transparent 70%);
      top: -200px; right: -100px;
    }
    .blob-2 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(124,58,237,0.10), transparent 70%);
      bottom: -100px; left: -80px;
    }
    .blob-3 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(37,99,235,0.08), transparent 70%);
      top: 40%; left: 30%;
    }

    /* ═══════════════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════════════ */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      transition: all 0.3s ease;
      padding: 0 clamp(24px, 5vw, 80px);
    }

    .navbar.scrolled {
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(20px) saturate(1.8);
      -webkit-backdrop-filter: blur(20px) saturate(1.8);
      border-bottom: 1px solid rgba(79,70,229,0.08);
      box-shadow: 0 4px 24px rgba(79,70,229,0.08);
    }

    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .nav-logo img {
      height: 38px;
      width: auto;
      object-fit: contain;
    }

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

    .nav-links a {
      display: block;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      border-radius: 10px;
      transition: all 0.2s;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--primary);
      background: rgba(79,70,229,0.06);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn-ghost {
      padding: 9px 20px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      background: transparent;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }

    .btn-ghost:hover {
      color: var(--primary);
      background: rgba(79,70,229,0.06);
    }

    .btn-primary {
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.25s;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(79,70,229,0.35);
      white-space: nowrap;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
      opacity: 0;
      transition: opacity 0.2s;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(79,70,229,0.45);
    }

    .btn-primary:hover::before { opacity: 1; }

    /* Mobile nav toggle */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ═══════════════════════════════════════════════════
       HERO SECTION
    ═══════════════════════════════════════════════════ */
    #hero {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 0 clamp(24px, 5vw, 80px);
      padding-top: 72px;
      overflow: hidden;
    }

    .hero-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 45% 55%;
      gap: 48px;
      align-items: center;
      min-height: calc(100vh - 72px);
      padding: 60px 0;
    }

    /* ═══════════════════════════════════════════════════
       LEFT SIDE
    ═══════════════════════════════════════════════════ */
    .hero-left {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    /* Badge */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: rgba(79,70,229,0.06);
      border: 1px solid rgba(79,70,229,0.15);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      color: var(--primary);
      width: fit-content;
    }

    .hero-badge .stars {
      color: #F59E0B;
      letter-spacing: -1px;
      font-size: 11px;
    }

    /* Heading */
    .hero-heading {
      font-size: clamp(40px, 4.5vw, 64px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -2px;
      color: var(--text);
    }

    .hero-heading .gradient-word {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }

    /* Description */
    .hero-desc {
      font-size: 17px;
      line-height: 1.75;
      color: var(--muted);
      max-width: 460px;
    }

    /* CTA Buttons */
    .hero-cta {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border: none;
      border-radius: 14px;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      box-shadow: 0 6px 30px rgba(79,70,229,0.4);
      position: relative;
      overflow: hidden;
      letter-spacing: -0.2px;
    }

    .btn-hero-primary::after {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      width: 0; height: 0;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.4s ease, height 0.4s ease;
    }

    .btn-hero-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(79,70,229,0.5);
    }

    .btn-hero-primary:active::after {
      width: 300px; height: 300px;
    }

    .btn-hero-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      background: #fff;
      border: 1.5px solid rgba(79,70,229,0.2);
      border-radius: 14px;
      cursor: pointer;
      transition: all 0.25s;
      text-decoration: none;
      letter-spacing: -0.2px;
    }

    .btn-hero-secondary:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(79,70,229,0.12);
    }

    .play-icon {
      width: 32px; height: 32px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(79,70,229,0.3);
    }

    /* Trust pills */
    .trust-pills {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .trust-pill {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 500;
      color: var(--muted);
    }

    .trust-pill .check {
      width: 18px; height: 18px;
      background: linear-gradient(135deg, #10B981, #059669);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      flex-shrink: 0;
      font-size: 10px;
    }

    /* Social proof */
    .social-proof {
      display: flex;
      align-items: center;
      gap: 20px;
      padding-top: 4px;
    }

    .avatars {
      display: flex;
      align-items: center;
    }

    .avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 2.5px solid #fff;
      background: linear-gradient(135deg, #4F46E5, #7C3AED);
      margin-left: -10px;
      overflow: hidden;
      flex-shrink: 0;
    }

    .avatar:first-child { margin-left: 0; }

    .avatar img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    .avatar-count {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 2.5px solid #fff;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      margin-left: -10px;
      flex-shrink: 0;
    }

    .social-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .social-text strong {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
    }

    .social-text span {
      font-size: 12px;
      color: var(--muted);
    }

    .rating-block {
      display: flex;
      flex-direction: column;
      gap: 3px;
      padding-left: 20px;
      border-left: 1px solid rgba(79,70,229,0.1);
    }

    .rating-stars {
      color: #F59E0B;
      font-size: 13px;
      letter-spacing: 0;
    }

    .rating-text {
      font-size: 12px;
      color: var(--muted);
    }

    /* ═══════════════════════════════════════════════════
       RIGHT SIDE — DASHBOARD
    ═══════════════════════════════════════════════════ */
    .hero-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .dashboard-scene {
      position: relative;
      width: 100%;
      max-width: 640px;
    }

    /* Main Dashboard Card */
    .dashboard-card {
      background: var(--glass);
      backdrop-filter: blur(24px) saturate(1.6);
      -webkit-backdrop-filter: blur(24px) saturate(1.6);
      border: 1.5px solid var(--glass-border);
      border-radius: 28px;
      padding: 28px;
      box-shadow:
        0 32px 80px rgba(79,70,229,0.15),
        0 8px 24px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.9);
      position: relative;
      overflow: hidden;
      animation: floatMain 6s ease-in-out infinite;
    }

    .dashboard-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at 60% 20%, rgba(79,70,229,0.06), transparent 60%);
      pointer-events: none;
    }

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

    /* Dashboard header */
    .dash-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .dash-title-block {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .dash-icon {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
    }

    .dash-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
    }

    .dash-sub {
      font-size: 12px;
      color: var(--muted);
      margin-top: 1px;
    }

    .dash-period {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      background: rgba(79,70,229,0.06);
      border-radius: 8px;
      font-size: 12px;
      font-weight: 500;
      color: var(--primary);
      cursor: pointer;
    }

    /* Stats row */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 20px;
    }

    .stat-item {
      background: rgba(255,255,255,0.8);
      border: 1px solid rgba(79,70,229,0.08);
      border-radius: 14px;
      padding: 14px 12px;
      transition: all 0.25s;
    }

    .stat-item:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .stat-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
    }

    .stat-value {
      font-size: 22px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.5px;
      line-height: 1;
    }

    .stat-change {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      font-size: 11px;
      font-weight: 600;
      color: #10B981;
      margin-top: 4px;
    }

    .stat-change.down { color: #EF4444; }

    /* Chart area */
    .chart-area {
      margin-bottom: 20px;
    }

    .chart-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .chart-wrapper {
      height: 130px;
      position: relative;
    }

    /* Bottom row */
    .dash-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    /* AI Progress */
    .ai-progress-block {
      background: rgba(255,255,255,0.8);
      border: 1px solid rgba(79,70,229,0.08);
      border-radius: 16px;
      padding: 16px;
    }

    .ai-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .ai-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
    }

    .ai-badge {
      padding: 3px 8px;
      background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(124,58,237,0.1));
      border-radius: 6px;
      font-size: 10px;
      font-weight: 700;
      color: var(--primary);
    }

    .progress-list {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .progress-item {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .progress-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 11px;
    }

    .progress-name { font-weight: 500; color: var(--text); }
    .progress-pct { font-weight: 700; color: var(--primary); }

    .progress-bar {
      height: 5px;
      background: rgba(79,70,229,0.1);
      border-radius: 100px;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      border-radius: 100px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Activity Timeline */
    .activity-block {
      background: rgba(255,255,255,0.8);
      border: 1px solid rgba(79,70,229,0.08);
      border-radius: 16px;
      padding: 16px;
    }

    .activity-title {
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 12px;
    }

    .activity-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .activity-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .activity-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      margin-top: 4px;
      flex-shrink: 0;
    }

    .dot-green { background: #10B981; box-shadow: 0 0 6px rgba(16,185,129,0.5); }
    .dot-blue { background: var(--primary); box-shadow: 0 0 6px rgba(79,70,229,0.5); }
    .dot-purple { background: var(--secondary); box-shadow: 0 0 6px rgba(124,58,237,0.5); }

    .activity-text {
      font-size: 11px;
      font-weight: 500;
      color: var(--text);
      line-height: 1.4;
    }

    .activity-time {
      font-size: 10px;
      color: var(--muted);
      margin-top: 2px;
    }

    /* ═══════════════════════════════════════════════════
       FLOATING MINI CARDS
    ═══════════════════════════════════════════════════ */
    .float-card {
      position: absolute;
      background: var(--glass);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1.5px solid var(--glass-border);
      border-radius: 18px;
      padding: 14px 18px;
      box-shadow: 0 16px 48px rgba(79,70,229,0.16), inset 0 1px 0 rgba(255,255,255,0.9);
      z-index: 10;
      pointer-events: none;
    }

    /* Authority Score — top right */
    .float-authority {
      top: -30px;
      right: -30px;
      animation: floatA 7s ease-in-out infinite;
    }

    @keyframes floatA {
      0%, 100% { transform: translateY(0) rotate(1deg); }
      50% { transform: translateY(-12px) rotate(-1deg); }
    }

    .authority-inner {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .authority-ring {
      position: relative;
      width: 56px; height: 56px;
      flex-shrink: 0;
    }

    .authority-ring svg {
      transform: rotate(-90deg);
    }

    .authority-number {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 800;
      color: var(--primary);
    }

    .authority-info .label {
      font-size: 11px;
      font-weight: 500;
      color: var(--muted);
    }

    .authority-info .val {
      font-size: 15px;
      font-weight: 800;
      color: var(--text);
    }

    .authority-info .change {
      font-size: 11px;
      font-weight: 600;
      color: #10B981;
    }

    /* Success notification — bottom left */
    .float-success {
      bottom: -20px;
      left: -24px;
      animation: floatB 5s ease-in-out infinite;
    }

    @keyframes floatB {
      0%, 100% { transform: translateY(0) rotate(-1deg); }
      50% { transform: translateY(-14px) rotate(1deg); }
    }

    .success-inner {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .success-icon {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, #10B981, #059669);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      flex-shrink: 0;
    }

    .success-text .title {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
    }

    .success-text .sub {
      font-size: 11px;
      color: var(--muted);
    }

    /* Keyword mini card — top left */
    .float-keyword {
      top: 50px;
      left: -36px;
      animation: floatC 8s ease-in-out infinite;
    }

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

    .keyword-inner {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .keyword-title {
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .keyword-rank {
      display: flex;
      align-items: baseline;
      gap: 4px;
    }

    .keyword-rank .big {
      font-size: 28px;
      font-weight: 900;
      color: var(--text);
      letter-spacing: -1px;
    }

    .keyword-rank .label {
      font-size: 12px;
      font-weight: 500;
      color: var(--muted);
    }

    .keyword-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
    }

    .ktag {
      padding: 3px 8px;
      background: rgba(79,70,229,0.07);
      border-radius: 6px;
      font-size: 10px;
      font-weight: 600;
      color: var(--primary);
    }

    /* ═══════════════════════════════════════════════════
       GRADIENT GLOW under dashboard
    ═══════════════════════════════════════════════════ */
    .dashboard-glow {
      position: absolute;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 70%;
      height: 120px;
      background: radial-gradient(ellipse, rgba(79,70,229,0.2), transparent 70%);
      filter: blur(20px);
      pointer-events: none;
      z-index: -1;
    }

    /* ═══════════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════════ */
    @media (max-width: 1100px) {
      .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
      .float-keyword, .float-authority { display: none; }
    }

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 0;
        min-height: auto;
        gap: 48px;
      }
      .hero-heading { font-size: clamp(36px, 8vw, 52px); }
      .float-keyword, .float-authority { display: none; }
      .float-success { bottom: -10px; left: 0; }
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
    }

    @media (max-width: 600px) {
      .stats-row { grid-template-columns: repeat(2, 1fr); }
      .dash-bottom { grid-template-columns: 1fr; }
      .float-success { display: none; }
      .social-proof { flex-direction: column; align-items: flex-start; gap: 12px; }
      .rating-block { border-left: none; padding-left: 0; }
      .hero-cta { flex-direction: column; align-items: flex-start; }
    }

    /* ═══════════════════════════════════════════════════
       COUNTER ANIMATION
    ═══════════════════════════════════════════════════ */
    .counter { display: inline-block; }

    /* ═══════════════════════════════════════════════════
       SCROLL REVEAL
    ═══════════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
    }

    /* ═══════════════════════════════════════════════════
       SECTION SHARED
    ═══════════════════════════════════════════════════ */
    section {
      position: relative;
      z-index: 1;
    }

    .section-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 clamp(24px, 5vw, 80px);
    }

    /* ═══════════════════════════════════════════════════
       SECTION 2 — STATS STRIP
    ═══════════════════════════════════════════════════ */
    #stats-strip {
      padding: 72px 0;
      background: #fff;
      border-top: 1px solid rgba(79,70,229,0.07);
      border-bottom: 1px solid rgba(79,70,229,0.07);
    }

    .stats-strip-label {
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 48px;
      opacity: 0.8;
    }

    .stats-strip-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .strip-card {
      background: #fff;
      border: 1px solid rgba(79,70,229,0.09);
      border-radius: var(--radius);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .strip-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(79,70,229,0.03), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .strip-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(79,70,229,0.12);
      border-color: rgba(79,70,229,0.2);
    }

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

    .strip-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    .strip-icon.indigo { background: rgba(79,70,229,0.1); color: var(--primary); }
    .strip-icon.purple { background: rgba(124,58,237,0.1); color: var(--secondary); }
    .strip-icon.blue   { background: rgba(37,99,235,0.1);  color: var(--accent); }
    .strip-icon.green  { background: rgba(16,185,129,0.1); color: #10B981; }

    .strip-mini-chart {
      height: 48px;
      position: relative;
    }

    .strip-card-footer {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 12px;
    }

    .strip-metric {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .strip-metric-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
    }

    .strip-metric-value {
      font-size: 32px;
      font-weight: 900;
      color: var(--text);
      letter-spacing: -1.5px;
      line-height: 1;
    }

    .strip-metric-change {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px 10px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 700;
    }

    .change-up {
      background: rgba(16,185,129,0.1);
      color: #059669;
    }

    .change-down {
      background: rgba(239,68,68,0.08);
      color: #DC2626;
    }

    /* Circular metric for authority */
    .strip-circle-wrap {
      position: relative;
      width: 72px; height: 72px;
      flex-shrink: 0;
    }

    .strip-circle-wrap svg { transform: rotate(-90deg); }

    .strip-circle-num {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 900;
      color: var(--text);
      letter-spacing: -0.5px;
    }

    /* ═══════════════════════════════════════════════════
       SECTION 3 — FEATURES SPLIT
    ═══════════════════════════════════════════════════ */
    #features-split {
      padding: 100px 0;
      background: #FAFAFA;
    }

    .features-split-grid {
      display: grid;
      grid-template-columns: 40% 60%;
      gap: 64px;
      align-items: start;
    }

    /* Left sticky content */
    .features-left {
      position: sticky;
      top: 100px;
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: rgba(79,70,229,0.07);
      border: 1px solid rgba(79,70,229,0.14);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .section-heading {
      font-size: clamp(32px, 3vw, 46px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -1.5px;
      color: var(--text);
      margin-bottom: 20px;
    }

    .section-heading .grad {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-desc {
      font-size: 16px;
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 32px;
    }

    .features-image-block {
      position: relative;
      margin-top: 32px;
      border-radius: 20px;
      overflow: hidden;
    }

    .features-image-block img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 20px;
      display: block;
    }

    .features-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(79,70,229,0.5), rgba(124,58,237,0.4));
      border-radius: 20px;
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }

    .features-image-stat {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 14px;
      padding: 12px 18px;
    }

    .features-image-stat .big-num {
      font-size: 28px;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1px;
    }

    .features-image-stat .stat-info .label {
      font-size: 11px;
      font-weight: 500;
      color: rgba(255,255,255,0.75);
    }

    .features-image-stat .stat-info .val {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
    }

    /* Right: feature cards grid */
    .features-right {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .feature-cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .feat-card {
      background: #fff;
      border: 1px solid rgba(79,70,229,0.08);
      border-radius: 20px;
      padding: 24px;
      transition: all 0.3s;
      cursor: default;
    }

    .feat-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(79,70,229,0.1);
      border-color: rgba(79,70,229,0.18);
    }

    .feat-card-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }

    .feat-card h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
      letter-spacing: -0.3px;
    }

    .feat-card p {
      font-size: 13px;
      line-height: 1.65;
      color: var(--muted);
    }

    .feat-card-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 14px;
      padding: 4px 10px;
      border-radius: 8px;
      font-size: 11px;
      font-weight: 700;
    }

    /* CTA Banner */
    .cta-banner {
      background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #1E1B4B 100%);
      border-radius: 20px;
      padding: 28px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: -50%; right: -10%;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(124,58,237,0.3), transparent 70%);
      pointer-events: none;
    }

    .cta-banner-left {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .cta-banner-left .count {
      font-size: 28px;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1px;
    }

    .cta-banner-left .label {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.65);
    }

    .cta-banner-right {
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-end;
      flex-shrink: 0;
    }

    .cta-banner-right .title {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      text-align: right;
    }

    .btn-banner {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      border-radius: 12px;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(79,70,229,0.4);
      transition: all 0.25s;
      white-space: nowrap;
    }

    .btn-banner:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(79,70,229,0.55);
    }

    .btn-outline-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: transparent;
      color: rgba(255,255,255,0.8);
      font-size: 13px;
      font-weight: 600;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.25s;
    }

    .btn-outline-white:hover {
      border-color: rgba(255,255,255,0.5);
      color: #fff;
      background: rgba(255,255,255,0.07);
    }

    /* ═══════════════════════════════════════════════════
       SECTION 4 — DASHBOARD / REPORTS
    ═══════════════════════════════════════════════════ */
    #dashboard-section {
      padding: 100px 0 120px;
      background: #fff;
    }

    .dashboard-section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 32px;
    }

    .dash-header-left {
      max-width: 560px;
    }

    .dash-bullets {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;
    }

    .dash-bullet {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
    }

    .bullet-dot {
      width: 20px; height: 20px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      flex-shrink: 0;
      font-size: 10px;
    }

    /* The full dashboard UI */
    .dashboard-full {
      background: #fff;
      border: 1px solid rgba(79,70,229,0.1);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(79,70,229,0.1), 0 4px 16px rgba(0,0,0,0.04);
    }

    /* Dashboard top bar */
    .dash-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      background: linear-gradient(135deg, #1E1B4B, #312E81);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .dash-topbar-tabs {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .dash-tab {
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s;
      color: rgba(255,255,255,0.5);
    }

    .dash-tab.active {
      background: rgba(255,255,255,0.12);
      color: #fff;
    }

    .dash-tab:hover:not(.active) {
      color: rgba(255,255,255,0.8);
    }

    .dash-topbar-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .dash-search {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      font-size: 12px;
      color: rgba(255,255,255,0.5);
    }

    .dash-action-btn {
      padding: 7px 14px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 10px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all 0.2s;
    }

    .dash-action-btn:hover {
      background: rgba(255,255,255,0.15);
      color: #fff;
    }

    /* Dashboard body */
    .dash-body {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 0;
    }

    /* Left: Reports table */
    .dash-table-section {
      padding: 24px;
      border-right: 1px solid rgba(79,70,229,0.07);
    }

    .dash-section-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }

    .dash-section-sub {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 20px;
    }

    /* Summary stat row */
    .table-stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 24px;
    }

    .table-stat {
      background: rgba(79,70,229,0.04);
      border: 1px solid rgba(79,70,229,0.08);
      border-radius: 12px;
      padding: 12px 14px;
    }

    .table-stat .ts-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .table-stat .ts-value {
      font-size: 20px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.5px;
    }

    .table-stat .ts-change {
      font-size: 11px;
      font-weight: 600;
      color: #10B981;
    }

    /* Table */
    .backlink-table {
      width: 100%;
      border-collapse: collapse;
    }

    .backlink-table th {
      text-align: left;
      padding: 10px 12px;
      font-size: 11px;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-bottom: 1px solid rgba(79,70,229,0.07);
    }

    .backlink-table td {
      padding: 12px;
      font-size: 13px;
      border-bottom: 1px solid rgba(79,70,229,0.05);
      vertical-align: middle;
    }

    .backlink-table tr:last-child td { border-bottom: none; }

    .backlink-table tr:hover td {
      background: rgba(79,70,229,0.02);
    }

    .domain-cell {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .domain-favicon {
      width: 28px; height: 28px;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }

    .domain-name {
      font-weight: 600;
      color: var(--text);
    }

    .domain-url {
      font-size: 11px;
      color: var(--muted);
    }

    .da-pill {
      display: inline-flex;
      align-items: center;
      padding: 4px 10px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
    }

    .da-high { background: rgba(16,185,129,0.1); color: #059669; }
    .da-mid  { background: rgba(79,70,229,0.1);  color: var(--primary); }
    .da-low  { background: rgba(245,158,11,0.1); color: #D97706; }

    .status-dot {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
    }

    .dot { width: 7px; height: 7px; border-radius: 50%; }
    .dot-live    { background: #10B981; box-shadow: 0 0 5px rgba(16,185,129,0.6); }
    .dot-pending { background: #F59E0B; }
    .dot-lost    { background: #EF4444; }

    .type-tag {
      padding: 3px 9px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
      background: rgba(79,70,229,0.07);
      color: var(--primary);
    }

    /* Right: Backlink Growth Chart */
    .dash-chart-section {
      padding: 24px;
    }

    .chart-filters {
      display: flex;
      gap: 6px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .chart-filter {
      padding: 4px 12px;
      border-radius: 8px;
      font-size: 11px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      border: 1px solid transparent;
      color: var(--muted);
    }

    .chart-filter.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    .chart-filter:not(.active):hover {
      border-color: rgba(79,70,229,0.2);
      color: var(--primary);
    }

    .growth-chart-wrap {
      height: 200px;
      position: relative;
      margin-bottom: 20px;
    }

    /* Domain activities sidebar */
    .domain-activity-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .domain-activity-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 12px;
      background: rgba(79,70,229,0.03);
      border-radius: 12px;
      border: 1px solid rgba(79,70,229,0.06);
      transition: all 0.2s;
    }

    .domain-activity-item:hover {
      background: rgba(79,70,229,0.06);
      border-color: rgba(79,70,229,0.12);
    }

    .dai-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .dai-icon {
      width: 32px; height: 32px;
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }

    .dai-domain {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }

    .dai-count {
      font-size: 11px;
      color: var(--muted);
    }

    .dai-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 3px;
    }

    .dai-da {
      font-size: 14px;
      font-weight: 800;
      color: var(--text);
    }

    .dai-change {
      font-size: 11px;
      font-weight: 600;
      color: #10B981;
    }

    /* ═══════════════════════════════════════════════════
       RESPONSIVE ADDITIONS
    ═══════════════════════════════════════════════════ */
    @media (max-width: 1100px) {
      .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
      .features-split-grid { grid-template-columns: 1fr; }
      .features-left { position: static; }
      .dash-body { grid-template-columns: 1fr; }
      .dash-chart-section { border-top: 1px solid rgba(79,70,229,0.07); }
    }

    @media (max-width: 700px) {
      .stats-strip-grid { grid-template-columns: 1fr 1fr; }
      .feature-cards-grid { grid-template-columns: 1fr; }
      .table-stats-row { grid-template-columns: 1fr 1fr; }
      .cta-banner { flex-direction: column; align-items: flex-start; }
      .cta-banner-right { align-items: flex-start; }
      .dashboard-section-header { flex-direction: column; align-items: flex-start; }
      .backlink-table th:nth-child(4),
      .backlink-table td:nth-child(4),
      .backlink-table th:nth-child(5),
      .backlink-table td:nth-child(5) { display: none; }
    }


    /* ═══════════════════════════════════════════════════
       SECTION 5 — PRICING
    ═══════════════════════════════════════════════════ */
    #pricing {
      padding: 100px 0;
      background: #FAFAFA;
      position: relative;
      z-index: 1;
    }

    .pricing-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 56px;
    }

    .pricing-toggle {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(79,70,229,0.06);
      border: 1px solid rgba(79,70,229,0.12);
      border-radius: 100px;
      padding: 5px;
      margin-bottom: 40px;
    }

    .ptoggle-btn {
      padding: 7px 20px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s;
      color: var(--muted);
      border: none;
      background: transparent;
    }

    .ptoggle-btn.active {
      background: #fff;
      color: var(--primary);
      box-shadow: 0 2px 12px rgba(79,70,229,0.15);
    }

    .ptoggle-save {
      padding: 3px 10px;
      background: linear-gradient(135deg, #10B981, #059669);
      border-radius: 100px;
      font-size: 11px;
      font-weight: 700;
      color: #fff;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      align-items: start;
    }

    .price-card {
      background: #fff;
      border: 1.5px solid rgba(79,70,229,0.1);
      border-radius: var(--radius);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: all 0.3s;
      position: relative;
    }

    .price-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(79,70,229,0.1);
    }

    .price-card.featured {
      background: linear-gradient(160deg, #1E1B4B 0%, #312E81 60%, #1E1B4B 100%);
      border-color: transparent;
      box-shadow: 0 24px 64px rgba(79,70,229,0.28);
      transform: scale(1.03);
    }

    .price-card.featured:hover {
      transform: scale(1.03) translateY(-4px);
    }

    .popular-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      padding: 5px 18px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 100px;
      font-size: 11px;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      box-shadow: 0 4px 14px rgba(79,70,229,0.4);
    }

    .plan-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--muted);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    .price-card.featured .plan-name { color: rgba(255,255,255,0.6); }

    .plan-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 6px;
    }

    .plan-currency {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
    }

    .price-card.featured .plan-currency { color: #fff; }

    .plan-amount {
      font-size: 40px;
      font-weight: 900;
      color: var(--text);
      letter-spacing: -2px;
      line-height: 1;
    }

    .price-card.featured .plan-amount { color: #fff; }

    .plan-period {
      font-size: 13px;
      font-weight: 500;
      color: var(--muted);
      align-self: center;
    }

    .price-card.featured .plan-period { color: rgba(255,255,255,0.5); }

    .plan-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(79,70,229,0.07);
    }

    .price-card.featured .plan-desc {
      color: rgba(255,255,255,0.55);
      border-bottom-color: rgba(255,255,255,0.1);
    }

    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .plan-features li {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
    }

    .price-card.featured .plan-features li { color: rgba(255,255,255,0.85); }

    .plan-features li .feat-check {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(16,185,129,0.12);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: #10B981;
      font-size: 10px;
    }

    .price-card.featured .plan-features li .feat-check {
      background: rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.9);
    }

    .btn-plan {
      display: block;
      width: 100%;
      padding: 13px;
      text-align: center;
      font-size: 14px;
      font-weight: 700;
      border-radius: 14px;
      text-decoration: none;
      transition: all 0.25s;
      border: none;
      cursor: pointer;
      margin-top: auto;
    }

    .btn-plan-outline {
      background: transparent;
      border: 1.5px solid rgba(79,70,229,0.2);
      color: var(--primary);
    }

    .btn-plan-outline:hover {
      background: rgba(79,70,229,0.06);
      border-color: var(--primary);
    }

    .btn-plan-primary {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      box-shadow: 0 6px 24px rgba(79,70,229,0.4);
    }

    .btn-plan-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(79,70,229,0.55);
    }

    .btn-plan-white {
      background: #fff;
      color: var(--primary);
      font-weight: 700;
    }

    .btn-plan-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

    /* ROI Calculator card */
    .pricing-aside {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 32px;
    }

    .roi-card {
      background: linear-gradient(135deg, #1E1B4B, #312E81);
      border-radius: var(--radius);
      padding: 28px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .roi-card::before {
      content: '';
      position: absolute;
      top: -40%; right: -20%;
      width: 260px; height: 260px;
      background: radial-gradient(circle, rgba(124,58,237,0.4), transparent 70%);
      pointer-events: none;
    }

    .roi-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .roi-sub {
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 20px;
    }

    .roi-input-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 20px;
    }

    .roi-input-wrap {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .roi-input-label {
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .roi-input {
      width: 100%;
      padding: 10px 14px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 10px;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      outline: none;
      transition: border 0.2s;
    }

    .roi-input:focus {
      border-color: rgba(255,255,255,0.4);
    }

    .roi-output {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px;
      padding: 16px;
      text-align: center;
    }

    .roi-output .label {
      font-size: 11px;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
    }

    .roi-output .value {
      font-size: 36px;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1.5px;
    }

    .roi-output .note {
      font-size: 11px;
      color: rgba(255,255,255,0.45);
      margin-top: 4px;
    }

    /* Pricing layout (3 cards + aside) */
    .pricing-layout {
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 24px;
      align-items: start;
    }

    /* ═══════════════════════════════════════════════════
       SECTION 6 — PROCESS TIMELINE
    ═══════════════════════════════════════════════════ */
    #process {
      padding: 100px 0;
      background: #fff;
      position: relative;
      z-index: 1;
    }

    .process-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0;
      position: relative;
    }

    /* Connecting line */
    .process-steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(100% / 12);
      right: calc(100% / 12);
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
      opacity: 0.2;
      z-index: 0;
    }

    .process-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 12px;
      position: relative;
      z-index: 1;
    }

    .step-number-wrap {
      position: relative;
      margin-bottom: 20px;
    }

    .step-number {
      width: 64px; height: 64px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 800;
      border: 2px solid;
      transition: all 0.3s;
      position: relative;
      z-index: 1;
      cursor: default;
    }

    .step-number:hover {
      transform: scale(1.1);
    }

    .step-n1 { background: rgba(79,70,229,0.08); border-color: rgba(79,70,229,0.25); color: #4F46E5; }
    .step-n2 { background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.25); color: #7C3AED; }
    .step-n3 { background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.25); color: #2563EB; }
    .step-n4 { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.25); color: #10B981; }
    .step-n5 { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.25); color: #D97706; }
    .step-n6 { background: rgba(239,68,68,0.08); border-color: rgba(239,68,68,0.25); color: #DC2626; }

    .step-icon-inner {
      display: flex; align-items: center; justify-content: center;
    }

    .step-label {
      font-size: 8px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      padding: 2px 7px;
      border-radius: 100px;
    }

    .step-l1 { background: rgba(79,70,229,0.1);  color: #4F46E5; }
    .step-l2 { background: rgba(124,58,237,0.1); color: #7C3AED; }
    .step-l3 { background: rgba(37,99,235,0.1);  color: #2563EB; }
    .step-l4 { background: rgba(16,185,129,0.1); color: #10B981; }
    .step-l5 { background: rgba(245,158,11,0.1); color: #D97706; }
    .step-l6 { background: rgba(239,68,68,0.1);  color: #DC2626; }

    .step-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
      letter-spacing: -0.3px;
    }

    .step-desc {
      font-size: 12px;
      line-height: 1.7;
      color: var(--muted);
    }

    /* ═══════════════════════════════════════════════════
       SECTION 7 — SOCIAL PROOF / RESULTS
    ═══════════════════════════════════════════════════ */
    #results {
      padding: 100px 0;
      background: #FAFAFA;
      position: relative;
      z-index: 1;
    }

    .results-grid {
      display: grid;
      grid-template-columns: 40% 60%;
      gap: 48px;
      align-items: center;
    }

    .results-left {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .results-stat-big {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .results-stat-big .num {
      font-size: 72px;
      font-weight: 900;
      color: var(--text);
      letter-spacing: -3px;
      line-height: 1;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .results-stat-big .label {
      font-size: 22px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.5px;
    }

    .results-stat-big .sub {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
      max-width: 340px;
    }

    .results-mini-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .result-mini {
      background: #fff;
      border: 1px solid rgba(79,70,229,0.08);
      border-radius: 16px;
      padding: 18px;
      transition: all 0.25s;
    }

    .result-mini:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .result-mini .val {
      font-size: 26px;
      font-weight: 900;
      color: var(--text);
      letter-spacing: -1px;
    }

    .result-mini .lbl {
      font-size: 12px;
      font-weight: 500;
      color: var(--muted);
      margin-top: 3px;
    }

    .results-right {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 16px;
    }

    .result-image-card {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      height: 340px;
      transition: transform 0.3s;
    }

    .result-image-card:hover { transform: scale(1.02); }

    .result-image-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .result-image-card:nth-child(2) { margin-top: 32px; }
    .result-image-card:nth-child(3) { margin-top: -16px; }

    .result-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,30,0.85) 0%, rgba(10,10,30,0.1) 60%, transparent 100%);
    }

    .result-image-stat {
      position: absolute;
      bottom: 20px;
      left: 16px;
      right: 16px;
    }

    .result-image-stat .company {
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      margin-bottom: 4px;
    }

    .result-image-stat .metric {
      font-size: 22px;
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.5px;
    }

    .result-image-stat .metric-label {
      font-size: 12px;
      color: rgba(255,255,255,0.65);
    }

    .result-image-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      padding: 5px 12px;
      border-radius: 8px;
      font-size: 11px;
      font-weight: 700;
      backdrop-filter: blur(8px);
    }

    /* ═══════════════════════════════════════════════════
       SECTION 8 — FAQ
    ═══════════════════════════════════════════════════ */
    #faq {
      padding: 100px 0;
      background: #fff;
      position: relative;
      z-index: 1;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 40% 60%;
      gap: 64px;
      align-items: start;
    }

    .faq-left {
      position: sticky;
      top: 100px;
    }

    .faq-left .section-desc {
      margin-bottom: 28px;
    }

    .faq-contact {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 20px;
      background: rgba(79,70,229,0.05);
      border: 1px solid rgba(79,70,229,0.12);
      border-radius: 16px;
    }

    .faq-contact-icon {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      flex-shrink: 0;
    }

    .faq-contact-text .title {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
    }

    .faq-contact-text .sub {
      font-size: 12px;
      color: var(--muted);
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: #FAFAFA;
      border: 1px solid rgba(79,70,229,0.07);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.25s;
    }

    .faq-item.open {
      background: #fff;
      border-color: rgba(79,70,229,0.15);
      box-shadow: 0 4px 20px rgba(79,70,229,0.06);
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 22px;
      cursor: pointer;
      gap: 16px;
    }

    .faq-question-text {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.4;
    }

    .faq-toggle {
      width: 28px; height: 28px;
      border-radius: 8px;
      background: rgba(79,70,229,0.08);
      display: flex; align-items: center; justify-content: center;
      color: var(--primary);
      flex-shrink: 0;
      transition: all 0.3s;
      font-size: 18px;
      font-weight: 300;
      line-height: 1;
    }

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

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
    }

    .faq-answer-inner {
      padding: 0 22px 20px;
      font-size: 14px;
      line-height: 1.75;
      color: var(--muted);
    }

    /* ═══════════════════════════════════════════════════
       SECTION 9 — FINAL CTA / FOOTER
    ═══════════════════════════════════════════════════ */
    #final-cta {
      padding: 80px 0 0;
      position: relative;
      z-index: 1;
    }

    .final-cta-banner {
      background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #1E1B4B 100%);
      border-radius: 32px;
      padding: 64px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .final-cta-banner::before {
      content: '';
      position: absolute;
      top: -30%; left: 30%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(124,58,237,0.25), transparent 70%);
      pointer-events: none;
    }

    .final-cta-banner::after {
      content: '';
      position: absolute;
      bottom: -20%; right: 10%;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(37,99,235,0.2), transparent 70%);
      pointer-events: none;
    }

    .final-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,0.8);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .final-heading {
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 900;
      color: #fff;
      letter-spacing: -2px;
      line-height: 1.1;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .final-heading .final-grad {
      background: linear-gradient(135deg, #A5B4FC, #C4B5FD, #93C5FD);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .final-sub {
      font-size: 17px;
      color: rgba(255,255,255,0.6);
      max-width: 520px;
      margin: 0 auto 40px;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .final-cta-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .final-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      margin-top: 36px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .final-trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.55);
    }

    .final-trust-item .dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
    }

    /* ── FOOTER ── */
    footer {
      padding: 64px 0 40px;
      background: #fff;
      border-top: 1px solid rgba(79,70,229,0.07);
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 280px repeat(4, 1fr);
      gap: 40px;
      margin-bottom: 48px;
    }

    .footer-brand img {
      height: 36px;
      margin-bottom: 14px;
    }

    .footer-brand p {
      font-size: 13px;
      line-height: 1.7;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
    }

    .social-btn {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: rgba(79,70,229,0.07);
      border: 1px solid rgba(79,70,229,0.1);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      text-decoration: none;
      transition: all 0.2s;
      font-size: 14px;
    }

    .social-btn:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
      transform: translateY(-2px);
    }

    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 16px;
      letter-spacing: -0.2px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul li a {
      font-size: 13px;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 24px;
      border-top: 1px solid rgba(79,70,229,0.07);
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-copy {
      font-size: 13px;
      color: var(--muted);
    }

    .footer-legal {
      display: flex;
      gap: 20px;
    }

    .footer-legal a {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-legal a:hover { color: var(--primary); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .pricing-layout { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
      .price-card.featured { transform: scale(1); }
      .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
      .process-steps::before { display: none; }
      .results-grid { grid-template-columns: 1fr; }
      .results-right { grid-template-columns: 1fr 1fr; }
      .result-image-card:nth-child(3) { display: none; }
      .result-image-card { margin-top: 0 !important; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 700px) {
      .pricing-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .results-right { grid-template-columns: 1fr; }
      .result-image-card:nth-child(2), .result-image-card:nth-child(3) { display: none; }
      .faq-grid { grid-template-columns: 1fr; }
      .faq-left { position: static; }
      .final-cta-banner { padding: 40px 24px; border-radius: 24px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }


    /* ═══════════════════════════════════════════════════
       ENHANCED ANIMATIONS
    ═══════════════════════════════════════════════════ */

    /* Page loader */
    #page-loader {
      position: fixed; inset: 0; z-index: 99999;
      background: #fff;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 20px;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    #page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .loader-logo { width: 64px; height: 64px; animation: loaderPulse 1s ease-in-out infinite; }
    @keyframes loaderPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.1);opacity:0.7} }
    .loader-bar {
      width: 200px; height: 3px;
      background: rgba(79,70,229,0.15);
      border-radius: 100px; overflow: hidden;
    }
    .loader-fill {
      height: 100%; width: 0;
      background: linear-gradient(90deg, #4F46E5, #7C3AED, #2563EB);
      border-radius: 100px;
      animation: loaderFill 1.2s ease-out forwards;
    }
    @keyframes loaderFill { to { width: 100%; } }

    /* Cursor glow */
    #cursor-glow {
      position: fixed; pointer-events: none; z-index: 9998;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      transition: transform 0.05s linear;
      mix-blend-mode: multiply;
    }

    /* Magnetic button effect */
    .btn-hero-primary, .btn-hero-secondary, .btn-primary, .strip-card, .feat-card, .price-card {
      will-change: transform;
    }

    /* Shimmer text effect */
    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    .shimmer-text {
      background: linear-gradient(90deg, #4F46E5 0%, #7C3AED 25%, #2563EB 50%, #4F46E5 75%, #7C3AED 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 4s linear infinite;
    }

    /* Typewriter cursor */
    .typewriter-cursor {
      display: inline-block;
      width: 3px; height: 0.9em;
      background: var(--primary);
      margin-left: 2px;
      vertical-align: middle;
      animation: blink 0.8s step-end infinite;
      border-radius: 1px;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

    /* Scroll progress bar */
    #scroll-progress {
      position: fixed; top: 0; left: 0; z-index: 9999;
      height: 3px; width: 0%;
      background: linear-gradient(90deg, #4F46E5, #7C3AED, #2563EB);
      transition: width 0.1s linear;
      border-radius: 0 2px 2px 0;
    }

    /* Section entry animations */
    .anim-fade-up    { opacity:0; transform: translateY(40px); }
    .anim-fade-left  { opacity:0; transform: translateX(-40px); }
    .anim-fade-right { opacity:0; transform: translateX(40px); }
    .anim-scale-in   { opacity:0; transform: scale(0.92); }
    .anim-done       { opacity:1 !important; transform: none !important; }

    /* Number odometer style */
    .odometer-el { display:inline-block; transition: all 0.1s; }

    /* Gradient sweep on section eyebrows */
    .section-eyebrow {
      position: relative;
      overflow: hidden;
    }
    .section-eyebrow::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
      animation: eyebrowSheen 3s ease-in-out infinite;
    }
    @keyframes eyebrowSheen {
      0%   { left: -100%; }
      50%  { left: 150%; }
      100% { left: 150%; }
    }

    /* Floating particles canvas */
    #particles-canvas {
      position: fixed; inset: 0; z-index: 0;
      pointer-events: none; opacity: 0.5;
    }

    /* Stats strip number pop */
    @keyframes numPop {
      0%   { transform: scale(1); }
      40%  { transform: scale(1.15); }
      100% { transform: scale(1); }
    }
    .num-pop { animation: numPop 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards; }

    /* Staggered grid animation */
    .stagger-child {
      opacity: 0;
      transform: translateY(30px) scale(0.97);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .stagger-child.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* Hero badge pulse ring */
    .hero-badge {
      position: relative;
    }
    .hero-badge::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 100px;
      border: 1.5px solid rgba(79,70,229,0.3);
      animation: badgePulse 2s ease-in-out infinite;
    }
    @keyframes badgePulse {
      0%,100% { transform: scale(1); opacity: 0.6; }
      50%      { transform: scale(1.04); opacity: 0.2; }
    }

    /* Process step connector animated */
    .process-steps::after {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(100% / 12);
      right: calc(100% / 12);
      height: 2px;
      background: linear-gradient(90deg, #4F46E5, #7C3AED, #2563EB);
      opacity: 0;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.3s;
    }
    .process-steps.line-visible::after {
      opacity: 0.35;
      transform: scaleX(1);
    }

    /* Glowing dot pulse on activity timeline */
    .activity-dot {
      animation: dotPulse 2.5s ease-in-out infinite;
    }
    @keyframes dotPulse {
      0%,100% { box-shadow: 0 0 4px currentColor; }
      50%      { box-shadow: 0 0 12px currentColor, 0 0 24px currentColor; }
    }

    /* Card hover ripple */
    .feat-card, .strip-card, .price-card, .result-mini {
      position: relative;
      overflow: hidden;
    }
    .ripple-effect {
      position: absolute;
      border-radius: 50%;
      background: rgba(79,70,229,0.08);
      transform: scale(0);
      animation: rippleAnim 0.6s linear;
      pointer-events: none;
    }
    @keyframes rippleAnim {
      to { transform: scale(4); opacity: 0; }
    }

    /* Final CTA banner animated border */
    .final-cta-banner {
      position: relative;
    }
    .final-cta-banner::after {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 34px;
      background: linear-gradient(135deg, #4F46E5, #7C3AED, #2563EB, #4F46E5);
      background-size: 300% 300%;
      z-index: -1;
      animation: borderGlow 4s ease infinite;
      opacity: 0.6;
    }
    @keyframes borderGlow {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Navbar link underline sweep */
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 16px; right: 16px;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      border-radius: 2px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-links a { position: relative; }

    /* Tilt card effect */
    .tilt-card { transform-style: preserve-3d; }

    /* Smooth section entrance for WP theme */
    .wp-section-reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .wp-section-reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

  