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

html {
    overflow-x: hidden;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #10b981;
    --light: #f8fafc;
    --gray: #64748b;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

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

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

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

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

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

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

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--secondary);
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--primary);
    margin-left: 16px;
    transition: all 0.3s;
}

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

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-buttons .btn-secondary {
    margin-left: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: calc(100% - 40px);
    box-sizing: border-box;
}

.hero-badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.hero-badge-text strong {
    display: block;
    font-size: 18px;
}

.hero-badge-text span {
    color: var(--gray);
    font-size: 14px;
}

/* Trust Bar */
.trust-bar {
    background: var(--secondary);
    padding: 30px 0;
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-bar span {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    gap: 40px;
    align-items: center;
}

.trust-logos img {
    height: 30px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-card {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--gray);
    font-size: 16px;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
}

.solution .section-header h2 {
    color: var(--white);
}

.solution .section-header p {
    color: rgba(255,255,255,0.7);
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}

.step-arrow {
    position: absolute;
    top: 40px;
    right: -20px;
    font-size: 30px;
    color: var(--primary);
}

/* Creative Process Section - THE SAUCE */
.creative-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

.creative-process::before {
    content: '🔥';
    position: absolute;
    top: 20px;
    right: 5%;
    font-size: 60px;
    opacity: 0.3;
}

.creative-process .section-header h2 {
    color: var(--secondary);
}

.creative-process .section-tag {
    background: #f59e0b;
    color: white;
}

.sauce-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #92400e;
    font-weight: 500;
    padding: 0;
}

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

.process-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    border: 3px solid #f59e0b;
    position: relative;
    transition: all 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.25);
}

.process-card-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: #f59e0b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-card h3 span {
    font-size: 24px;
}

.process-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

.process-card .highlight {
    background: linear-gradient(90deg, #fef3c7 0%, #fde68a 100%);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    color: #92400e;
}

.comparison-section {
    margin-top: 80px;
    background: white;
    border-radius: 24px;
    padding: 50px;
    border: 3px solid #f59e0b;
}

.comparison-section h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--secondary);
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.comparison-col {
    padding: 30px;
}

.comparison-col.them {
    background: #fef2f2;
    border-right: 2px solid #e2e8f0;
}

.comparison-col.us {
    background: #f0fdf4;
}

.comparison-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-col.them h4 {
    color: #dc2626;
}

.comparison-col.us h4 {
    color: #16a34a;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 15px;
}

.comparison-item span {
    flex-shrink: 0;
    font-size: 18px;
}

.comparison-col.them .comparison-item {
    color: #7f1d1d;
}

.comparison-col.us .comparison-item {
    color: #14532d;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.sauce-stat {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    border: 2px solid #f59e0b;
}

.sauce-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
}

.sauce-stat-label {
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

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

.service-stat strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
}

.service-stat span {
    font-size: 12px;
    color: var(--gray);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #e2e8f0;
    position: relative;
    transition: all 0.3s;
}

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

.pricing-card.popular {
    border-color: var(--primary);
    border-width: 3px;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.pricing-card.popular:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(37, 99, 235, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.pricing-header .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.pricing-header .price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray);
}

.pricing-header .price-note {
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 14px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    border-bottom: 1px solid #f1f5f9;
}

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

.pricing-features li::before {
    content: "";
    display: none;
}

