/* Memoria Films - Main Stylesheet */
/* Modular CSS Architecture - Import all components */

/* Google Fonts loaded via <link> tag in HTML for reliable font-display:swap */

/* Base Styles */
@import url('base/reset.css?v=2');

/* Components */
@import url('components/navigation.css?v=2');
@import url('components/hero.css?v=3');
@import url('components/buttons.css?v=2');
@import url('components/forms.css?v=2');
@import url('components/modals.css?v=2');
@import url('components/cookie-consent.css?v=2');

/* Remaining Styles from Original CSS */
/* These will be further modularized in future iterations */

/* Quote Section */
.quote-section {
    background: #2a2a2a;
    padding: 80px 0;
    text-align: center;
}

.main-quote {
    font-family: 'DM Serif Text', serif;
    font-size: 2.5rem;
    font-style: normal;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 400;
}

.quote-emphasis {
    border-bottom: 3px solid #2a7d6e;
    padding-bottom: 0px;
}

/* Research Carousel */
.research-carousel-container {
    margin: 2rem 0 4rem 0;
    position: relative;
}

.research-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Desktop Controls - Hidden as requested */
.desktop-controls {
    display: none;
}

/* Mobile Controls */
.research-navigation-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.research-carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    border: none;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0 !important;
    line-height: 1;
    overflow: hidden;
    text-align: center;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    flex-shrink: 0;
}

.research-carousel-btn:hover {
    background: #2a7d6e;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.research-slides-wrapper {
    overflow: visible;
    border-radius: 16px;
}

.research-slides {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

/* Mobile microanimation for card transitions */
@media (max-width: 768px) {
    .research-card {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: scale(0.95);
        opacity: 0.7;
    }
    
    .research-card.active {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: scale(1);
        opacity: 1;
    }
    
    .research-slides {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

.research-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    transition: all 0.3s ease;
    transform: scale(0.95);
    opacity: 0.75;
}

/* Default border for all cards */
.research-card .impact-pillar {
    border-top-color: #6c757d;
}

/* Active card styling - different for desktop vs mobile */
@media (min-width: 769px) {
    /* Desktop: Only center card gets teal border and full opacity */
    .research-card.active.center-card {
        transform: scale(1);
        opacity: 1;
    }
    
    .research-card.active.center-card .impact-pillar {
        border-top-color: #2a7d6e;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    /* Side cards remain at 75% opacity with gray borders */
    .research-card.active:not(.center-card) {
        opacity: 0.75;
        transform: scale(0.95);
    }
}

@media (max-width: 768px) {
    /* Mobile: Active card gets full opacity and scale */
    .research-card.active {
        transform: scale(1);
        opacity: 1;
    }
    
    /* Mobile: No special border styling needed since only one card is visible */
    .research-card.active .impact-pillar {
        border-top-color: #6c757d;
    }
}

.research-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 10px;
}

.research-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.research-indicator.active {
    background: #2a7d6e;
    transform: scale(1.2);
}

.research-indicator:hover {
    background: #2a7d6e;
    transform: scale(1.1);
}

/* Impact Pillars (now used within carousel) */
.impact-pillar {
    background: rgba(248, 249, 250, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border-top: 4px solid #6c757d;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.impact-pillar:hover {
    border-top-color: #2a7d6e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: #2a7d6e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.pillar-title {
    font-family: 'DM Serif Text', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.pillar-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #6c757d;
    font-style: italic;
}

.pillar-content {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    align-items: start;
}

.process-step {
    background: rgba(248, 249, 250, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border-top: 4px solid #6c757d;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.process-step:hover {
    border-top-color: #2a7d6e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #2a7d6e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-family: 'DM Serif Text', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.step-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #6c757d;
    font-style: italic;
}

.step-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Vertical Process Carousel */
.vertical-process-carousel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 1.5rem 0;
}

.process-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    margin-bottom: 1rem;
}

.process-nav-btn {
    background: #f3f4f6 !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 0.9rem 0.9rem !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    min-width: 0 !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    color: #1a1a1a !important;
    margin: 0.75rem 0rem 0rem 0rem !important;
}

.process-nav-btn:hover {
    background: #2a7d6e !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

.process-nav-btn.active {
    background: #2a7d6e !important;
    color: #ffffff !important;
}

.process-nav-btn.active .nav-step-number,
.process-nav-btn.active .nav-step-title {
    color: #ffffff !important;
}

.nav-step-number {
    display: inline-block;
    font-family: 'DM Serif Text', serif;
    font-size: 0.95rem;
    font-weight: 100;
    color: #1a1a1a !important;
    margin-bottom: 0.3rem;
    padding: 2px 8px;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 6px;
}

.nav-step-title {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #1a1a1a !important;
    font-weight: 400;
    line-height: 1.5;
}

/* Slightly emphasize the number box when active */
.process-nav-btn.active .nav-step-number {
    border-color: rgba(26, 26, 26, 0.35);
}

.process-content {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-height: 700px;
}

.process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    min-height: 700px;
}

.process-slide.active {
    opacity: 1;
}

.process-slide-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 2rem;
}

.process-slide .step-icon {
    width: 80px;
    height: 80px;
    background: #2a7d6e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
}

.vertical-process-carousel .process-slide-content .process-slide-title {
    font-family: 'DM Serif Text', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 1rem;
}

.process-slide-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: white;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 1rem auto 0;
}

