/* ========================================
   PHIL DARU - MOBILE-FIRST STYLES
   Black, White, Gold Luxury Aesthetic
   ======================================== */

/* CSS Variables */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --gold: #D4AF37;
    --gold-light: #F4E5C2;
    --gold-dark: #B8941F;
    --gray: #333333;
    --gray-light: #CCCCCC;
    
    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 60px 20px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Prevent all sections from overflowing */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

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

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Landing Header */
.landing-header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    transition: var(--transition);
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 15px;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

/* Mobile Compact Header on Scroll - Only Logo + 2 Buttons */
@media (max-width: 767px) {
    /* === MOBILE SIZING ADJUSTMENTS === */
    
    /* Scale down all buttons on mobile */
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .btn-small {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    /* Hero section - better mobile spacing */
    .hero {
        margin-top: 0;
        padding-top: 180px; /* Use padding instead of margin for better control */
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 1.8rem; /* Smaller title on mobile */
        margin-bottom: 1.5rem;
    }
    
    /* Hero buttons - smaller on mobile */
    .hero-ctas {
        gap: 12px;
    }
    
    .hero-primary-ctas {
        gap: 10px;
    }
    
    .hero-ctas .btn-large {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 320px;
    }
    
    /* Section titles smaller on mobile */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    /* === HEADER SCROLL BEHAVIOR === */
    
    .landing-header.scrolled {
        min-height: 70px;
    }
    
    .landing-header.scrolled .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        gap: 15px;
    }
    
    .landing-header.scrolled .logo {
        order: 1;
    }
    
    .landing-header.scrolled .logo-img {
        height: 40px;
    }
    
    .landing-header.scrolled .header-actions {
        order: 2;
        gap: 15px;
    }
    
    .landing-header.scrolled .header-logo-btn {
        width: 50px;
        height: 50px;
    }
    
    .landing-header.scrolled .header-logo-btn img {
        width: 50px;
        height: 50px;
    }
    
    /* Hide social icons on scroll */
    .landing-header.scrolled .header-social {
        display: none;
    }
}

/* Header Social Icons */
.header-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Header Action Buttons - Circular Logos */
.header-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.header-actions-row-top {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.header-actions-row-bottom {
    display: flex;
    justify-content: center;
    width: 100%;
}

.header-logo-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.header-logo-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.header-logo-btn-wrapper:hover .header-logo-btn {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Text labels - hidden on mobile */
.header-btn-label {
    display: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold);
    text-align: center;
    white-space: nowrap;
}

/* Skool logo - white background */
#headerSkool {
    background: var(--white);
    padding: 0;
}

#headerSkool img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    padding: 8px;
}

/* Nutrition logo - fills entire circle */
#headerNutrition {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

#headerNutrition img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

/* Social Icons (used in header) */
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Hide header social on mobile (FAB handles this) */
.header-social {
    display: none;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    transition: var(--transition);
}



/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-fallback.jpg') center/cover;
    z-index: -1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 20px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.hero-primary-ctas {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.hero-ctas .btn-primary i {
    display: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    color: var(--gold-light);
    transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: var(--black);
}

.about-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-image img {
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--gray-light);
}

.credentials-below {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: 5px;
    transition: var(--transition);
}

.credential-item:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateX(5px);
}

.credential-item i {
    color: var(--gold);
    font-size: 1.8rem;
    min-width: 30px;
}

.credential-item span {
    font-weight: 600;
}

.about-cta {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials */
.testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--black) 0%, var(--gray) 100%);
}

.testimonials-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.testimonial-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.testimonial-content {
    padding: 25px;
    text-align: center;
}

.quote-icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--white);
}

.testimonial-author h4 {
    color: var(--gold);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* Skool Section - Redesigned */
.skool-section {
    padding: var(--section-padding);
    background: var(--black);
}

.skool-header {
    margin-bottom: 60px;
}

.skool-section .section-subtitle {
    text-align: center;
}

.skool-section .section-subtitle strong {
    color: var(--gold);
    font-weight: 800;
}

.skool-grid {
    display: grid;
    gap: 50px;
    align-items: center;
}

/* Left Side - Media */
.skool-media {
    position: relative;
}

.skool-platform-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 15px 25px;
    margin-bottom: 30px;
    width: fit-content;
}

.platform-logo {
    height: 30px;
    width: auto;
}