.check-icon {
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card .btn-primary {
    width: 100%;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.testimonial-stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.testimonial-info strong {
    display: block;
    font-size: 16px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--gray);
}

/* Case Studies Section */
.case-studies {
    padding: 100px 0;
    background: var(--white);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.case-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.case-header {
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    padding: 30px;
    color: var(--white);
}

.case-header span {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
}

.case-header h3 {
    font-size: 22px;
}

.case-body {
    padding: 30px;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

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

.case-metric strong {
    display: block;
    font-size: 28px;
    color: var(--primary);
    font-weight: 800;
}

.case-metric span {
    font-size: 13px;
    color: var(--gray);
}

.case-quote {
    font-style: italic;
    color: var(--gray);
    font-size: 15px;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--light);
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-item summary {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 17px;
    list-style: none;
}

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

.faq-item summary::marker {
    display: none;
    content: '';
}

.faq-item summary:hover {
    background: var(--light);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 24px 24px;
    color: var(--gray);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    text-align: center;
    color: var(--white);
}

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

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

.final-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    font-size: 20px;
    padding: 20px 40px;
}

.final-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.guarantee {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    opacity: 0.9;
}

.guarantee-icon {
    font-size: 24px;
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: all 0.3s;
}

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

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

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

/* ========== TABLET (max-width: 1024px) ========== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-badge {
        padding: 14px 16px;
        left: 15px;
        bottom: -15px;
    }

    .hero-badge-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .hero-badge-text strong {
        font-size: 16px;
    }

    .hero-badge-text span {
        font-size: 13px;
    }

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

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

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

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

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

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

/* ========== MOBILE (max-width: 768px) ========== */
@media (max-width: 768px) {
    /* Navigation - Mobile */
    nav {
        position: relative;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 10px;
    }

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

    .nav-links a {
        font-size: 16px;
        padding: 10px 0;
    }

    /* Hero - Mobile */
    .hero {
        padding: 100px 0 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 24px;
        justify-content: center;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary {
        display: block;
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
        margin-bottom: 0;
    }

    .btn-secondary {
        display: block;
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
        margin-left: 0;
    }

    .hero-image {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
        overflow: visible;
    }

    .hero-badge {
        position: relative;
        bottom: auto;
        left: auto;
        padding: 12px;
        margin-top: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-badge-content {
        gap: 8px;
    }

    .hero-badge-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 18px;
    }

    .hero-badge-text {
        min-width: 0;
    }

    .hero-badge-text strong {
        font-size: 14px;
    }

    .hero-badge-text span {
        font-size: 11px;
    }

    /* Trust Bar - Mobile */
    .trust-bar {
        padding: 20px 0;
    }

    .trust-bar .container {
        flex-direction: column;
        gap: 15px;
    }

    .trust-bar span {
        font-size: 13px;
    }

    .trust-logos {
        gap: 20px;
    }

    /* Sections - Mobile */
    .problem,
    .solution,
    .creative-process,
    .services,
    .pricing,
    .testimonials,
    .case-studies,
    .faq {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    .section-tag {
        font-size: 13px;
        padding: 6px 14px;
    }

    /* Problem - Mobile */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-card {
        padding: 25px 20px;
    }

    .problem-card h3 {
        font-size: 18px;
    }

    .problem-card p {
        font-size: 14px;
    }

    .problem-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Solution - Mobile */
    .solution-steps {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step h3 {
        font-size: 18px;
    }

    .step p {
        font-size: 14px;
    }

    .step-arrow {
        display: none;
    }

    /* Creative Process - Mobile */
    .creative-process::before {
        font-size: 40px;
    }

    .sauce-intro {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .process-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .process-card-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
        left: 15px;
    }

    .process-card h3 {
        font-size: 17px;
        gap: 8px;
    }

    .process-card h3 span {
        font-size: 20px;
    }

    .process-card p {
        font-size: 14px;
    }

    /* Comparison - Mobile */
    .comparison-section {
        margin-top: 50px;
        padding: 30px 20px;
        border-radius: 16px;
    }

    .comparison-section h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }

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

    .comparison-col {
        padding: 20px;
    }

    .comparison-col.them {
        border-right: none;
        border-bottom: 2px solid #e2e8f0;
    }

    .comparison-col h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .comparison-item {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .comparison-item span {
        font-size: 16px;
    }

    /* Stats Row - Mobile */
    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 40px;
    }

    .sauce-stat {
        padding: 20px;
        border-radius: 12px;
    }

    .sauce-stat-number {
        font-size: 36px;
    }

    .sauce-stat-label {
        font-size: 12px;
    }

    /* Services - Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 16px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-stat strong {
        font-size: 16px;
    }

    /* Pricing - Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .pricing-header {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .pricing-header h3 {
        font-size: 20px;
    }

    .pricing-header .price {
        font-size: 36px;
    }

    .pricing-header .price span {
        font-size: 16px;
    }

    .pricing-header .price-note {
        font-size: 13px;
    }

    .pricing-features {
        margin-bottom: 20px;
    }

    .pricing-features li {
        padding: 10px 0;
        font-size: 14px;
    }

    .popular-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .check-icon {
        font-size: 16px;
        width: 20px;
        height: 20px;
    }

    /* Testimonials - Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-stars {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .testimonial-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .testimonial-author {
        gap: 12px;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .testimonial-info strong {
        font-size: 14px;
    }

    .testimonial-info span {
        font-size: 12px;
    }

    /* Case Studies - Mobile */
    .case-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .case-header {
        padding: 20px;
    }

    .case-header h3 {
        font-size: 18px;
    }

    .case-header span {
        font-size: 12px;
    }

    .case-body {
        padding: 20px;
    }

    .case-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .case-metric {
        padding: 12px 8px;
    }

    .case-metric strong {
        font-size: 22px;
    }

    .case-metric span {
        font-size: 11px;
    }

    .case-quote {
        font-size: 14px;
        padding-left: 15px;
    }

    /* FAQ - Mobile */
    .faq-container {
        max-width: 100%;
    }

    .faq-item summary {
        padding: 18px 16px;
        font-size: 15px;
        gap: 10px;
    }

    .faq-answer {
        padding: 0 16px 18px;
        font-size: 14px;
    }

    .faq-icon {
        font-size: 20px;
        flex-shrink: 0;
    }

    /* Final CTA - Mobile */
    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .final-cta p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .final-cta .btn-primary {
        font-size: 16px;
        padding: 16px 28px;
        display: block;
        width: 100%;
    }

    .guarantee {
        flex-direction: column;
        gap: 6px;
        font-size: 13px;
        margin-top: 20px;
    }

    /* Footer - Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-links h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .social-links {
        justify-content: center;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }
}
