/* BMW Performance Fintech Design System */
:root {
    --bmw-blue: #1C69D4;
    --bmw-blue-dark: #0D4BA8;
    --bmw-blue-light: #4A8FE7;
    --gold: #D4A574;
    --charcoal: #1A1A1A;
    --charcoal-light: #2A2A2A;
    --grey: #6B7280;
    --grey-light: #F3F4F6;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --success: #10B981;
    --warning: #F59E0B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    background: var(--off-white);
}

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

/* Navigation */
.nav {
    background: var(--white);
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--bmw-blue);
}

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

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(28, 105, 212, 0.05) 49%, rgba(28, 105, 212, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(28, 105, 212, 0.05) 49%, rgba(28, 105, 212, 0.05) 51%, transparent 52%);
    background-size: 40px 40px;
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: var(--bmw-blue-light);
}

.hero-subtitle {
    font-size: 20px;
    color: #D1D5DB;
    margin-bottom: 40px;
}

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

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--bmw-blue-light);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #D1D5DB;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-button {
    display: inline-block;
    background: var(--bmw-blue);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(28, 105, 212, 0.3);
}

.cta-button:hover {
    background: var(--bmw-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 105, 212, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--bmw-blue);
    color: var(--bmw-blue);
}

.cta-button.secondary:hover {
    background: var(--bmw-blue);
    color: var(--white);
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.section-intro {
    font-size: 20px;
    text-align: center;
    color: var(--grey);
    max-width: 800px;
    margin: 0 auto 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--off-white);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s;
}

.problem-card:hover {
    border-color: var(--bmw-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(28, 105, 212, 0.15);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.problem-card p {
    color: var(--grey);
    font-size: 16px;
}

.total-cost {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    border-radius: 16px;
    margin-top: 40px;
}

.total-cost p {
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
}

.big-number {
    font-size: 42px;
    font-weight: 800;
    color: #DC2626;
}

/* Calculator Section */
.calculator-section {
    padding: 80px 0;
    background: var(--grey-light);
}

.calculator-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button:hover {
    border-color: var(--bmw-blue);
    color: var(--bmw-blue);
}

.tab-button.active {
    background: var(--bmw-blue);
    color: var(--white);
    border-color: var(--bmw-blue);
}

.calculator-panel {
    display: none;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.calculator-panel.active {
    display: block;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.input-section h3,
.results-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--bmw-blue);
}

.result-card {
    background: var(--off-white);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid var(--bmw-blue);
}

.result-card.highlight-card {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-left-color: var(--bmw-blue-dark);
}

.result-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 8px;
}

.result-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--charcoal);
}

.comparison-section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 2px solid #E5E7EB;
}

.comparison-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.comparison-section p {
    color: var(--grey);
    margin-bottom: 24px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.savings-display {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.savings-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.savings-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--success);
}

.savings-sublabel {
    font-size: 14px;
    color: var(--grey);
    margin-top: 8px;
}

/* True Cost Panel */
.cost-breakdown {
    background: var(--off-white);
    padding: 24px;
    border-radius: 12px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
    font-size: 16px;
}

.cost-item.total {
    border-top: 3px solid var(--bmw-blue);
    border-bottom: none;
    margin-top: 16px;
    padding-top: 16px;
    font-weight: 700;
    font-size: 20px;
}

.cost-per-month {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding: 16px;
    background: var(--bmw-blue);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
}

/* Lease vs Buy Panel */
.lease-buy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.lease-section,
.buy-section {
    background: var(--off-white);
    padding: 32px;
    border-radius: 12px;
}

.info-text {
    color: var(--grey);
    font-size: 14px;
    margin-bottom: 24px;
}

.result-sublabel {
    font-size: 12px;
    color: var(--grey);
    margin-top: 8px;
}

.recommendation {
    grid-column: 1 / -1;
}

.recommendation-card {
    background: linear-gradient(135deg, var(--bmw-blue) 0%, var(--bmw-blue-dark) 100%);
    color: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.recommendation-text {
    font-size: 24px;
    font-weight: 700;
}

/* Results Section */
.results {
    padding: 80px 0;
    background: var(--white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.result-story {
    padding: 32px;
    background: var(--off-white);
    border-radius: 12px;
    border-left: 4px solid var(--bmw-blue);
}

.result-story img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.result-story h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.savings-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 16px;
}

.result-story p {
    color: var(--grey);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--grey-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.about-text p {
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.about-stat {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--bmw-blue);
}

.about-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--bmw-blue);
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 14px;
    color: var(--grey);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: #D1D5DB;
    margin-bottom: 40px;
}

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

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    color: #9CA3AF;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .calculator-grid,
    .comparison-grid,
    .lease-buy-grid,
    .about-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .calculator-panel {
        padding: 24px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }
}

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

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calculator-panel {
    animation: fadeIn 0.4s ease-out;
}

