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

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;600;700;800&display=swap');

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.fade-in-up {
    transform: translateY(40px);
}

.animate-on-scroll.fade-in-down {
    transform: translateY(-40px);
}

.animate-on-scroll.fade-in-left {
    transform: translateX(-40px);
}

.animate-on-scroll.fade-in-right {
    transform: translateX(40px);
}

.animate-on-scroll.scale-in {
    transform: scale(0.95);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Staggered Animation Delay */
.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Prevent any element from causing horizontal scroll */
section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    animation: slideDown 0.6s ease-out 0.2s forwards;
    overflow-x: hidden;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

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

.nav-brand h2 {
    color: #4a4a4a;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c2c2c;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #2c2c2c;
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: #2c2c2c;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.4) 0%, rgba(40, 40, 50, 0.4) 100%), 
                url('images/gymgypsydotcom.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

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

.hero-text {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.highlight {
    color: #e0e0e0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.7s backwards;
}

.benefits {
    margin-bottom: 2.5rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    animation: slideInLeft 0.8s ease-out backwards;
    transition: transform 0.3s ease;
}

.benefit:nth-child(1) {
    animation-delay: 0.9s;
}

.benefit:nth-child(2) {
    animation-delay: 1.1s;
}

.benefit:nth-child(3) {
    animation-delay: 1.3s;
}

.benefit:nth-child(4) {
    animation-delay: 1.5s;
}

.benefit:hover {
    transform: translateX(10px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.checkmark {
    font-size: 1.2rem;
}

.primary-button {
    background: #2c2c2c;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1.7s backwards;
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.primary-button:hover::before {
    width: 400px;
    height: 400px;
}

.primary-button:hover {
    background: #1a1a1a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(26, 26, 26, 0.5);
}

.primary-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.3px;
}

.hero-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-wrapper h1 {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-content-wrapper .hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-video-full {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto 3rem auto;
    animation: scaleIn 1s ease-out 0.8s backwards;
}

.hero-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Social Proof */
.social-proof {
    background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), 
                url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2068&q=80');
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.stat:hover h3 {
    transform: scale(1.1);
    color: #1a1a1a;
}

.stat p {
    font-weight: 600;
    color: #666;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 5rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), 
                url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.problem-solution .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.problem h2, .solution h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.problem-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.solution-point {
    margin-bottom: 2rem;
    text-align: center;
}

.x-mark {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.problem-point > span:not(.x-mark) {
    flex: 1;
    min-width: 0;
    line-height: 1.6;
}

.solution-icon {
    font-size: 2rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    line-height: 1;
}

.solution-point > div {
    width: 100%;
}

.solution-point h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.3;
}

.solution-point p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.95)), 
                url('https://images.unsplash.com/photo-1594737626072-90dc274bc2bd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
}

.testimonials h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    color: #333;
    font-weight: 700;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.result {
    background: #2c2c2c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Lead Magnet */
.lead-magnet {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95) 0%, rgba(40, 40, 50, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1605296867304-46d5465a13f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 5rem 0;
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-magnet h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blueprint-includes {
    margin-top: 2rem;
}

.blueprint-includes h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.blueprint-includes ul {
    list-style: none;
}

.blueprint-includes li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.lead-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.5rem;
}

.form input, .form select, .form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form input:focus, .form select:focus, .form textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.form-button {
    width: 100%;
    background: #2c2c2c;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.form-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.form-button:hover::before {
    width: 500px;
    height: 500px;
}

.form-button:hover {
    background: #1a1a1a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
}

/* Consultation Section */
.consultation {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('https://images.unsplash.com/photo-1549060279-7e168fcee0c2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2020&q=80');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    text-align: center;
}

.consultation h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.consultation-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

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

.urgency {
    margin-top: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.95)), 
                url('https://images.unsplash.com/photo-1506629905877-c19484fca7e4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
}

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

.booking-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.booking-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-brand h3 {
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social a i {
    font-size: 1.2rem;
}

.footer-social a:hover {
    color: #e0e0e0;
    transform: translateY(-2px);
}

.footer-social a:hover i {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Disable backdrop filter on mobile for performance */
    .navbar {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 1);
    }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .testimonials h2 {
        font-size: 2.5rem;
    }
    
    .lead-magnet h2 {
        font-size: 2.5rem;
    }
    
    /* Ensure no overflow on tablet */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    section {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
        width: 100%;
    }
    
    .navbar .container {
        padding: 0 15px;
    }
    
    .nav-brand h2 {
        font-size: 1.5rem;
        white-space: nowrap;
    }
    
    .nav-links {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .nav-links a {
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .cta-button {
        padding: 0.4rem 0.9rem;
        font-size: 0.85rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 140px 0 60px;
        background-attachment: scroll !important;
        min-height: 85vh;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        width: 100%;
        padding: 0;
    }
    
    .hero-text {
        width: 100%;
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .benefits {
        width: 100%;
        max-width: 100%;
    }
    
    .benefit {
        font-size: 1rem;
        justify-content: center;
        margin-bottom: 1rem;
        text-align: left;
        padding: 0 5px;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .benefit span:not(.checkmark) {
        flex: 1;
        word-wrap: break-word;
    }
    
    .checkmark {
        font-size: 1.3rem;
        flex-shrink: 0;
        margin-right: 8px;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .primary-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        max-width: 100%;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .primary-button.large {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
        white-space: normal;
    }
    
    .cta-subtext {
        font-size: 0.95rem;
        margin-top: 1rem;
    }
    
    .hero-content-wrapper {
        padding: 0 10px;
        text-align: center;
    }
    
    .hero-video-full {
        width: 100%;
        max-width: 100%;
        margin: 2rem 0 2rem 0;
        padding: 0 5px;
    }
    
    .video-container {
        border-radius: 12px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    }
    
    .hero-cta {
        text-align: center;
        width: 100%;
        padding: 0 15px;
    }
    
    .hero-cta .primary-button {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    /* Social Proof */
    .social-proof {
        padding: 2.5rem 0;
        background-attachment: scroll !important;
        width: 100%;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .stat h3 {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .stat p {
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* Problem/Solution */
    .problem-solution {
        padding: 3rem 0;
        background-attachment: scroll !important;
        width: 100%;
    }
    
    .problem-solution .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        width: 100%;
    }
    
    .problem, .solution {
        width: 100%;
        max-width: 100%;
    }
    
    .problem h2, .solution h2 {
        font-size: 1.85rem;
        text-align: center;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    .problem-points, .solution-points {
        width: 100%;
        max-width: 100%;
    }
    
    .problem-point, .solution-point {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
        word-wrap: break-word;
        max-width: 100%;
        gap: 0.65rem;
        align-items: flex-start;
    }
    
    .problem-point span:not(.x-mark),
    .solution-point > div {
        flex: 1;
        word-wrap: break-word;
        min-width: 0;
    }
    
    .x-mark {
        font-size: 1.3rem;
        flex-shrink: 0;
        margin-top: 0.1rem;
    }
    
    .solution-icon {
        font-size: 1.75rem;
        flex-shrink: 0;
        margin-top: 0.1rem;
        line-height: 1;
    }
    
    .solution-point h4 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        line-height: 1.3;
    }
    
    .solution-point p {
        font-size: 1rem;
        word-wrap: break-word;
        line-height: 1.6;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 3rem 0;
        background-attachment: scroll !important;
        width: 100%;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        letter-spacing: 0.5px;
        word-wrap: break-word;
        padding: 0 15px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .testimonial {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .testimonial-content p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author strong {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .testimonial-author span {
        font-size: 1rem;
    }
    
    .result {
        font-size: 0.9rem;
        padding: 0.35rem 1rem;
        margin-top: 0.75rem;
    }
    
    /* Lead Magnet */
    .lead-magnet {
        padding: 3rem 0;
        background-attachment: scroll;
        width: 100%;
    }
    
    .lead-magnet-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .lead-magnet-text {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .lead-magnet h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
        word-wrap: break-word;
    }
    
    .lead-magnet-text p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .blueprint-includes h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .blueprint-includes li {
        font-size: 1.05rem;
        margin-bottom: 0.875rem;
        line-height: 1.6;
    }
    
    .lead-form {
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .form {
        width: 100%;
        max-width: 100%;
    }
    
    .form h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }
    
    .form input, .form select, .form textarea {
        font-size: 1rem;
        padding: 1rem;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-button {
        font-size: 1.05rem;
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        line-height: 1.4;
    }
    
    .form-disclaimer {
        font-size: 0.9rem;
        margin-top: 1.25rem;
    }
    
    /* Consultation */
    .consultation {
        padding: 3rem 0;
        background-attachment: scroll !important;
        width: 100%;
    }
    
    .consultation-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .consultation h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    .consultation-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    .consultation-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
        width: 100%;
        max-width: 100%;
    }
    
    .consultation-benefit {
        justify-content: flex-start;
        font-size: 1.05rem;
        line-height: 1.6;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .consultation-benefit span:not(.benefit-icon) {
        flex: 1;
        word-wrap: break-word;
    }
    
    .benefit-icon {
        font-size: 1.75rem;
        flex-shrink: 0;
        margin-right: 8px;
    }
    
    .consultation-cta {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .urgency {
        font-size: 1.05rem;
        margin-top: 1.5rem;
        word-wrap: break-word;
    }
    
    /* Booking */
    .booking-section {
        padding: 3rem 0;
        background-attachment: scroll !important;
        width: 100%;
    }
    
    .booking-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .booking-content h2 {
        font-size: 1.85rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .booking-content > p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        word-wrap: break-word;
    }
    
    .booking-form {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-brand, .footer-contact {
        word-wrap: break-word;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    /* Extra protection against horizontal scroll */
    html, body {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        position: relative;
    }
    
    * {
        max-width: 100%;
    }
    
    .container {
        padding: 0 12px !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Navigation */
    .navbar {
        width: 100% !important;
    }
    
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .nav-brand h2 {
        font-size: 1.25rem;
    }
    
    .nav-links {
        justify-content: flex-end;
        gap: 0.6rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 140px 0 40px;
        min-height: 80vh;
        width: 100% !important;
    }
    
    .hero-content {
        padding: 0 5px;
    }
    
    .hero-text {
        padding: 0 5px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        letter-spacing: 0.3px;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .benefit {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 3px;
    }
    
    .primary-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        max-width: calc(100% - 20px);
    }
    
    .primary-button.large {
        padding: 1rem 2rem;
        font-size: 1rem;
        max-width: calc(100% - 20px);
    }
    
    .hero-content-wrapper {
        padding: 0 5px;
        text-align: center;
    }
    
    .hero-video-full {
        width: 100%;
        margin: 1.5rem 0 1.5rem 0;
        padding: 0;
    }
    
    .video-container {
        border-radius: 10px;
    }
    
    .hero-cta {
        padding: 0 10px;
    }
    
    /* Social Proof */
    .stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: 100%;
    }
    
    .stat {
        width: 100%;
        padding: 0 10px;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .stat p {
        font-size: 0.95rem;
        word-wrap: break-word;
    }
    
    /* Sections padding */
    .social-proof,
    .problem-solution,
    .testimonials,
    .lead-magnet,
    .consultation,
    .booking-section {
        padding: 2.5rem 0;
        width: 100% !important;
    }
    
    /* Typography */
    .problem h2, .solution h2 {
        font-size: 1.5rem;
        padding: 0 8px;
    }
    
    .problem-point, .solution-point {
        gap: 0.6rem;
    }
    
    .solution-icon {
        font-size: 1.6rem;
    }
    
    .x-mark {
        font-size: 1.2rem;
    }
    
    .testimonials h2 {
        font-size: 1.7rem;
        padding: 0 12px;
    }
    
    .lead-magnet h2 {
        font-size: 1.7rem;
        padding: 0 8px;
    }
    
    .consultation h2 {
        font-size: 1.6rem;
        padding: 0 8px;
    }
    
    .booking-content h2 {
        font-size: 1.5rem;
        padding: 0 8px;
    }
    
    /* Forms */
    .lead-form, .booking-form {
        padding: 1.5rem 1.25rem;
        border-radius: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form h3 {
        font-size: 1.25rem;
        word-wrap: break-word;
    }
    
    .form input, .form select, .form textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-button {
        padding: 0.95rem;
        font-size: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Testimonials */
    .testimonial {
        padding: 1.5rem 1.25rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        word-wrap: break-word;
    }
    
    .testimonial-author {
        word-wrap: break-word;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    html, body {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .hero-text h1 {
        font-size: 1.65rem;
        line-height: 1.3;
    }
    
    .container {
        padding: 0 10px !important;
        max-width: 100vw !important;
    }
    
    .lead-form, .booking-form {
        padding: 1.25rem 1rem;
        max-width: 100%;
    }
    
    .primary-button {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
        max-width: calc(100% - 20px);
    }
    
    .nav-brand h2 {
        font-size: 1.15rem;
    }
    
    .nav-links a, .cta-button {
        font-size: 0.75rem;
    }
    
    .benefit {
        font-size: 0.9rem;
    }
}
