/*
Theme Name: Zenix Agency
Theme URI: https://zenixsa.com/
Author: Zenix
Description: Premium YouTube Growth Agency WordPress Theme
Version: 1.0.0
Text Domain: zenix
*/


    /* ═══════════════════════════════════════════
       ZENIX — PREMIUM CSS DESIGN SYSTEM
    ═══════════════════════════════════════════ */

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg: #070707;
      --surface: #111111;
      --card: rgba(255,255,255,0.04);
      --card-border: rgba(255,255,255,0.08);
      --primary: #FF0000;
      --accent: #FF4040;
      --white: #FFFFFF;
      --muted: #9A9A9A;
      --muted-2: #555;
      --gradient: linear-gradient(135deg, #FF0000, #FF4D4D);
      --gradient-text: linear-gradient(135deg, #FF2020, #FF7070);
      --font-main: 'Plus Jakarta Sans', 'Inter', sans-serif;
      --radius: 16px;
      --radius-sm: 10px;
      --radius-lg: 24px;
      --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: var(--font-main);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Scrollbar ── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }

    /* ── Selection ── */
    ::selection { background: rgba(255,0,0,0.3); color: #fff; }

    /* ── Scroll Progress Bar ── */
    #progress-bar {
      position: fixed;
      top: 0; left: 0;
      height: 2px;
      width: 0%;
      background: var(--gradient);
      z-index: 9999;
      transition: width 0.1s linear;
    }

    /* ── Noise Texture overlay ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    /* ── Containers ── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .container-wide {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── Section spacing ── */
    section { position: relative; z-index: 1; }

    .section-pad {
      padding: 120px 0;
    }

    .section-pad-sm {
      padding: 80px 0;
    }

    /* ── Typography ── */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .eyebrow::before {
      content: '';
      display: block;
      width: 20px; height: 1px;
      background: var(--primary);
    }

    h1, h2, h3, h4 {
      font-family: var(--font-main);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .gradient-text {
      background: var(--gradient-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── Buttons ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      font-family: var(--font-main);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--gradient);
      color: #fff;
      box-shadow: 0 0 30px rgba(255,0,0,0.3), 0 4px 15px rgba(0,0,0,0.3);
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #FF4D4D, #FF0000);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .btn-primary:hover::before { opacity: 1; }
    .btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 50px rgba(255,0,0,0.5), 0 8px 25px rgba(0,0,0,0.4); }
    .btn-primary:active { transform: translateY(0) scale(0.98); }
    .btn-primary span { position: relative; z-index: 1; }

    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
    }
    .btn-ghost:hover {
      border-color: rgba(255,255,255,0.4);
      background: rgba(255,255,255,0.06);
      transform: translateY(-2px);
    }

    /* -- Cards -- */
    .glass-card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      transition: var(--transition);
    }

    .glass-card:hover {
      border-color: rgba(255,0,0,0.25);
      box-shadow: 0 0 40px rgba(255,0,0,0.06), 0 20px 60px rgba(0,0,0,0.4);
      transform: translateY(-4px);
    }

    .testi-card:hover {
      transform: translateY(-6px) scale(1.01) !important;
      border-color: rgba(255,70,70,0.35) !important;
      box-shadow: 0 24px 56px rgba(255,30,30,0.14), 0 4px 24px rgba(0,0,0,0.5) !important;
    }

    /* -- Reveal Animations -- */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }

    .reveal-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
    }

    .reveal-left.visible, .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* ══════════════════════════════════════════
       NAVIGATION
    ══════════════════════════════════════════ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 20px 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #navbar.scrolled {
      padding: 14px 0;
      background: rgba(7,7,7,0.85);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-icon {
      width: 36px; height: 36px;
      background: var(--gradient);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 16px;
      color: #fff;
      letter-spacing: -0.05em;
      box-shadow: 0 0 20px rgba(255,0,0,0.4);
    }

    .logo-text {
      font-size: 22px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.03em;
    }

    .logo-text span { color: var(--primary); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.25s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 0;
      height: 1px;
      background: var(--primary);
      transform: scaleX(0);
      transition: transform 0.25s;
    }

    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-cta { margin-left: 8px; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }

    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: var(--transition);
    }

    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

    /* Mobile Menu */
    #mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(7,7,7,0.97);
      backdrop-filter: blur(30px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    #mobile-menu.active { display: flex; }

    #mobile-menu a {
      color: #fff;
      text-decoration: none;
      font-size: 32px;
      font-weight: 700;
      letter-spacing: -0.02em;
      transition: color 0.2s;
    }

    #mobile-menu a:hover { color: var(--primary); }

    /* ══════════════════════════════════════════
       HERO — LINEAR / FRAMER / VERCEL STYLE
    ══════════════════════════════════════════ */

    /* ── Cursor glow ── */
    .cursor-glow {
      position: fixed;
      width: 400px; height: 400px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      background: radial-gradient(circle, rgba(255,30,30,0.06) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      transition: left 0.12s ease-out, top 0.12s ease-out;
    }

    #home {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 140px 0 80px;
      position: relative;
      overflow: hidden;
      background: #070707;
    }

    /* ── Fine dot grid ── */
    #home::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(ellipse 85% 80% at 50% 40%, black 0%, transparent 72%);
      -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 40%, black 0%, transparent 72%);
      pointer-events: none;
    }

    /* ── Central radial glow ── */
    #home::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 65% 50% at 50% 42%, rgba(255,0,0,0.10) 0%, transparent 70%),
        radial-gradient(circle 700px at 15% 110%, rgba(255,20,20,0.055) 0%, transparent 55%),
        radial-gradient(circle 500px at 85% -10%, rgba(200,0,0,0.045) 0%, transparent 55%);
      pointer-events: none;
    }

    /* Floating blurred orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
      z-index: 0;
      opacity: 0.85;
    }

    .orb-1 {
      width: 560px; height: 560px;
      background: radial-gradient(circle, rgba(255,0,0,0.13) 0%, transparent 70%);
      top: -200px; right: -120px;
      animation: orbFloat 14s ease-in-out infinite;
    }

    .orb-2 {
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(255,40,40,0.08) 0%, transparent 70%);
      bottom: -80px; left: -80px;
      animation: orbFloat 18s ease-in-out 2s infinite reverse;
    }

    .orb-3 {
      width: 260px; height: 260px;
      background: radial-gradient(circle, rgba(180,0,0,0.07) 0%, transparent 70%);
      top: 55%; left: 50%;
      transform: translate(-50%, -50%);
      animation: orbFloat 22s ease-in-out 4s infinite;
    }

    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33%  { transform: translate(28px, -18px) scale(1.04); }
      66%  { transform: translate(-18px, 28px) scale(0.96); }
    }

    /* ── Hero inner ── */
    .hero-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 2;
      gap: 0;
      width: 100%;
    }

    /* ── Hero copy ── */
    .hero-copy {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 960px;
      width: 100%;
    }

    /* ── Pill badge ── */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 50px;
      padding: 5px 14px 5px 5px;
      margin-bottom: 36px;
      font-size: 11.5px;
      font-weight: 600;
      color: rgba(200,200,200,0.80);
      letter-spacing: 0.035em;
      animation: heroBlurUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.05s both;
      backdrop-filter: blur(16px);
      cursor: default;
      transition: border-color 0.3s, background 0.3s;
    }

    .hero-badge:hover {
      border-color: rgba(255,0,0,0.35);
      background: rgba(255,0,0,0.05);
    }

    .badge-dot {
      width: 20px; height: 20px;
      background: var(--gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8px;
      box-shadow: 0 0 10px rgba(255,0,0,0.55);
      flex-shrink: 0;
    }

    .badge-dot::after {
      content: '▶';
      color: #fff;
      font-size: 7px;
      margin-left: 1px;
    }

    /* ── Entrance keyframes ── */
    @keyframes heroBlurUp {
      from { opacity: 0; transform: translateY(24px); filter: blur(8px); }
      to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
    }

    @keyframes accentBar {
      from { transform: scaleX(0); opacity: 0; }
      to   { transform: scaleX(1); opacity: 1; }
    }

    /* ── Hero title ── */
    .hero-title {
      font-size: clamp(52px, 7.5vw, 90px);
      font-weight: 900;
      letter-spacing: -0.045em;
      line-height: 1.0;
      margin-bottom: 28px;
      animation: heroBlurUp 0.95s cubic-bezier(0.16,1,0.3,1) 0.18s both;
      color: #fff;
      width: 100%;
    }

    /* Animated gradient word */
    .hero-title .anim-gradient-text {
      background: linear-gradient(135deg, #FF2020 0%, #FF7070 45%, #FF2020 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; }
    }

    /* Outlined stroke word */
    .hero-title .outline-word {
      -webkit-text-stroke: 2px rgba(255,255,255,0.30);
      color: transparent;
    }

    /* Accent word with animated underline bar */
    .hero-title .accent-word {
      position: relative;
      display: inline-block;
      color: #fff;
    }

    .hero-title .accent-word::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      bottom: 4px;
      height: 5px;
      border-radius: 3px;
      background: var(--gradient);
      animation: accentBar 1.1s cubic-bezier(0.16,1,0.3,1) 0.75s both;
      transform-origin: left;
    }

    /* ── Hero subtitle ── */
    .hero-sub {
      font-size: 17px;
      line-height: 1.60;
      color: rgba(160,160,160,0.95);
      margin-bottom: 40px;
      max-width: 480px;
      animation: heroBlurUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.32s both;
      font-weight: 400;
    }

    .hero-sub strong {
      color: rgba(255,255,255,0.88);
      font-weight: 600;
    }

    /* ── CTA Buttons ── */
    .hero-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
      animation: heroBlurUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.44s both;
    }

    /* Primary CTA — shimmer sweep */
    .btn-primary {
      background: var(--gradient);
      color: #fff;
      box-shadow: 0 0 28px rgba(255,0,0,0.28), 0 4px 14px rgba(0,0,0,0.3);
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
      transition: left 0s;
    }

    .btn-primary:hover::before {
      left: 160%;
      transition: left 0.55s ease;
    }

    .btn-primary:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 0 48px rgba(255,0,0,0.45), 0 8px 24px rgba(0,0,0,0.4);
    }

    .btn-primary:active { transform: translateY(0) scale(0.98); }
    .btn-primary span { position: relative; z-index: 1; }

    /* Ghost CTA */
    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.14);
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
    }

    .btn-ghost::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50px;
      background: rgba(255,255,255,0.0);
      transition: background 0.3s;
    }

    .btn-ghost:hover {
      border-color: rgba(255,255,255,0.38);
      transform: translateY(-2px);
    }

    .btn-ghost:hover::before {
      background: rgba(255,255,255,0.055);
    }

    /* ── Hero stat strip ── */
    .hero-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-top: 52px;
      animation: heroBlurUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.58s both;
      flex-wrap: wrap;
    }

    .hero-meta-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      padding: 0 32px;
      border-right: 1px solid rgba(255,255,255,0.08);
      transition: all 0.25s;
    }

    .hero-meta-item:last-child { border-right: none; }

    .hero-meta-item:hover .hero-stat-number { color: var(--primary); }

    .hero-stat-number {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: #fff;
      line-height: 1;
      transition: color 0.25s;
    }

    .hero-stat-label {
      font-size: 10.5px;
      color: rgba(120,120,120,0.9);
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    .hero-meta-divider { display: none; }
    .hero-meta-item svg { display: none; }

    /* ── Scroll indicator ── */
    .hero-scroll-hint {
      margin-top: 56px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      animation: heroBlurUp 1s cubic-bezier(0.16,1,0.3,1) 0.72s both;
      opacity: 0.4;
      transition: opacity 0.3s;
    }

    .hero-scroll-hint:hover { opacity: 0.7; }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
      animation: scrollPulse 2.2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50%       { opacity: 1;   transform: scaleY(1.15); }
    }

    .scroll-text {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }




    /* ══════════════════════════════════════════
       TRUST BAR
    ══════════════════════════════════════════ */
    #trust {
      padding: 40px 0;
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      overflow: hidden;
      position: relative;
      z-index: 1;
    }

    .trust-label {
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted-2);
      margin-bottom: 24px;
    }

    .marquee-track {
      display: flex;
      gap: 0;
      width: max-content;
      animation: marqueeScroll 20s linear infinite;
    }

    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 28px;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 50px;
      margin-right: 16px;
      background: rgba(255,255,255,0.03);
      white-space: nowrap;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      transition: var(--transition);
    }

    .marquee-item:hover {
      border-color: rgba(255,0,0,0.3);
      color: rgba(255,255,255,0.8);
      background: rgba(255,0,0,0.05);
    }

    .marquee-icon {
      width: 20px; height: 20px;
      background: var(--gradient);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .marquee-icon svg {
      width: 11px; height: 11px;
      stroke: #fff;
      stroke-width: 2.5;
      fill: none;
    }

    /* ── Lucide icon base ── */
    .lucide {
      width: 20px; height: 20px;
      stroke: currentColor;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
      flex-shrink: 0;
      display: inline-block;
      vertical-align: middle;
    }

    /* ══════════════════════════════════════════
       STATISTICS
    ══════════════════════════════════════════ */
    #stats {
      padding: 100px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .stat-item {
      padding: 48px 40px;
      background: var(--bg);
      position: relative;
      text-align: center;
      transition: var(--transition);
    }

    .stat-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(255,0,0,0.06) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .stat-item:hover::before { opacity: 1; }
    .stat-item:hover { background: rgba(255,255,255,0.01); }

    .stat-number {
      font-size: clamp(40px, 4.5vw, 60px);
      font-weight: 800;
      letter-spacing: -0.03em;
      background: var(--gradient-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-suffix {
      font-size: clamp(28px, 3vw, 42px);
    }

    .stat-label {
      font-size: 14px;
      color: var(--muted);
      font-weight: 500;
    }

    /* ══════════════════════════════════════════
       WHY CHOOSE ZENIX
    ══════════════════════════════════════════ */
    #about {
      padding: 120px 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 72px;
    }

    .section-title {
      font-size: clamp(34px, 4.5vw, 56px);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
    }

    .section-sub {
      font-size: 17px;
      color: var(--muted);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .feature-card {
      padding: 36px;
      border-radius: var(--radius-lg);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 20%, rgba(255,0,0,0.06) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.5s;
    }

    .feature-card:hover::before { opacity: 1; }

    .feature-icon-wrap {
      width: 56px; height: 56px;
      background: rgba(255,0,0,0.1);
      border: 1px solid rgba(255,0,0,0.2);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 24px;
      transition: var(--transition);
    }

    .feature-card:hover .feature-icon-wrap {
      background: rgba(255,0,0,0.2);
      box-shadow: 0 0 20px rgba(255,0,0,0.2);
    }

    .feature-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .feature-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════════
       SERVICES
    ══════════════════════════════════════════ */
    #services {
      padding: 120px 0;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .service-card {
      padding: 32px;
      border-radius: var(--radius-lg);
      position: relative;
      overflow: hidden;
      cursor: default;
    }

    .service-card.featured {
      background: linear-gradient(135deg, rgba(255,0,0,0.12), rgba(255,77,77,0.06));
      border-color: rgba(255,0,0,0.25);
    }

    .service-card.featured::before {
      content: 'Most Popular';
      position: absolute;
      top: 16px; right: 16px;
      background: var(--gradient);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 50px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .service-icon {
      font-size: 32px;
      margin-bottom: 20px;
      display: block;
    }

    .service-name {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }

    .service-desc {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .service-tag {
      font-size: 11px;
      color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 50px;
      padding: 4px 10px;
      font-weight: 500;
      transition: var(--transition);
    }

    .service-card:hover .service-tag {
      border-color: rgba(255,0,0,0.2);
      color: rgba(255,255,255,0.75);
    }

    /* ══════════════════════════════════════════
       PROCESS
    ══════════════════════════════════════════ */
    #process {
      padding: 120px 0;
      overflow: hidden;
    }

    .process-timeline {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .process-timeline::before {
      content: '';
      position: absolute;
      top: 40px; left: 12.5%; right: 12.5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,0,0,0.4), rgba(255,0,0,0.4), rgba(255,0,0,0.4), transparent);
    }

    .process-step {
      padding: 0 20px;
      text-align: center;
      position: relative;
    }

    .process-num-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 24px;
      position: relative;
    }

    .process-num {
      width: 80px; height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 800;
      border: 1px solid rgba(255,255,255,0.08);
      background: var(--surface);
      position: relative;
      transition: var(--transition);
      z-index: 1;
    }

    .process-step:hover .process-num {
      background: rgba(255,0,0,0.15);
      border-color: rgba(255,0,0,0.4);
      box-shadow: 0 0 40px rgba(255,0,0,0.2);
    }

    .process-num .num-text {
      background: var(--gradient-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .process-emoji {
      position: absolute;
      font-size: 16px;
      top: -8px; right: -4px;
    }

    .process-step-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .process-step-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ══════════════════════════════════════════
       WHO WE HELP
    ══════════════════════════════════════════ */
    #who-we-help {
      padding: 120px 0;
    }

    .who-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .who-card {
      padding: 28px 24px;
      border-radius: var(--radius);
      text-align: center;
      cursor: default;
      transition: var(--transition);
    }

    .who-card:hover {
      transform: translateY(-6px) scale(1.02);
      border-color: rgba(255,0,0,0.3);
      box-shadow: 0 0 30px rgba(255,0,0,0.08), 0 20px 40px rgba(0,0,0,0.4);
    }

    .who-emoji {
      font-size: 36px;
      margin-bottom: 12px;
      display: block;
      filter: drop-shadow(0 0 10px rgba(255,0,0,0.3));
    }

    .who-name {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .who-desc {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ══════════════════════════════════════════
       RESULTS
    ══════════════════════════════════════════ */
    #results {
      padding: 120px 0;
    }

    .results-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .results-text h2 {
      font-size: clamp(32px, 4vw, 50px);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }

    .results-text p {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 40px;
    }

    .results-metrics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .result-metric {
      padding: 20px 24px;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      gap: 14px;
      transition: var(--transition);
    }

    .result-metric:hover { transform: translateX(4px); }

    .metric-icon {
      width: 44px; height: 44px;
      background: rgba(255,0,0,0.1);
      border: 1px solid rgba(255,0,0,0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .metric-name {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
    }

    .metric-detail {
      font-size: 11px;
      color: var(--muted);
      margin-top: 2px;
    }

    /* ══════════════════════════════════════════
       TESTIMONIALS
    ══════════════════════════════════════════ */
    #testimonials {
      padding: 120px 0;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .testi-card {
      padding: 32px 30px 28px;
      border-radius: var(--radius-lg);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.10);
      transition: transform 0.4s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.4s ease, border-color 0.4s ease !important;
    }

    /* Top accent line */
    .testi-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 10%;
      width: 80%;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(255,50,50,0.7), transparent);
      border-radius: 0 0 4px 4px;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .testi-card:hover::after {
      opacity: 1;
    }

    /* Quote badge top-right */
    .testi-card::before {
      content: '\201C';
      position: absolute;
      top: 16px;
      right: 20px;
      font-size: 72px;
      font-weight: 900;
      line-height: 1;
      font-family: Georgia, 'Times New Roman', serif;
      background: linear-gradient(135deg, rgba(255,60,60,0.25), rgba(255,60,60,0.05));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      pointer-events: none;
      user-select: none;
    }

    .testi-quote-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(255,50,50,0.22), rgba(255,80,80,0.10));
      border: 1px solid rgba(255, 70, 70, 0.28);
      margin-bottom: 16px;
      flex-shrink: 0;
    }

    .testi-quote-icon svg {
      width: 16px;
      height: 16px;
      stroke: #ff6b6b;
      fill: rgba(255,80,80,0.20);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .testi-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 16px;
    }

    .testi-stars svg {
      width: 16px;
      height: 16px;
      fill: #f59e0b;
      stroke: #f59e0b;
      stroke-width: 0;
      flex-shrink: 0;
      filter: drop-shadow(0 0 4px rgba(245,158,11,0.5));
    }

    .testi-text {
      font-size: 14.5px;
      color: rgba(255,255,255,0.82);
      line-height: 1.80;
      margin-bottom: 0;
      font-style: italic;
      flex: 1;
      letter-spacing: 0.01em;
    }

    .testi-text p {
      margin: 0 0 10px;
    }

    .testi-text p:last-child {
      margin-bottom: 0;
    }

    .testi-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
      margin: 22px 0;
      border: none;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      border: 2px solid rgba(255, 80, 80, 0.5);
      box-shadow: 0 0 0 3px rgba(255, 50, 50, 0.10), 0 0 12px rgba(255,50,50,0.18);
      flex-shrink: 0;
      display: block;
      background-color: rgba(255,255,255,0.06);
    }

    .testi-name {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      letter-spacing: 0.01em;
    }

    .testi-role {
      font-size: 11.5px;
      color: rgba(200,200,200,0.65);
      margin-top: 3px;
      line-height: 1.4;
    }

    /* ══════════════════════════════════════════
       FAQ
    ══════════════════════════════════════════ */
    #faq {
      padding: 120px 0;
    }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color 0.3s;
    }

    .faq-item.open {
      border-color: rgba(255,0,0,0.25);
    }

    .faq-q {
      width: 100%;
      padding: 22px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: none;
      border: none;
      color: var(--white);
      font-size: 16px;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      font-family: var(--font-main);
      transition: color 0.2s;
    }

    .faq-q:hover { color: rgba(255,255,255,0.85); }

    .faq-icon {
      width: 28px; height: 28px;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: var(--transition);
      font-size: 16px;
      line-height: 1;
    }

    .faq-item.open .faq-icon {
      background: var(--primary);
      border-color: var(--primary);
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
      padding: 0 28px;
    }

    .faq-item.open .faq-a {
      max-height: 300px;
      padding: 0 28px 22px;
    }

    .faq-a p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.75;
    }

    /* ══════════════════════════════════════════
       FREE AUDIT CTA
    ══════════════════════════════════════════ */
    #free-audit {
      padding: 120px 0;
    }

    .audit-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }

    .audit-left h2 {
      font-size: clamp(32px, 4vw, 50px);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
    }

    .audit-left p {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 40px;
    }

    .audit-benefits {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .audit-benefit {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 20px;
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      transition: var(--transition);
    }

    .audit-benefit:hover {
      border-color: rgba(255,0,0,0.2);
      background: rgba(255,0,0,0.03);
    }

    .audit-benefit-icon {
      width: 36px; height: 36px;
      background: rgba(255,0,0,0.12);
      border: 1px solid rgba(255,0,0,0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .audit-benefit-title {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 3px;
    }

    .audit-benefit-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* Form */
    .audit-form-wrap {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      padding: 40px;
      position: relative;
      overflow: hidden;
    }

    .audit-form-wrap::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,0,0,0.5), transparent);
    }

    .form-title {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }

    .form-sub {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 28px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      margin-bottom: 7px;
    }

    .form-input, .form-select {
      width: 100%;
      padding: 13px 16px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      color: var(--white);
      font-size: 14px;
      font-family: var(--font-main);
      outline: none;
      transition: var(--transition);
      appearance: none;
    }

    .form-input::placeholder { color: var(--muted-2); }

    .form-input:focus, .form-select:focus {
      border-color: rgba(255,0,0,0.45);
      background: rgba(255,255,255,0.07);
      box-shadow: 0 0 0 3px rgba(255,0,0,0.1);
    }

    .form-select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
    }

    .form-select option {
      background: #1a1a1a;
      color: #fff;
    }

    .form-btn {
      width: 100%;
      padding: 15px;
      margin-top: 8px;
      font-size: 15px;
      border-radius: 12px;
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 20px;
    }

    .form-success-icon {
      font-size: 48px;
      margin-bottom: 12px;
    }

    .form-success h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .form-success p {
      font-size: 14px;
      color: var(--muted);
    }

    /* ══════════════════════════════════════════
       CONTACT
    ══════════════════════════════════════════ */
    #contact {
      padding: 80px 0;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .contact-title {
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    .contact-sub {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 36px;
    }

    .contact-links {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-link-item {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: rgba(255,255,255,0.8);
      font-size: 15px;
      font-weight: 500;
      transition: var(--transition);
    }

    .contact-link-item:hover { color: #fff; transform: translateX(4px); }

    .contact-link-icon {
      width: 44px; height: 44px;
      background: rgba(255,0,0,0.1);
      border: 1px solid rgba(255,0,0,0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .contact-cta-card {
      padding: 40px;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(255,0,0,0.1), rgba(255,77,77,0.05));
      border: 1px solid rgba(255,0,0,0.2);
      text-align: center;
    }

    .contact-cta-card h3 {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .contact-cta-card p {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 24px;
      line-height: 1.6;
    }

    /* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
    footer {
      padding: 60px 0 32px;
      border-top: 1px solid rgba(255,255,255,0.05);
      position: relative;
      z-index: 1;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 48px;
    }

    .footer-brand-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      margin: 12px 0 24px;
      max-width: 280px;
    }

    .footer-email-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s;
    }

    .footer-email-link:hover { color: #fff; }

    .footer-col-title {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: #fff; }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    .footer-copy {
      font-size: 13px;
      color: var(--muted-2);
    }

    .footer-copy span { color: var(--primary); }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      font-size: 13px;
      color: var(--muted-2);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-legal a:hover { color: var(--muted); }

    /* ══════════════════════════════════════════
       BACK TO TOP
    ══════════════════════════════════════════ */
    #back-top {
      position: fixed;
      bottom: 32px; right: 32px;
      width: 44px; height: 44px;
      background: var(--gradient);
      border: none;
      border-radius: 12px;
      color: #fff;
      font-size: 18px;
      cursor: pointer;
      z-index: 500;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: var(--transition);
      box-shadow: 0 4px 20px rgba(255,0,0,0.3);
    }

    #back-top.visible {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }

    #back-top:hover { transform: translateY(-3px); }

    /* ══════════════════════════════════════════
       GRADIENT DIVIDER
    ══════════════════════════════════════════ */
    .grad-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,0,0,0.3), transparent);
      margin: 0;
    }

    /* ══════════════════════════════════════════
       BIG CTA SECTION
    ══════════════════════════════════════════ */
    #cta-banner {
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,0,0,0.12) 0%, transparent 70%);
    }

    #cta-banner h2 {
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 800;
      letter-spacing: -0.03em;
      max-width: 800px;
      margin: 0 auto 20px;
    }

    #cta-banner p {
      font-size: 17px;
      color: var(--muted);
      max-width: 500px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }

    .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 1200px) {
      .hero-inner { padding: 0 0 60px; }
      .hero-copy { max-width: 800px; }
    }
    @media (max-width: 1024px) {
      .hero-inner { min-height: 100vh; padding: 0 0 60px; }
      .hero-title { font-size: clamp(48px, 9vw, 86px); }
      .hero-meta-item { padding: 18px 28px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .features-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
      .process-timeline::before { display: none; }
      .who-grid { grid-template-columns: repeat(2, 1fr); }
      .results-inner { grid-template-columns: 1fr; gap: 40px; }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .audit-inner { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .section-pad { padding: 80px 0; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero-inner { min-height: auto; }
      .hero-title { font-size: clamp(40px, 12vw, 66px); line-height: 1.0; }
      .hero-copy { max-width: 100%; }
      .hero-title .accent-word::after { bottom: 2px; height: 4px; }
      .hero-meta-item { padding: 0 20px; }
      .hero-stat-number { font-size: 20px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: 1fr; }
      .process-timeline { grid-template-columns: 1fr; }
      .who-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .results-metrics { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: clamp(38px, 13vw, 58px); }
      .hero-buttons { flex-direction: column; align-items: center; }
      .hero-meta { display: grid; grid-template-columns: 1fr 1fr; border-radius: 12px; margin-top: 40px; }
      .hero-meta-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
      .hero-meta-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
      .hero-meta-item:nth-last-child(-n+2) { border-bottom: none; }
      .hero-meta-item { padding: 14px 12px; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .who-grid { grid-template-columns: 1fr 1fr; }
      .cta-buttons { flex-direction: column; align-items: center; }
    }

    /* ══ Animated border glow ══ */
    @keyframes borderGlow {
      0%, 100% { box-shadow: 0 0 20px rgba(255,0,0,0.1); }
      50% { box-shadow: 0 0 40px rgba(255,0,0,0.25); }
    }

    .glow-anim { animation: borderGlow 3s ease-in-out infinite; }

    /* ══ Animated gradient background text ══ */
    @keyframes gradMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .anim-gradient-text {
      background: linear-gradient(135deg, #FF0000, #FF7070, #FF0000);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradMove 4s ease infinite;
    }

    /* ══════════════════════════════════════════
       LIVE AUDIT TOOL
    ══════════════════════════════════════════ */
    #audit-tool-section {
      padding: 100px 0 60px;
    }

    .audit-tool-wrap {
      max-width: 960px;
      margin: 0 auto;
    }

    /* Input bar */
    .audit-input-bar {
      display: flex;
      gap: 12px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 8px 8px 8px 20px;
      align-items: center;
      transition: border-color 0.3s, box-shadow 0.3s;
      margin-bottom: 0;
    }

    .audit-input-bar:focus-within {
      border-color: rgba(255,0,0,0.4);
      box-shadow: 0 0 0 3px rgba(255,0,0,0.08), 0 0 40px rgba(255,0,0,0.06);
    }

    .audit-input-icon {
      font-size: 20px;
      flex-shrink: 0;
    }

    .audit-url-input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      color: #fff;
      font-size: 15px;
      font-family: var(--font-main);
      font-weight: 500;
    }

    .audit-url-input::placeholder { color: var(--muted-2); }

    .audit-run-btn {
      padding: 12px 24px;
      border-radius: 10px;
      font-size: 14px;
      flex-shrink: 0;
    }

    /* Loading state */
    .audit-loading {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      text-align: center;
      gap: 20px;
    }

    .audit-loading.active { display: flex; }

    .audit-spinner {
      width: 52px; height: 52px;
      border: 3px solid rgba(255,255,255,0.07);
      border-top-color: var(--primary);
      border-right-color: rgba(255,0,0,0.4);
      border-radius: 50%;
      animation: spin 0.9s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .audit-loading-text {
      font-size: 15px;
      color: var(--muted);
    }

    .audit-loading-steps {
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 13px;
      color: var(--muted-2);
    }

    .audit-step-item {
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 0;
      transform: translateY(6px);
      transition: all 0.4s ease;
    }

    .audit-step-item.done {
      opacity: 1;
      transform: translateY(0);
      color: rgba(255,255,255,0.65);
    }

    .step-dot {
      width: 8px; height: 8px;
      background: var(--primary);
      border-radius: 50%;
      flex-shrink: 0;
      animation: pulse 1.2s infinite;
    }

    .step-dot.done-dot {
      animation: none;
      background: #4ade80;
    }

    /* Error state */
    .audit-error {
      display: none;
      flex-direction: column;
      align-items: center;
      padding: 40px 20px;
      text-align: center;
      gap: 12px;
    }

    .audit-error.active { display: flex; }
    .audit-error-icon { font-size: 40px; }
    .audit-error h4 { font-size: 18px; font-weight: 700; }
    .audit-error p { font-size: 14px; color: var(--muted); max-width: 400px; line-height: 1.6; }

    /* Results */
    .audit-results {
      display: none;
    }

    .audit-results.active { display: block; }

    /* Channel header */
    .audit-channel-header {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 24px 28px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      margin-bottom: 24px;
    }

    .audit-channel-thumb {
      width: 64px; height: 64px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255,0,0,0.3);
      flex-shrink: 0;
      background: rgba(255,0,0,0.15);
    }

    .audit-channel-thumb-placeholder {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }

    .audit-channel-info { flex: 1; min-width: 0; }

    .audit-channel-name {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .audit-channel-handle {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .audit-channel-meta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .audit-channel-meta-item {
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .audit-channel-meta-item strong { color: rgba(255,255,255,0.85); font-weight: 700; }

    /* Overall score */
    .audit-score-row {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 28px;
      align-items: center;
      padding: 28px;
      background: linear-gradient(135deg, rgba(255,0,0,0.08), rgba(255,77,77,0.04));
      border: 1px solid rgba(255,0,0,0.2);
      border-radius: 16px;
      margin-bottom: 24px;
    }

    .audit-score-ring {
      position: relative;
      width: 100px; height: 100px;
    }

    .audit-score-ring svg { transform: rotate(-90deg); }

    .audit-score-center {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .audit-score-num {
      font-size: 28px;
      font-weight: 800;
      line-height: 1;
      color: #fff;
    }

    .audit-score-label {
      font-size: 9px;
      color: var(--muted);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 2px;
    }

    .audit-score-info h4 {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }

    .audit-score-info p {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 14px;
      line-height: 1.5;
    }

    .audit-score-bar-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .audit-score-bar-track {
      flex: 1;
      height: 6px;
      background: rgba(255,255,255,0.08);
      border-radius: 3px;
      overflow: hidden;
    }

    .audit-score-bar-fill {
      height: 100%;
      border-radius: 3px;
      background: var(--gradient);
      width: 0;
      transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
    }

    .audit-score-bar-pct {
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
      width: 36px;
      text-align: right;
    }

    /* Metric grid */
    .audit-metrics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 24px;
    }

    .audit-metric-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      padding: 18px 16px;
      transition: var(--transition);
    }

    .audit-metric-card:hover {
      border-color: rgba(255,0,0,0.2);
      background: rgba(255,255,255,0.05);
    }

    .audit-metric-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .audit-metric-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .audit-metric-badge {
      font-size: 10px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 50px;
    }

    .badge-good { background: rgba(74,222,128,0.15); color: #4ade80; }
    .badge-warn { background: rgba(251,191,36,0.15); color: #fbbf24; }
    .badge-bad  { background: rgba(255,0,0,0.15); color: #FF6060; }

    .audit-metric-value {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 4px;
    }

    .audit-metric-sub {
      font-size: 11px;
      color: var(--muted-2);
      line-height: 1.4;
    }

    .audit-mini-bar {
      height: 3px;
      background: rgba(255,255,255,0.06);
      border-radius: 2px;
      margin-top: 10px;
      overflow: hidden;
    }

    .audit-mini-bar-fill {
      height: 100%;
      border-radius: 2px;
      width: 0;
      transition: width 1.5s ease 0.5s;
    }

    /* SEO Checks list */
    .audit-checks-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 24px;
    }

    .audit-check-section {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      padding: 20px;
    }

    .audit-check-section-title {
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 14px;
    }

    .audit-check-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .audit-check-item:last-child { border-bottom: none; }

    .check-icon {
      width: 20px; height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .check-pass { background: rgba(74,222,128,0.15); color: #4ade80; }
    .check-fail { background: rgba(255,0,0,0.15); color: #FF6060; }
    .check-warn { background: rgba(251,191,36,0.15); color: #fbbf24; }

    .check-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.4; }
    .check-text strong { color: rgba(255,255,255,0.9); font-weight: 600; }

    /* Video table */
    .audit-videos-wrap {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      padding: 20px;
      margin-bottom: 24px;
    }

    .audit-videos-title {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .video-count-badge {
      background: rgba(255,0,0,0.15);
      color: var(--primary);
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 50px;
    }

    .audit-video-row {
      display: grid;
      grid-template-columns: 80px 1fr auto auto;
      gap: 12px;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .audit-video-row:last-child { border-bottom: none; }

    .audit-video-thumb {
      width: 80px; height: 45px;
      border-radius: 6px;
      object-fit: cover;
      background: rgba(255,255,255,0.06);
    }

    .audit-video-title {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 3px;
    }

    .audit-video-meta {
      font-size: 11px;
      color: var(--muted-2);
    }

    .audit-video-views {
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,0.65);
      white-space: nowrap;
    }

    .audit-video-seo-score {
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 50px;
      white-space: nowrap;
    }

    /* Recommendations */
    .audit-recs-wrap {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      padding: 20px;
      margin-bottom: 24px;
    }

    .audit-recs-title {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .audit-rec-item {
      display: flex;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .audit-rec-item:last-child { border-bottom: none; }

    .rec-priority {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 50px;
      height: fit-content;
      white-space: nowrap;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .rec-high { background: rgba(255,0,0,0.15); color: #FF6060; }
    .rec-medium { background: rgba(251,191,36,0.15); color: #fbbf24; }
    .rec-low { background: rgba(74,222,128,0.15); color: #4ade80; }

    .rec-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.55; }
    .rec-text strong { color: rgba(255,255,255,0.9); }

    /* CTA under tool */
    .audit-tool-cta {
      text-align: center;
      padding: 28px;
      background: linear-gradient(135deg, rgba(255,0,0,0.08), rgba(255,77,77,0.04));
      border: 1px solid rgba(255,0,0,0.18);
      border-radius: 16px;
    }

    .audit-tool-cta p {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 16px;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .audit-metrics-grid { grid-template-columns: repeat(2, 1fr); }
      .audit-checks-grid { grid-template-columns: 1fr; }
      .audit-score-row { grid-template-columns: 1fr; text-align: center; }
      .audit-score-ring { margin: 0 auto; }
      .audit-video-row { grid-template-columns: 60px 1fr; }
      .audit-video-views, .audit-video-seo-score { display: none; }
    }

    @media (max-width: 480px) {
      .audit-metrics-grid { grid-template-columns: 1fr; }
      .audit-input-bar { flex-direction: column; padding: 12px; }
      .audit-run-btn { width: 100%; }
    }
  
