/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a7898;
    --secondary-color: #d9a54a;
    --accent-color: #84b84c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-lighter: #999;
    --bg-light: #fafafa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --max-width: 1200px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    font-display: swap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-link {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    will-change: transform, box-shadow;
    transform: translateZ(0); /* Hardware acceleration */
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 14px rgba(217, 165, 74, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: #c19440;
    border-color: #c19440;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 165, 74, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-link {
    background: none;
    color: var(--secondary-color);
    border: none;
    padding: 0;
    font-weight: 600;
    text-decoration: none;
}

.btn-link:hover {
    color: var(--primary-color);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 120, 152, 0.1);
    z-index: 1000;
}

.nav-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.dropdown-toggle:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid rgba(74, 120, 152, 0.1);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 14px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(74, 120, 152, 0.05);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Desktop navigation - ensure everything is visible above 768px */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .nav-links .dropdown,
    .nav-links a[href="features.html"],
    .nav-links a[href="pricing.html"] {
        display: block;
    }
    
    .nav-links {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
    text-align: center;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

/* Line break control for headlines */
.line-break::before {
    content: "\A";
    white-space: pre;
}

/* On smaller screens, allow natural wrapping */
@media (max-width: 767px) {
    .line-break::before {
        content: none;
    }
    
    .hero h1 {
        word-spacing: 0.05em;
        line-height: 1.15;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-banner {
    background: linear-gradient(135deg, rgba(132, 184, 76, 0.1), rgba(132, 184, 76, 0.05));
    border: 1px solid rgba(132, 184, 76, 0.4);
    border-radius: var(--border-radius);
    padding: 1.25rem 2.5rem;
    margin: 2rem auto 0;
    max-width: 600px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(132, 184, 76, 0.15);
    position: relative;
    overflow: hidden;
}

.social-proof-banner::before {
    content: '⭐';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.8;
}

.social-proof-banner span {
    margin-left: 30px;
}

.urgency-banner {
    background: rgba(217, 165, 74, 0.1);
    border: 1px solid rgba(217, 165, 74, 0.4);
    border-radius: var(--border-radius);
    padding: 1rem 2rem;
    margin: 1.5rem auto;
    max-width: 600px;
    text-align: center;
    color: var(--text-dark);
}

.instant-demo {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.instant-demo h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.instant-insights {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.instant-insights li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    font-weight: 500;
}

/* Segment Selection */
.segment-selection {
    background: var(--bg-light);
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 768px) {
    .segments-grid {
        grid-template-columns: 1fr;
    }
}

.segment-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.segment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.segment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 120, 152, 0.15);
    border-color: rgba(74, 120, 152, 0.2);
}

.segment-card:hover::before {
    transform: scaleX(1);
}

.segment-card:hover .segment-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.segment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.segment-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.segment-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    min-height: 4rem;
    display: flex;
    align-items: flex-start;
}

.segment-cta {
    margin-bottom: 1.5rem;
}

.segment-stats {
    margin-top: auto;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.segment-problems {
    margin-top: 0.5rem;
    min-height: 4rem;
}

.segment-problems {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.segment-problems small {
    color: var(--text-lighter);
    font-size: 0.85rem;
}

/* Universal Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item p {
    color: var(--text-light);
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a6280 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(132, 184, 76, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: #36454F;
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Page-specific styles */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
}

.page-hero .container {
    max-width: 800px;
}

.breadcrumb {
    color: var(--text-lighter);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Problem/Solution Cards */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.problem-card, .solution-card {
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.problem-card {
    background: #fff5f5;
    border: 1px solid #fed7d7;
}

.solution-card {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
}

.problem-card h3 {
    color: #c53030;
}

.solution-card h3 {
    color: #38a169;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Urgency & Attention Elements */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 120, 152, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 120, 152, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 120, 152, 0);
    }
}

.btn-primary.pulse-cta {
    animation: pulse-cta 3s infinite;
}

@keyframes pulse-cta {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 14px rgba(74, 120, 152, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(74, 120, 152, 0.6);
    }
}

/* Trust Badges */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Trust badges on blue backgrounds need white text */
.cta-section .trust-badge,
.software-stack .trust-badge,
.communication-section .trust-badge {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .trust-badge .icon,
.software-stack .trust-badge .icon,
.communication-section .trust-badge .icon {
    color: var(--secondary-color);
}

.trust-badge .icon {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Scarcity Elements */
.scarcity-banner {
    background: linear-gradient(135deg, rgba(217, 165, 74, 0.1), rgba(217, 165, 74, 0.05));
    border: 1px solid rgba(217, 165, 74, 0.4);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.scarcity-banner::before {
    content: '🔥';
    margin-right: 0.5rem;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Enhancements */
input[type="email"] {
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(74, 120, 152, 0.1) !important;
    transform: translateY(-1px);
}

input[type="email"]:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
}


/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus indicators */
.btn-primary:focus,
.btn-secondary:focus,
input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border-width: 3px;
    }
    
    .segment-card {
        border: 2px solid var(--text-dark);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .pulse, .pulse-cta {
        animation: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .btn-large {
        padding: 16px 28px;
        font-size: 16px;
        min-height: 50px;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .social-proof-banner {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .social-proof-banner::before {
        display: none; /* Hide star on mobile for cleaner look */
    }
    
    .social-proof-banner span {
        margin-left: 0;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links .dropdown,
    .nav-links a[href="features.html"],
    .nav-links a[href="pricing.html"] {
        display: none;
    }
    
    /* Mobile hamburger menu */
    .mobile-menu-toggle {
        display: flex;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 8px;
        color: var(--text-dark);
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid rgba(74, 120, 152, 0.1);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-menu a {
        display: block;
        padding: 16px 20px;
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        border-bottom: 1px solid rgba(74, 120, 152, 0.05);
        transition: background-color 0.2s ease;
    }
    
    .mobile-menu a:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }
    
    .mobile-menu a:last-child {
        border-bottom: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .segments-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        gap: 2rem;
    }
    
    .problem-solution {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .segments-grid {
        gap: 1rem;
    }
    
    .segment-card {
        padding: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Better mobile touch targets */
    .segment-card {
        min-height: 280px;
        padding: 2rem 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        min-height: 48px;
        min-width: 120px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(74, 120, 152, 0.3);
    }
    
    input[type="email"] {
        min-height: 48px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* ROI Section Enhancements */
.roi-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a75 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.roi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(217, 165, 74, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.roi-section .container {
    position: relative;
    z-index: 1;
}

.roi-scenarios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.scenario {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.scenario:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.scenario.highlighted {
    background: rgba(217, 165, 74, 0.15);
    border: 2px solid var(--secondary-color);
    position: relative;
}

.scenario.highlighted::before {
    content: '⭐ MOST COMMON';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.scenario h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.scenario p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.scenario p:last-child {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.roi-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.roi-section p {
    color: rgba(255, 255, 255, 0.9);
}

/* Final CTA Section Enhancements */
.final-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, #6fa552 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.final-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.trial-form {
    margin-bottom: 2rem;
}

.trial-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.trial-benefits p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Enhanced CTA styling for all blue sections */
.cta-section, .final-cta, .roi-section {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-section .scarcity-banner,
.final-cta .scarcity-banner,
.roi-section .scarcity-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    backdrop-filter: blur(10px);
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .roi-scenarios {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .scenario {
        padding: 2rem;
    }
    
    .roi-section h2 {
        font-size: 2rem;
    }
    
    .trial-benefits {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
}