/* CSS SECTION */
        :root {
            /* Zen Minimal - Light & Refined */
            --primary-bg: #f7f6f3;
            --secondary-bg: #eceae5;
            --accent-gold: #8b7d5a;
            --accent-gold-light: #a99b74;
            --text-dark: #2d2d2d;
            --text-light: #2d2d2d;
            --text-dim: #6b6b6b;
            --white: #ffffff;
            --border-subtle: rgba(139, 125, 90, 0.2);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lora', serif;
            background-color: var(--primary-bg);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Loading Screen */
        #page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        #page-loader.loaded {
            opacity: 0;
            visibility: hidden;
        }

        .loader-pulse {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent-gold);
            animation: pulse 1.5s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(139, 125, 90, 0.3);
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.2);
                opacity: 1;
            }
        }

        h1, h2, h3 {
            font-family: 'Bodoni Moda', serif; /* 変更 */
            letter-spacing: 1px;
        }

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

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(247, 246, 243, 0.95);
            padding: 20px 0;
            border-bottom: 1px solid var(--border-subtle);
            backdrop-filter: blur(10px);
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--accent-gold);
        }

        nav.main-nav {
            display: flex;
            align-items: center;
        }

        nav.main-nav a {
            color: var(--text-dark);
            text-decoration: none;
            margin-left: 30px;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: var(--transition);
        }

        nav.main-nav a:hover {
            color: var(--accent-gold);
        }

        .header-mobile-actions {
            display: none;
            align-items: center;
            gap: 15px;
        }

        .mobile-cta {
            display: none;
        }

        .hamburger-menu {
            display: none;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger-menu span {
            display: block;
            width: 25px;
            height: 2px;
            margin: 5px 0;
            background-color: var(--text-dark);
            transition: var(--transition);
        }

        /* Nav Overlay for closing menu */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-overlay.active {
            display: block;
            opacity: 1;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            text-align: left;
            padding: 0px 0 0 40px;
            overflow: hidden;
        }

        /* Hero Logo */
        .hero-logo {
            position: relative;
            z-index: 3;
            animation: fadeInUp 1.2s ease-out;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-logo-img {
            max-width: 650px;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
        }

        .hero-logo-caption {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 400;
            font-style: italic;
            letter-spacing: 0.5em;
            color: rgba(255, 255, 255, 0.85);
            margin-top: -130px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
        }

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

        .hero-text {
            position: relative;
            z-index: 3;
            max-width: 600px;
        }

        .hero-headline {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
        }

        .hero-line {
            font-size: 4.5rem;
            font-weight: 300;
            line-height: 1.1;
            color: var(--white);
            font-style: normal;
        }

        .hero-line-accent {
            color: var(--accent-gold);
            font-style: italic;
        }

        .hero-tagline {
            font-size: 1.1rem;
            font-weight: 300;
            color: var(--text-dim);
            letter-spacing: 2px;
            margin-top: 25px;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--accent-gold);
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: 2px;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
            animation: bounce 1.5s ease-in-out infinite;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(139, 125, 90, 0.3);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            animation: shimmer 2.5s ease-in-out infinite;
        }

        .cta-button:hover {
            background-color: var(--accent-gold-light);
            box-shadow: 0 6px 20px rgba(139, 125, 90, 0.4);
        }

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

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            50%, 100% {
                left: 100%;
            }
        }

        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

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

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2; /* Above the slideshow */
        }

        /* Section Styling */
        section {
            padding: 100px 0;
            position: relative;
        }

        section:not(.hero):not(.pain-points-scroll):not(#gallery) {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        section:not(.hero):not(.pain-points-scroll):not(#gallery).is-visible {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        .section-title p {
            color: var(--text-dim);
            font-style: italic;
        }

        .section-title .plans-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            font-style: normal;
            margin-bottom: 20px;
        }

        .section-title .price-appeal {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--accent-gold);
            font-style: normal;
            margin-bottom: 5px;
        }

        /* Image Placeholder */
        .img-box {
            background: var(--secondary-bg);
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            text-align: center;
            padding: 20px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        /* Remove default box styling when an image is present */
        .img-box:has(img) {
            border: none;
            background: none;
            padding: 0;
            margin-bottom: 0;
        }

        /* Pain Points Section */
        .pain-points {
            background-color: var(--secondary-bg);
        }

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

        .point-card {
            text-align: center;
            padding: 20px;
        }

        .point-card h3 {
            margin-top: 20px;
            margin-bottom: 15px;
            color: var(--accent-gold);
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .feature-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .feature-item {
            margin-bottom: 30px;
        }

        .feature-item h4 {
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        /* Plans Section */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .plan-card {
            background: var(--white);
            padding: 40px 20px;
            text-align: center;
            border: 1px solid var(--border-subtle);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .plan-card .cta-button {
            margin-top: auto;
        }

        .plan-card:hover {
            border-color: var(--accent-gold);
            box-shadow: 0 8px 25px rgba(139, 125, 90, 0.15);
            transform: translateY(-3px);
        }

        .plan-card .time {
            font-size: 1.2rem;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        .plan-card .price {
            font-size: 2rem;
            font-family: 'Bodoni Moda', serif;
            margin-bottom: 20px;
        }

        .plan-card .details {
            font-size: 0.9rem;
            color: var(--text-dim);
            margin-bottom: 30px;
        }

        /* Flow Section - Journey */
        .flow-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .flow-step {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .flow-img {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 280px;
            margin: 0 auto 25px;
        }

        .flow-img .img-box {
            position: relative;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-radius: 16px;
            border: 1px solid var(--border-subtle);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .flow-img .img-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(45, 45, 45, 0.3) 100%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .flow-step:hover .img-box::before {
            opacity: 1;
        }

        .flow-img .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .flow-step:hover .img-box img {
            transform: scale(1.05);
        }

        .flow-step:hover .img-box {
            border-color: var(--accent-gold);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 20px rgba(139, 125, 90, 0.15);
        }

        .flow-content {
            position: relative;
            padding: 0 15px;
        }

        /* Step number - above title */
        .step-num {
            display: block;
            font-size: 2.5rem;
            font-family: 'Bodoni Moda', serif;
            font-weight: 400;
            color: var(--accent-gold);
            opacity: 0.7;
            line-height: 1;
            margin-bottom: 8px;
            transition: all 0.4s ease;
        }

        .flow-step:hover .step-num {
            opacity: 1;
            transform: translateY(-3px);
        }

        .flow-content h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        .flow-step:hover .flow-content h3 {
            color: var(--accent-gold);
        }

        .flow-content p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: var(--text-dim);
        }

        /* Gallery Carousel */
        .gallery-carousel {
            --slide-width: 400px;
            --slide-gap: 20px;
            --slide-count: 6;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .gallery-track {
            display: flex;
            gap: var(--slide-gap);
            animation: galleryScroll 18s linear infinite;
            will-change: transform;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        .gallery-slide {
            flex-shrink: 0;
            width: var(--slide-width);
            height: 300px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes galleryScroll {
            0% {
                transform: translate3d(0, 0, 0);
            }
            100% {
                transform: translate3d(calc(-1 * var(--slide-count) * (var(--slide-width) + var(--slide-gap))), 0, 0);
            }
        }

        /* Footer */
        footer {
            background-color: var(--secondary-bg);
            padding: 80px 0 40px;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-links {
            display: flex;
            gap: 60px;
            justify-content: flex-end;
        }

        .footer-nav h4,
        .footer-social h4 {
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .footer-logo {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .footer-info p {
            margin-bottom: 10px;
            color: var(--text-dim);
        }

        /* Footer Mobile Layout */
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .footer-links {
                display: flex;
                justify-content: center;
                gap: 40px;
            }

            .footer-nav,
            .footer-social {
                text-align: left;
            }
        }

        .copyright {
            text-align: center;
            color: var(--text-dim);
            font-size: 0.8rem;
            border-top: 1px solid var(--border-subtle);
            padding-top: 40px;
        }

        /* Modal / Message Box */
        #booking-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #fff;
            padding: 30px;
            border: 1px solid var(--accent-gold);
            border-radius: 8px;
            z-index: 2000;
            text-align: center;
            width: 90%;
            max-width: 500px;
            max-height: 85vh;
            overflow-y: auto;
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 15px;
            background: none;
            border: none;
            color: #333;
            font-size: 2rem;
            cursor: pointer;
            line-height: 1;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--accent-gold);
        }

        .bokun-widget-container {
            min-height: 400px;
            min-width: 300px;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1999;
        }

        /* Responsive */
        @media (max-width: 1024px) and (min-width: 769px) {
            .flow-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            .flow-img {
                max-width: 220px;
            }
            .flow-content h3 {
                font-size: 1.1rem;
            }
            .flow-content p {
                font-size: 0.85rem;
            }
            .step-num {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .logo { font-size: 0.9rem; }
            .hero {
                padding: 80px 0 0 15px;
            }
            .hero-logo-img {
                max-width: 400px;
                width: 90%;
            }
            .hero-logo-caption {
                font-size: 0.9rem;
                letter-spacing: 0.3em;
                margin-top: -40px;
            }
            .hero-line {
                font-size: 2.8rem;
            }
            .hero-tagline {
                font-size: 0.9rem;
                letter-spacing: 1px;
            }
            .features-grid { grid-template-columns: 1fr; }

            /* Fix image cropping on mobile */
            .feature-img .img-box {
                height: auto !important;
                aspect-ratio: 4 / 3;
                margin: 0 -20px;
                width: calc(100% + 40px);
                border-radius: 0;
            }

            .feature-img .img-box img {
                position: relative;
                object-fit: cover;
            }

            .flow-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .flow-img {
                max-width: 260px;
            }
            .step-num {
                font-size: 2.2rem;
            }
            .gallery-carousel {
                --slide-width: 280px;
            }

            .gallery-slide {
                height: 200px;
            }

            .gallery-track {
                animation-duration: 18s;
            }

            .header-mobile-actions {
                display: flex;
            }

            .mobile-cta {
                display: block;
                padding: 8px 16px !important;
                font-size: 0.75rem !important;
                white-space: nowrap;
            }

            .hamburger-menu {
                display: block;
            }

            /* Hide desktop CTA in mobile nav */
            nav.main-nav .cta-button {
                display: none;
            }

            nav.main-nav {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 75px;
                left: 0;
                width: 100%;
                background: rgba(247, 246, 243, 0.98);
                max-height: 0;
                opacity: 0;
                overflow: hidden;
                visibility: hidden;
                z-index: 999;
                transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, visibility 0s linear 0.4s;
                backdrop-filter: blur(10px);
            }

            nav.main-nav.nav-active {
                max-height: 500px;
                opacity: 1;
                visibility: visible;
                transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, visibility 0s linear 0s;
            }

            .main-nav a {
                margin: 0;
                padding: 20px;
                text-align: center;
                border-bottom: 1px solid var(--border-subtle);
                width: 100%;
            }

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

        /* Customer Reviews Section */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .review-card {
            background: var(--white);
            padding: 30px;
            border: 1px solid var(--border-subtle);
            border-radius: 5px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .review-card:hover {
            box-shadow: 0 8px 25px rgba(139, 125, 90, 0.12);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .reviewer-name {
            font-weight: 600;
            color: var(--accent-gold);
            font-size: 1.1rem;
        }

        .review-rating {
            color: #ffd700; /* Gold color for stars */
            font-size: 1.2rem;
        }

        .review-text {
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .review-date {
            font-size: 0.85rem;
            color: var(--text-dim);
            text-align: right;
        }
        
        /* Q&A Section (FAQ) */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border-subtle);
            padding: 20px 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .faq-question h3 {
            font-family: 'Lora', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: var(--accent-gold);
            transition: transform 0.3s ease;
        }

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

        .faq-answer p {
            padding: 15px 0 5px;
            color: var(--text-dim);
        }

        .faq-item.active .faq-answer {
            max-height: 100px; /* Adjust as needed */
        }

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

        /* Therapists Section */
        .therapists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .therapist-card {
            text-align: center;
            background: var(--white);
            padding: 30px 20px;
            border: 1px solid var(--border-subtle);
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .therapist-card:hover {
            box-shadow: 0 8px 25px rgba(139, 125, 90, 0.12);
        }

        .therapist-card .therapist-img {
            width: 150px;
            height: 150px; /* Changed from auto */
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 3px solid var(--accent-gold);
            display: flex; /* Override img-box flex default */
            align-items: center;
            justify-content: center;
            position: relative; /* Ensure proper positioning for inner img */
            /* min-height: 150px; Removed as height is fixed */
            padding: 0; /* Remove padding */
            background: none; /* Remove background */
        }

        .therapist-card .therapist-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: static; /* Remove absolute positioning */
        }


        .therapist-card h3 {
            color: var(--accent-gold);
            margin-bottom: 10px;
            font-size: 1.5rem;
        }

        .therapist-card p {
            color: var(--text-dim);
            font-size: 0.95rem;
        }

        /* Responsive adjustment for therapist-card */
        @media (max-width: 768px) {
            .therapists-grid {
                grid-template-columns: 1fr;
            }
        }

/* FV Text Animation */
.hero-text [data-animation-text] .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.8s forwards;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Journey Section Animation */
.flow-animation-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.flow-animation-element.animate-slide-in {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   Global Shape Animations (arflex style)
   ============================================= */

.global-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Morphing Blobs - positioned throughout viewport */
.blob {
    position: absolute;
    opacity: 1;
    will-change: transform;
}

.blob-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    right: -5%;
}

.blob-2 {
    width: 700px;
    height: 700px;
    top: 60%;
    left: -10%;
}

.blob-3 {
    width: 500px;
    height: 500px;
    top: 30%;
    right: 5%;
}

.blob-4 {
    width: 550px;
    height: 550px;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
}

/* Parallax Lines */
.parallax-line {
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(139, 125, 90, 0.15), transparent);
    will-change: transform;
}

.parallax-line-1 {
    width: 1px;
    height: 400px;
    top: 15%;
    left: 10%;
    transform: rotate(20deg);
}

.parallax-line-2 {
    width: 1px;
    height: 500px;
    top: 45%;
    right: 15%;
    transform: rotate(-15deg);
}

.parallax-line-3 {
    width: 1px;
    height: 350px;
    top: 75%;
    left: 25%;
    transform: rotate(10deg);
}

/* Parallax Shapes */
.parallax-shape {
    position: absolute;
    will-change: transform;
}

.parallax-circle-1 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 125, 90, 0.12) 0%, transparent 70%);
    top: 20%;
    left: 5%;
}

.parallax-circle-2 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 125, 90, 0.10) 0%, transparent 70%);
    top: 70%;
    right: 8%;
}

.parallax-circle-center {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 125, 90, 0.08) 0%, transparent 70%);
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
}

.parallax-ring-1 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(139, 125, 90, 0.15);
    top: 35%;
    right: 3%;
}

.parallax-ring-2 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(139, 125, 90, 0.12);
    top: 85%;
    left: 8%;
}

.parallax-ring-center {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(139, 125, 90, 0.10);
    top: 55%;
    left: 45%;
}


/* Ensure all content stays above the shapes */
section,
footer {
    position: relative;
    z-index: 1;
}

/* Sections with transparent background to show global shapes */
.pain-points-scroll,
#journey,
#therapists,
#reviews,
#faq,
#closing-cta {
    background: transparent !important;
}

/* Add subtle gradient overlay to maintain readability */
.pain-points-scroll::before,
#journey::before,
#therapists::before,
#reviews::before,
#faq::before,
#closing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(247, 246, 243, 0.4) 0%,
        rgba(247, 246, 243, 0.1) 50%,
        rgba(247, 246, 243, 0.4) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Ensure content inside these sections stays above the gradient */
.pain-points-scroll > *,
#journey > *,
#therapists > *,
#reviews > *,
#faq > *,
#closing-cta > * {
    position: relative;
    z-index: 1;
}

