/* Tenner Pages - Custom Styles */

:root {
    --tp-primary: #0d6efd;
    --tp-primary-dark: #0b5ed7;
    --tp-secondary: #6c757d;
    --tp-success: #198754;
    --tp-light-bg: #f8f9fa;
    --tp-dark-text: #212529;
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--tp-dark-text);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navbar Enhancements */
.navbar-brand {
    font-size: 1.5rem;
    color: var(--tp-primary) !important;
    transition: transform 0.2s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--tp-primary) !important;
}

.nav-link.active {
    color: var(--tp-primary) !important;
    border-bottom: 2px solid var(--tp-primary);
}

/* Button Enhancements */
.btn-primary {
    background-color: var(--tp-primary);
    border-color: var(--tp-primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--tp-primary-dark);
    border-color: var(--tp-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d2774 0%, #01010e 100%);
    color: white;
}

/* Modern Hero Section */
.hero-section-modern {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.hero-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(13, 110, 253, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(13, 110, 253, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero with Background Image on Left */
.hero-with-bg .col-lg-6:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 20px;
    z-index: -1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.quote-box {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.min-vh-70 {
    min-height: 70vh;
}

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

.trust-badge {
    font-size: 0.9rem;
}

.badge-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

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

/* Hero Image Container */
.hero-image-container {
    position: relative;
    perspective: 1000px;
}

.floating-card {
    animation: float 6s ease-in-out infinite;
    border: none;
    background: white;
}

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

.floating-badge {
    position: absolute;
    animation: float-alternate 4s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30%;
    right: -15%;
    animation-delay: 1s;
}

.badge-3 {
    top: 50%;
    left: -10%;
    animation-delay: 2s;
}

@keyframes float-alternate {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.pricing-result {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Accordion Customization */
.accordion-button:not(.collapsed) {
    background-color: var(--tp-light-bg);
    color: var(--tp-primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--tp-primary);
}

/* Form Enhancements */
.form-control:focus {
    border-color: var(--tp-primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Section Spacing */
.section-spacing {
    padding: 80px 0;
}

/* Pricing Display */
#monthly-cost {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Footer Styles */
footer {
    background-color: #212529;
    color: #fff;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

/* Testimonial Cards */
.testimonial-card {
    border-left: 4px solid var(--tp-primary);
    background-color: var(--tp-light-bg);
}

/* Portfolio Grid */
.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-item img {
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .section-spacing {
        padding: 40px 0;
    }
}

/* Loading Animation */
.spinner-border-custom {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

/* Badge Styles */
.badge-custom {
    background-color: var(--tp-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* Call to Action Sections */
.cta-section {
    background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-primary-dark) 100%);
    color: white;
    padding: 60px 0;
}

/* Icon Circles */
.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--tp-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Alert Customization */
.alert {
    border-radius: 8px;
    border: none;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.alert-danger {
    background-color: #f8d7da;
    color: #842029;
}

/* Social Proof Section */
.social-proof {
    background-color: var(--tp-light-bg);
    padding: 40px 0;
}

/* Utility Classes */
.text-primary-custom {
    color: var(--tp-primary) !important;
}

.bg-primary-custom {
    background-color: var(--tp-primary) !important;
}

.border-primary-custom {
    border-color: var(--tp-primary) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Material Icons Styles */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
}

/* Icon sizing variants */
.material-symbols-outlined.icon-sm {
    font-size: 18px;
}

.material-symbols-outlined.icon-md {
    font-size: 24px;
}

.material-symbols-outlined.icon-lg {
    font-size: 36px;
}

.material-symbols-outlined.icon-xl {
    font-size: 48px;
}


/* ========================================
   TENNER PAGES V2 - AGENCY GRADE DESIGN
   ======================================== */

:root {
    --v2-bg: #07090F;
    --v2-surface: rgba(255,255,255,0.03);
    --v2-surface-2: rgba(255,255,255,0.06);
    --v2-border: rgba(255,255,255,0.08);
    --v2-text: #EEF2FF;
    --v2-muted: #6B7A99;
    --v2-violet: #7C3AED;
    --v2-violet-light: #A78BFA;
    --v2-cyan: #06B6D4;
    --v2-orange: #F97316;
    --v2-light: #F8FAFC;
    --v2-light-text: #0F172A;
    --v2-light-muted: #64748B;
    --v2-light-border: #E2E8F0;
}

.v2-gradient-text {
    background: linear-gradient(135deg, #A78BFA 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- HERO ---- */
.v2-hero {
    background: var(--v2-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 110px 0 90px;
}
.v2-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(124,58,237,0.14) 0%, transparent 60%);
    pointer-events: none;
}
.v2-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(6,182,212,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.v2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124,58,237,0.12);
    border: 1px solid rgba(124,58,237,0.3);
    color: var(--v2-violet-light);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}
.v2-hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--v2-violet-light);
    border-radius: 50%;
    animation: v2-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes v2-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
}
.v2-hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--v2-text);
    margin-bottom: 24px;
}
.v2-hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--v2-muted);
    max-width: 500px;
    margin: 0 0 40px;
    line-height: 1.85;
}
.v2-btn-cta {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: #0F172A !important;
    font-weight: 800;
    font-size: 0.95rem;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(249,115,22,0.3);
}
.v2-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(249,115,22,0.45);
    color: #0F172A !important;
}
.v2-btn-ghost-dark {
    background: transparent;
    color: rgba(255,255,255,0.75) !important;
    border: 1px solid rgba(255,255,255,0.18);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    padding: 14px 32px;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.2s ease;
}
.v2-btn-ghost-dark:hover {
    border-color: rgba(255,255,255,0.4);
    color: var(--v2-text) !important;
    background: rgba(255,255,255,0.06);
}
.v2-stats-strip {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 24px 0;
    backdrop-filter: blur(20px);
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 60px;
}
.v2-stat {
    text-align: center;
    padding: 0 28px;
}
.v2-stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}
.v2-stat-label {
    font-size: 0.7rem;
    color: var(--v2-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 5px;
}
.v2-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ---- MARQUEE ---- */
.v2-marquee-section {
    background: var(--v2-violet);
    padding: 14px 0;
    overflow: hidden;
}
.v2-marquee-track {
    display: flex;
    width: max-content;
    animation: v2-marquee 28s linear infinite;
}
.v2-marquee-track:hover { animation-play-state: paused; }
@keyframes v2-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.v2-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 36px;
    white-space: nowrap;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
    font-size: 0.83rem;
    letter-spacing: 0.03em;
}
.v2-marquee-dot {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

/* ---- SHARED SECTION STYLES ---- */
.v2-section-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--v2-violet-light);
    margin-bottom: 14px;
    display: block;
}
.v2-section-label-dark { color: var(--v2-violet); }
.v2-section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.v2-section-title-light { color: var(--v2-text); }
.v2-section-title-dark { color: var(--v2-light-text); }
.v2-section-sub-light {
    color: var(--v2-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 520px;
}
.v2-section-sub-dark {
    color: var(--v2-light-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 520px;
}

/* ---- FEATURES / WHATS INCLUDED ---- */
.v2-features-section {
    background: var(--v2-bg);
    padding: 120px 0;
}
.v2-feature-item {
    padding: 28px 24px;
    border: 1px solid var(--v2-border);
    border-radius: 18px;
    background: var(--v2-surface);
    height: 100%;
    transition: all 0.3s ease;
}
.v2-feature-item:hover {
    border-color: rgba(124,58,237,0.4);
    background: rgba(124,58,237,0.07);
    transform: translateY(-4px);
}
.v2-feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    background: rgba(124,58,237,0.15);
    color: var(--v2-violet-light);
}
.v2-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--v2-text);
    margin-bottom: 8px;
}
.v2-feature-desc {
    font-size: 0.86rem;
    color: var(--v2-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---- PRICING ---- */
.v2-pricing-section {
    background: var(--v2-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.v2-pricing-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.v2-price-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}
.v2-price-card:hover {
    border-color: rgba(255,255,255,0.16);
    transform: translateY(-6px);
}
.v2-price-card.v2-featured {
    background: rgba(124,58,237,0.08);
    border: 1px solid transparent;
    background-clip: padding-box;
}
.v2-price-card.v2-featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    z-index: -1;
}
.v2-price-card.v2-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 80px rgba(124,58,237,0.25);
}
.v2-featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    color: white;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 100px;
    white-space: nowrap;
}
.v2-price-tier {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--v2-muted);
    margin-bottom: 16px;
}
.v2-featured .v2-price-tier { color: rgba(167,139,250,0.7); }
.v2-price-amount {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--v2-text);
}
.v2-price-currency {
    font-size: 1.8rem;
    font-weight: 700;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
    color: var(--v2-text);
}
.v2-price-term {
    font-size: 0.82rem;
    color: var(--v2-muted);
    margin-top: 6px;
    margin-bottom: 28px;
}
.v2-price-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 24px;
    border: none;
}
.v2-featured .v2-price-divider { background: rgba(124,58,237,0.3); }
.v2-price-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: rgba(238,242,255,0.72);
}
.v2-featured .v2-price-feature { color: rgba(238,242,255,0.9); }
.v2-price-check {
    color: var(--v2-cyan);
    flex-shrink: 0;
    font-size: 0.9rem;
    margin-top: 2px;
}
.v2-price-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: all 0.2s ease;
    margin-top: auto;
}
.v2-price-btn-outline {
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.78) !important;
    background: transparent;
}
.v2-price-btn-outline:hover {
    border-color: rgba(255,255,255,0.35);
    color: white !important;
    background: rgba(255,255,255,0.05);
}
.v2-price-btn-gradient {
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    color: white !important;
    border: none;
}
.v2-price-btn-gradient:hover {
    opacity: 0.9;
    box-shadow: 0 8px 24px rgba(124,58,237,0.4);
    color: white !important;
    transform: translateY(-1px);
}
.v2-monthly-banner {
    background: rgba(249,115,22,0.08);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: 16px;
    padding: 24px 32px;
    margin-top: 40px;
}

