/* ============================================
   HERO SECTION - MOBILE OPTIMIZED
   ============================================ */
.hero-highlight-text {
    color: #FFD700;
    display: inline-block;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-line-1, .hero-line-2, .hero-line-3 {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.hero-message {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    color: white;
}

.btn-hero-cta {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #7c2d12;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(251,191,36,0.3);
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251,191,36,0.4);
}

/* YouTube iframe styling */
#youtube-player-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    max-width: 900px;
    margin: 0 auto;
}

#youtube-player {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ============================================
   VIDEO LIGHTBOX
   ============================================ */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 40px;
}

.video-lightbox.active {
    display: flex;
}

.video-container {
    position: relative;
    max-width: min(90vw, 1200px);
    max-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    z-index: 10001;
}

.video-close:hover {
    background: rgba(255,255,255,0.2);
    color: #FFD700;
}

#lightbox-video {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ============================================
   PAIN SELECTION SECTION
   ============================================ */
.section-pain-selection {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-pain-selection h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

.pain-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pain-option {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease;
    animation-fill-mode: both;
}

.pain-option:hover {
    border-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124,58,237,0.1);
}

.pain-option i {
    font-size: 2rem;
    color: #7c3aed;
    display: block;
    margin-bottom: 0.75rem;
}

.pain-option span {
    display: block;
    font-weight: 500;
    color: #1f2937;
}

.pain-option:nth-child(1) { animation-delay: 0.1s; }
.pain-option:nth-child(2) { animation-delay: 0.2s; }
.pain-option:nth-child(3) { animation-delay: 0.3s; }
.pain-option:nth-child(4) { animation-delay: 0.4s; }
.pain-option:nth-child(5) { animation-delay: 0.5s; }
.pain-option:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   FIT CHECK SECTION - WITH SUBTITLES
   ============================================ */
.section-fit-check {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.section-fit-check h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.fit-check-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.fit-check-column {
    display: flex;
    flex-direction: column;
}

.fit-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.fit-subtitle strong {
    color: white;
    font-weight: 600;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}

.check-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.check-item.yes i {
    color: #10b981;
}

.check-item.no i {
    color: #ef4444;
}

.check-item p {
    margin: 0;
    opacity: 0.9;
}

.fit-result {
    text-align: center;
    max-width: 600px;
    margin: 2rem auto 0;
}

.fit-result p {
    font-size: 1.125rem;
}

.text-green {
    color: #10b981;
    font-weight: 600;
}

.text-red {
    color: #ef4444;
    font-weight: 600;
}

/* ============================================
   WHAT I DO SECTION
   ============================================ */
.section-what-i-do {
    padding: 80px 20px;
    background: white;
}

.section-what-i-do h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-card {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #7c3aed;
}

.info-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.25rem;
    color: #9ca3af;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.approach-card h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.approach-card p {
    color: #6b7280;
    margin: 0;
}

/* ============================================
   ABOUT SECTION - NEW
   ============================================ */
.section-about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-header-mobile {
    display: none;
}

.about-image-mobile {
    display: none;
}

.about-title-desktop {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.about-subtitle-desktop {
    color: #7c3aed;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.about-content p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-quote {
    background: linear-gradient(135deg, rgba(124,58,237,0.05), rgba(168,85,247,0.05));
    border-left: 4px solid #7c3aed;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

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

.credential {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.credential i {
    font-size: 1.5rem;
    color: #7c3aed;
}

.credential span {
    color: #1f2937;
    font-size: 0.9rem;
}

/* ============================================
   TESTIMONIALS SECTION WITH BLUR EFFECT
   ============================================ */
.section-testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
}

.section-testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-carousel {
    max-width: 1200px;
    margin: 3rem auto;
    position: relative;
    padding: 20px 80px 60px;
}

/* Blur effect for non-active testimonials */
.glide__slide:not(.glide__slide--active) .testimonial-card {
    opacity: 0.5;
    filter: blur(2px);
    transform: scale(0.95);
}

/* Keep 3 testimonials in focus on desktop */
@media (min-width: 1024px) {
    .glide__slide--active .testimonial-card,
    .glide__slide--active + .glide__slide .testimonial-card,
    .glide__slide--active + .glide__slide + .glide__slide .testimonial-card {
        opacity: 1;
        filter: none;
        transform: scale(1);
    }
}

/* Keep 1 testimonial in focus on mobile */
@media (max-width: 768px) {
    .glide__slide:not(.glide__slide--active) .testimonial-card {
        opacity: 0.5;
        filter: blur(2px);
        transform: scale(0.9);
    }
    
    .glide__slide--active .testimonial-card {
        opacity: 1;
        filter: none;
        transform: scale(1);
    }
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    height: calc(100% - 20px);
    margin: 10px 5px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-text {
    flex: 1;
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-name {
    font-weight: 600;
    color: white;
}

.country-flag {
    font-size: 1.5rem;
}

.glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.glide__arrow:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
}

.glide__arrow--left {
    left: 0;
}

.glide__arrow--right {
    right: 0;
}

.glide__bullets {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding-top: 20px;
}

.glide__bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.glide__bullet:hover {
    background: rgba(255,255,255,0.5);
    transform: scale(1.2);
}

.glide__bullet--active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   CTA DISCOVERY SECTION - GOLDEN
   ============================================ */
.section-cta-discovery.golden-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    position: relative;
    overflow: hidden;
}

.section-cta-discovery.golden-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.golden-section .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.golden-section h2 {
    color: #7c2d12;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(124,45,18,0.2);
}

.golden-section p {
    color: #92400e;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-cta-golden {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(124,58,237,0.4);
}

.btn-cta-golden:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(124,58,237,0.5);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.section-how-it-works {
    padding: 80px 20px;
    background: white;
}

.section-how-it-works h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-card.clickable-card {
    cursor: pointer;
}

.process-card:hover,
.process-card.clickable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #7c3aed;
}

.process-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-card h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.process-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.process-detail {
    color: #7c3aed;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    transition: all 0.2s ease;
}

.process-detail:hover {
    transform: translateX(5px);
}

/* ============================================
   OFFER SECTION - REDESIGNED
   ============================================ */
.section-offer {
    padding: 80px 0px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.offer-main-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    padding: 3rem;
    text-align: center;
}

.offer-main-card h2 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.offer-subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    justify-content: center;
}