/* Tighter spacing specifically between Process and Pricing sections */
#our-process.section { padding-bottom: 4rem; }
#pricing.section { padding-top: 4rem; }
#our-process .section-header,
#pricing .section-header { margin-bottom: 0.75rem; }

@media (max-width: 768px) {
  #our-process.section { padding-bottom: 12px; }
  #pricing.section { padding-top: 12px; }
}

.pricing-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(26, 26, 26, 0.08);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.12);
    border-color: rgba(42, 125, 110, 0.3);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
}

.price::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2a7d6e;
    border-radius: 2px;
}

.pricing-card p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Package Includes */
.package-includes {
    margin-top: 1.5rem;
    text-align: left;
}

.package-includes h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.package-includes ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.package-includes li {
    font-size: 0.9rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.4;
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2a7d6e;
    font-weight: bold;
    font-size: 1rem;
}

/* Film Package (Most Popular) */
.film-package {
    border: 2px solid #2a7d6e;
    position: relative;
    background: linear-gradient(135deg, rgba(42, 125, 110, 0.05) 0%, rgba(42, 125, 110, 0.02) 100%);
}

.film-package::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2a7d6e;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-custom {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
}

.price-custom::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2a7d6e;
    border-radius: 2px;
}

/* Pricing Info Cards */
.pricing-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-info-card {
    background: rgba(248, 249, 250, 0.8);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border-top: 3px solid #6c757d;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.05);
}

.pricing-info-card:hover {
    border-top-color: #2a7d6e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-info-icon {
    width: 50px;
    height: 50px;
    background: #2a7d6e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.pricing-info-card:hover .pricing-info-icon {
    transform: scale(1.1);
}

.pricing-info-card h4 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pricing-info-card p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

/* BTS Carousel */
.bts-carousel-container {
    margin-top: 4rem;
}

.bts-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.bts-slides {
    position: relative;
    height: calc(70vw * 9 / 16);
    max-height: 500px;
    overflow: hidden;
    border-radius: 16px;
}

.bts-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    border-radius: 16px;
    overflow: hidden;
}

.bts-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.bts-slide .bts-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bts-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.bts-carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
    line-height: 1;
    font-weight: bold;
}

.bts-carousel-btn:hover {
    background: #2a7d6e;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bts-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.bts-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bts-indicator.active {
    background: #2a7d6e;
    transform: scale(1.2);
}

.bts-indicator:hover {
    background: #2a7d6e;
    transform: scale(1.1);
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.testimonials-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.client-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .client-photo {
    transform: scale(1.05);
}

.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    padding: 3rem 2rem 2rem;
    text-align: center;
    backdrop-filter: none;
}

.testimonial-overlay::before {
    content: '"';
    font-size: 7rem;
    color: #2a7d6e;
    font-family: 'DM Serif Text', serif;
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.testimonial-overlay .testimonial-quote {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #ffffff;
    margin-top: 1rem;
    text-align: center;
}

.testimonial-overlay .testimonial-author {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #2a7d6e;
    text-align: center;
}

.testimonials-closing {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    margin-top: 4rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

/* Video Background Styles */
.section-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    z-index: -1;
}

.testimonials-gallery .video-overlay {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}

.process-showcase,
.testimonials-gallery {
    position: relative;
    overflow: hidden;
}

.process-showcase .section-title,
.process-showcase .section-description,
.process-showcase .section-content,
.testimonials-gallery .section-title,
.testimonials-gallery .section-description {
    color: #ffffff !important;
    position: relative;
    z-index: 2;
}

/* Widen testimonials section description to avoid awkward wrapping */
.testimonials-gallery .section-description {
    max-width: 720px;
}

/* Ensure all headers in video background sections are white */
.testimonials-gallery h1,
.testimonials-gallery h2,
.testimonials-gallery h3,
.testimonials-gallery h4,
.testimonials-gallery h5,
.testimonials-gallery h6,
.process-showcase h1,
.process-showcase h2,
.process-showcase h3,
.process-showcase h4,
.process-showcase h5,
.process-showcase h6 {
    color: #ffffff !important;
}

/* See the Difference Section */
.see-difference-section-inline {
    margin: 5rem 0 4rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 0;
}

.difference-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.difference-video-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.difference-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(26, 26, 26, 0.2);
}