/* ---- PROCESS ---- */
.v2-process-section {
    background: var(--v2-light);
    padding: 120px 0;
}
.v2-process-step {
    position: relative;
    text-align: center;
    padding: 0 24px;
}
.v2-process-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--v2-violet), var(--v2-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 1;
}
.v2-process-connector {
    position: absolute;
    top: 36px;
    left: 60%;
    right: -40%;
    height: 0;
    border-top: 2px dashed rgba(124,58,237,0.25);
    z-index: 0;
}
.v2-process-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--v2-light-text);
    margin-bottom: 8px;
}
.v2-process-desc {
    font-size: 0.875rem;
    color: var(--v2-light-muted);
    line-height: 1.75;
    margin: 0;
}

/* ---- COMPARISON ---- */
.v2-compare-section {
    background: var(--v2-light);
    padding: 120px 0;
}
.v2-compare-card {
    background: white;
    border: 1.5px solid var(--v2-light-border);
    border-radius: 22px;
    padding: 34px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}
.v2-compare-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.v2-compare-winner {
    background: var(--v2-bg);
    border: 1px solid transparent;
}
.v2-compare-winner::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 23px;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    z-index: -1;
}
.v2-compare-winner:hover {
    box-shadow: 0 20px 60px rgba(124,58,237,0.2);
}
.v2-cmp-tag {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #94a3b8;
    margin-bottom: 6px;
}
.v2-compare-winner .v2-cmp-tag { color: rgba(167,139,250,0.6); }
.v2-cmp-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--v2-light-text);
    margin-bottom: 4px;
}
.v2-compare-winner .v2-cmp-name { color: var(--v2-text); }
.v2-cmp-price {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 22px;
}
.v2-cmp-good { color: #10b981; }
.v2-cmp-bad { color: #ef4444; }
.v2-cmp-warn { color: #f59e0b; }
.v2-cmp-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.86rem;
    color: var(--v2-light-muted);
    line-height: 1.4;
}
.v2-compare-winner .v2-cmp-item { color: rgba(238,242,255,0.75); }
.v2-ci-yes { color: #10b981; flex-shrink: 0; }
.v2-ci-no { color: #ef4444; flex-shrink: 0; }
.v2-ci-mid { color: #f59e0b; flex-shrink: 0; }

/* ---- FOUNDER / WHY US ---- */
.v2-founder-section {
    background: var(--v2-bg);
    padding: 120px 0;
}
.v2-founder-quote {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.5;
    color: var(--v2-text);
    border-left: 3px solid var(--v2-violet-light);
    padding-left: 24px;
    margin-bottom: 32px;
}
.v2-founder-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 26px 28px;
    margin-bottom: 14px;
    transition: all 0.2s ease;
}
.v2-founder-block:last-child { margin-bottom: 0; }
.v2-founder-block:hover {
    border-color: rgba(124,58,237,0.35);
    background: rgba(124,58,237,0.06);
}
.v2-founder-block-icon {
    width: 42px;
    height: 42px;
    background: rgba(124,58,237,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--v2-violet-light);
    margin-bottom: 12px;
}
.v2-founder-block h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--v2-text);
    margin-bottom: 6px;
}
.v2-founder-block p {
    font-size: 0.86rem;
    color: var(--v2-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---- AUDIENCE ---- */
.v2-audience-section {
    background: var(--v2-light);
    padding: 120px 0;
}
.v2-audience-card {
    background: white;
    border: 1.5px solid var(--v2-light-border);
    border-radius: 22px;
    padding: 40px 32px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}
.v2-audience-card:hover {
    border-color: var(--v2-violet);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(124,58,237,0.1);
}
.v2-audience-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(6,182,212,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    color: var(--v2-violet);
}
.v2-audience-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--v2-light-text);
    margin-bottom: 12px;
}
.v2-audience-desc {
    font-size: 0.88rem;
    color: var(--v2-light-muted);
    line-height: 1.75;
    margin-bottom: 0;
}

/* ---- TESTIMONIALS ---- */
.v2-testimonials-section {
    background: var(--v2-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.v2-testimonials-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(6,182,212,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.v2-tcard {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 36px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.v2-tcard:hover {
    border-color: rgba(124,58,237,0.3);
    background: rgba(124,58,237,0.05);
    transform: translateY(-4px);
}
.v2-quote-icon {
    font-size: 4rem;
    line-height: 1;
    color: var(--v2-violet-light);
    opacity: 0.3;
    font-family: Georgia, serif;
    margin-bottom: 8px;
}
.v2-tcard-stars {
    color: #FBBF24;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
}
.v2-tcard-text {
    font-size: 0.95rem;
    color: rgba(238,242,255,0.82);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 28px;
}
.v2-tcard-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    color: white;
    flex-shrink: 0;
}
.v2-tcard-name {
    font-weight: 800;
    color: var(--v2-text);
    font-size: 0.92rem;
    margin-bottom: 3px;
}
.v2-tcard-role {
    font-size: 0.78rem;
    color: var(--v2-muted);
}

/* ---- REFERRAL ---- */
.v2-referral-section {
    background: var(--v2-light);
    padding: 100px 0;
}
.v2-referral-box {
    background: var(--v2-bg);
    border-radius: 28px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}
.v2-referral-box::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.15) 0%, transparent 65%);
    pointer-events: none;
}
.v2-referral-earn-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px;
}

/* ---- FAQ ---- */
.v2-faq-section {
    background: var(--v2-bg);
    padding: 120px 0;
}
.v2-faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}
.v2-faq-item .accordion-button {
    background: transparent;
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--v2-text);
    box-shadow: none;
    padding: 20px 24px;
    border-radius: 14px;
}
.v2-faq-item .accordion-button:not(.collapsed) {
    background: rgba(124,58,237,0.08);
    color: var(--v2-violet-light);
    box-shadow: none;
}
.v2-faq-item .accordion-button::after {
    filter: invert(1) brightness(0.6);
}
.v2-faq-item .accordion-body {
    background: rgba(124,58,237,0.04);
    padding: 0 24px 20px;
    color: var(--v2-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ---- FINAL CTA ---- */
.v2-final-cta {
    background: var(--v2-bg);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.v2-final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.v2-final-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(6,182,212,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.v2-cta-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--v2-text);
    margin-bottom: 20px;
}
.v2-cta-sub {
    font-size: 1.1rem;
    color: var(--v2-muted);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

/* ---- NAVBAR V2 ---- */
.v2-navbar {
    background: rgba(7,9,15,0.82) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    padding: 14px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none !important;
}
.v2-navbar.v2-nav-scrolled {
    background: rgba(7,9,15,0.97) !important;
    box-shadow: 0 2px 40px rgba(0,0,0,0.55) !important;
}
.v2-navbar-toggler {
    border-color: rgba(255,255,255,0.2) !important;
    border-radius: 8px !important;
}
.v2-nav-link {
    color: rgba(255,255,255,0.65) !important;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 7px;
    transition: color 0.2s, background 0.2s;
    padding: 7px 11px !important;
}
.v2-nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.07);
}
.v2-nav-active {
    color: var(--v2-violet-light) !important;
    background: rgba(124,58,237,0.1);
}
.v2-nav-cta {
    padding: 9px 20px !important;
    font-size: 0.875rem !important;
    border-radius: 9px !important;
    white-space: nowrap;
}
@media (max-width: 991px) {
    .v2-navbar .navbar-collapse {
        background: rgba(7,9,15,0.98);
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.08);
        padding: 14px 16px;
        margin-top: 10px;
    }
    .v2-nav-cta {
        display: block;
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }
}

