@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
@import url('enhanced-hero-styles.css');

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --accent: #10b981;
    --accent-light: #34d399;
    --warning: #f59e0b;
    --dark: #0f172a;
    --gray: #64748b;
    --light-gray: #f1f5f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --accent-gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Marketing Guides Section */
.resources-section {
    padding: 6rem 0;
    background: #fafbfc;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guide-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e2e8f0;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.guide-preview {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.guide-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0.1;
}

.guide-preview-accounting {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #10b981 100%);
}

.guide-preview-accounting::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white"/></svg>') repeat;
    animation: float 20s infinite;
}

.guide-preview-legal {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f97316 100%);
}

.guide-preview-legal::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,15 65,40 35,40" fill="white"/></svg>') repeat;
    animation: rotate 30s infinite linear;
}

.guide-preview-medical {
    background: linear-gradient(135deg, #be185d 0%, #ec4899 50%, #f472b6 100%);
}

.guide-preview-medical::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="3" fill="white"/></svg>') repeat;
    animation: wave 18s infinite ease-in-out;
}

.guide-preview-technology {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #a855f7 100%);
}

.guide-preview-technology::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="40" y="40" width="20" height="20" fill="white" transform="rotate(45 50 50)"/></svg>') repeat;
    animation: digital 12s infinite;
}

.guide-preview-financial {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
}

.guide-preview-financial::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="45" y="45" width="10" height="10" fill="white"/></svg>') repeat;
    animation: slide 25s infinite linear;
}

.guide-preview-cyber {
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
}

.guide-preview-cyber::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 L60 30 L40 30 Z" fill="white"/></svg>') repeat;
    animation: pulse 15s infinite;
}

.guide-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    z-index: 2;
    position: relative;
}

.guide-preview .guide-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
    position: relative;
}

.guide-preview .guide-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
    z-index: 2;
    position: relative;
}

.guide-info {
    padding: 1.5rem;
}

.guide-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.guide-info p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.guide-meta {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Guide Preview Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes wave {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-10px) scale(1.05); }
    75% { transform: translateY(10px) scale(0.95); }
}

@keyframes digital {
    0%, 100% { transform: translateX(0) translateY(0) scale(1); }
    33% { transform: translateX(20px) translateY(-20px) scale(1.1); }
    66% { transform: translateX(-20px) translateY(20px) scale(0.9); }
}

@keyframes slide {
    0% { transform: translateX(-100px) translateY(-100px); }
    100% { transform: translateX(100px) translateY(100px); }
}

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