.difference-video-container .section-header {
    padding-top: 3rem !important;
    padding-bottom: 0 !important;
    margin-bottom: 1rem !important;
}

.difference-video-container .section-title {
    margin-bottom: 0.5rem !important;
}

.difference-toggle-header {
    padding: 2rem 4rem 1.5rem 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}

.difference-toggle-switch {
    display: flex;
    justify-content: center;
    align-items: center;
}

.difference-toggle-input {
    display: none;
}

.difference-toggle-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 2.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
}

.difference-toggle-text-left,
.difference-toggle-text-right {
    color: #4a4a4a;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
}

.difference-toggle-input:checked + .difference-toggle-label .difference-toggle-text-left {
    color: #6c757d;
    font-weight: 500;
}

.difference-toggle-input:checked + .difference-toggle-label .difference-toggle-text-right {
    color: #1a1a1a;
    font-weight: 700;
}

.difference-toggle-input:not(:checked) + .difference-toggle-label .difference-toggle-text-left {
    color: #1a1a1a;
    font-weight: 700;
}

.difference-toggle-input:not(:checked) + .difference-toggle-label .difference-toggle-text-right {
    color: #6c757d;
    font-weight: 500;
}

.difference-toggle-slider {
    position: relative;
    width: 60px;
    height: 30px;
    background: #6c757d;
    border-radius: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-block;
    vertical-align: middle;
}

.difference-toggle-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.difference-toggle-input:checked + .difference-toggle-label .difference-toggle-slider {
    background: #2a7d6e;
}

.difference-toggle-input:checked + .difference-toggle-label .difference-toggle-slider::before {
    transform: translateX(30px);
}

.difference-toggle-label:hover .difference-toggle-slider {
    background: #5a6268;
    transform: scale(1.05);
}

.difference-toggle-input:checked + .difference-toggle-label:hover .difference-toggle-slider {
    background: #236b5e;
    transform: scale(1.05);
}

.difference-video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background: #000000;
}

.difference-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: opacity 0.3s ease;
}

.difference-video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.difference-video-embed.loading .difference-video-loading {
    opacity: 1;
}

.difference-video-embed.loading iframe {
    opacity: 0;
}

.difference-description {
    padding: 2rem 2rem 4rem 2rem !important;
    background: #ffffff;
}

.difference-description-content {
    position: relative;
    min-height: 120px;
}

.difference-before-desc,
.difference-after-desc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-align: center;
}

.difference-before-desc.active,
.difference-after-desc.active {
    opacity: 1;
    transform: translateY(0);
}

