/* ============================================
   PULSE AGENCY - Styles
   Colors: Black, White, Blue
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --black-light: #0a0a0a;
    --gray-950: #0d0d0d;
    --gray-900: #111111;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-600: #3a3a3a;
    --gray-500: #666666;
    --gray-400: #888888;
    --gray-300: #aaaaaa;
    --gray-200: #cccccc;
    --gray-100: #e5e5e5;
    --white: #ffffff;

    --blue-600: #2563EB;
    --blue-500: #3B82F6;
    --blue-400: #60A5FA;
    --blue-300: #93C5FD;
    --blue-glow: rgba(59, 130, 246, 0.15);
    --blue-glow-strong: rgba(59, 130, 246, 0.3);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 150ms var(--ease-out-expo);
    --transition-base: 300ms var(--ease-out-expo);
    --transition-slow: 600ms var(--ease-out-expo);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--blue-400), var(--blue-500), var(--blue-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Custom Cursor --- */
body {
    cursor: none;
}

body a, body button, body input, body select, body textarea {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

body:hover .custom-cursor {
    opacity: 1;
}

.cursor-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--blue-500);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6), 0 0 20px rgba(59, 130, 246, 0.3);
    transition: transform 0.15s var(--ease-out-expo), background 0.15s;
}

.cursor-ring {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--blue-500);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), opacity 0.3s, border-color 0.3s;
}

/* Hover state on clickable elements */
.custom-cursor.hovering .cursor-dot {
    transform: translate(-50%, -50%) scale(1.4);
}

.custom-cursor.hovering .cursor-ring {
    width: 48px;
    height: 48px;
    opacity: 0.4;
    border-color: var(--blue-400);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.logo-pulse {
    width: 10px;
    height: 10px;
    background: var(--blue-500);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--blue-500), 0 0 20px rgba(59, 130, 246, 0.3);
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--blue-500), 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { opacity: 0.7; transform: scale(1.2); box-shadow: 0 0 20px var(--blue-500), 0 0 40px rgba(59, 130, 246, 0.5); }
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: color var(--transition-fast);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--white);
}

.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--blue-600);
    color: var(--white);
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--blue-500);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.btn-primary {
    background: var(--blue-600);
    color: var(--white);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.5), 0 4px 20px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    background: var(--blue-500);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.7), 0 8px 30px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    justify-content: center;
}

.btn-outline:hover {
    border-color: var(--blue-500);
    background: rgba(59, 130, 246, 0.05);
    color: var(--blue-400);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
    width: 100%;
    justify-content: center;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-gradient {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    filter: blur(60px);
}

.floating-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--blue-500);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--blue-400);
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--blue-500);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-title {
    font-family: 'Anton', Impact, sans-serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.01em;
    margin-bottom: 36px;
    color: var(--white);
    text-transform: uppercase;
}

.hero-title .text-gradient {
    font-size: 1.2em;
    display: inline-block;
    line-height: 1;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.4));
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    color: var(--gray-400);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* --- Hero Stats V2 --- */
.hero-stats-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 48px;
    max-width: 680px;
    margin: 0 auto;
}

.stat-card-v2 {
    position: relative;
    padding: 24px 20px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.stat-card-v2:hover {
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-4px);
    background: rgba(59, 130, 246, 0.03);
}

.stat-card-v2 .stat-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card-v2:hover .stat-card-glow {
    opacity: 1;
}

.stat-card-v2.stat-featured {
    border-color: rgba(59, 130, 246, 0.15);
    background: rgba(59, 130, 246, 0.04);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.06), inset 0 1px 0 rgba(59, 130, 246, 0.1);
}

.stat-card-v2.stat-featured .stat-card-glow {
    opacity: 1;
}

.stat-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
    margin-bottom: 16px;
}

.stat-number-v2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--white);
    display: inline;
}

.stat-suffix-v2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue-400);
    display: inline;
    margin-left: 2px;
}

.stat-bar-track {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    margin: 14px 0 12px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
    transition: width 1.5s var(--ease-out-expo);
}

.stat-bar-fill.animated {
    /* width set by JS via data-width */
}

.stat-label-v2 {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.stat-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.stat-card-desc {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.stat-live-dot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #34d399;
    letter-spacing: 0.02em;
}

.stat-live-dot span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    display: inline-block;
    animation: live-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.5);
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-scroll {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    transition: opacity 0.3s ease;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--blue-500);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* --- Social Proof --- */
.social-proof {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.social-proof-text {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
    font-weight: 500;
}

.logo-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

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

.marquee-item {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

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

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--blue-400);
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.12);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 520px;
    margin: 0 auto;
}