/* Responsive - balanced shapes on mobile */
@media (max-width: 768px) {
    /* Blobs - visible and well-positioned */
    .blob-1 {
        width: 280px;
        height: 280px;
        top: 5%;
        right: -10%;
    }

    .blob-2 {
        width: 320px;
        height: 320px;
        top: 35%;
        left: -15%;
    }

    .blob-3 {
        width: 250px;
        height: 250px;
        top: 65%;
        right: -5%;
    }

    .blob-4 {
        width: 300px;
        height: 300px;
        top: 85%;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Lines - show one centered */
    .parallax-line-1,
    .parallax-line-3 {
        display: none;
    }

    .parallax-line-2 {
        top: 50%;
        right: 10%;
        height: 250px;
    }

    /* Circles - larger and better positioned */
    .parallax-circle-1 {
        width: 100px;
        height: 100px;
        top: 15%;
        left: 5%;
    }

    .parallax-circle-2 {
        width: 120px;
        height: 120px;
        top: 75%;
        right: 5%;
    }

    .parallax-circle-center {
        width: 150px;
        height: 150px;
        top: 45%;
    }

    /* Rings - visible throughout */
    .parallax-ring-1 {
        width: 100px;
        height: 100px;
        top: 25%;
        right: 8%;
    }

    .parallax-ring-2 {
        width: 120px;
        height: 120px;
        top: 55%;
        left: 5%;
    }

    .parallax-ring-center {
        width: 90px;
        height: 90px;
        top: 80%;
        left: 60%;
    }
}

/* =============================================
   Pain Points Scroll Animation Section
   ============================================= */

.pain-points-scroll {
    /* Total height: title(100vh) + 3 cards(100vh each) = 400vh */
    height: 400vh;
    position: relative;
    background-color: transparent;
    padding: 0;
    /* Override default section styles */
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.scroll-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Title Slide */
.scroll-title-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    text-align: center;
    z-index: 10;
    transition: opacity 0.4s ease-out;
    will-change: opacity;
    backface-visibility: hidden;
}

.scroll-title-slide h2 {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-family: 'Bodoni Moda', serif;
}

.scroll-title-slide p {
    font-size: 1.3rem;
    color: var(--text-dim);
    font-style: italic;
}

.scroll-title-slide.fade-out {
    opacity: 0;
}

/* Cards Wrapper */
.scroll-cards-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Individual Card */
.scroll-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.8s ease-out;
}

