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

:root {
    --primary-color: #01949A;
    --primary-dark: #004369;
    --secondary-color: #DB1F48;
    --accent-sand: #E5DDC8;
    --text-dark: #004369;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

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

/* Skip to content for accessibility */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
}

.skip-to-content:focus {
    top: 10px;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
}

/* Sticky Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.nav-brand {
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.nav-brand .logo {
    height: 60px;
    width: auto;
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

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

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

.nav-menu a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: white !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #004369 0%, #01949A 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cta-subtext {
    margin-top: 12px;
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

/* Trust Badges */
.trust-badges {
    padding: 40px 20px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

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

.badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
}

.badge-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-text strong {
    color: var(--text-dark);
    font-size: 1rem;
}

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

/* Why Social Proof Section */
.why-social-proof {
    padding: 80px 20px;
    background: var(--bg-white);
}

.why-social-proof h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

/* Hero Stats - Top 4 */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.hero-stat {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-text {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.95;
}

.stat-source {
    display: inline-block;
    font-size: 0.875rem;
    color: white;
    opacity: 0.8;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255,255,255,0.5);
    transition: opacity 0.3s ease;
}

.stat-source:hover {
    opacity: 1;
}

/* Supporting Stats Grid */
.supporting-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.support-stat {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-stat:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.support-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.support-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-content strong {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.support-insight {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.why-conclusion {
    text-align: center;
    margin-top: 60px;
}

.why-conclusion p {
    font-size: 1.25rem;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: var(--bg-light);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.benefits-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.7;
    text-align: left;
}

/* Client Videos Section */
.client-videos {
    padding: 80px 20px;
    background: var(--bg-white);
}

.client-videos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.video-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(0, 67, 105, 0.05), rgba(1, 148, 154, 0.05));
    border-radius: 12px;
}

.video-cta h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.video-cta p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.video-cta .cta-button {
    background: var(--primary-color);
    color: white;
}

/* Objections Section */
.objections {
    padding: 80px 20px;
    background: var(--bg-white);
}

.objections h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.objections-list {
    max-width: 900px;
    margin: 0 auto;
}

.objection-item {
    background: white;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.objection-item:hover {
    box-shadow: var(--shadow);
}

.objection-item[open] {
    border-color: var(--primary-color);
}

.objection-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    list-style: none;
    user-select: none;
    transition: background 0.3s ease;
}

.objection-question:hover {
    background: var(--bg-light);
}

.objection-question::-webkit-details-marker {
    display: none;
}

.objection-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.objection-item[open] .objection-icon {
    transform: rotate(45deg);
}

.objection-answer {
    padding: 0 30px 24px 30px;
    animation: slideDown 0.3s ease;
}

.objection-answer p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: var(--bg-white);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.pricing-simple {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(1, 148, 154, 0.05), rgba(0, 67, 105, 0.05));
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.pricing-tagline {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.pricing-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pricing-prefix {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-amount {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-suffix {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.pricing-cta {
    background: var(--primary-color);
    color: white;
    font-size: 1.125rem;
}

.pricing-cta:hover {
    background: var(--primary-dark);
}

.pricing-footer {
    text-align: center;
    color: var(--text-light);
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Options */
.options {
    margin-top: 50px;
    text-align: center;
}

.options h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 500;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.option-simple {
    background: var(--bg-light);
    padding: 12px 16px;
    border-radius: 6px;
    color: var(--text-light);
    font-size: 0.9375rem;
    border: 1px solid var(--border-color);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: var(--bg-white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

/* Process Stats */
.process-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.process-stat {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(1, 148, 154, 0.1), rgba(0, 67, 105, 0.05));
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.process-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.process-stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.process-stat-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: var(--bg-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

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

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.faq-item {
    background: white;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item[open] {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    list-style: none;
    user-select: none;
    transition: background 0.3s ease;
}

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

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 24px 30px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: var(--bg-light);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

/* Form privacy text */
.form-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.field-hint {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 8px 0 12px 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 148, 154, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.cf-turnstile {
    margin-bottom: 24px;
}

.contact-form .cta-button {
    width: 100%;
    cursor: pointer;
    border: none;
    background: var(--primary-color);
    color: white;
}

.contact-form .cta-button:hover {
    background: var(--primary-dark);
}

.form-message {
    max-width: 600px;
    margin: 20px auto;
    padding: 16px;
    border-radius: 6px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

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

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .footer-main {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: start;
        gap: 40px;
    }

    .footer-social {
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-self: start;
    }

    .footer-slogan {
        text-align: right;
        justify-self: end;
    }
}

.footer-slogan {
    font-size: 1.125rem;
    margin: 0;
    color: white;
}

.footer-local {
    margin: 0;
}

.footer-badge {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: white;
    opacity: 0.8;
}

.footer-social {
    margin: 0;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
    opacity: 0.8;
}

.footer-social-link:hover {
    opacity: 1;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-page p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-page ul {
    margin-left: 20px;
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-page ul li {
    margin-bottom: 8px;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* Sticky CTA Mobile */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 40;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-mobile.visible {
    transform: translateY(0);
}

.sticky-cta-button {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.sticky-cta-button:hover {
    background: var(--primary-dark);
}

/* Social Proof Popup */
.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    max-width: 320px;
    z-index: 30;
    opacity: 0;
    transform: translateX(-120%);
    transition: all 0.4s ease;
}

.social-proof-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.social-proof-content {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-proof-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.social-proof-text {
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 50;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

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

    .nav-menu a {
        font-size: 1.125rem;
        display: block;
        width: 100%;
    }

    .nav-cta {
        margin-top: 10px;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .nav-brand .logo {
        height: 45px;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    .why-social-proof h2,
    .benefits h2,
    .pricing h2,
    .how-it-works h2,
    .client-videos h2,
    .objections h2,
    .faq h2,
    .contact h2 {
        font-size: 2rem;
    }

    .pricing-grid,
    .benefits-grid,
    .steps,
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }

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

    .why-social-proof,
    .benefits,
    .pricing,
    .how-it-works,
    .client-videos,
    .objections,
    .faq,
    .contact {
        padding: 60px 20px;
    }
}