.platform-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
}

.skool-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.skool-hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.skool-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px;
}

.skool-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    background: var(--gold);
    color: var(--black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Side - Features */
.skool-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.features-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.feature-list-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border-left: 3px solid var(--gold);
    transition: var(--transition);
}

.feature-list-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.feature-icon-small {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-text-small h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-text-small p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.skool-ctas {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.dual-ctas {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.dual-ctas .btn {
    min-width: 200px;
}

/* Nutrition Section */
.nutrition-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--black) 0%, var(--gray) 100%);
}

.nutrition-section .section-subtitle {
    text-align: center;
}

/* Single Product Layout */
.nutrition-single {
    margin: 40px 0;
}

.product-card-large {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.product-card-large:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.product-image-large {
    height: 300px;
    overflow: hidden;
}

.product-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content-large {
    padding: 40px 30px;
}

.product-content-large h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-tagline {
    color: var(--gold-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-description {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    color: var(--white);
    font-weight: 500;
}

.product-features i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Newsletter Bar (Slim - Same as Stats) */
.newsletter-bar {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding: 40px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.newsletter-bar-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
}

.newsletter-text p {
    font-size: 0.95rem;
    color: var(--gray-light);
}

.newsletter-bar-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.newsletter-bar-form input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.newsletter-bar-form input[type="email"]:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.6);
}

.newsletter-bar-form input[type="email"]::placeholder {
    color: var(--gray-light);
}

.newsletter-bar-form button {
    white-space: nowrap;
    padding: 12px 25px;
}

.newsletter-bar-form .btn-text {
    display: none;
}

.newsletter-bar-form button i {
    font-size: 1.2rem;
}

/* ========================================
   YOUTUBE VIDEO SECTION
   ======================================== */

.youtube-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

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

.youtube-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.youtube-header .badge {
    margin-bottom: 25px;
}

.youtube-player-wrapper {
    max-width: 1000px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.youtube-player {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 0, 0, 0.3);
    background: #000;
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

/* YouTube thumbnail link (avoids embed Error 153) */
.youtube-player-link {
    display: block;
    text-decoration: none;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.youtube-player-link:hover {
    transform: scale(1.02);
    box-shadow: 0 14px 60px rgba(0, 0, 0, 0.6);
}

.youtube-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.youtube-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    padding-left: 6px;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
    transition: background 0.2s ease, transform 0.2s ease;
}

.youtube-player-link:hover .youtube-play-btn {
    background: #cc0000;
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.youtube-cta .btn {
    background: #FF0000;
    border-color: #FF0000;
    color: #FFFFFF;
}

.youtube-cta .btn:hover {
    background: #CC0000;
    border-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

/* YouTube Mobile */
@media (max-width: 768px) {
    .youtube-section {
        padding: 60px 0;
    }
    
    .youtube-header {
        margin-bottom: 40px;
    }
    
    .youtube-player {
        border-radius: 15px;
    }
    
    .youtube-player iframe {
        border-radius: 13px;
    }
    
    .youtube-play-btn {
        width: 64px;
        height: 64px;
        font-size: 22px;
        padding-left: 4px;
    }
}

/* ========================================
   PODCAST SECTION
   ======================================== */

.podcast-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.podcast-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.podcast-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.podcast-header {
    text-align: center;
    margin-bottom: 40px;
}

.podcast-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.podcast-badge i {
    font-size: 1.2rem;
}

.podcast-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    max-width: 700px;
    margin: 20px auto 0;
}

.podcast-player-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.podcast-player-wrapper:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.podcast-player {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.podcast-player iframe {
    display: block;
    border-radius: 12px;
}

.podcast-cta {
    text-align: center;
}

.podcast-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 1rem;
}

/* Podcast Mobile Styles */
@media (max-width: 768px) {
    .podcast-section {
        padding: 60px 0;
    }
    
    .podcast-header {
        margin-bottom: 30px;
    }
    
    .podcast-description {
        font-size: 1rem;
    }
    
    .podcast-player-wrapper {
        padding: 20px;
    }
    
    .podcast-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
}

/* ========================================
   LAB PACKAGE PROMO SECTION
   ======================================== */

.lab-promo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.lab-promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.lab-promo-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.lab-promo-content .badge {
    margin-bottom: 25px;
}

.lab-promo-content .section-title {
    margin-bottom: 20px;
}

.lab-promo-content .lead {
    font-size: 1.25rem;
    color: #D4AF37;
    margin-bottom: 20px;
    font-weight: 600;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lab-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lab-promo-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.lab-feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.lab-feature-item:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.lab-feature-item i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.lab-feature-item h4 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-weight: 700;
}

.lab-feature-item p {
    font-size: 0.9rem;
    color: #CCCCCC;
    margin: 0;
}

.lab-promo-ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Lab Promo Mobile */
@media (max-width: 1024px) {
    .lab-promo-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .lab-promo-section {
        padding: 60px 0;
    }
    
    .lab-promo-content .lead {
        font-size: 1.1rem;
    }
    
    .lab-description {
        font-size: 1rem;
    }
    
    .lab-promo-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .lab-feature-item {
        padding: 25px 20px;
    }
    
    .lab-feature-item i {
        font-size: 2rem;
    }
    
    .lab-promo-ctas {
        flex-direction: column;
    }
    
    .lab-promo-ctas .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   CONSULTING SECTION
   ======================================== */

.consulting-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.consulting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.consulting-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
    color: var(--black);
}

.consulting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.consulting-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.consulting-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.consulting-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--black);
    transition: var(--transition);
}

.consulting-card:hover .consulting-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.consulting-card p {
    color: var(--gray-light);
    line-height: 1.6;
}

.consulting-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.consulting-note {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 25px;
    font-style: italic;
}

.btn-consulting-header {
    background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    width: 100%;
    max-width: 280px;
}

.btn-consulting-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

/* Consulting Section Mobile */
@media (max-width: 768px) {
    .consulting-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .consulting-card {
        padding: 30px 20px;
    }
    
    .consulting-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .btn-consulting-header {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Ruck Section */
.ruck-section {
    padding: var(--section-padding);
    background: var(--black);
}

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

.ruck-content p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

/* Footer */
/* Footer - Redesigned */
.footer {
    background: linear-gradient(180deg, var(--gray) 0%, var(--black) 100%);
    padding: 80px 20px 30px;
}

.footer-brand {
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin: 0 auto 20px;
    background: transparent;
    mix-blend-mode: screen;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
}

.footer-follow {
    text-align: center;
    margin-bottom: 50px;
}

.footer-follow h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 800;
}

.footer-social-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.footer-social-large a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.footer-social-large a:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-social-large a i {
    font-size: 1.8rem;
    color: var(--gold);
}

.footer-social-large a span {
    font-family: var(--font-heading);
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    color: var(--gray-light);
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-legal .separator {
    color: var(--gray-light);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--gray);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 2px solid var(--gold);
    overflow-x: hidden;
    max-width: calc(100vw - 40px);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
}

.modal-content h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

.form-placeholder {
    margin-top: 20px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 2px dashed var(--gold);
}

/* Mobile FAB */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 1500;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    align-items: flex-end;
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fab-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.fab-logo {
    padding: 0;
    background: transparent;
}

.fab-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Special styling for logo FABs to match circle perfectly */
#fabSkool {
    padding: 0;
    background: var(--white);
}

#fabSkool img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    padding: 8px;
}