.difference-before-desc h3,
.difference-after-desc h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.difference-before-desc p,
.difference-after-desc p {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Book a Call Section */
.book-call-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.call-expectations-card {
    background: rgba(248, 249, 250, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border-top: 4px solid #6c757d;
    transition: all 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}

.call-expectations-card:hover {
    border-top-color: #2a7d6e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.call-expectations-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.expectations-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.expectations-list li {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.expectations-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2a7d6e;
    font-weight: bold;
    font-size: 1.2rem;
}

.alternative-contact {
    text-align: center;
    margin-top: 2rem;
}

.contact-header {
    font-family: 'DM Serif Text', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.btn-contact {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-contact:hover {
    background: #2a7d6e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 125, 110, 0.3);
}

/* Calendar */
.calendar-container {
    width: 75vw;
    max-width: none;
    margin: 0 auto;
}

.calendar-container iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.08);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 2rem;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
}

.legal-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #2a7d6e;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #2a7d6e;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

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

    .main-quote {
        font-size: 1.75rem;
        padding: 0 1rem;
    }

    .research-carousel {
        max-width: 95vw;
    }
    
    .research-slides {
        height: 350px;
    }

    .impact-pillar {
        padding: 2rem 1.5rem;
    }
    
    .research-carousel-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem;
        border-radius: 50% !important;
        min-width: 32px !important;
        min-height: 32px !important;
        max-width: 32px !important;
        max-height: 32px !important;
    }
    
    .desktop-controls {
        display: none;
    }
    
    .research-card {
        flex: 0 0 100%;
    }

    .pillar-title {
        font-size: 1.25rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .process-step {
        padding: 1.5rem;
    }

    /* Vertical Process Carousel Mobile */
    .vertical-process-carousel {
        gap: 1.5rem;
        margin: 2rem 0;
    }

    /* Move nav below image and make compact segmented control */
    .vertical-process-carousel { gap: 0.1rem; }
    .process-content { min-height: 560px; }
    /* Move nav ABOVE photos on mobile and fit all 4 on one row */
    .process-nav { order: 0; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; padding-bottom: 0; margin: 0 0 0.5rem 0; }

    .process-nav-btn { width: 100% !important; padding: 1rem 1rem !important; border-radius: 8px !important; }
    .process-nav-btn:hover {
        transform: translateY(-1px);
    }

    .nav-step-number { font-size: 0.75rem; margin: 0 0 0.2rem 0; }

    .nav-step-title {
        display: block;
        font-size: 0.8rem;
        line-height: 1.3;
        text-align: center;
        white-space: normal;
        word-break: keep-all;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .process-slide-title {
        color: #ffffff !important;
    }

    .process-content {
        min-height: 400px;
    }

    .process-slide {
        min-height: 400px;
    }

    .process-slide-content {
        padding: 1.5rem;
    }

    .process-slide .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

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

    .process-slide-description {
        font-size: 1rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .pricing-card {
        padding: 2.5rem 1.5rem 2rem 1.5rem;
    }
    
    .pricing-card h3 {
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .pricing-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .pricing-info-card {
        padding: 1.5rem 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .calendar-container {
        width: 95vw;
        max-width: none;
        margin: 0 auto;
    }

    .calendar-container iframe {
        height: 500px;
    }

    .testimonials-container {
        height: 350px;
    }

    .testimonial-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }

    .testimonial-overlay .testimonial-quote {
        font-size: 1.125rem;
    }

    .testimonial-overlay .testimonial-author {
        font-size: 0.9rem;
    }

    .carousel-indicators {
        gap: 0.25rem;
        margin-top: 1rem;
    }

    .bts-slides {
        height: 300px;
    }
    
    .bts-carousel {
        max-width: 95vw;
    }

    .see-difference-section-inline {
        padding: 3rem 0;
        margin: 2rem 0;
        border-radius: 16px;
    }
    
    .see-difference-section-inline .section-header {
        margin-bottom: 0rem;
        padding: 0 2rem;
    }
    
    .see-difference-section-inline .section-header h4 {
        padding: 0 1rem;
        margin: 1rem 0;
    }
    
    .difference-toggle-header {
        padding: 1.5rem 3rem 1rem 3rem;
    }
    
    .difference-toggle-label {
        gap: 1rem;
        font-size: 1rem;
    }
    
    .difference-toggle-text-left,
    .difference-toggle-text-right {
        min-width: 100px;
        font-size: 0.9rem;
    }
    
    .difference-toggle-slider {
        width: 50px;
        height: 25px;
    }
    
    .difference-toggle-slider::before {
        width: 19px;
        height: 19px;
        top: 3px;
        left: 3px;
    }
    
    .difference-toggle-input:checked + .difference-toggle-label .difference-toggle-slider::before {
        transform: translateX(25px);
    }
    
    .difference-description {
        padding: 1.5rem 1rem 4rem 1rem !important;
    }

    .difference-description-content {
        min-height: 140px;
    }
    
    .difference-before-desc h3,
    .difference-after-desc h3 {
        font-size: 1.25rem;
    }
    
    .difference-before-desc p,
    .difference-after-desc p {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .book-call-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .call-expectations-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-quote {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .pillar-title {
        font-size: 1.125rem;
    }
    
    .research-slides {
        height: 320px;
    }
    
    .research-carousel-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.9rem;
        padding: 0 !important;
        line-height: 1;
        overflow: hidden;
        text-align: center;
        min-width: 28px !important;
        min-height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
        border-radius: 50% !important;
    }
    
    .research-navigation-bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 180px;
        margin: 20px auto 0;
        padding: 0;
        gap: 8px;
    }
    
    .testimonials-container {
        height: 350px;
    }
    
    .testimonial-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .testimonial-overlay .testimonial-quote {
        font-size: 1.125rem;
    }
    
    .testimonial-overlay .testimonial-author {
        font-size: 0.9rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .pricing-info-card {
        padding: 1.25rem 0.75rem;
    }
    
    .pricing-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .difference-toggle-label {
        flex-direction: row;
        gap: 0.75rem;
        text-align: center;
    }
    
    .difference-toggle-text-left,
    .difference-toggle-text-right {
        font-size: 0.8rem;
        min-width: 80px;
    }
    
    .difference-toggle-slider {
        width: 40px;
        height: 20px;
    }
    
    .difference-toggle-slider::before {
        width: 14px;
        height: 14px;
        top: 3px;
        left: 3px;
    }
    
    .difference-toggle-input:checked + .difference-toggle-label .difference-toggle-slider::before {
        transform: translateX(20px);
    }
    
    .difference-video-container {
        border-radius: 12px;
    }
    
    .difference-description-content {
        min-height: 160px;
    }

    .bts-slides {
        height: 250px;
    }
}