.feature i {
    font-size: 1.5rem;
    color: #7c3aed;
    flex-shrink: 0;
}

.feature span {
    color: #1f2937;
    font-size: 0.95rem;
}

.main-price {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(124,58,237,0.05), rgba(168,85,247,0.05));
    border-radius: 16px;
    margin-bottom: 3rem;
}

.price-label {
    display: block;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
}

.special-offer-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 2px solid #fbbf24;
}

.offer-ribbon {
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(16,185,129,0.3);
}

.special-offer-box h3 {
    color: #7c2d12;
    margin-bottom: 0.5rem;
}

.special-offer-box p {
    color: #92400e;
    margin-bottom: 1.5rem;
}

.discovery-offer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.discovery-content {
    text-align: left;
}

.discovery-label {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.discovery-subtitle {
    display: block;
    color: #6b7280;
    font-size: 0.875rem;
}

.discovery-pricing {
    text-align: right;
}

.price-was {
    display: block;
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.875rem;
}

.price-now {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
}

.price-discount {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-special-offer {
    width: 100%;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-special-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124,58,237,0.3);
}

.offer-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #92400e;
    font-size: 0.875rem;
    margin: 0;
}

.offer-guarantee i {
    color: #10b981;
}

/* ============================================
   SAFETY SECTION
   ============================================ */
.section-safety {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.section-safety h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.safety-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.safety-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.safety-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: rgba(16,185,129,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safety-icon i {
    font-size: 2rem;
    color: #10b981;
}

.safety-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.safety-item p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.section-booking {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.booking-header h2 {
    color: #1f2937;
    margin-bottom: 2rem;
}

.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.booking-calendar {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

.availability-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: white;
    border: 2px solid #027aff;
    color: #1f2937;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.availability-badge i {
    color: #027aff;
}

.availability-badge strong {
    color: #027aff;
    font-size: 1.25rem;
}

/* ============================================
   AUTHORITY SECTION
   ============================================ */
.section-authority {
    padding: 80px 20px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
}

.section-authority h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.authority-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}

.authority-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.2);
}

.authority-quote {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: normal;
    font-weight: 300;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.authority-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.authority-card i {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.authority-card h4 {
    margin-bottom: 0.5rem;
}

.authority-card p {
    opacity: 0.9;
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   RESOURCES SECTION
   ============================================ */
.section-resources {
    padding: 80px 20px;
    background: white;
}

.section-resources h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.resource-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.resource-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.resource-card.premium .resource-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.resource-card.free .resource-badge {
    background: #10b981;
    color: white;
}

.resource-card i {
    font-size: 3rem;
    color: #7c3aed;
    margin-bottom: 1.5rem;
}

.resource-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.resource-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
}

.resource-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #1f2937;
}

.resource-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.resource-bottom {
    margin-top: auto;
}

.resource-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 1rem;
}

.resource-price.free-label {
    color: #7c3aed;
}

.btn-resource {
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
}

.btn-resource.secondary {
    background: white;
    color: #7c3aed;
    border: 2px solid #7c3aed;
}