/* Nutrition logo fills entire circle */
#fabNutrition {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

#fabNutrition img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.fab-main {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.fab-sub {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

.fab-sub.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* FAB Social Buttons */
.fab-social {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 0;
}

.fab-social i {
    color: var(--black);
    font-size: 1.5rem;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray);
    padding: 20px;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid var(--gold);
}

.cookie-notice.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.cookie-content p {
    flex: 1;
    min-width: 200px;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */
.about-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray) 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.full-bio {
    padding: var(--section-padding);
    background: var(--black);
}

.bio-grid {
    display: grid;
    gap: 40px;
    align-items: start;
}

.bio-image img {
    border-radius: 10px;
    width: 100%;
}

.bio-content h2 {
    color: var(--gold);
    margin-bottom: 20px;
}

.bio-content p {
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.accomplishments {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--black) 0%, var(--gray) 100%);
}

.accomplishments-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.accomplishment-card {
    background: rgba(212, 175, 55, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.accomplishment-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.accomplishment-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.accomplishment-card h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.accomplishment-card p {
    color: var(--gray-light);
}

.philosophy {
    padding: var(--section-padding);
    background: var(--black);
}

.philosophy-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    background: rgba(212, 175, 55, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--gold);
    text-align: center;
}

.philosophy-card h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.philosophy-card p {
    color: var(--gray-light);
    line-height: 1.8;
}

.about-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--black) 0%, var(--gray) 100%);
}

