/* TalePal Landing Page - Custom Styles */
/* Theme support: dark (default) and light */

/* ===== Theme Variables ===== */
:root {
    /* Dark theme (default) */
    --bg-primary: #1e1e2e;
    --bg-secondary: #2d2d44;
    --bg-tertiary: #3d3d5c;
    --accent-primary: #8b5cf6;
    --accent-secondary: #a78bfa;
    --accent-hover: #7c3aed;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --text-heading: #ffffff;
    --border-color: #3d3d5c;
    --success-color: #4ade80;
    --gold-accent: #fbbf24;
    --shadow-color: rgba(0, 0, 0, 0.3);
}


[data-theme="light"] {
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e9ecef;
    --accent-primary: #7c3aed;
    --accent-secondary: #8b5cf6;
    --accent-hover: #6d28d9;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-heading: #1a202c;
    --border-color: #e2e8f0;
    --success-color: #22c55e;
    --gold-accent: #d97706;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

[data-theme="ember"] {
    --bg-primary: #2a1b1b;
    --bg-secondary: #3d2626;
    --bg-tertiary: #523333;
    --accent-primary: #ef4444;
    --accent-secondary: #f87171;
    --accent-hover: #dc2626;
    --text-primary: #e5e5e5;
    --text-secondary: #a3a3a3;
    --text-heading: #ffffff;
    --border-color: #523333;
    --success-color: #4ade80;
    --gold-accent: #fbbf24;
    --shadow-color: rgba(0, 0, 0, 0.35);
}

[data-theme="spirit"] {
    --bg-primary: #1e293b;
    --bg-secondary: #334155;
    --bg-tertiary: #475569;
    --accent-primary: #06b6d4;
    --accent-secondary: #22d3ee;
    --accent-hover: #0891b2;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-heading: #f8fafc;
    --border-color: #475569;
    --success-color: #4ade80;
    --gold-accent: #fbbf24;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

[data-theme="emberlight"] {
    --bg-primary: #fff1f2;
    /* Rose 50 */
    --bg-secondary: #ffffff;
    --bg-tertiary: #ffe4e6;
    /* Rose 100 */
    --accent-primary: #e11d48;
    /* Rose 600 */
    --accent-secondary: #be123c;
    /* Rose 700 */
    --accent-hover: #9f1239;
    /* Rose 800 */
    --text-primary: #4c0519;
    /* Rose 950 */
    --text-secondary: #881337;
    /* Rose 900 */
    --text-heading: #be123c;
    --border-color: #fca5a5;
    --success-color: #059669;
    --gold-accent: #d97706;
    --shadow-color: rgba(225, 29, 72, 0.1);
}

/* Navbar Styles */
.navbar-glass {
    background: rgba(var(--bg-secondary-rgb), 0.85);
    /* Fallback */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

[data-theme="emberlight"] .navbar-glass {
    background: rgba(255, 255, 255, 0.85);
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    transition: color 0.2s ease;
}

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

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.deco-wavy {
    position: absolute;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%238b5cf6' fill-opacity='0.1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    z-index: -1;
}

[data-theme="emberlight"] .deco-wavy {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23e11d48' fill-opacity='0.05' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
}

/* ===== Base Styles ===== */
body {
    background: var(--bg-primary);
    min-height: 100vh;
    color: var(--text-primary);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Friendly UI Utils */
.btn {
    border-radius: 50rem !important;
    /* Pill shaped */
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    font-weight: 600 !important;
}

.blob-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-secondary) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    top: -200px;
    right: -200px;
}

[data-theme="light"] .blob-bg,
[data-theme="emberlight"] .blob-bg {
    opacity: 0.15;
}

main {
    padding-left: 0;
    /* Removing padding to allow full width hero */
    padding-right: 0;
}

@media (max-width: 992px) {
    main {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 576px) {
    main {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Container max-width */
.container {
    max-width: 1200px;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-heading);
    font-weight: 600;
}

.lead {
    color: var(--text-secondary);
    font-size: 1.25rem;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-secondary);
}

/* ===== Theme Toggle ===== */
.theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.theme-toggle:hover {
    transform: scale(1.1);
    background-color: var(--bg-tertiary);
}

.theme-toggle i {
    font-size: 1.25rem;
    color: var(--text-primary);
}

/* ===== Hero Section ===== */
.hero-section {
    padding: 3rem 0 2rem 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 30% 30%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 70% 40%, rgba(196, 181, 253, 0.08) 0%, transparent 50%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 100px;
    height: auto;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--gold-accent);
}

.hero-brand {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
    display: inline-block;
}

.hero-tagline {
    font-size: 1.8rem;
    color: var(--gold-accent);
    margin-bottom: 0;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Buttons ===== */
.btn-primary {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--accent-primary);
    color: #ffffff;
}

/* ===== Feature Sections ===== */
.feature-section {
    padding: 5rem 0;
    border-radius: 24px;
    margin-bottom: 2rem;
}

.feature-section:nth-child(even) {
    background: linear-gradient(135deg,
            rgba(45, 45, 68, 0.9) 0%,
            rgba(37, 21, 64, 0.85) 50%,
            rgba(45, 45, 68, 0.9) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.1);
}

[data-theme="light"] .feature-section:nth-child(even) {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 249, 250, 0.9) 50%,
            rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.08);
}