/* --- Services --- */
.services {
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 32px;
    border-radius: 16px;
    background: var(--gray-950);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    border-color: rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--blue-400);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-stat {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-400);
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.06);
    border-radius: 6px;
    display: inline-block;
}

/* --- Process --- */
.process {
    padding: 120px 0;
    background: var(--gray-950);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.step-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(59, 130, 246, 0.08);
    line-height: 1;
    letter-spacing: -0.04em;
    min-width: 100px;
    text-align: center;
}

.step-content {
    padding-right: 20px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-list li {
    font-size: 0.88rem;
    color: var(--gray-300);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-500);
    transform: translateY(-50%);
}

/* Process step mockups */
.step-visual {
    display: flex;
    justify-content: center;
}

.step-mockup {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.mockup-bar {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mockup-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-700);
}

.mockup-content {
    padding: 24px;
}

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
}

.chart-bar {
    flex: 1;
    background: var(--gray-700);
    border-radius: 4px 4px 0 0;
    transition: height 1s var(--ease-out-expo);
}

.chart-bar.highlight {
    background: linear-gradient(to top, var(--blue-600), var(--blue-400));
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.mock-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--gray-500);
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.check-item.done {
    color: var(--gray-300);
}

.check-item.active {
    color: var(--blue-400);
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
}

.check {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid var(--gray-600);
    flex-shrink: 0;
}

.check-item.done .check {
    background: var(--blue-600);
    border-color: var(--blue-600);
}

.check-item.active .check {
    border-color: var(--blue-500);
    animation: pulse-glow 2s infinite;
}

.mock-growth {
    position: relative;
    height: 120px;
}

.growth-line {
    width: 100%;
    height: 100%;
}

.growth-label {
    position: absolute;
    top: 0;
    right: 0;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue-400);
}

/* --- Pricing --- */
.pricing {
    padding: 120px 0;
}

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

.pricing-card {
    border-radius: 20px;
    background: var(--gray-950);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.08), 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}

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

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 100px;
    background: var(--blue-600);
    color: var(--white);
}

.pricing-header {
    padding: 36px 32px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 0.02em;
}

.plan-price {
    margin: 12px 0 8px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.currency {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-400);
}

.amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.plan-revenue {
    display: block;
    font-size: 0.82rem;
    color: var(--blue-400);
    font-weight: 500;
    margin-bottom: 4px;
}

.plan-duration {
    font-size: 0.78rem;
    color: var(--gray-500);
}

.pricing-body {
    padding: 28px 32px 36px;
}

.plan-features {
    margin-bottom: 28px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-300);
    padding: 8px 0;
}

.plan-features li svg {
    flex-shrink: 0;
    color: var(--blue-500);
}

/* --- Results --- */
.results {
    padding: 120px 0;
    background: var(--gray-950);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    border-radius: 16px;
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-channel {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-500);
}

.testimonial-growth {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--blue-400);
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-metrics {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonial-metrics svg {
    color: var(--blue-500);
    flex-shrink: 0;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.metric-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
}

.metric-value.highlight {
    color: var(--blue-400);
}

/* --- FAQ --- */
.faq {
    padding: 120px 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--blue-400);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--gray-500);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--blue-400);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

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

.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.92rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
    padding: 120px 0;
    background: var(--gray-950);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.cta-card {
    position: relative;
    border-radius: 24px;
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    padding: 72px 48px;
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-gradient {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08), transparent 70%);
    filter: blur(40px);
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 40px;
    line-height: 1.7;
}

.audit-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    font-size: 0.92rem;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--gray-500);
}

.form-input:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(59, 130, 246, 0.03);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

select.form-input option {
    background: var(--gray-900);
    color: var(--white);
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 8px;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 16px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--gray-500);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--gray-600);
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="500"] { transition-delay: 500ms; }

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .pricing-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

    .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .process-step {
        grid-template-columns: auto 1fr;
    }

    .step-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 998;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links .nav-link {
        font-size: 1.2rem;
        color: var(--white);
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 999;
    }

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

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

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

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats-v2 {
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 12px;
    }

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

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

    .pricing-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

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

    .testimonial-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-number {
        font-size: 3rem;
        text-align: left;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .cta-card {
        padding: 48px 24px;
    }
}

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
