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

:root {
    --primary-orange: #FF6B35;
    --primary-red: #DC2626;
    --dark-blue: #1E3A5F;
    --charcoal: #2C3E50;
    --light-gray: #F5F7FA;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #6B7280;
    --border-color: #E5E7EB;
    /* Dark theme colors - Havstock style */
    --bg-dark: #000000;
    --bg-dark-alt: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-white: #FFFFFF;
    --text-gray: #888888;
    --text-gray-light: #CCCCCC;
    --border-dark: #333333;
    --accent-white: #FFFFFF;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
    z-index: 1000;
    padding: 12px 0;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    white-space: nowrap;
    background: transparent;
    padding: 0;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin: 0;
    object-fit: contain;
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-phone {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-phone:hover {
    color: var(--text-gray-light);
}

.header-separator {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.phone-link {
    color: var(--bg-dark);
    background-color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.phone-link:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 100px 0 120px;
    background-color: var(--bg-dark);
}

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

.hero-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-gray-light);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-proof {
    display: none;
}

.trust-badge {
    margin-top: 30px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.hero-message-link {
    color: var(--text-gray-light);
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.hero-message-link:hover {
    color: var(--text-white);
}

/* Hero Image - Before/After Mockup - Hidden for now */
.hero-image {
    display: none;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 36px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-primary {
    background-color: var(--accent-white);
    color: var(--bg-dark);
    border: 1px solid var(--accent-white);
}

.cta-primary:hover {
    background-color: transparent;
    color: var(--accent-white);
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-dark);
}

.cta-secondary:hover {
    background-color: var(--bg-card);
    border-color: var(--text-gray);
    transform: translateY(-2px);
}

.cta-large {
    padding: 22px 48px;
    font-size: 1.25rem;
}

/* Social Proof Bar */
.social-proof-bar {
    background-color: var(--bg-dark-alt);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.logos-row {
    display: none;
}

.logo-item {
    font-weight: 600;
    color: var(--text-gray);
    opacity: 0.7;
    font-size: 0.9rem;
}

.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.social-proof-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.social-proof-stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* Section Styles */
section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 60px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Problem Section */
.problem-section {
    background-color: var(--bg-dark);
}

.problem-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-3px);
    border-color: var(--text-gray);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #DC2626;
    font-weight: bold;
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.problem-card p {
    color: var(--text-gray-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Solution Section */
.solution-section {
    background-color: var(--bg-dark-alt);
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution-list {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.solution-list li {
    padding: 15px 0;
    padding-left: 30px;
    font-size: 1.125rem;
    color: var(--text-gray-light);
    position: relative;
}

.solution-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.5rem;
}

/* See What You'll Get Section */
.see-what-section {
    background-color: var(--bg-dark-alt);
    padding: 100px 0;
}

.before-after-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-item {
    position: relative;
}

.comparison-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 30px;
    text-align: center;
}

.mockup-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-screen {
    width: 100%;
    max-width: 500px;
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.before-mockup {
    border-color: rgba(220, 38, 38, 0.3);
}

.after-mockup {
    border-color: rgba(16, 185, 129, 0.3);
}

.mockup-header {
    background-color: var(--bg-dark);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-dark);
}

.mockup-nav {
    display: flex;
    gap: 8px;
}

.nav-item {
    width: 40px;
    height: 8px;
    background-color: var(--text-gray);
    border-radius: 4px;
}

.mockup-cta-button {
    background-color: var(--primary-orange);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.mockup-content {
    padding: 30px;
    min-height: 400px;
}

.mockup-hero-generic {
    height: 120px;
    background: linear-gradient(135deg, var(--bg-dark-alt) 0%, var(--bg-card) 100%);
    border-radius: 8px;
    margin-bottom: 20px;
}

.mockup-hero {
    height: 180px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, var(--bg-card) 100%);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    position: relative;
}

.mockup-headline {
    height: 24px;
    width: 80%;
    background-color: var(--text-white);
    border-radius: 4px;
    margin-bottom: 12px;
}

.mockup-subheadline {
    height: 16px;
    width: 60%;
    background-color: var(--text-gray);
    border-radius: 4px;
    margin-bottom: 20px;
}

.mockup-cta-large {
    height: 40px;
    width: 150px;
    background-color: var(--accent-white);
    border-radius: 6px;
}

.mockup-emergency {
    background-color: rgba(251, 191, 36, 0.2);
    color: #FBBF24;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.mockup-social-proof {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.proof-item {
    flex: 1;
    height: 60px;
    background-color: var(--bg-dark-alt);
    border-radius: 6px;
}

.mockup-section {
    height: 80px;
    background-color: var(--bg-dark-alt);
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Annotations */
.annotation {
    position: absolute;
    z-index: 10;
    pointer-events: none;
}

.annotation-green {
    color: #10B981;
}

.annotation-red {
    color: #DC2626;
}

.annotation-line {
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: currentColor;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.annotation-line-left {
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: currentColor;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.annotation-text {
    position: absolute;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-card);
    border: 2px solid currentColor;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: currentColor;
    white-space: nowrap;
    min-width: 140px;
}

.annotation-line-left + .annotation-text {
    right: auto;
    left: -180px;
}

/* Mobile and Desktop Mockups */
.mockup-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.mockup-view-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 30px;
    text-align: center;
}

.mockup-phone {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-screen {
    width: 280px;
    height: 600px;
    background-color: var(--bg-card);
    border-radius: 24px;
    padding: 20px;
    border: 3px solid var(--border-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.mockup-header-mobile {
    background-color: var(--bg-dark);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.mobile-cta-top {
    background-color: var(--primary-orange);
    color: var(--text-white);
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.mockup-content-mobile {
    padding: 10px;
}

.mobile-hero {
    margin-bottom: 15px;
}

.mobile-headline {
    height: 20px;
    width: 90%;
    background-color: var(--text-white);
    border-radius: 4px;
    margin-bottom: 10px;
}

.mobile-cta-btn {
    height: 44px;
    width: 100%;
    background-color: var(--accent-white);
    border-radius: 8px;
    margin-bottom: 15px;
}

.mobile-emergency {
    background-color: rgba(251, 191, 36, 0.2);
    color: #FBBF24;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 600;
}

.mobile-proof {
    height: 80px;
    background-color: var(--bg-dark-alt);
    border-radius: 8px;
}

.mockup-desktop {
    position: relative;
    display: flex;
    justify-content: center;
}

.desktop-screen {
    width: 100%;
    max-width: 700px;
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.desktop-header {
    background-color: var(--bg-dark);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-dark);
}

.desktop-nav {
    width: 200px;
    height: 12px;
    background-color: var(--text-gray);
    border-radius: 4px;
}

.desktop-cta-header {
    background-color: var(--accent-white);
    color: var(--bg-dark);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.desktop-content {
    padding: 40px;
}

.desktop-hero {
    margin-bottom: 30px;
}

.desktop-headline {
    height: 32px;
    width: 70%;
    background-color: var(--text-white);
    border-radius: 4px;
    margin-bottom: 15px;
}

.desktop-subheadline {
    height: 20px;
    width: 50%;
    background-color: var(--text-gray);
    border-radius: 4px;
    margin-bottom: 25px;
}

.desktop-cta-group {
    display: flex;
    gap: 15px;
}

.desktop-cta-primary {
    height: 48px;
    width: 150px;
    background-color: var(--accent-white);
    border-radius: 6px;
}

.desktop-cta-secondary {
    height: 48px;
    width: 150px;
    background-color: transparent;
    border: 2px solid var(--border-dark);
    border-radius: 6px;
}

.desktop-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-block {
    height: 120px;
    background-color: var(--bg-dark-alt);
    border-radius: 8px;
}

/* Guarantee Section */
.guarantee-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.guarantee-box {
    background-color: var(--bg-card);
    padding: 60px 50px;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border-dark);
    position: relative;
}

.guarantee-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 1.25rem;
    padding: 14px 32px;
    border-radius: 50px;
    margin-bottom: 30px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 25px;
}

.guarantee-text {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-gray-light);
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-subtext {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 600;
    font-style: italic;
}

/* How It Works */
.how-it-works {
    background-color: var(--bg-dark-alt);
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.step {
    text-align: left;
    padding: 40px;
    background-color: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.step p {
    color: var(--text-gray-light);
    font-size: 1rem;
    line-height: 1.7;
}

.steps-summary {
    display: none;
}

/* What's Included */
.whats-included {
    background-color: var(--bg-dark);
}

.included-content {
    max-width: 800px;
    margin: 0 auto;
}

.checklist {
    list-style: none;
    margin-bottom: 40px;
}

.checklist li {
    padding: 15px 0;
    font-size: 1.125rem;
    color: var(--text-gray-light);
    border-bottom: 1px solid var(--border-dark);
}

.checkmark {
    color: #10B981;
    font-weight: bold;
    margin-right: 8px;
}

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

.bold-statement {
    background-color: var(--bg-card);
    color: var(--text-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-dark);
}

.bold-statement p {
    font-size: 1.25rem;
    margin: 0;
}

/* Comparison Table */
.comparison-section {
    background-color: var(--bg-dark-alt);
}

.comparison-table-wrapper {
    overflow-x: auto;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
}

.comparison-table th {
    background-color: var(--bg-card);
    color: var(--text-white);
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--border-dark);
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-gray-light);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--bg-dark-alt);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-dark);
}

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

.faq-item {
    background-color: var(--bg-card);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.faq-answer {
    color: var(--text-gray-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

/* Final CTA */
.final-cta {
    background-color: var(--bg-dark-alt);
    color: var(--text-white);
    text-align: center;
    padding: 120px 0;
    border-top: 1px solid var(--border-dark);
}

.final-cta .section-title {
    color: var(--text-white);
    margin-bottom: 30px;
}

.cta-subheadline {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-gray-light);
}

.urgency-banner {
    background-color: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    padding: 16px 24px;
    margin: 0 auto 40px;
    max-width: 700px;
    text-align: center;
}

.urgency-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: #FBBF24;
    line-height: 1.5;
}

.final-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.trust-line {
    margin-top: 30px;
    font-style: italic;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-gray);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-dark);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-gray);
}


/* Tablet Styles */
@media (min-width: 768px) {
    .hero-headline {
        font-size: 3rem;
    }

    .hero-subheadline {
        font-size: 1.75rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .before-after-mockup {
        flex-direction: row;
        gap: 30px;
    }

    .mockup-placeholder {
        height: 400px;
    }

    .problem-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }

    .before-after-comparison {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .hero-cta-group {
        align-items: center;
    }

    .hero-cta-group .cta-button {
        width: 100%;
    }

    .final-cta-group {
        flex-direction: column;
    }

    .final-cta-group .cta-button {
        width: 100%;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-headline {
        font-size: 4rem;
    }

    .hero {
        padding: 120px 0 140px;
    }

    .hero-content {
        justify-items: center;
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 800px;
    }

    .hero-headline {
        text-align: center;
    }

    .hero-subheadline {
        text-align: center;
    }

    .hero-cta-group {
        align-items: center;
        width: 100%;
    }

    .trust-badge {
        text-align: center;
    }

    section {
        padding: 120px 0;
    }

    .container {
        padding: 0 40px;
    }

    .social-proof-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
    .sticky-header {
        padding: 10px 0;
    }

    .header-content {
        flex-wrap: nowrap;
    }

    .logo img {
        height: 40px;
    }

    .header-cta-group {
        gap: 6px;
    }

    .header-phone {
        font-size: 0.75rem;
    }

    .header-separator {
        font-size: 0.7rem;
    }

    .phone-link {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

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

    .hero-subheadline {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-button {
        width: 100%;
        display: block;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }

    /* Hide annotations on mobile */
    .annotation {
        display: none;
    }

    .before-after-comparison {
        gap: 40px;
    }

    .mockup-showcase {
        gap: 40px;
    }

    .phone-screen {
        width: 240px;
        height: 500px;
    }
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

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