/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --secondary-color: #059669;
    --accent-color: #dc2626;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --border-color: #e5e7eb;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

/* Images */
.content-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 2rem auto;
    display: block;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.feature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

@media (max-width: 768px) {
    .content-image {
        max-width: 100%;
    }
    
    .hero-image {
        max-width: 100%;
        margin-top: 2rem;
    }
}

/* Header */
.header {
    background: var(--background);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Training Comparison Styles */
.training-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.traditional-training {
    background: #fef2f2;
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid var(--accent-color);
}

.projectwill-training {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid var(--secondary-color);
}

.training-comparison h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.training-comparison ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.training-comparison li {
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.cta-box {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: bold;
    margin-top: 0.5rem;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background: #047857;
}

@media (max-width: 768px) {
    .training-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

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

.course-card {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-card.featured {
    border: 3px solid var(--secondary-color);
}

.course-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(45deg);
}

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

.course-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-features {
    list-style: none;
    margin: 1.5rem 0;
}

.course-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    background: var(--background-alt);
    padding: 4rem 0;
}

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

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Sections */
.section {
    padding: 4rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    background: var(--background-alt);
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 10px 5px rgba(220, 38, 38, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .btn {
        display: block;
        text-align: center;
        margin: 0.5rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.95rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.urgency-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.urgency-icon {
    font-size: 1.2rem;
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.urgency-cta {
    background: white;
    color: #dc2626;
    padding: 0.4rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 700;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.urgency-cta:hover {
    background: #fef2f2;
    transform: scale(1.05);
}

/* Sticky Header Improvements */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.header-sticky.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-header {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    display: none;
}

@media (min-width: 769px) {
    .btn-header {
        display: inline-block;
    }
}

/* ROI Calculator */
.roi-calculator {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.15);
    max-width: 900px;
    margin: 3rem auto;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.calculator-title {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.calculator-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.calculator-inputs {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.input-group label::before {
    content: '💰';
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.input-group:nth-child(2) label::before {
    content: '💼';
}

.input-group:nth-child(3) label::before {
    content: '⏰';
}

.input-group input,
.input-group select {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.input-group input:hover,
.input-group select:hover {
    border-color: var(--secondary-color);
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.input-group .input-hint {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.calculator-results {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--secondary-color);
}

.result-highlight {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
    animation: pulse-number 2s ease-in-out infinite;
}

@keyframes pulse-number {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.result-label {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.result-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--background-alt);
}

.breakdown-item {
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.breakdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.15);
}

.breakdown-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.breakdown-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Trust Elements */
.trust-section {
    background: var(--background-alt);
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
}

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

.trust-badge {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 150px;
}

.trust-badge-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.trust-badge-text {
    font-weight: 600;
    color: var(--primary-color);
}

.trust-badge-subtext {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
    border: 1px solid var(--border-color);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1.5fr;
    gap: 0;
    transition: background-color 0.3s ease;
}

.comparison-row:not(:first-child):hover {
    background-color: rgba(30, 64, 175, 0.02);
}

.comparison-cell {
    padding: 1.75rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.comparison-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 2rem 1.5rem;
}

.comparison-header.comparison-highlight {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
    position: relative;
}

.comparison-header.comparison-highlight::before {
    content: '⭐ BEST VALUE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #78350f;
    padding: 0.375rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.4);
}

.comparison-highlight:not(.comparison-header) {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    font-weight: 600;
    color: #047857;
}

.comparison-cell strong {
    font-weight: 700;
    color: var(--text-dark);
}

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

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Book Call Section */
#book-call {
    scroll-margin-top: 100px;
}

.book-call-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 2rem;
    text-align: center;
    margin: 3rem auto;
    box-shadow: 0 30px 60px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
}

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

.book-call-container > * {
    position: relative;
    z-index: 1;
}

.book-call-container h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
}

.book-call-container > p:first-of-type {
    font-size: 1.35rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.call-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: left;
    max-width: 900px;
    margin: 0 auto 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.call-benefits-grid > div {
    font-size: 1.05rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-methods-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-methods-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.trust-statement {
    font-size: 0.95rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .urgency-banner {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }

    .urgency-banner .container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .urgency-cta {
        margin-left: 0;
        width: auto;
        padding: 0.5rem 1.5rem;
    }

    /* ROI Calculator Mobile */
    .roi-calculator {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }

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

    .calculator-title::after {
        width: 40px;
        height: 3px;
    }

    .calculator-inputs {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .input-group label {
        font-size: 1rem;
    }

    .input-group input,
    .input-group select {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .calculator-results {
        padding: 1.5rem;
    }

    .result-highlight {
        font-size: 2.5rem;
    }

    .result-label {
        font-size: 1.1rem;
    }

    .result-breakdown {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }

    .breakdown-item {
        padding: 1.25rem 1rem;
    }

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

    /* Comparison Table Mobile */
    .comparison-table {
        margin: 2rem 0;
        border-radius: 1rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        padding: 1.25rem 1rem;
        border-right: none;
    }

    .comparison-cell:not(:last-child) {
        border-right: none;
    }

    .comparison-header {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }

    .comparison-header.comparison-highlight::before {
        top: -10px;
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }

    .comparison-cell:not(.comparison-header) {
        text-align: center;
        font-size: 0.95rem;
    }

    .comparison-cell:first-child {
        font-weight: 700;
        background: var(--background-alt);
    }

    /* Book Call Section Mobile */
    .book-call-container {
        padding: 2.5rem 1.5rem;
        border-radius: 1.5rem;
        margin: 2rem 1rem;
    }

    .book-call-container h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .book-call-container > p:first-of-type {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .call-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .call-benefits-grid > div {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .contact-methods-box {
        padding: 2rem 1.5rem;
    }

    .contact-methods-box h3 {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-buttons .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.05rem;
        justify-content: center;
    }

    .trust-statement {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .roi-calculator {
        padding: 1.5rem 1rem;
    }

    .calculator-inputs {
        padding: 1.25rem;
    }

    .result-highlight {
        font-size: 2rem;
    }

    .breakdown-value {
        font-size: 1.35rem;
    }

    .book-call-container h2 {
        font-size: 1.75rem;
    }

    .comparison-header {
        font-size: 0.95rem;
        padding: 1.25rem 0.75rem;
    }

    .comparison-cell {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    /* Mobile table improvements */
    table {
        font-size: 0.85rem;
    }

    table th {
        padding: 0.75rem 0.5rem !important;
        font-size: 0.85rem !important;
    }

    table td {
        padding: 0.75rem 0.5rem !important;
        font-size: 0.8rem !important;
    }

    /* Hero stats on mobile */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .stat-number {
        font-size: 1.75rem !important;
    }

    .stat-label {
        font-size: 0.85rem !important;
    }
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }