/* 
 * Grooming Blueprint Media - Homepage Styles
 * MVP Homepage with modern design inspired by Get Joy website
 * Using custom color palette: Yellow, Orange, Blue, Light Blue, Dark Blue
 * 
 * Updated: December 17, 2025 - Complete homepage redesign following strategic conversion flow:
 * Hook > Problem > Mechanism > Transformation > Authority > Pitch > Close
 * New sections: Trophies bar, mechanism steps, transformation benefits, authority narrative,
 * pricing justification, two-way guarantee, and inline FAQ. Includes updated pricing cards
 * and special full-width expo package.
 * 
 * Updated: Added scroll-margin-top to calendly-container for proper scroll positioning with sticky navbar
 * Updated: Added .btn-disabled styles for greyed out "Coming Soon" buttons and .newsletter-signup-text styles
 * Updated: Added simplified footer styles (.footer-content-simple, .footer-description, .footer-social, .social-icon) for logo, description, and social media icons
 * Updated: December 30, 2025 - Added .transformation-video-container and .video-wrapper-16-9 for YouTube embed with 16:9 aspect ratio
 * Updated: December 30, 2025 - Fixed mobile hamburger dropdown menu to prevent horizontal scrolling:
 *   - Set .nav-menu to width: 100vw with transform: translateX(-100%) for strict viewport width
 *   - Added overflow-x: hidden to body only (not html) to preserve sticky navbar
 *   - Added box-sizing and max-width constraints to .cta-nav button in mobile menu
 *   - Changed animation from left position to transform for better performance
 * Updated: December 30, 2025 - Fixed expo package badge overflow on mobile:
 *   - Reduced badge size and adjusted positioning for mobile
 *   - Added padding-top to .expo-package and margin-top to title to prevent overlap
 * Updated: January 2, 2026 - Added premium featured sections for Blueprint Audit and Done-For-You Media Arm:
 *   - .blueprint-audit-featured with blue gradient background and yellow accents
 *   - .media-arm-featured with orange-to-yellow gradient and dark blue accents
 *   - Responsive mobile styles for both featured sections
 *   - Value proposition cards and hero pricing displays
 * Updated: January 2, 2026 - Fixed mobile badge formatting issues:
 *   - Added white-space: nowrap to all badges to prevent text wrapping
 *   - Added max-width constraints and text-overflow: ellipsis for long badge text
 *   - Added z-index to badges to ensure proper layering
 *   - Fixed badge positioning on mobile with proper overflow handling
 *   - Improved trophy stat animations with will-change for better mobile performance
 *   - Enhanced mobile animation transitions for smoother section reveals
 * Updated: January 2, 2026 - Fixed animations not playing on mobile:
 *   - Ensured all sections and animated elements start hidden (opacity: 0, translateY(30px))
 *   - Added proper animation triggers that require scrolling into viewport
 *   - Added staggered delays for cards and elements for more dynamic feel
 *   - Improved mobile-specific animation rules to ensure animations actually play
 * Updated: January 5, 2026 - Added lead magnet styles for Story Framework guide promotion:
 *   - .lead-magnet-container with flexbox layout for image + text
 *   - Responsive mobile styles with centered layout and smaller image
 *   - Updated incentive-callout to showcase guide with book mockup image
 * Updated: January 5, 2026 - Fixed lead magnet image display:
 *   - Removed inline max-width style from image element
 *   - Added responsive CSS to make image full-width and centered
 *   - Ensured image doesn't overflow on mobile devices
 *   - Image now scales properly on both desktop and mobile
 * Updated: January 5, 2026 - Fixed mobile image overflow issue:
 *   - Added box-sizing: border-box and max-width: 100% to .lead-magnet-image container
 *   - Added overflow: hidden to prevent image from breaking out of container
 *   - Added object-fit: contain to ensure image scales properly within bounds
 *   - Added max-width: 100% and overflow: hidden to .lead-magnet-container
 * Updated: January 13, 2026 - Added Services page hero styles (.services-hero*) to match site design and prevent unstyled layout
 * Updated: January 14, 2026 - Videographer examples: replaced emoji placeholders with responsive Vimeo embeds (4:5) and moved card titles into the white content area
 * Updated: January 14, 2026 - Homepage hero: added support styles for blurred Vimeo background layer (.home-hero-bg*) with ~25% dark overlay behind the hero copy; tuned blur down for a slightly sharper background
 * Updated: January 14, 2026 - Videographer process section: added blurred Vimeo background layer (.section-vimeo-bg*) with ~25% dark overlay behind the section content
 * Updated: January 14, 2026 - Homepage portfolio: replaced "Photography & Design" placeholders with responsive Instagram Reel embeds (.instagram-grid, .instagram-embed)
 * Updated: January 14, 2026 - Instagram grid: force 4-up layout on desktop and prevent equal-height stretching so each embed dictates its own card height
 * Updated: January 14, 2026 - Homepage credibility: added circular headshot styling for "Who We Are" cards (.credibility-headshot)
 * Updated: January 14, 2026 - Homepage portfolio: Video Production cards now support background images with subtle blur + ~15% dark overlay (.media-placeholder-bg)
 * Updated: January 14, 2026 - Blueprint Audit: redesigned layout with visual journey steps on right side (.blueprint-audit-journey, .journey-steps, .journey-step*), moved benefits to full-width grid below (.blueprint-audit-benefits, .benefits-grid, .benefit-item), added responsive mobile styles with vertical journey and single-column benefits
 * Updated: January 14, 2026 - Fixed header/navigation breakpoint issues:
 *   - Changed hamburger menu activation from 768px to 1024px to prevent nav items from wrapping on tablet
 *   - Added intermediate styling for medium screens (769px-1024px) with reduced gaps and font sizes
 *   - Added z-index to hamburger to ensure proper layering
 *   - Prevents header breaking and wrapping issues on tablet and medium-sized screens
 * Updated: January 14, 2026 - Fixed Blueprint Audit section overflow on tablet:
 *   - Added 950px breakpoint to switch Blueprint Audit to single-column layout earlier
 *   - Added overflow: hidden to inner content containers (not main container) to prevent horizontal overflow
 *   - Changed main container overflow to visible to allow "START HERE" badge to display properly
 *   - Added margin-top: 2rem to main container to provide space for absolutely positioned badge
 *   - Added flex-wrap to journey steps and max-width constraints for better responsiveness
 *   - Prevents section from extending beyond viewport while keeping badge visible on tablet/medium screens
 */

/* CSS Variables for Colors */
:root {
    --yellow: #fbcc0d;
    --orange: #f98605;
    --blue: #2579ed;
    --light-blue: #08d5da;
    --dark-blue: #06104e;
    --white: #ffffff;
    --light-beige: #f5f5f0;
    --light-green: #e8f5e9;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.01em;
}

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

.cta-nav {
    background-color: var(--blue);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.cta-nav:hover {
    background-color: var(--dark-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001; /* Ensure hamburger is above nav menu */
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

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

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

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

/* Prevent nav menu wrapping on medium screens before hamburger activates */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: 1rem; /* Reduce gap between menu items on medium screens */
    }
    
    .nav-menu a {
        font-size: 0.9rem; /* Slightly smaller font to prevent wrapping */
    }
    
    .cta-nav {
        padding: 0.4rem 1.2rem; /* Slightly smaller CTA button */
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--blue) 100%);
    padding: 4rem 0;
    color: var(--white);
}

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

.hero-headline {
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.01em;
    font-family: 'Roboto', sans-serif;
}

.btn-primary {
    background-color: var(--yellow);
    color: var(--dark-blue);
}

.btn-primary:hover {
    background-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

.btn-disabled {
    background-color: #cccccc !important;
    color: #666666 !important;
    border-color: #cccccc !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    pointer-events: none;
}

.btn-disabled:hover {
    background-color: #cccccc !important;
    color: #666666 !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.newsletter-signup-text {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.95rem;
}

.newsletter-signup-text a {
    color: var(--blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.newsletter-signup-text a:hover {
    color: var(--dark-blue);
    text-decoration: none;
}

.trust-indicators {
    margin-top: 2rem;
}

.trust-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.trust-stats {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.stat {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-blue);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.7;
}

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

.pain-points {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pain-point {
    display: flex;
    gap: 1.5rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pain-icon {
    font-size: 2rem;
    color: var(--orange);
    font-weight: bold;
}

.pain-content h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.pain-content p {
    color: var(--text-light);
}

.inaction-cost {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    border-left: 4px solid var(--orange);
}

.cost-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

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

.solution-intro {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.solution-different {
    color: var(--text-light);
    line-height: 1.8;
}

.solution-visual .visual-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--light-beige);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    border: 2px dashed var(--border-color);
}

/* Benefits Section */
.benefits-section {
    background-color: var(--white);
}

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

.benefit-card {
    background-color: var(--light-beige);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.benefit-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-beige);
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-blue);
}

.author-name {
    font-weight: 600;
    color: var(--dark-blue);
}

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

.case-study {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--blue);
    text-align: center;
}

.case-study h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.case-study p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Founder Section */
.founder-section {
    background-color: var(--white);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.founder-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--light-beige);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    border: 2px dashed var(--border-color);
}

.founder-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission {
    font-weight: 600;
    color: var(--dark-blue) !important;
    font-size: 1.1rem;
    padding: 1.5rem;
    background-color: var(--light-beige);
    border-radius: 10px;
    border-left: 4px solid var(--blue);
}

/* Pricing Section */
.pricing-section {
    background-color: var(--light-green);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card.featured {
    border: 3px solid var(--blue);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--yellow);
    color: var(--dark-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 10;
    max-width: calc(100% - 2rem);
    overflow: hidden;
    text-overflow: ellipsis;
}

.pricing-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-subheadline {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.what-you-get {
    font-family: 'Roboto Slab', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

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

.perfect-for {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--light-beige);
    border-radius: 8px;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}

.fine-print {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Expo Package - Special Full Width Card */
.expo-package {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.expo-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--orange);
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 10;
    max-width: calc(100% - 2rem);
    overflow: hidden;
    text-overflow: ellipsis;
}

.expo-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.expo-text h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.expo-text .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.expo-text .pricing-subheadline {
    text-align: left;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.expo-text .perfect-for {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--yellow);
}

.expo-features {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.expo-features .what-you-get {
    color: var(--yellow);
    margin-top: 0;
}

.expo-features .pricing-features {
    margin-bottom: 1.5rem;
}

.expo-features .pricing-features li {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    opacity: 0.9;
}

.expo-features .btn {
    background-color: var(--yellow);
    color: var(--dark-blue);
    border: none;
}

.expo-features .btn:hover {
    background-color: var(--orange);
    transform: translateY(-2px);
}

.disclaimer {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    border-left: 4px solid var(--blue);
    margin-top: 1rem;
}

.disclaimer p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.guarantee {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    border-left: 4px solid var(--yellow);
}

.guarantee p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

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

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--light-beige);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    color: var(--dark-blue);
    text-align: center;
}

.urgency-section .section-title {
    color: var(--dark-blue);
}

.urgency-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-cta {
    margin-top: 2rem;
}

/* Final CTA Section */
.final-cta-section {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
}

.final-cta-section .section-title {
    color: var(--white);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.risk-reversal {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.risk-reversal p {
    opacity: 0.9;
}

.contact-form {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    color: var(--text-dark);
}

.contact-form h3 {
    font-family: 'Roboto Slab', serif;
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.01em;
}

/* Calendly Container */
.calendly-container {
    margin-top: 2rem;
    scroll-margin-top: 100px; /* Account for sticky navbar when scrolling */
}

.calendly-placeholder {
    min-height: 700px;
    background: linear-gradient(135deg, rgba(37, 121, 237, 0.05) 0%, rgba(8, 213, 218, 0.05) 100%);
    border: 3px dashed var(--border-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
}

.calendly-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.calendly-placeholder-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.calendly-placeholder-note {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.calendly-instructions {
    max-width: 600px;
    text-align: left;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.calendly-instructions p {
    margin-bottom: 1rem;
}

.calendly-instructions ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.calendly-instructions li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.calendly-instructions code {
    display: block;
    background-color: var(--light-beige);
    padding: 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: var(--text-dark);
}

.calendly-example {
    font-weight: 600;
    margin-top: 1rem;
}

/* Actual Calendly Widget Styling */
.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
    border-radius: 15px;
    overflow: hidden;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-content-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.social-icon {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    opacity: 1;
    color: var(--yellow);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--yellow);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===================================
   NEW SECTIONS STYLING - REDESIGN 2025
   =================================== */

/* Hero New - Hook Section */
.hero-new {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
    padding: 3rem 0 5rem;
    color: var(--white);
}

.trophies-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.trophy-stat {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform; /* Optimize for mobile performance */
}

.trophy-stat.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Ensure trophy stats animate properly */
.trophy-stat.animated-in,
.trophy-stat.counted {
    opacity: 1;
    transform: translateY(0);
}

.trophy-stat:nth-child(1) {
    animation-delay: 0.1s;
}

.trophy-stat:nth-child(2) {
    animation-delay: 0.3s;
}

.trophy-stat:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trophy-emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.trophy-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--yellow);
    display: inline-block;
    line-height: 1;
    font-family: 'Roboto Slab', serif;
}

.trophy-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
    display: inline-block;
    margin-left: 0.2rem;
}

.trophy-label {
    color: var(--white);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

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

.hero-headline-new {
    font-family: 'Roboto Slab', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subheadline-new {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-visual-container {
    margin: 3rem 0;
}

.hero-video-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.hero-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(37, 121, 237, 0.2) 0%, rgba(8, 213, 218, 0.2) 100%);
    border: 3px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.video-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.video-placeholder-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.video-placeholder-note {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--white);
}

.hero-caption {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.hero-caption strong {
    color: var(--yellow);
    font-weight: 600;
}

.hero-cta-container {
    margin-top: 3rem;
}

.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(251, 204, 13, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 204, 13, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(251, 204, 13, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(251, 204, 13, 0);
    }
}

.btn-pulse:hover {
    animation: none;
}

.hero-subtext {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Problem Section New */
.problem-section-new {
    background-color: var(--light-beige);
    padding: 6rem 0;
}

.section-title-new {
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-intro-large {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.problem-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.problem-visual-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.problem-visual-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.problem-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

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

.truth-bomb {
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(249, 134, 5, 0.3);
}

.truth-text {
    font-size: 1.3rem;
    color: var(--dark-blue);
    font-weight: 500;
    line-height: 1.7;
}

/* Mechanism Section */
.mechanism-section {
    background-color: var(--white);
    padding: 6rem 0;
}

.mechanism-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.mechanism-diagram {
    margin-bottom: 4rem;
}

.mechanism-visual-placeholder {
    width: 100%;
    max-width: 900px;
    height: 300px;
    background-color: var(--light-beige);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 auto;
    border: 3px dashed var(--blue);
}

.placeholder-note {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.7;
}

.mechanism-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    background-color: var(--light-beige);
    padding: 3rem;
    border-radius: 20px;
    align-items: start;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--blue);
    font-family: 'Roboto Slab', serif;
    line-height: 1;
}

.step-content h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.step-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.step-visual-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--white);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    border: 2px dashed var(--border-color);
    font-size: 1.2rem;
}

.mechanism-result {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--blue) 0%, var(--light-blue) 100%);
    border-radius: 20px;
    margin-top: 3rem;
}

.mechanism-tagline {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.6;
}

/* Transformation Section */
.transformation-section {
    background-color: var(--light-green);
    padding: 6rem 0;
}

.transformation-visual-placeholder {
    width: 100%;
    max-width: 900px;
    height: 400px;
    background-color: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    margin: 3rem auto;
    border: 3px dashed var(--border-color);
    font-size: 1.3rem;
}

.transformation-video-container {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
}

.video-wrapper-16-9 {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper-16-9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.transformation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.benefit-card-new {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.benefit-card-new:hover {
    transform: translateY(-5px);
}

.benefit-icon-new {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card-new h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.benefit-card-new p {
    color: var(--text-light);
    line-height: 1.8;
}

.identity-shift-callout {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.identity-shift-callout h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.identity-shift-callout p {
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Authority Section */
.authority-section {
    background-color: var(--white);
    padding: 6rem 0;
}

.founder-story {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

.founder-image-container {
    position: sticky;
    top: 100px;
}

.founder-image-large {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.founder-narrative h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.founder-narrative p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.trophies-list {
    background-color: var(--light-beige);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--blue);
}

.trophies-list h4 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.trophies-list ul {
    list-style: none;
    padding: 0;
}

.trophies-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.mission-statement {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark-blue) !important;
    padding: 2rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    border-radius: 15px;
    margin-top: 2rem;
}

/* Social Proof Section */
.social-proof-section {
    background-color: var(--light-beige);
    padding: 4rem;
    border-radius: 20px;
}

.social-proof-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-blue);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat-item-large {
    text-align: center;
}

.stat-number-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--blue);
    display: block;
    line-height: 1;
}

.stat-label-large {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-card-new {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text-large {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author-new {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-blue);
}

.author-name-large {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.author-title {
    font-size: 0.95rem;
    color: var(--text-light);
}

.case-study-callout {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    border-left: 5px solid var(--blue);
}

.case-study-callout h4 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.case-study-visual-placeholder {
    width: 100%;
    height: 200px;
    background-color: var(--light-beige);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    margin: 1.5rem 0;
    border: 2px dashed var(--border-color);
}

.case-study-callout p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Pricing Justification */
.pricing-justification {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--blue) 100%);
    padding: 2rem 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.justification-text {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
}

/* Close Section */
.close-section {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 6rem 0;
}

.close-section .section-title-new {
    color: var(--white);
}

.close-intro {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    opacity: 0.95;
    line-height: 1.7;
}

.incentive-callout {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 2px solid var(--yellow);
    backdrop-filter: blur(10px);
}

.lead-magnet-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.lead-magnet-image {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.lead-magnet-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: block;
    object-fit: contain;
}

.lead-magnet-text {
    flex: 1;
}

.incentive-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.incentive-callout h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.incentive-callout p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.incentive-callout ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.incentive-callout li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    opacity: 0.9;
}

.incentive-value {
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--yellow);
    margin-top: 1.5rem;
}

.two-way-guarantee {
    margin-bottom: 4rem;
}

.two-way-guarantee h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--yellow);
    text-align: center;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.guarantee-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.guarantee-card h4 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.guarantee-card p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.8;
}

.guarantee-footer {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.cta-buttons-new {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* FAQ Inline */
.faq-inline {
    margin-top: 4rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
}

.faq-inline h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--yellow);
    text-align: center;
}

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

/* Responsive Design - Tablet and Mobile */

/* Tablet breakpoint for Blueprint Audit layout - prevent overflow */
@media (max-width: 950px) {
    .blueprint-audit-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        overflow: hidden; /* Prevent content overflow */
    }
    
    .blueprint-audit-text,
    .blueprint-audit-journey {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .blueprint-audit-journey {
        padding: 2rem;
        overflow: hidden;
    }
    
    .journey-steps {
        flex-direction: column;
        gap: 1.5rem;
        flex-wrap: nowrap;
    }
    
    .journey-step {
        width: 100%;
        max-width: 100%;
    }
    
    .journey-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

/* Header breakpoint at 1024px to prevent menu items from wrapping */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        left: 0;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100vw;
        text-align: center;
        transition: transform 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        margin: 0;
        box-sizing: border-box;
        transform: translateX(-100%);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .cta-nav {
        margin: 0 1rem;
        text-align: center;
        max-width: calc(100% - 2rem);
        box-sizing: border-box;
    }

    .hamburger {
        display: flex;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {

    .hero .container {
        grid-template-columns: 1fr;
    }

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

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

    .solution-content {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        gap: 2rem;
    }

    .founder-content {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .expo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expo-package {
        padding: 2rem 1.5rem;
        padding-top: 3rem;
    }

    .expo-badge {
        top: -12px;
        font-size: 0.75rem;
        padding: 0.4rem 1.5rem;
        white-space: nowrap;
        max-width: calc(100% - 2rem);
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .popular-badge {
        top: -12px;
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        white-space: nowrap;
        max-width: calc(100% - 2rem);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .expo-text h3 {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }

    .expo-text .price {
        font-size: 1.3rem;
    }

    .expo-features {
        padding: 1.5rem;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }

    /* New Sections Responsive */
    .trophies-bar {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    /* Ensure sections start hidden and animate on mobile (hero stays visible) */
    section:not(.hero-new) {
        opacity: 0 !important;
        transform: translateY(30px) !important;
    }
    
    section.animated-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Ensure animated elements start hidden */
    .problem-card,
    .step-card,
    .benefit-card-new,
    .pricing-card,
    .founder-story,
    .blueprint-audit-featured,
    .expo-package,
    .expo-addon {
        opacity: 0 !important;
        transform: translateY(30px) !important;
    }
    
    .problem-card.animated-in,
    .step-card.animated-in,
    .benefit-card-new.animated-in,
    .pricing-card.animated-in,
    .founder-story.animated-in,
    .blueprint-audit-featured.animated-in,
    .expo-package.animated-in,
    .expo-addon.animated-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Ensure trophy stats animate properly on mobile */
    .trophy-stat {
        opacity: 0 !important;
        transform: translateY(30px) !important;
    }
    
    .trophy-stat.counted {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Keep hero section visible */
    .hero-new {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

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

    .hero-subheadline-new {
        font-size: 1.1rem;
    }

    .trophy-emoji {
        font-size: 2.5rem;
    }

    .trophy-number {
        font-size: 2rem;
    }

    .trophy-suffix {
        font-size: 1.5rem;
    }

    .trophy-label {
        font-size: 0.85rem;
    }

    .hero-video-wrapper {
        max-width: 100%;
    }

    .video-placeholder-icon {
        font-size: 3rem;
    }

    .video-placeholder-text {
        font-size: 1.1rem;
    }

    .video-placeholder-note {
        font-size: 0.8rem;
    }

    .hero-caption {
        font-size: 0.9rem;
    }

    .section-title-new {
        font-size: 2rem;
    }

    .section-intro-large {
        font-size: 1.1rem;
    }

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

    .truth-text {
        font-size: 1.1rem;
    }

    .step-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-number {
        font-size: 3rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .founder-story {
        grid-template-columns: 1fr;
    }

    .founder-image-container {
        position: relative;
        top: 0;
    }

    .stats-row {
        gap: 2rem;
    }

    .stat-number-large {
        font-size: 3rem;
    }

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

    .incentive-callout {
        padding: 2rem;
    }

    .lead-magnet-image {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .lead-magnet-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .mechanism-tagline {
        font-size: 1.2rem;
    }

    /* Calendly Responsive */
    .contact-form {
        padding: 1.5rem;
        max-width: 100%;
    }

    .calendly-placeholder {
        padding: 2rem 1rem;
        min-height: 500px;
    }

    .calendly-placeholder-icon {
        font-size: 3rem;
    }

    .calendly-placeholder-text {
        font-size: 1.2rem;
    }

    .calendly-instructions {
        padding: 1.5rem;
    }

    .calendly-instructions code {
        font-size: 0.75rem;
    }

    .calendly-inline-widget {
        height: 600px;
    }

    /* DFY Section - Mobile */
    .dfy-section {
        padding: 2rem 1rem;
    }

    .dfy-section-title {
        font-size: 1.8rem;
    }

    .dfy-section-subtitle {
        font-size: 1rem;
    }

    /* Expo Section - Mobile */
    .expo-section {
        margin-top: 2rem;
    }

    .expo-section-title {
        font-size: 1.8rem;
    }

    .expo-section-subtitle {
        font-size: 1rem;
    }

    .expo-addon {
        padding: 2rem 1rem;
        padding-top: 2.5rem;
    }
    
    .expo-addon-badge {
        top: -12px;
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
        white-space: nowrap;
        max-width: calc(100% - 2rem);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .expo-addon-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 1.5rem;
    }

    .expo-addon-left {
        order: 1;
    }

    .expo-addon-right {
        order: 2;
    }

    .expo-addon-left h4 {
        font-size: 1.4rem;
    }

    .addon-price {
        font-size: 1.2rem;
    }

    .addon-description {
        font-size: 0.95rem;
    }

    .addon-highlights {
        gap: 0.75rem;
    }

    .addon-highlight-item {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }

    .addon-icon {
        font-size: 1.2rem;
    }

    /* Blueprint Audit Featured - Mobile */
    .blueprint-audit-featured {
        padding: 2rem 1rem;
        padding-top: 3rem;
    }

    .blueprint-audit-badge {
        top: -12px;
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        white-space: nowrap;
        max-width: calc(100% - 2rem);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .blueprint-audit-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 2rem;
    }

    .blueprint-audit-text {
        order: 1;
    }

    .blueprint-audit-features,
    .blueprint-audit-journey {
        order: 2;
        padding: 1.5rem;
    }

    .blueprint-audit-text h3 {
        font-size: 1.8rem;
    }

    .price-large {
        font-size: 2.5rem;
    }

    .pricing-features-large li {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }

    /* Blueprint Audit Journey - Mobile */
    .journey-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-step {
        width: 100%;
    }

    .journey-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .journey-step-text strong {
        font-size: 1rem;
    }

    .journey-step-text span {
        font-size: 0.85rem;
    }

    /* Blueprint Audit Benefits - Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item {
        flex-direction: row;
        align-items: flex-start;
    }

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

    .benefit-content strong {
        font-size: 1rem;
    }

    .benefit-content p {
        font-size: 0.9rem;
    }

    /* Media Arm Featured - Mobile */
    .media-arm-featured {
        padding: 2rem 1rem;
        padding-top: 3rem;
    }

    .media-arm-badge {
        top: -12px;
        font-size: 0.75rem;
        padding: 0.4rem 1.5rem;
        white-space: nowrap;
        max-width: calc(100% - 2rem);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .media-arm-header h3 {
        font-size: 1.8rem;
    }

    .price-hero {
        font-size: 2.5rem;
    }

    .price-period-hero {
        font-size: 1.5rem;
    }

    .pricing-subheadline-hero {
        font-size: 1rem;
    }

    .media-arm-body {
        padding: 1.5rem;
    }

    .media-arm-intro {
        font-size: 1rem;
    }

    .media-arm-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-features-hero li {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }

    .media-arm-value-props {
        gap: 0.75rem;
    }

    .value-prop-item {
        padding: 0.75rem 1rem;
    }

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

    .value-text {
        font-size: 0.95rem;
    }

    .btn-hero {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===================================
   PREMIUM FEATURED PACKAGES
   =================================== */

/* Done-For-You Section */
.dfy-section {
    background: linear-gradient(135deg, rgba(37, 121, 237, 0.05) 0%, rgba(8, 213, 218, 0.05) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.dfy-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dfy-section-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.dfy-section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Expo Section */
.expo-section {
    margin-top: 4rem;
}

.expo-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.expo-section-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.expo-section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Expo Add-on - Integrated Design */
.expo-addon {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(249, 134, 5, 0.2);
}

.expo-addon-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-blue);
    color: var(--yellow);
    padding: 0.4rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 10;
    max-width: calc(100% - 2rem);
    overflow: hidden;
    text-overflow: ellipsis;
}

.expo-addon-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
}

.expo-addon-left h4 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.addon-description {
    font-size: 1.05rem;
    color: var(--dark-blue);
    opacity: 0.9;
    line-height: 1.6;
}

.addon-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.addon-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    color: var(--dark-blue);
}

.addon-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Blueprint Audit - Featured Section */
.blueprint-audit-featured {
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    margin-top: 2rem; /* Add top margin to give space for badge */
    position: relative;
    box-shadow: 0 10px 40px rgba(37, 121, 237, 0.3);
    color: var(--white);
    overflow: visible; /* Allow badge to show outside container */
    box-sizing: border-box;
}

.blueprint-audit-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--yellow);
    color: var(--dark-blue);
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 10;
    max-width: calc(100% - 2rem);
    overflow: hidden;
    text-overflow: ellipsis;
}

.blueprint-audit-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Prevent content overflow while keeping badge visible */
}

.blueprint-audit-text h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.price-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1;
}

.price-period {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0.9;
}

.pricing-subheadline-large {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.perfect-for-large {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--yellow);
    font-size: 1rem;
}

.blueprint-audit-features {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.what-you-get-large {
    font-family: 'Roboto Slab', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.pricing-features-large {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features-large li {
    padding: 1rem 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.95;
    line-height: 1.6;
    font-size: 1.05rem;
}

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

.blueprint-audit-features .btn {
    background-color: var(--yellow);
    color: var(--dark-blue);
    border: none;
    width: 100%;
}

.blueprint-audit-features .btn:hover {
    background-color: var(--orange);
    transform: translateY(-2px);
}

/* Blueprint Audit - Journey Section (Right Side) */
.blueprint-audit-journey {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.journey-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.journey-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.journey-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--yellow);
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 10px rgba(251, 204, 13, 0.3);
}

.journey-step-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.journey-step-text strong {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.journey-step-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    line-height: 1.3;
}

.journey-arrow {
    color: var(--yellow);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin: 0 0.25rem;
    margin-bottom: 2rem;
}

/* Blueprint Audit - Benefits Section (Full Width Below) */
.blueprint-audit-benefits {
    grid-column: 1 / -1;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.benefit-content strong {
    display: block;
    color: var(--yellow);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Done-For-You Media Arm - Premium Featured Section */
.media-arm-featured {
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    margin-bottom: 3rem;
    position: relative;
    box-shadow: 0 15px 50px rgba(249, 134, 5, 0.4);
    color: var(--dark-blue);
}

.media-arm-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-blue);
    color: var(--yellow);
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    z-index: 10;
    max-width: calc(100% - 2rem);
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-arm-content {
    max-width: 1000px;
    margin: 0 auto;
}

.media-arm-header {
    text-align: center;
    margin-bottom: 3rem;
}

.media-arm-header h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.price-hero {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1;
    margin-bottom: 1rem;
}

.price-period-hero {
    font-size: 2rem;
    font-weight: 500;
    color: var(--dark-blue);
    opacity: 0.8;
}

.pricing-subheadline-hero {
    font-size: 1.3rem;
    color: var(--dark-blue);
    opacity: 0.85;
    line-height: 1.5;
}

.media-arm-body {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.media-arm-description {
    margin-bottom: 2.5rem;
}

.media-arm-intro {
    font-size: 1.2rem;
    color: var(--dark-blue);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.perfect-for-hero {
    background-color: rgba(6, 16, 78, 0.1);
    color: var(--dark-blue);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--dark-blue);
    font-size: 1.05rem;
}

.media-arm-features-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.what-you-get-hero {
    font-family: 'Roboto Slab', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.pricing-features-hero {
    list-style: none;
    margin-bottom: 0;
}

.pricing-features-hero li {
    padding: 1rem 0;
    color: var(--dark-blue);
    border-bottom: 1px solid rgba(6, 16, 78, 0.2);
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1.05rem;
    font-weight: 500;
}

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

.media-arm-cta-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.media-arm-value-props {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-prop-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 10px;
}

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

.value-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.btn-hero {
    padding: 1.5rem 2.5rem;
    font-size: 1.2rem;
    background-color: var(--dark-blue);
    color: var(--yellow);
    border: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(6, 16, 78, 0.3);
}

.btn-hero:hover {
    background-color: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(6, 16, 78, 0.4);
}

/* ===================================
   NEW HOME PAGE STYLES
   Updated: January 13, 2026 - Added portfolio-forward home page styles
   =================================== */

/* Home Hero */
.home-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
    padding: 5rem 0 6rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    isolation: isolate; /* ensures z-index layering stays contained to this section */
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.home-hero-bg-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0;
    filter: blur(5px);
    will-change: transform, width, height;
}

.home-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* Generic section Vimeo background layer (used outside the homepage hero) */
.section-vimeo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.section-vimeo-bg-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0;
    filter: blur(5px);
    will-change: transform, width, height;
}

.section-vimeo-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-bg {
        display: none;
    }

    .section-vimeo-bg {
        display: none;
    }
}

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

.home-hero-headline {
    font-family: 'Roboto Slab', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Home Trust Bar */
.home-trust-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.home-trust-stat {
    text-align: center;
}

.home-trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--yellow);
    font-family: 'Roboto Slab', serif;
    line-height: 1;
}

.home-trust-label {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.home-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   SERVICES PAGE STYLES
   Updated: January 13, 2026
   =================================== */

.services-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
    padding: 5rem 0 4.5rem;
    color: var(--white);
    text-align: center;
}

.services-hero-headline {
    font-family: 'Roboto Slab', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-hero-subheadline {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

.services-hero-note {
    max-width: 900px;
    margin: 1.5rem auto 0;
    padding: 1rem 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
}

.services-hero-note strong {
    color: var(--yellow);
    font-weight: 700;
}

.services-hero-note a {
    color: var(--yellow);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    font-weight: 700;
}

.services-hero-note a:hover {
    color: var(--white);
}

.services-hero-note a:focus-visible {
    outline: 3px solid rgba(251, 204, 13, 0.65);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
    background-color: var(--light-beige);
}

.section-title-home {
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-intro-home {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.portfolio-category {
    margin-bottom: 5rem;
}

.portfolio-category:last-child {
    margin-bottom: 0;
}

.portfolio-category-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-blue);
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.media-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.media-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(37, 121, 237, 0.1) 0%, rgba(8, 213, 218, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.media-placeholder-bg {
    position: relative;
    overflow: hidden;
    background: #0b0f2e; /* fallback if image missing */
    color: var(--white);
}

.media-placeholder-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.06);
}

.media-placeholder-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15); /* ~15% dark overlay */
}

.media-placeholder-bg > * {
    position: relative;
    z-index: 1;
}

.media-placeholder-bg .media-placeholder-text {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.media-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.media-placeholder-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.media-card-info {
    padding: 1.5rem;
}

.media-card-title {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* Photo Grid */
.photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.photo-card {
    aspect-ratio: 1;
}

.photo-placeholder {
    aspect-ratio: 1;
}

/* Instagram Embed Grid (Homepage Portfolio) */
.instagram-grid {
    /* Prevent the tallest embed from stretching other cards to equal height */
    align-items: start;
}

@media (min-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 600px) and (max-width: 1023px) {
    .instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.instagram-embed {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: start;
}

.instagram-embed:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.instagram-embed .instagram-media {
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
}

.instagram-embed iframe {
    width: 100% !important;
    min-width: 0 !important;
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-tile {
    background-color: var(--light-beige);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-tile.featured-tile {
    background: linear-gradient(135deg, var(--blue) 0%, var(--light-blue) 100%);
    color: var(--white);
}

.service-tile-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--yellow);
    color: var(--dark-blue);
    padding: 0.4rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.service-tile-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-tile-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.featured-tile .service-tile-title {
    color: var(--white);
}

.service-tile-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-tile .service-tile-description {
    color: var(--white);
    opacity: 0.95;
}

.service-tile-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 1rem;
}

.featured-tile .service-tile-price {
    color: var(--yellow);
}

.service-tile-for {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.featured-tile .service-tile-for {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-tile .btn {
    width: 100%;
}

/* Home Credibility */
.home-credibility {
    padding: 6rem 0;
    background-color: var(--light-green);
}

.home-credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.home-credibility-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.credibility-headshot {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
    margin-bottom: 1.25rem;
    border: 3px solid rgba(37, 121, 237, 0.15);
}

.home-credibility-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.credibility-title {
    font-size: 1.1rem;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.credibility-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.home-credibility-footer {
    text-align: center;
}

.home-credibility-footer p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

/* Home FAQ */
.home-faq {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.home-faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.home-faq-item:last-child {
    border-bottom: none;
}

.home-faq-question {
    font-family: 'Roboto Slab', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-blue);
}

.home-faq-answer {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.home-faq-cta {
    text-align: center;
}

.home-faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* ===================================
   DOG GROOMING VIDEOGRAPHER PAGE STYLES
   Updated: January 13, 2026 - Added videographer page styles
   =================================== */

/* Videographer Hero */
.videographer-hero {
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    padding: 5rem 0 6rem;
    color: var(--dark-blue);
}

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

.videographer-hero-headline {
    font-family: 'Roboto Slab', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.videographer-hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Founders Badge */
.founders-badge {
    background-color: rgba(6, 16, 78, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 2px solid var(--dark-blue);
}

.founders-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.founders-badge-price {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Roboto Slab', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.founders-badge-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.videographer-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.videographer-cta-note {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Videographer Sections */
.videographer-examples,
.videographer-package,
.videographer-process,
.videographer-fit,
.videographer-faq,
.videographer-final-cta {
    padding: 6rem 0;
}

.videographer-examples {
    background-color: var(--light-beige);
}

.videographer-package {
    background-color: var(--white);
}

.videographer-process {
    background-color: var(--light-green);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.videographer-process .container {
    position: relative;
    z-index: 2;
}

.videographer-process .section-title-videographer {
    color: var(--white);
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.videographer-fit {
    background-color: var(--white);
}

.videographer-faq {
    background-color: var(--light-beige);
}

.videographer-final-cta {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
    color: var(--white);
    text-align: center;
}

.section-title-videographer {
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-intro-videographer {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Examples Grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.example-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.example-embed {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.example-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@supports not (aspect-ratio: 4 / 5) {
    .example-embed {
        height: 0;
        padding-top: 125%;
    }
}

.example-content {
    padding: 1.5rem;
    text-align: center;
}

.example-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.example-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(249, 134, 5, 0.1) 0%, rgba(251, 204, 13, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.example-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.example-placeholder-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.example-description {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
}

/* Package Details */
.package-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.package-details-col {
    background-color: var(--light-beige);
    padding: 2.5rem;
    border-radius: 15px;
}

.package-details-heading {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.package-details-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-details-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

.package-details-list li:last-child {
    border-bottom: none;
}

.package-details-note {
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    margin-top: 1rem;
}

.package-details-note a {
    color: var(--blue);
    text-decoration: underline;
}

.package-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Process Steps */
.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.process-step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--orange);
    font-family: 'Roboto Slab', serif;
    line-height: 1;
}

.process-step-content h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.process-step-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Fit Grid */
.fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.fit-card {
    padding: 2.5rem;
    border-radius: 15px;
}

.fit-good {
    background-color: var(--light-green);
    border: 3px solid var(--blue);
}

.fit-bad {
    background-color: var(--light-beige);
    border: 3px solid var(--orange);
}

.fit-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.fit-card ul {
    list-style: none;
    padding: 0;
}

.fit-card li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

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

.fit-card a {
    color: var(--blue);
    text-decoration: underline;
}

/* Final CTA */
.final-cta-headline {
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.final-cta-subheadline {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.final-cta-note {
    font-size: 1rem;
    opacity: 0.9;
}

.final-cta-note a {
    color: var(--yellow);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .home-hero-headline,
    .services-hero-headline,
    .videographer-hero-headline {
        font-size: 2rem;
    }

    .home-hero-subheadline,
    .services-hero-subheadline,
    .videographer-hero-subheadline {
        font-size: 1.1rem;
    }

    .home-trust-bar {
        flex-direction: column;
        gap: 2rem;
    }

    .home-trust-number {
        font-size: 2.5rem;
    }

    .section-title-home,
    .section-title-videographer {
        font-size: 2rem;
    }

    .section-intro-home,
    .section-intro-videographer {
        font-size: 1.1rem;
    }

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

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

    .home-credibility-grid {
        grid-template-columns: 1fr;
    }

    .package-details-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-step-number {
        font-size: 3rem;
    }

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

    .founders-badge-price {
        font-size: 2.5rem;
    }

    .home-hero-ctas,
    .videographer-ctas,
    .package-cta-row,
    .final-cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}