/* ---- HERO GRID PATTERN ---- */
.v2-hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 38px 38px;
    -webkit-mask-image: radial-gradient(ellipse 65% 85% at 20% 50%, black 10%, transparent 72%);
    mask-image: radial-gradient(ellipse 65% 85% at 20% 50%, black 10%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

/* ---- HERO TRUST ROW ---- */
.v2-hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}
.v2-hero-avatars {
    display: flex;
    margin-right: 4px;
}
.v2-hero-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--v2-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    margin-right: -10px;
    flex-shrink: 0;
}
.v2-hero-avatars .v2-hero-avatar:last-child { margin-right: 0; }
.v2-hero-stars {
    color: #FBBF24;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 2px;
}

/* ---- BROWSER MOCKUP ---- */
.v2-mockup-wrapper {
    position: relative;
    padding: 24px 28px 40px 12px;
    max-width: 500px;
}
.v2-browser-frame {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 30px 80px rgba(0,0,0,0.65),
        inset 0 1px 0 rgba(255,255,255,0.06);
}
.v2-browser-chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1E2135;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.v2-bc-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}
.v2-bc-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}
.v2-bc-bar {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.62rem;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}
.v2-browser-body { background: #F8FAFC; }
.v2-mock-nav {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: #fff;
    border-bottom: 1px solid #E2E8F0;
}
.v2-mock-hero-block {
    background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 55%, #0C1A2E 100%);
    padding: 26px 20px;
}
.v2-mock-cards-row {
    display: flex;
    gap: 8px;
    padding: 14px;
    background: #F8FAFC;
}
.v2-mock-card-item {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    padding: 12px 10px;
}

/* ---- FLOATING BADGES ---- */
@keyframes v2-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-9px); }
}
@keyframes v2-float-rev {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(9px); }
}
.v2-float-badge {
    position: absolute;
    background: rgba(10,13,25,0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    white-space: nowrap;
    z-index: 10;
}
.v2-fb-icon { font-size: 1.15rem; flex-shrink: 0; }
.v2-fb-title { font-size: 0.78rem; font-weight: 800; color: #fff; line-height: 1.2; }
.v2-fb-sub { font-size: 0.67rem; color: var(--v2-muted); line-height: 1.3; }
.v2-fb-1 { top: 10%; right: 0; animation: v2-float 3.5s ease-in-out infinite; }
.v2-fb-2 { bottom: 25%; left: -8px; animation: v2-float-rev 4s ease-in-out infinite 0.6s; }
.v2-fb-3 { bottom: 6%; right: 10px; animation: v2-float 4.5s ease-in-out infinite 1.2s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .v2-hero { padding: 80px 0 60px; min-height: auto; }
    .v2-hero-title { font-size: 2.6rem; }
    .v2-stats-strip { padding: 16px 0; }
    .v2-stat { padding: 0 16px; }
    .v2-stat-divider { height: 32px; }
    .v2-features-section, .v2-pricing-section, .v2-process-section,
    .v2-compare-section, .v2-testimonials-section, .v2-audience-section,
    .v2-founder-section, .v2-referral-section, .v2-faq-section,
    .v2-final-cta { padding: 70px 0; }
    .v2-section-title { font-size: 1.9rem; }
    .v2-price-card { padding: 28px 22px; }
    .v2-referral-box { padding: 36px 24px; }
    .v2-cta-title { font-size: 2.2rem; }
    .v2-process-connector { display: none; }
    .v2-faq-btn { font-size: 0.9rem; gap: 10px; }
}

/* ---- FAQ V2 ---- */
.v2-faq-section {
    background: var(--v2-bg);
    padding: 100px 0;
}
.v2-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.v2-faq-item.accordion-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px !important;
    overflow: hidden;
    transition: border-color 0.25s;
}
.v2-faq-item.accordion-item:hover {
    border-color: rgba(124,58,237,0.45);
}
.v2-faq-btn {
    background: transparent !important;
    color: var(--v2-text) !important;
    font-weight: 600;
    font-size: 0.97rem;
    padding: 20px 24px;
    gap: 14px;
    display: flex;
    align-items: center;
    box-shadow: none !important;
    border: none !important;
}
.v2-faq-btn::after {
    filter: invert(1);
    margin-left: auto;
    flex-shrink: 0;
}
.v2-faq-btn:not(.collapsed) {
    color: #fff !important;
    background: rgba(124,58,237,0.08) !important;
}
.v2-faq-btn:not(.collapsed) .v2-faq-num {
    background: linear-gradient(135deg, var(--v2-violet), var(--v2-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v2-faq-num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--v2-muted);
    flex-shrink: 0;
    min-width: 22px;
    font-variant-numeric: tabular-nums;
    transition: color 0.2s;
}
.v2-faq-body {
    background: transparent;
    color: var(--v2-muted);
    font-size: 0.93rem;
    line-height: 1.8;
    padding: 4px 24px 22px 60px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.v2-faq-cta-strip {
    background: rgba(124,58,237,0.07);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 16px;
    padding: 32px 24px;
}