/* New vs Used Calculator Styles */
.new-used-intro {
    text-align: center;
    margin-bottom: 40px;
}

.new-used-intro h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.new-used-intro p {
    font-size: 18px;
    color: var(--grey);
}

.new-used-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.comparison-card {
    background: var(--off-white);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
}

.comparison-card.new-card {
    border-left: 4px solid var(--bmw-blue);
}

.comparison-card.used-card {
    border-left: 4px solid var(--success);
}

.comparison-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.comparison-stat {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
}

.comparison-stat:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 14px;
    color: var(--grey);
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
}

.stat-value.savings {
    color: var(--success);
    font-size: 18px;
}

.sweet-spot {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 32px;
    border-radius: 12px;
    margin-top: 32px;
}

.sweet-spot h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.sweet-spot p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
}

.depreciation-chart-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #E5E7EB;
}

.depreciation-chart-info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

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

.fact-card {
    background: var(--off-white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #E5E7EB;
}

.fact-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--bmw-blue);
    margin-bottom: 8px;
}

.fact-text {
    font-size: 14px;
    color: var(--grey);
}

/* Dream Garage Waitlist Section */
.dream-garage-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
}

.dream-garage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(28, 105, 212, 0.03) 49%, rgba(28, 105, 212, 0.03) 51%, transparent 52%);
    background-size: 60px 60px;
}

.dream-garage-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: var(--bmw-blue);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.dream-garage-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.dream-garage-subtitle {
    font-size: 20px;
    color: var(--grey);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.feature-item {
    display: flex;
    gap: 16px;
    align-items: start;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.feature-text p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.5;
}

.waitlist-form-container {
    position: sticky;
    top: 100px;
}

.waitlist-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(28, 105, 212, 0.2);
}

.waitlist-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.waitlist-card > p {
    font-size: 16px;
    color: var(--grey);
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--bmw-blue);
}

.waitlist-button {
    width: 100%;
    padding: 16px;
    background: var(--bmw-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.waitlist-button:hover {
    background: var(--bmw-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 105, 212, 0.3);
}

.form-note {
    font-size: 13px;
    color: var(--grey);
    text-align: center;
    margin-top: 8px;
}

.success-message {
    text-align: center;
    padding: 32px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.success-message h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 8px;
}

.success-message p {
    font-size: 16px;
    color: var(--grey);
}

.social-proof {
    margin-top: 20px;
    text-align: center;
}

.proof-text {
    font-size: 14px;
    color: var(--grey);
    font-weight: 500;
}

.proof-text strong {
    color: var(--bmw-blue);
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--off-white);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--bmw-blue);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.faq-item p {
    font-size: 16px;
    color: var(--grey);
    line-height: 1.7;
}

/* Mobile Responsiveness Updates */
@media (max-width: 768px) {
    .new-used-comparison {
        grid-template-columns: 1fr;
    }

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

    .dream-garage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .waitlist-form-container {
        position: static;
    }

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

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

    .dream-garage-text h2 {
        font-size: 32px;
    }
}

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(135deg, #1C69D4 0%, #0F4C9E 100%);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.announcement-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.announcement-text {
    font-size: 15px;
    font-weight: 500;
}

.announcement-text strong {
    font-weight: 800;
}

.announcement-cta {
    background: var(--white);
    color: var(--bmw-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Navigation Highlight */
.nav-link-highlight {
    background: linear-gradient(135deg, #1C69D4 0%, #0F4C9E 100%);
    color: var(--white) !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    font-weight: 700;
}

.nav-link-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 105, 212, 0.3);
}

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

/* Adjust nav position for sticky banner */
.nav {
    top: 0;
    position: relative;
}

/* Mobile Responsiveness for Banner */
@media (max-width: 768px) {
    .announcement-content {
        flex-direction: column;
        gap: 8px;
        padding: 0 16px;
    }

    .announcement-text {
        font-size: 13px;
    }

    .announcement-cta {
        font-size: 13px;
        padding: 6px 14px;
    }
}


/* Playbook Features Section */
.playbook-features {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1f35 0%, #2d3548 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
}

.hero-note {
    margin-top: 20px;
    font-size: 14px;
    color: #94a3b8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #3b82f6;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
}

.playbook-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.playbook-tagline {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    font-style: italic;
}

.playbook-cta-box {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 16px;
    text-align: center;
}

.playbook-cta-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.playbook-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-playbook {
    font-size: 18px;
    padding: 18px 40px;
    background: #fff;
    color: #3b82f6;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-playbook:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.playbook-note {
    margin-top: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    font-size: 18px;
    padding: 18px 40px;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .playbook-cta-box {
        padding: 30px 20px;
    }
    
    .playbook-tagline {
        font-size: 20px;
    }
}
