/*
Theme Name: RevenuePilot CRM
Theme URI: https://revenuepilot.com
Author: RevenuePilot
Author URI: https://revenuepilot.com
Description: Premium landing page theme for RevenuePilot CRM.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: revenuepilot
Tags: one-column, custom-menu, featured-images
*/

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

:root {
    --navy: #0B1F3A;
    --royal: #1F4FFF;
    --emerald: #00C896;
    --orange: #FF8A00;
    --light: #F4F6F8;
    --charcoal: #1A1A1A;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 60px rgba(31, 79, 255, 0.15);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

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

/* ======================== TYPOGRAPHY ======================== */
h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--royal), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-orange {
    color: var(--orange);
}

.highlight-green {
    color: var(--emerald);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(31, 79, 255, 0.15);
    color: var(--royal);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(31, 79, 255, 0.3);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ======================== BUTTONS ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--royal), #3d6aff);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(31, 79, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(31, 79, 255, 0.6);
}

.btn-glass {
    background: var(--glass);
    color: var(--white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--emerald);
    color: var(--emerald);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 24px rgba(31, 79, 255, 0.4);
    }

    50% {
        box-shadow: 0 4px 40px rgba(31, 79, 255, 0.7);
    }
}

/* ======================== NAVBAR ======================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(11, 31, 58, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--royal), var(--emerald));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-zap {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
}

.logo-highlight {
    color: var(--emerald);
}

.logo-crm {
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

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

.nav-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    font-weight: 500;
}

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

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

.btn-outline-nav {
    padding: 8px 20px;
    font-size: 0.85rem;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-nav:hover {
    border-color: var(--emerald);
}

.btn-primary-nav {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

/* ======================== HERO ======================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 120px 0 40px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--royal);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--emerald);
    bottom: -60px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--orange);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(31, 79, 255, 0.1);
    border: 1px solid rgba(31, 79, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--royal);
    margin-bottom: 24px;
}

.hero-badge i {
    width: 16px;
    height: 16px;
}

.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.hero-bullet i {
    width: 20px;
    height: 20px;
    color: var(--emerald);
    flex-shrink: 0;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-investment {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.trust-investment strong {
    color: var(--emerald);
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.trust-badge i {
    width: 14px;
    height: 14px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    position: relative;
}

.mockup-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse, rgba(31, 79, 255, 0.2), transparent 70%);
    border-radius: 24px;
    z-index: 0;
}

.mockup-img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(11, 31, 58, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    width: 24px;
    height: 24px;
}

.card-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.card-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.card-leads {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-leads i {
    color: var(--royal);
}

.card-conversion {
    bottom: 30%;
    right: -30px;
    animation-delay: 1s;
}

.card-conversion i {
    color: var(--emerald);
}

.card-revenue {
    bottom: 5%;
    left: -20px;
    animation-delay: 2s;
}

.card-revenue i {
    color: var(--orange);
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Social Proof */
.hero-social-proof {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.social-proof-text {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.social-proof-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.proof-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ======================== PAIN SECTION ======================== */
.pain-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy) 0%, #091829 100%);
}

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

.pain-card {
    padding: 32px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 100, 100, 0.3);
    background: rgba(255, 100, 100, 0.05);
}

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

.pain-icon i {
    width: 24px;
    height: 24px;
}

.pain-icon-red {
    background: rgba(255, 80, 80, 0.15);
    color: #ff5050;
}

.pain-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.pain-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.pain-conclusion {
    text-align: center;
}

.pain-statement {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.pain-answer {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

/* ======================== SHIFT SECTION ======================== */
.shift-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.shift-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(31, 79, 255, 0.08), transparent 70%);
}

.shift-content {
    position: relative;
    z-index: 1;
}

.shift-headline {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.4;
}

.shift-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto 40px;
}

.shift-arrow {
    display: flex;
    justify-content: center;
}

.shift-arrow i {
    width: 32px;
    height: 32px;
    color: var(--emerald);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ======================== PILLARS ======================== */
.pillars-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #091829 0%, var(--navy) 100%);
}

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

.pillar-card {
    padding: 32px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 79, 255, 0.4);
}

.pillar-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
}

.pillar-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pillar-icon-wrap i {
    width: 28px;
    height: 28px;
}

.pillar-capture {
    background: rgba(31, 79, 255, 0.15);
    color: var(--royal);
}

.pillar-nurture {
    background: rgba(0, 200, 150, 0.15);
    color: var(--emerald);
}

.pillar-convert {
    background: rgba(255, 138, 0, 0.15);
    color: var(--orange);
}

.pillar-scale {
    background: rgba(31, 79, 255, 0.15);
    color: var(--royal);
}

.pillar-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pillar-card>p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
}

.pillar-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pillar-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.pillar-features i {
    width: 16px;
    height: 16px;
    color: var(--emerald);
}

/* ======================== HOW IT WORKS ======================== */
.how-section {
    padding: 100px 0;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    padding: 32px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 79, 255, 0.3);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--royal), var(--emerald));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 16px;
}