.btn-resource:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ============================================
   POPUP MODAL
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-modal {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.popup-close:hover {
    color: #1f2937;
    transform: rotate(90deg);
}

.popup-content {
    padding: 3rem;
}

.popup-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.popup-content p {
    color: #6b7280;
    line-height: 1.7;
}

.popup-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.popup-content ul li {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .testimonials-carousel {
        padding: 20px 60px 60px;
    }
    
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .authority-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .discovery-offer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .discovery-content,
    .discovery-pricing {
        text-align: center;
    }
    
    .offer-features {
        grid-template-columns: 1fr;
    }
    
    .booking-wrapper {
        padding: 0;
    }
    
    .authority-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    /* Hero adjustments */
    .hero-title {
        font-size: 8vw;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        line-height: 1.5;
    }
    
    .btn-hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Pain selector - 2 columns on mobile */
    .pain-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pain-option {
        padding: 1rem;
    }
    
    .pain-option i {
        font-size: 1.5rem;
    }
    
    .pain-option span {
        font-size: 0.875rem;
    }
    
    /* Fit check */
    .fit-check-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Approach cards */
    .approach-cards {
        grid-template-columns: 1fr;
    }
    
    /* Process cards */
    .process-cards {
        grid-template-columns: 1fr;
    }
    
    /* Safety grid - 1 column on mobile */
    .safety-grid {
        grid-template-columns: 1fr;
    }
    
    /* Resources */
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-card {
        padding: 2rem;
    }
    
    /* General section padding */
    section {
        padding: 60px 20px;
    }
    
    /* Testimonials carousel */
    .testimonials-carousel {
        padding: 20px 50px 60px;
    }
    
    .glide__arrow {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin: 10px 3px;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .hero-title {
        font-size: 10vw;
    }
    
    .hero-subtitle br {
        display: none;
    }

    .btn-hero-cta {
        padding: 0.5rem 1rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Pain selector - keep 2 columns */
    .pain-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Popup */
    .popup-content {
        padding: 2rem 1.5rem;
    }
    
    .popup-close {
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
    }
    
    /* Process */
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Testimonials */
    .testimonials-carousel {
        padding: 20px 45px 60px;
    }
    
    /* Authority */
    .authority-image {
        width: 150px;
        height: 150px;
    }
    
    .authority-quote {
        font-size: 1.125rem;
        padding: 1.5rem;
    }
    
    /* Booking */
    .availability-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
    }
    
    /* Offer section mobile optimizations */
    .offer-main-card {
        padding: 1.25rem;
        border-radius: 16px;
    }
    
    .offer-main-card h2 {
        font-size: 1.5rem;
    }
    
    .offer-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .offer-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .feature {
        justify-content: flex-start;
    }
    
    .feature i {
        font-size: 1.125rem;
    }
    
    .feature span {
        font-size: 0.875rem;
    }
    
    .main-price {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .price-label {
        font-size: 0.75rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .price-note {
        font-size: 0.8rem;
    }
    
    .special-offer-box {
        padding: 1.25rem;
        border-radius: 16px;
    }
    
    .offer-ribbon {
        font-size: 0.625rem;
        padding: 0.375rem 1rem;
        top: -10px;
        right: 15px;
    }
    
    .special-offer-box h3 {
        font-size: 1.125rem;
    }
    
    .special-offer-box p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .discovery-offer {
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .discovery-content {
        text-align: center;
    }
    
    .discovery-label {
        font-size: 0.9rem;
    }
    
    .discovery-subtitle {
        font-size: 0.75rem;
    }
    
    .discovery-pricing {
        text-align: center;
    }
    
    .price-was {
        font-size: 0.75rem;
    }
    
    .price-now {
        font-size: 1.5rem;
    }
    
    .price-discount {
        font-size: 0.625rem;
        padding: 0.125rem 0.375rem;
    }
    
    .btn-special-offer {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .offer-guarantee {
        font-size: 0.75rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Apply animations to elements */
.hero-content {
    animation: fadeIn 1s ease;
}

.pain-option {
    animation: slideInUp 0.6s ease;
    animation-fill-mode: both;
}

.pain-option:nth-child(1) { animation-delay: 0.1s; }
.pain-option:nth-child(2) { animation-delay: 0.2s; }
.pain-option:nth-child(3) { animation-delay: 0.3s; }
.pain-option:nth-child(4) { animation-delay: 0.4s; }
.pain-option:nth-child(5) { animation-delay: 0.5s; }
.pain-option:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .hero-section,
    .section-testimonials,
    .section-authority,
    .section-booking,
    footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* YouTube Shorts Vertical Video Styling */
#youtube-player-wrapper {
    width: 100%;
    max-width: 400px; /* Optimal width for vertical video */
    margin: 0 auto;
}

#youtube-player-wrapper.vertical-video {
    aspect-ratio: 9/16; /* Vertical aspect ratio for Shorts */
}

#youtube-player {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Mobile adjustments for vertical video */
@media (max-width: 768px) {
    #youtube-player-wrapper {
        max-width: 90vw;
        max-height: 70vh;
    }
    
    #youtube-player-wrapper.vertical-video {
        aspect-ratio: 9/16;
    }
}