/* ========================================
   COMMUNITY PAGE STYLES
   ======================================== */
.community-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray) 100%);
}

.community-features {
    padding: var(--section-padding);
    background: var(--black);
}

.features-detailed {
    display: grid;
    gap: 60px;
    margin: 60px 0;
}

.feature-detailed {
    display: grid;
    gap: 30px;
    align-items: center;
}

.feature-icon-large {
    font-size: 4rem;
    color: var(--gold);
    text-align: center;
}

.feature-text h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.feature-text p {
    color: var(--gray-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 12px 0;
    color: var(--white);
}

.feature-list i {
    color: var(--gold);
    font-size: 1.2rem;
}

.who-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--black) 0%, var(--gray) 100%);
}

.who-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.who-card {
    background: rgba(212, 175, 55, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.who-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.who-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.who-card h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.who-card p {
    color: var(--gray-light);
}

.final-cta {
    padding: var(--section-padding);
    background: var(--black);
}

.cta-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 15px;
}

.cta-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 30px 0;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}



/* ========================================
   DESKTOP STYLES (768px+)
   ======================================== */
@media (min-width: 768px) {
    /* Landing Header Desktop - Larger Size */
    .landing-header {
        min-height: 140px;
        padding: 20px 0;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .logo-img {
        height: 80px;
    }
    
    /* Show header social icons on desktop */
    .header-social {
        display: flex;
    }
    
    /* Show text labels on desktop */
    .header-btn-label {
        display: block;
    }
    
    /* Adjust header actions layout for desktop */
    .header-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    
    .header-actions-row-top {
        display: flex;
        gap: 24px;
    }
    
    .header-actions-row-bottom {
        display: flex;
        width: auto;
    }
    
    /* Hero */
    .hero {
        margin-top: 140px; /* Account for larger fixed header on desktop */
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .hero-primary-ctas {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }
    
    .hero-ctas .btn-primary i {
        display: inline;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content {
        text-align: left;
    }
    
    .credentials-below {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .inline-form .form-group {
        max-width: 500px;
        margin: 0 auto 15px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Skool Section Desktop */
    .skool-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .skool-ctas {
        flex-direction: row;
    }
    
    /* Nutrition Single Product Desktop */
    .product-card-large {
        flex-direction: row;
        max-width: 1000px;
    }
    
    .product-image-large {
        flex: 0 0 45%;
        height: auto;
    }
    
    .product-content-large {
        flex: 1;
        padding: 50px 40px;
    }
    
    /* Dual CTAs Desktop */
    .dual-ctas {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Footer Desktop */
    .footer-social-large {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
    
    /* Newsletter Bar Desktop */
    .newsletter-bar-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .newsletter-text {
        flex: 1;
    }
    
    .newsletter-bar-form {
        flex: 0 0 400px;
    }
    
    .newsletter-bar-form .btn-text {
        display: inline;
    }
    
    /* Hide Mobile FAB on Desktop */
    .fab-container {
        display: none;
    }
    
    /* Section Padding */
    :root {
        --section-padding: 80px 20px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }
    
    .hero-title {
        font-size: 5.5rem;
    }
    
    /* Community Page Desktop */
    .feature-detailed {
        grid-template-columns: 150px 1fr;
        text-align: left;
    }
    
    .feature-icon-large {
        text-align: left;
    }
    
    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About Page Desktop */
    .bio-grid {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .accomplishments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   MOBILE HORIZONTAL SCROLL FIX
   ======================================== */
/* Prevent any element from causing horizontal scroll */
* {
    max-width: 100vw;
}

/* Fix for iframes (GHL forms, embeds, etc.) */
iframe {
    max-width: 100% !important;
    overflow-x: hidden;
}

/* Fix for form elements */
form {
    max-width: 100%;
    overflow-x: hidden;
}

input, textarea, select {
    max-width: 100%;
    box-sizing: border-box;
}

/* Fix for any embedded content */
.form-placeholder,
[class*="ghl"],
[class*="form"],
[id*="ghl"],
[id*="form"] {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* Ensure no negative margins cause overflow */
.row, .column {
    margin-left: 0;
    margin-right: 0;
}