.step-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(31, 79, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-icon-wrap i {
    width: 28px;
    height: 28px;
    color: var(--royal);
}

.step-success {
    background: rgba(0, 200, 150, 0.1);
}

.step-success i {
    color: var(--emerald);
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.step-sources {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-sources span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.step-sources i {
    width: 12px;
    height: 12px;
}

.step-connector {
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.step-connector i {
    width: 24px;
    height: 24px;
    color: var(--royal);
}

.connector-line {
    display: none;
}

.automation-visual {
    text-align: center;
}

.flow-img {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    max-width: 800px;
}

/* ======================== AUTOMATION SHOWCASE ======================== */
.automation-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy) 0%, #091829 100%);
}

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

.auto-card {
    padding: 28px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.auto-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 79, 255, 0.3);
}

.auto-icon {
    width: 48px;
    height: 48px;
    background: rgba(31, 79, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--royal);
}

.auto-icon i {
    width: 24px;
    height: 24px;
}

.auto-green {
    background: rgba(0, 200, 150, 0.12);
    color: var(--emerald);
}

.auto-orange {
    background: rgba(255, 138, 0, 0.12);
    color: var(--orange);
}

.auto-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.auto-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ======================== RESULTS & SOCIAL PROOF ======================== */
.results-section {
    padding: 100px 0;
}

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

.stat-card {
    text-align: center;
    padding: 32px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--royal), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.testimonial-card {
    padding: 32px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 138, 0, 0.3);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--orange);
    margin-bottom: 16px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--royal), var(--emerald));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ======================== AUDIENCE ======================== */
.audience-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy) 0%, #091829 100%);
}

.audience-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.audience-yes h3,
.audience-no h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.audience-yes h3 i {
    color: var(--emerald);
    width: 24px;
    height: 24px;
}

.audience-no h3 i {
    color: #ff5050;
    width: 24px;
    height: 24px;
}

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

.aud-card {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.aud-card:hover {
    border-color: rgba(0, 200, 150, 0.3);
    transform: translateY(-2px);
}

.aud-card i {
    width: 24px;
    height: 24px;
    color: var(--emerald);
    flex-shrink: 0;
    margin-top: 2px;
}

.aud-card strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.aud-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.not-for-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.not-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 16px;
    background: rgba(255, 80, 80, 0.05);
    border: 1px solid rgba(255, 80, 80, 0.1);
    border-radius: var(--radius-sm);
}

.not-item i {
    width: 16px;
    height: 16px;
    color: #ff5050;
}

.premium-line {
    padding: 20px;
    background: rgba(31, 79, 255, 0.08);
    border: 1px solid rgba(31, 79, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.premium-line i {
    width: 20px;
    height: 20px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.premium-line p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ======================== PRICING / VALUE STACK ======================== */
.pricing-section {
    padding: 100px 0;
}

.value-stack {
    max-width: 700px;
    margin: 0 auto;
}

.stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--glass-border);
}

.stack-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.stack-feature i {
    width: 20px;
    height: 20px;
    color: var(--royal);
}

.stack-value {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-size: 0.95rem;
}

.stack-total {
    text-align: right;
    padding: 20px 24px;
    border-bottom: 2px solid var(--glass-border);
}

.total-value-crossed {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-left: 12px;
}

.pricing-card {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(31, 79, 255, 0.1), rgba(0, 200, 150, 0.05));
    border: 2px solid rgba(31, 79, 255, 0.3);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 24px;
    background: linear-gradient(135deg, var(--orange), #ff6b00);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
}

.pricing-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.currency {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--royal), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 8px;
}

.pricing-breakdown {
    font-size: 1rem;
    color: var(--emerald);
    margin-bottom: 8px;
}

.pricing-compare {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 32px;
}

.pricing-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.pricing-guarantees {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.pricing-guarantees span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-guarantees i {
    width: 16px;
    height: 16px;
}

/* ======================== RISK REVERSAL ======================== */
.risk-section {
    padding: 80px 0;
}

.risk-content {
    text-align: center;
    padding: 60px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.risk-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(0, 200, 150, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.risk-icon-wrap i {
    width: 32px;
    height: 32px;
    color: var(--emerald);
}

.risk-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.risk-subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

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

.risk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.risk-item i {
    width: 20px;
    height: 20px;
    color: var(--emerald);
    flex-shrink: 0;
}

/* ======================== COMPARISON ======================== */
.comparison-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy) 0%, #091829 100%);
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.comp-header,
.comp-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.comp-header {
    background: rgba(31, 79, 255, 0.15);
}

.comp-header>div {
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

.comp-row>div {
    padding: 14px 24px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.comp-feature {
    color: rgba(255, 255, 255, 0.8);
}

.comp-other {
    color: rgba(255, 255, 255, 0.4);
}

.comp-other i {
    color: #ff5050;
    width: 18px;
    height: 18px;
}

.comp-us {
    color: var(--emerald);
    font-weight: 600;
}

.comp-us i {
    color: var(--emerald);
    width: 18px;
    height: 18px;
    margin-right: 4px;
}

.comp-row-highlight {
    background: rgba(0, 200, 150, 0.05);
}

.comp-row-highlight .comp-us {
    color: var(--orange);
}

/* ======================== FAQ ======================== */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: rgba(31, 79, 255, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ======================== FINAL CTA ======================== */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #091829, var(--navy));
    text-align: center;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(31, 79, 255, 0.1), transparent 70%);
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 138, 0, 0.15);
    border: 1px solid rgba(255, 138, 0, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 24px;
}

.urgency-badge i {
    width: 16px;
    height: 16px;
}

.final-headline {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.final-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.8;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.final-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    margin-bottom: 24px;
}

.final-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.final-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.final-trust i {
    width: 16px;
    height: 16px;
}

/* ======================== FOOTER ======================== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 300px;
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 4px 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--emerald);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ======================== ANIMATIONS ======================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

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

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

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

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 31, 58, 0.98);
        padding: 24px;
        gap: 16px;
        backdrop-filter: blur(20px);
    }

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

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

    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 8px 0;
    }

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

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

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

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

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

    .risk-content {
        padding: 32px 20px;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comp-header>div,
    .comp-row>div {
        padding: 12px 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}