.scroll-card.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 5;
}

.scroll-card.exit-top {
    opacity: 0;
    z-index: 4;
    transition: opacity 0.8s ease-out;
}

/* Card Image - Full screen, always visible */
.scroll-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.scroll-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease-out;
}

/* Dark overlay on image - always present to reduce flash */
.scroll-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.8s ease-out;
}

.scroll-card.active .scroll-card-image::after {
    background: rgba(0, 0, 0, 0.4);
}

/* Subtle zoom effect on active */
.scroll-card.active .scroll-card-image img {
    transform: scale(1.05);
}

/* Card Content - Overlay on bottom-left with fade-in */
.scroll-card-content {
    position: absolute;
    bottom: 80px;
    left: 40px;
    max-width: 500px;
    text-align: left;
    z-index: 10;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--accent-gold);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.scroll-card.active .scroll-card-content {
    opacity: 1;
    transform: translateY(0);
}

.scroll-card-content h3 {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-family: 'Bodoni Moda', serif;
}

.scroll-card-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.scroll-card-cta {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.scroll-card-cta .cta-question {
    font-size: 0.95rem;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 15px;
}

.scroll-card-cta .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pain-points-scroll {
        height: 350vh;
    }

    .scroll-title-slide h2 {
        font-size: 2rem;
        padding: 0 20px;
    }

    .scroll-title-slide p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .scroll-card-content {
        bottom: 60px;
        left: 20px;
        right: 20px;
        max-width: none;
        padding: 20px;
    }

    .scroll-card-content h3 {
        font-size: 1.6rem;
    }

    .scroll-card-content p {
        font-size: 0.95rem;
    }

    /* Deep Sleep card - show left side of image on mobile */
    .scroll-card[data-card-index="1"] .scroll-card-image img {
        object-position: 40% center;
    }

    .scroll-progress-indicator {
        bottom: 30px;
    }

    .progress-dot {
        width: 10px;
        height: 10px;
    }
}