/* Professional Liability Education Center */
.education-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.education-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%233b82f6" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%2310b981" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.education-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.featured-card {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.featured-card::before {
    content: 'FEATURED';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.education-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.education-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.education-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.education-features {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-badge {
    background: var(--accent-gradient);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.education-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.education-meta span {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.education-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.education-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.education-btn.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.education-btn.secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

/* Education CTA Section */
.education-cta {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.education-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,15 65,40 35,40" fill="white" opacity="0.05"/></svg>') repeat;
    animation: float 30s infinite;
    pointer-events: none;
}

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

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-signup {
    display: flex;
    max-width: 500px;
    margin: 0 auto 2rem auto;
    gap: 1rem;
    align-items: stretch;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-btn {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.9;
}

.newsletter-benefits span {
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Better mobile touch targets */
@media (max-width: 768px) {
    .btn-primary, .btn-secondary, .cta-button {
        min-height: 48px;
        padding: 12px 24px;
        font-size: 16px;
    }

    .nav-link, .dropdown-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .guides-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guide-card {
        margin: 0 auto;
        max-width: 360px;
    }

    .guide-preview {
        height: 160px;
        padding: 15px;
    }

    .guide-icon {
        font-size: 2.5rem;
    }

    /* Education Section Mobile */
    .education-section {
        padding: 4rem 0;
    }

    .education-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .education-card {
        padding: 1.5rem;
    }

    .education-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .newsletter-signup {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-benefits {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
}

    /* Improved mobile menu */
    .nav {
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 8px;
        margin-top: 10px;
        padding: 20px;
    }

    /* Better mobile typography */
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    /* Improved mobile spacing */
    .hero {
        padding: 6rem 1rem 4rem;
    }

    .section {
        padding: 3rem 1rem;
    }
}

/* High-DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Modern scroll-snap for better navigation */
.section {
    scroll-margin-top: 100px;
}

/* Enhanced focus indicators for accessibility */
*:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Modern backdrop blur effect */
.glass-effect {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced button hover effects */
.btn-primary, .btn-secondary, .cta-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before, .btn-secondary:hover::before, .cta-button:hover::before {
    left: 100%;
}

/* Modern card shadows */
.card, .feature-card, .dashboard-mockup {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.card:hover, .feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Announcement Bar */
.announcement {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.announcement::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to { left: 100%; }
}

.announcement-content {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.limited-badge {
    background: var(--dark);
    color: var(--accent);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

/* Header scroll effect */
.header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* VSL Section */
.vsl-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

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

.vsl-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.vsl-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vsl-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.vsl-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vsl-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.benefit-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vsl-benefit span {
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
}

.vsl-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.play-button {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.video-placeholder small {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* VSL Responsive Design */
@media (max-width: 768px) {
    .vsl-section {
        padding: 60px 0;
    }

    .vsl-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .video-wrapper {
        height: 250px;
    }

    .vsl-benefits {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Animation classes for scroll effects */
.card, .feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card.animate-in, .feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Hero elements - no animations for VSL integration */
.trust-badge, .dashboard-mockup {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays - only for feature cards */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }

/* Floating animation for hero elements - REMOVED for VSL */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Removed floating animation from dashboard mockup for VSL integration */
.dashboard-mockup {
    /* animation: float 6s ease-in-out infinite; */
}

/* Pulse animation for CTAs */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

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

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

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--accent);
    transition: transform 0.3s ease;
}

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

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

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

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    z-index: 1001;
    margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: var(--primary);
    transform: translateX(5px);
}

.cta-button {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

/* Enhanced Hero Section */
.hero {
    min-height: 50vh;
    max-height: 50vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem 2rem 1rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 20%;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 30%;
    animation-delay: 6s;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 1;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

.hero-proof {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.proof-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-weight: 500;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.trust-icon {
    font-size: 1.1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: var(--white);
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-primary::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(59, 130, 246, 0.5);
    transition: all 0.3s ease;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

/* Dashboard Preview */
.dashboard-preview {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.dashboard-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: var(--gradient);
}

.stat-card:hover .stat-value,
.stat-card:hover .stat-label {
    color: var(--white);
}

.stat-card:hover .stat-change {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.stat-change {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.chart-container {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 16px;
}

.chart-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 150px;
    gap: 0.75rem;
}

.chart-bar {
    flex: 1;
    background: var(--gradient);
    border-radius: 8px 8px 0 0;
    position: relative;
}

.chart-bar:nth-child(1) { height: 60%; }
.chart-bar:nth-child(2) { height: 80%; }
.chart-bar:nth-child(3) { height: 45%; }
.chart-bar:nth-child(4) { height: 90%; }
.chart-bar:nth-child(5) { height: 70%; }
.chart-bar:nth-child(6) { height: 85%; }

/* Floating Elements */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary);
    z-index: 10;
}

.floating-card-1 {
    top: -20px;
    right: -30px;
}

.floating-card-2 {
    bottom: -20px;
    left: -30px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.card-value {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.section-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.feature-card.featured {
    background: var(--gradient);
    color: var(--white);
    border: none;
}

.feature-card.featured .feature-title,
.feature-card.featured .feature-description {
    color: var(--white);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card.featured::before {
    display: none;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: var(--primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: auto;
}

.feature-card.featured .feature-price {
    color: var(--white);
}

.feature-price-free {
    background: var(--warning);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.feature-price-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Guarantee Section - Updated with CTA styling */
.guarantee-section {
    padding: 5rem 2rem;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    /* animation: rotate 20s linear infinite; - REMOVED for VSL preparation */
}

.guarantee-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.guarantee-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

.guarantee-button {
    background: var(--white);
    color: var(--primary);
    padding: 1.2rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.guarantee-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--accent);
    color: var(--white);
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

.cta-button-white {
    background: var(--white);
    color: var(--primary);
    padding: 1.2rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--accent);
    color: var(--white);
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.close {
    color: var(--gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--dark);
}

.modal h3 {
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal input,
.modal textarea {
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.modal input:focus,
.modal textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.modal textarea {
    resize: vertical;
    min-height: 100px;
}

/* Simple Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* About Page Styles */
.about-hero {
    padding: 8rem 2rem 4rem;
}

/* About Hero Section - New Design */
.about-hero-new {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 8rem 2rem 4rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    margin-bottom: 2rem;
}

.badge-text {
    background: rgba(59, 130, 246, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: inline-block;
}

.about-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-journey {
    margin-top: 3rem;
}

.hero-journey h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.journey-path {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.step-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0;
}

.journey-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

/* Responsive Design for About Hero */
@media (max-width: 768px) {
    .about-hero-new {
        padding: 6rem 1rem 3rem;
        min-height: auto;
    }
    
    .hero-stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-stat {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-content {
        text-align: center;
    }
    
    .journey-path {
        flex-direction: column;
        gap: 1rem;
    }
    
    .journey-arrow {
        transform: rotate(90deg);
    }
    
    .shape-1, .shape-2, .shape-3 {
        opacity: 0.5;
    }
}

.about-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.about-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Our Story Section */
.our-story {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.story-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.story-text p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-stories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.story-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 12px;
    color: white;
}

.story-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.story-details p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--accent);
}

.timeline-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Mission Section */
.mission-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mission-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.mission-statement {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point {
    display: flex;
    gap: 1rem;
}

.point-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 10px;
    color: white;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Growth Chart */
.growth-chart {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.growth-chart h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
}

.chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 200px;
    gap: 1rem;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.chart-bar span:first-child {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.bar {
    width: 100%;
    height: 120px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.bar-fill {
    width: 100%;
    background: var(--gradient);
    border-radius: 8px 8px 0 0;
    animation: growUp 2s ease-out;
}

@keyframes growUp {
    from { height: 0; }
    to { height: inherit; }
}

.chart-bar span:last-child {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.reason-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.reason-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Active navigation link */
.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav.open {
        left: 0;
    }
    
    .nav .nav-link,
    .nav .cta-button {
        color: var(--white);
        font-size: 1.2rem;
        padding: 1rem 2rem;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-width: 200px;
        text-align: center;
        display: block;
    }
    
    .nav .nav-link:hover {
        background: rgba(59, 130, 246, 0.2);
        color: var(--accent);
    }
    
    .nav .cta-button {
        background: var(--accent-gradient);
        margin-top: 1rem;
    }
    
    .nav .cta-button:hover {
        background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    }
    
    .header-content {
        justify-content: space-between;
    }
    
    .hero { 
        padding: 6rem 2rem 4rem; 
    }
    
    .hero-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .hero-buttons { 
        justify-content: center; 
    }
    
    .trust-badges { 
        justify-content: center; 
    }
    
    .dashboard-preview { 
        display: none; 
    }
    
    .features-grid { 
        grid-template-columns: 1fr; 
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* About page mobile styles */
    .story-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline::before {
        left: 0.5rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-item::before {
        left: -0.25rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .chart {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

    .feature-card {
        padding: 2rem;
    }
}

/* ===== LANDING PAGE STYLES ===== */

/* Service Hero Section */
.service-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 120px 20px 80px 20px;
    margin-top: 60px;
}

.service-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.breadcrumb {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

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

.service-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.service-title span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 40px;
}

.service-highlights {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.highlight {
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.highlight-text {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-cta .btn-primary.large {
    padding: 18px 40px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.cta-note {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Ranking Mockup */
.ranking-mockup {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    color: var(--dark);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.mockup-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.location {
    color: var(--gray);
    font-size: 0.9rem;
}

.ranking-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.rank-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
}

.rank-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.rank-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.rank-badge {
    background: var(--accent);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.rank-badge.available {
    background: var(--warning);
}

/* What's Included Section */
.whats-included {
    padding: 100px 20px;
    background: var(--light-gray);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.included-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.included-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.included-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.included-item p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.included-item ul {
    list-style: none;
    padding: 0;
}

.included-item li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--gray);
}

.included-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Keywords Section */
.target-keywords {
    padding: 100px 20px;
    background: var(--white);
}

.keyword-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.keyword-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}

.keyword-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.keyword {
    background: var(--light-gray);
    padding: 12px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--dark);
    display: inline-block;
    margin-bottom: 8px;
}

/* Local Hero Section */
.local-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 120px 20px 80px 20px;
    margin-top: 60px;
}

.local-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.local-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.local-title span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.local-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 40px;
}

.local-coverage {
    margin-bottom: 40px;
}

.local-coverage h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.coverage-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area {
    background: rgba(255,255,255,0.15);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.local-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.local-stat {
    text-align: center;
}

.local-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.local-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Local Map */
.local-map {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    color: var(--dark);
}

.map-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.map-subtitle {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.map-regions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.region {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    position: relative;
}

.region.high-volume {
    background: #fef3c7;
    border-left: 4px solid var(--warning);
}

.region.medium-volume {
    background: #e0f2fe;
    border-left: 4px solid var(--primary);
}

.region.low-volume {
    background: #f0fdf4;
    border-left: 4px solid var(--accent);
}

.region-name {
    font-weight: 600;
}

.region-searches {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Industry Hero Section */
.industry-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: var(--white);
    padding: 120px 20px 80px 20px;
    margin-top: 60px;
}

.industry-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.industry-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.industry-title span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industry-specialization {
    margin-bottom: 40px;
}

.industry-specialization h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.specialization-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.industry-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.industry-stat {
    text-align: center;
}

.industry-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.industry-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Industry Showcase */
.industry-showcase {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    color: var(--dark);
}

.showcase-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.showcase-location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-result {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.result-ranking {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.result-info h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.result-description {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.result-url {
    color: var(--accent);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.client-badge {
    background: var(--accent);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.available-badge {
    background: var(--warning);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Results Grid */
.our-approach {
    padding: 100px 20px;
    background: var(--light-gray);
}

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

.approach-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.approach-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.approach-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.approach-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.result-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.result-time {
    background: var(--accent);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Guarantee Sections */
.service-guarantee,
.ny-guarantee,
.legal-guarantee {
    padding: 100px 20px;
    background: var(--primary);
    color: var(--white);
}

.guarantee-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 60px 40px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
}

.guarantee-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.guarantee-card > p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
}

.guarantee-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.guarantee-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 20px;
}

.guarantee-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.guarantee-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.guarantee-item p {
    opacity: 0.8;
    line-height: 1.5;
}

.guarantee-cta {
    background: var(--accent);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.guarantee-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* Market Insights */
.ny-market-insights,
.legal-market {
    padding: 100px 20px;
    background: var(--white);
}

.insights-grid,
.market-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.insight-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.insight-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.insight-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.insight-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.insight-stat {
    background: var(--primary);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: 600;
}

.insight-stat span {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Keyword Regions */
.ny-keywords,
.legal-keywords {
    padding: 100px 20px;
    background: var(--light-gray);
}

.keyword-regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.keyword-region {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
}

.keyword-region h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.keyword-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: var(--light-gray);
    border-radius: 12px;
    font-size: 0.9rem;
}

.keyword-item.high-volume {
    background: #fef3c7;
    border-left: 4px solid var(--warning);
}

.keyword-item.medium-volume {
    background: #e0f2fe;
    border-left: 4px solid var(--primary);
}

.keyword-item.low-volume {
    background: #f0fdf4;
    border-left: 4px solid var(--accent);
}

.volume {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
}

/* Success Stories */
.ny-success-stories,
.legal-success {
    padding: 100px 20px;
    background: var(--white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.story-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e5e7eb;
}

.story-header {
    margin-bottom: 20px;
}

.story-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.location-name {
    font-weight: 600;
    color: var(--primary);
}

.story-type {
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.story-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.story-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.result-label {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
}

/* Legal Client Types */
.legal-clients {
    padding: 100px 20px;
    background: var(--light-gray);
}

.client-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.client-type {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.client-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.client-type h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.client-type p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.client-searches {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-term {
    background: var(--light-gray);
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--dark);
}

/* Legal Success Story Details */
.success-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
    background: var(--light-gray);
    padding: 60px;
    border-radius: 30px;
}

.story-challenge h4,
.story-solution h4,
.story-results h4 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.story-challenge,
.story-solution,
.story-results {
    margin-bottom: 30px;
}

.story-solution ul {
    list-style: none;
    padding: 0;
}

.story-solution li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.story-solution li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.result-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.metric {
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.metric-detail {
    font-size: 0.8rem;
    color: var(--gray);
}

.story-testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--accent);
    margin-top: 30px;
}

.story-testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-testimonial cite {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Ranking Progress */
.story-visual {
    display: flex;
    align-items: flex-start;
}

.ranking-progress {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    width: 100%;
}

.ranking-progress h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.progress-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.progress-month {
    display: flex;
    align-items: center;
    gap: 15px;
}

.month {
    font-size: 0.9rem;
    font-weight: 600;
    width: 80px;
}

.ranking-bar {
    flex: 1;
    height: 40px;
    background: #f1f5f9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    position: relative;
}

.bar-position {
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.bar-position.not-ranked {
    background: #ef4444;
    color: var(--white);
}

.bar-position.improving {
    background: var(--warning);
    color: var(--white);
}

.bar-position.success {
    background: var(--accent);
    color: var(--white);
}

.position-text {
    font-size: 0.8rem;
    color: var(--gray);
    width: 60px;
    text-align: right;
}

/* Competition Analysis */
.ny-competition {
    padding: 100px 20px;
    background: var(--light-gray);
}

.competition-analysis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.competitor-insights h3,
.competition-advantage h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.competitor-insights ul {
    list-style: none;
    padding: 0;
}

.competitor-insights li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.competitor-insights li::before {
    content: '🔍';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.advantage-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
}

.advantage-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* NY Guarantee Details */
.ny-guarantee-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.guarantee-markets h3,
.guarantee-proof h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.market-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.market {
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.guarantee-proof ul {
    list-style: none;
    padding: 0;
}

.guarantee-proof li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* =====================================================
   CALCULATOR STYLES
   ===================================================== */

.calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.calculator-inputs {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    height: fit-content;
}

.calculator-inputs h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
}

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

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

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-group small {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 0.9rem;
}

.calculate-btn {
    width: 100%;
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    padding: 18px 30px;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

.calculator-results {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.calculator-results h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.result-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.result-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.result-card.highlight {
    background: var(--accent-gradient);
    color: var(--white);
    border-color: var(--accent);
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.result-card.highlight .result-value {
    color: var(--white);
}

.result-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.result-card.highlight .result-label {
    color: rgba(255,255,255,0.9);
}

.roi-chart {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
}

.roi-chart h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 600;
}

.chart-container {
    display: flex;
    justify-content: center;
}

/* Budget Calculator Specific Styles */
.budget-allocation {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
}

.budget-allocation h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 600;
}

.allocation-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.allocation-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.allocation-bar {
    width: 200px;
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.allocation-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.allocation-fill.seo {
    background: var(--accent-gradient);
}

.allocation-fill.paid {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.allocation-fill.referral {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.allocation-fill.events {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.allocation-fill.other {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.allocation-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.allocation-channel {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.allocation-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.allocation-percent {
    font-size: 0.9rem;
    color: #64748b;
}

.roi-projections {
    margin-top: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid #e2e8f0;
}

.roi-projections h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 600;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.roi-item {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.roi-item strong {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.roi-item span {
    display: block;
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.roi-item small {
    color: #64748b;
    font-size: 0.85rem;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .calculator-inputs,
    .calculator-results {
        padding: 30px 25px;
    }

    .result-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .result-value {
        font-size: 1.5rem;
    }

    .allocation-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .allocation-bar {
        width: 100%;
    }

    .roi-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .calculator-section {
        padding: 60px 0;
    }

    .calculator-inputs,
    .calculator-results {
        padding: 25px 20px;
    }

    .calculator-inputs h2,
    .calculator-results h2 {
        font-size: 1.5rem;
    }

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

    .input-group input,
    .input-group select {
        padding: 12px 15px;
    }

    .calculate-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

.guarantee-proof li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Legal Guarantee Details */
.guarantee-coverage {
    margin-bottom: 30px;
}

.guarantee-coverage h3,
.guarantee-confidence h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.guaranteed-keywords {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guaranteed-keyword {
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-family: monospace;
}

.guarantee-confidence ul {
    list-style: none;
    padding: 0;
}

.guarantee-confidence li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.guarantee-confidence li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-details {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Modal Updates */
.modal-content h3 {
    margin-bottom: 15px;
}

.modal-content > p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-content select {
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 15px;
    width: 100%;
    background: var(--white);
}

.modal-content select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Container utility */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2,
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header h2 span,
.section-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p,
.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Feature Note for Pricing */
.feature-note {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    margin-top: 8px;
}

/* Enhanced Button Styles */
.btn-primary.large {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    background: var(--accent);
    color: var(--white);
}

.btn-primary.large:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* Responsive Design for Landing Pages */
@media (max-width: 768px) {
    .service-hero-container,
    .local-hero-container,
    .industry-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .service-title,
    .local-title,
    .industry-title {
        font-size: 2.5rem;
    }

    .service-highlights,
    .local-stats,
    .industry-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .included-grid,
    .approach-grid,
    .insights-grid,
    .stories-grid,
    .client-types {
        grid-template-columns: 1fr;
    }

    .competition-analysis,
    .success-story,
    .ny-guarantee-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .guarantee-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .result-metrics {
        grid-template-columns: 1fr;
    }

    .guarantee-card {
        padding: 40px 20px;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .keyword-regions {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 120px 20px 80px 20px;
    margin-top: 60px;
}

.contact-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-title span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-highlight h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-highlight p {
    opacity: 0.8;
    line-height: 1.5;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    color: var(--dark);
}

.contact-form-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.contact-form-container > p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Typeform Integration Containers */
.typeform-container,
.calendly-container,
.emergency-form {
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.typeform-placeholder,
.calendly-placeholder {
    background: var(--light-gray);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e1;
    border-radius: 15px;
    min-height: 500px;
}

.typeform-placeholder.small {
    min-height: 300px;
}

.placeholder-content {
    text-align: center;
    padding: 40px;
    max-width: 400px;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.placeholder-content h3,
.placeholder-content h4 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.placeholder-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.placeholder-details {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    margin-top: 20px;
}

.placeholder-details h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.placeholder-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.placeholder-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--gray);
}

.placeholder-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Contact Information Grid */
.contact-info {
    padding: 100px 20px;
    background: var(--light-gray);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-method {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.contact-method p {
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-link {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.method-note {
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact FAQ */
.contact-faq {
    padding: 100px 20px;
    background: var(--white);
}

.contact-faq h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

.contact-faq > p {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Service Areas */
.service-areas {
    padding: 100px 20px;
    background: var(--light-gray);
}

.service-areas h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

.service-areas > p {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

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

.area-category {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.area-category h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.area-item {
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark);
}

.expansion-note {
    color: var(--gray);
    font-style: italic;
    text-align: center;
    font-size: 0.9rem;
}

/* Emergency Contact */
.emergency-contact {
    padding: 80px 20px;
    background: var(--primary);
    color: var(--white);
}

.emergency-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 60px 40px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
}

.emergency-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.emergency-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
}

.emergency-actions {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.emergency-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.emergency-phone:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.phone-icon {
    font-size: 1.5rem;
}

.emergency-form {
    width: 100%;
    max-width: 500px;
}

/* Contact Final CTA */
.contact-final-cta {
    padding: 100px 20px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.contact-final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-final-cta p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-final-cta .cta-details {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 20px;
}

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

    .contact-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .contact-highlights {
        text-align: center;
    }

    .contact-highlight {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-grid,
    .faq-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .emergency-card {
        padding: 40px 20px;
    }

    .emergency-actions {
        gap: 20px;
    }

    .emergency-phone {
        flex-direction: column;
        gap: 10px;
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* ===== ENHANCED SERVICE HERO STYLES ===== */

/* Service Hero New Design (About-inspired) */
.service-hero-new {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 8rem 2rem 6rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.service-hero-content .breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.service-hero-content .breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.service-hero-content .breadcrumb a:hover {
    color: var(--accent);
}

.service-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: center;
}

.service-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-new .hero-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-new .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-hero-new .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-hero-new .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.service-hero-new .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-hero-new .service-cta {
    text-align: center;
}

.service-hero-new .cta-note {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Responsive Design for Service Hero New */
@media (max-width: 768px) {
    .service-hero-new {
        padding: 6rem 1rem 4rem;
        min-height: auto;
    }

    .service-hero-new .hero-stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-hero-new .hero-stat {
        padding: 1.5rem 1rem;
    }

    .service-hero-new .stat-number {
        font-size: 1.5rem;
    }
}

/* ===== FOOTER DISCLAIMER STYLES ===== */

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--accent);
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: left;
}

.disclaimer-text strong {
    color: var(--accent);
    font-weight: 600;
}

/* Responsive disclaimer */
@media (max-width: 768px) {
    .footer-disclaimer {
        padding: 15px;
        margin: 15px 0;
    }

    .disclaimer-text {
        font-size: 0.8rem;
    }
}

/* ===== LEGAL PAGES STYLES ===== */

.legal-page {
    padding: 120px 20px 80px 20px;
    margin-top: 60px;
    background: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--gray);
    margin-bottom: 1.5rem;
    margin-left: 20px;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.last-updated {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 2rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray);
}

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

.breadcrumb a:hover {
    color: var(--primary-dark);
}

/* ===================================
   BLOG TEMPLATE STYLES
   =================================== */

/* Blog Main Container */
.blog-main {
    margin-top: 120px;
    padding: 2rem 0 4rem 0;
}

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

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 2rem;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.breadcrumb-list li:not(:last-child)::after {
    content: "→";
    margin-left: 0.5rem;
    color: var(--gray);
}

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

.breadcrumb-list a:hover {
    color: var(--primary-dark);
}

.breadcrumb-list span[aria-current="page"] {
    color: var(--dark);
    font-weight: 500;
}

/* Blog Header */
.blog-header {
    padding: 3rem 0;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 3rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--gray);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.blog-category {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.blog-category:hover {
    transform: translateY(-1px);
}

.blog-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.blog-excerpt {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Social Sharing */
.social-sharing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.share-label {
    font-weight: 500;
    color: var(--gray);
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.share-twitter {
    background: #1da1f2;
    color: white;
}

.share-linkedin {
    background: #0077b5;
    color: white;
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Featured Image */
.featured-image-container {
    margin-bottom: 3rem;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Blog Content Layout */
.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Main Content */
.blog-content {
    max-width: none;
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin: 3rem 0 1.5rem 0;
    scroll-margin-top: 140px;
    position: relative;
}

.blog-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin: 2.5rem 0 1rem 0;
    scroll-margin-top: 140px;
}

.blog-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 2rem 0 1rem 0;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 1rem 2rem;
    margin: 2rem 0;
    background: var(--light-gray);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.blog-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.blog-content a:hover {
    color: var(--primary-dark);
}

/* Table of Contents */
.table-of-contents {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid #e2e8f0;
}

.toc-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.toc-list {
    list-style: none;
    padding: 0;
}

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

.toc-list a {
    color: var(--gray);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.toc-list a:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
    padding-left: 1rem;
}

.toc-list a.toc-h3 {
    padding-left: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.toc-list a.toc-h3:hover {
    padding-left: 2rem;
}

/* Inline CTA */
.inline-cta {
    background: var(--accent-gradient);
    border-radius: 16px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
    color: var(--white);
}

.inline-cta h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.inline-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.inline-cta .btn-primary {
    background: var(--white);
    color: var(--accent);
    border: none;
    font-weight: 600;
}

.inline-cta .btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    background: var(--white);
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 140px;
    height: fit-content;
}

/* Author Bio */
.author-bio {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent);
}

.author-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.author-title {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.author-description {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.author-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--light-gray);
    border-radius: 8px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.2s ease;
}

.author-social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

/* Sidebar CTA */
.sidebar-cta {
    background: var(--gradient);
    border-radius: 16px;
    padding: 2rem;
    color: var(--white);
    text-align: center;
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-cta h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.sidebar-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-size: 0.95rem;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.cta-benefits li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    opacity: 0.95;
}

.sidebar-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    border: none;
    width: 100%;
    margin-bottom: 1rem;
}

.sidebar-cta .btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.cta-disclaimer {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

/* Related Posts */
.related-posts {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--light-gray);
}

.related-posts h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3rem;
    text-align: center;
}

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

.related-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.related-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 2rem;
}

.related-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.related-excerpt {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-main {
        margin-top: 80px;
        padding: 1rem 0 2rem 0;
    }

    .blog-container {
        padding: 0 16px;
    }

    .blog-header {
        padding: 2rem 0;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .blog-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .blog-excerpt {
        font-size: 1.1rem;
    }

    .social-sharing {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .featured-image {
        height: 250px;
        border-radius: 12px;
    }

    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-sidebar {
        order: -1;
        position: static;
    }

    .table-of-contents {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .blog-content {
        font-size: 1rem;
    }

    .blog-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
        scroll-margin-top: 100px;
    }

    .blog-content h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem 0;
        scroll-margin-top: 100px;
    }

    .inline-cta {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .inline-cta h3 {
        font-size: 1.5rem;
    }

    .author-bio,
    .sidebar-cta {
        padding: 1.5rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-answer {
        max-height: none;
    }

    .faq-item.active .faq-answer {
        max-height: none;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 1.75rem;
    }

    .blog-content h2 {
        font-size: 1.3rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }

    .inline-cta h3 {
        font-size: 1.3rem;
    }

    .related-posts h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }
}