.feature-image {
    border-radius: 12px;
    box-shadow: 0 8px 32px var(--shadow-color);
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border: 1px solid var(--border-color);
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.feature-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
}

.feature-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.read-more {
    color: var(--accent-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--accent-secondary);
}

.read-more i {
    transition: transform 0.2s ease;
}

.read-more:hover i {
    transform: translateX(4px);
}

/* ===== Cards ===== */
.card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 24px var(--shadow-color);
}

/* ===== Footer ===== */
.footer {
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 -2px 12px rgba(139, 92, 246, 0.15);
    padding: 2rem 4rem;
    margin-top: 4rem;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ===== Quick Features Cards ===== */
.quick-features {
    padding: 3rem 0;
    background: linear-gradient(135deg,
            rgba(45, 45, 68, 0.9) 0%,
            rgba(37, 21, 64, 0.85) 50%,
            rgba(45, 45, 68, 0.9) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.1);
    border-radius: 24px;
    margin-bottom: 2rem;
}

[data-theme="light"] .quick-features {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 249, 250, 0.9) 50%,
            rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.08);
}

.feature-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow-color);
    border-color: var(--accent-primary);
}

.feature-card-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.feature-card-title {
    font-size: 1.25rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

.feature-card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 3rem 0;
}

.pricing-card {
    background-color: var(--bg-secondary);
    border: 2px solid var(--accent-primary);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.8rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-accent);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success-color);
    margin-right: 0.75rem;
}

/* ===== Steps Section ===== */
.steps-section {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
    border-radius: 24px;
    margin-top: 2rem;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

.step-title {
    font-size: 1.25rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

.step-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== Documentation Section ===== */
.docs-section {
    padding: 2rem 0;
}

.docs-nav {
    background-color: var(--bg-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
}

.docs-nav-title {
    font-size: 1.1rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

.docs-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-nav-list li {
    margin-bottom: 0.5rem;
}

.docs-nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    padding: 0.25rem 0;
}

.docs-nav-list a:hover {
    color: var(--accent-primary);
}

.docs-content {
    background-color: var(--bg-secondary);
    border-radius: 24px;
    padding: 2rem;
}

.docs-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.docs-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.docs-block h2 {
    color: var(--accent-secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.docs-block h3 {
    color: var(--text-heading);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.docs-block p {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.docs-block ul,
.docs-block ol {
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.docs-block li {
    margin-bottom: 0.5rem;
}

.docs-block strong {
    color: var(--text-heading);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0 1rem 0;
    }

    .hero-content {
        gap: 0.75rem;
    }

    .logo {
        max-width: 70px;
    }

    .hero-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero-brand {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .feature-section {
        padding: 3rem 0;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .feature-image {
        margin-bottom: 2rem;
    }

    /* Stack order for alternating sections on mobile */
    .feature-section .row {
        flex-direction: column;
    }

    .feature-section .order-md-1 {
        order: 2;
    }

    .feature-section .order-md-2 {
        order: 1;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    .theme-toggle i {
        font-size: 1rem;
    }
}

/* ===== V2 Layout Styles ===== */

/* Hero V2 - Prominent with large screenshot */
.hero-v2 {
    padding: 4rem 0 2rem;
    text-align: center;
}

.hero-v2-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-v2-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.hero-v2-name {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.hero-v2-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-v2-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-v2-screenshot {
    margin: 0 auto;
    max-width: 1200px;
}

.hero-v2-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    border: 1px solid var(--border-color);
}

/* Pitch Section */
.pitch-section {
    padding: 4rem 0;
}

.pitch-title {
    font-size: 2.5rem;
    color: var(--accent-secondary);
    margin-bottom: 1.5rem;
}

.pitch-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* CTA V2 - Prominent pricing card */
.cta-v2 {
    padding: 3rem 0;
}

.cta-v2-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg,
            rgba(45, 45, 68, 0.9) 0%,
            rgba(37, 21, 64, 0.85) 50%,
            rgba(45, 45, 68, 0.9) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
    border-radius: 24px;
}

[data-theme="light"] .cta-v2-card {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 249, 250, 0.9) 50%,
            rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15);
}

.cta-v2-title {
    font-size: 2rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

.cta-v2-price {
    margin-bottom: 0.5rem;
}

.cta-v2-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-accent);
}

.cta-v2-period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-v2-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cta-v2-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

[data-theme="light"] .cta-v2-badge {
    background-color: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
}

.cta-v2-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Features Grid V2 */
.features-grid {
    padding: 4rem 0;
}

.feature-card-v2 {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.feature-card-v2-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.feature-card-v2-title {
    font-size: 1.5rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.feature-card-v2-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
}

.final-cta-title {
    font-size: 2.5rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Responsive adjustments for V2 */
@media (max-width: 768px) {
    .hero-v2-title {
        font-size: 2.5rem;
    }

    .hero-v2-subtitle {
        font-size: 1.1rem;
    }

    .pitch-title {
        font-size: 2rem;
    }

    .cta-v2-amount {
        font-size: 3rem;
    }
}