:root {
    --primary-color: #c5a085;
    --primary-dark: #a88062;
    --secondary-color: #f7f3f0;
    --accent-red: #d9534f;
    --text-dark: #2c2c2c;
    --text-gray: #666666;
    --white: #ffffff;
    --border-light: #e0e0e0;
    --font-main: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

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

body {
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
    position: relative;
    padding-top: 60px;
    /* Header space */
    padding-bottom: 0px;
    /* Banner space */
}

#app-wrapper {
    width: 100%;
    max-width: 750px;
    background-color: var(--white);
    position: relative;
    height: 100%;
    overflow: hidden;
    /* Ensure no child spills out */
    margin: 0 auto;
}

.promo-subtitle {
    font-size: 30px;
    color: #fff !important;
    background: #C04E37;
    padding: 3px 10px;
    display: inline-block;
    width: fit-content
}


.container {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.image-placeholder {
    background-color: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.85rem;
    text-align: center;
    padding: 20px;
    transition: background 0.3s;
}

.image-placeholder:hover {
    background-color: #e5e5e5;
}

/* Insight Section (7th Block) */
.insight-section {
    padding: 80px 20px;
    background-color: var(--white);
    text-align: center;
}

/* Reusing speech-bubble-header but adding specific class for tweaks */
.insight-bubble {
    padding: 25px 20px;
    /* Slightly taller */
    max-width: 95%;
    /* Wider on small screens */
    width: auto;
    display: inline-block;
    margin-bottom: 30px;
}

.insight-bubble .bubble-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 400;
}

.insight-bubble .bubble-main {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.bg-white-text {
    background-color: white;
    color: #c05844;
    /* Text color matches bubble bg */
    padding: 4px 10px;
    border-radius: 4px;
    /* Slight rounding on text background */
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.insight-desc {
    margin-bottom: 40px;
}

.insight-desc p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}

.insight-image-container {
    width: 100%;
    max-width: 600px;
    /* Limit width */
    margin: 0 auto;
    position: relative;
}

.insight-img {
    width: 100%;
    aspect-ratio: 1/1;
    /* Square or slightly portrait */
    background-color: #ddd;
    border-radius: 20px;
    margin-bottom: 10px;
}

.insight-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    /* If over image? No, usually below. */
    color: #ccc;
    text-align: right;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/* Note: Reference has white text on the image. Let's adjust. */
.insight-img {
    position: relative;
    overflow: hidden;
}

.insight-note {
    bottom: 15px;
    right: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-title small {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-dark);
    margin-top: 5px;
}

.btn-primary {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 0;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
    box-shadow: 0 4px 10px rgba(197, 160, 133, 0.4);
}

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

/* Main Header */
.main-header {
    padding: 15px 0;
    /* Remove horizontal padding from wrapper, let container handle it */
    background: transparent;
    /* Transparent initially */
    color: white;
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 750px;
    box-sizing: border-box;
    z-index: 9999;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.main-header.scrolled {
    background: #5d4d4a;
    /* Dark brown when scrolled */
}

/* Container inside Header */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 640px;
    /* Match other containers */
    margin: 0 auto;
    padding: 0 20px;
    /* Add padding here */
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    margin: 0;
}

.logo img {
    width: 130px;
    height: auto;
}

.header-icons {
    display: flex;
    gap: 15px;
}

.icon-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.icon-link:hover {
    opacity: 0.8;
}

.header-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 1180px;
    max-height: 1180px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    /* Align content to bottom */
    justify-content: center;
    background-color: #F9F9F9;
    padding-bottom: 144px;
    /* Space from bottom */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lighter gradient at bottom for text visibility? Or just dark overlay? */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(249, 249, 249, 1) 100%);
    /* Reference image has white fade at bottom with dark text? 
       Actually the text is BLACK in the reference image on a light background.
       But the hero video is likely dark? 
       Wait, the reference image 'uploaded_image_1765807536551.png' shows a woman's face and the text at the bottom is DARK on a LIGHT fading background.
    */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: #333;
    /* Dark text as per reference */
}

.hero-text-overlay {
    background: transparent;
}

.divider {
    stroke-width: 1px;
    stroke: var(--Color-Brand-Black, #21201F);
    opacity: 0.5;
    z-index: 999;
    display: block;
    width: 80%;
    border-top: 1px solid #666;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    text-shadow: none;
    color: #1a1a1a;
    /* Dark text */
    word-break: keep-all;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

.intro-section {
    padding: 160px 48px;
    background-color: #F9F9F9;
    text-align: center;
    overflow: hidden;
    /* Matches snippet */
}

.section-header {
    margin-bottom: 60px;
    /* Matches snippet padding-bottom of header div */
}

.section-header .sub-title {
    display: block;
    font-size: 30px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 48px;
    color: #21201F;
    margin-bottom: 0;
}

.section-header .main-title {
    font-size: 40px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    line-height: 1.6;
    color: #21201F;
}

/* Intro Slider Section (New Before/After Design) */
.program-slider-card {
    /* Matches the inner card style from layout */
    /* width: 640px; height: 638px; but let's make it responsive */
    width: 100%;
    max-width: 660px;
    background-color: #F3F4EF;
    border-radius: 30px;
    padding: 84px 24px 75px 25px;
    /* Adjusted padding */
    position: relative;
    margin: 0 auto;
    /* box-shadow? snippet doesn't show shadow for the card itself, but inner elements */
}

.swiper-slide {
    text-align: center;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 20px;
}

/* Custom Navigation Buttons (Top Right) */
.slider-nav-container {
    position: absolute;
    top: 50px;
    right: 90px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.swiper-button-next,
.swiper-button-prev {
    position: static;
    /* Relative to container */
    margin: 0;
    color: transparent;
    /* Hide default icon color */

    /* Gray arrow bg */
    width: 46px !important;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('image/arr.png');
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
    /* Hide default swiper icon */
}

/* Rotate for previous button if arrow points right by default */
.swiper-button-next {
    transform: rotate(180deg);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0px) !important;
    right: auto;
}

/* Card Content */
/* Card Content */
.program-title {
    font-size: 40px;
    /* Increased from 2rem to match header scale or similar */
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    margin-bottom: 15px;
    color: #21201F;
    letter-spacing: -1px;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    display: none !important
}

.program-desc {
    font-size: 20px;
    /* Matches snippet */
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    color: #222222;
    /* Matches snippet */
    margin-bottom: 50px;
    line-height: 1.4em;
    /* Matches snippet */
    max-width: 600px;
    text-align: center;
}

/* Single Slide Image (The B/A Card content) */
.slide-single-img {
    width: 100%;
    height: auto;
    /* Aspect ratio seems to be handled by the image itself now */
    border-radius: 0;
    /* Image inside card might not need radius if it floats or is masked? 
       Actually user img '2_0.png' likely has the radius or fits in. 
       Let's keep it clean. */
    display: block;
    margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .program-slider-card {
        padding: 70px 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px !important;
        right: 50px;
    }

    .slider-nav-container {
        right: 50px;
    }

    .ba-container {
        flex-direction: row;
        /* Keep side by side on mobile if possible, or stack? Ref implies side side */
        gap: 10px;
    }

    .program-title {
        font-size: 1.5rem;
    }
}

/* Promotion Section (3rd Block) */
/* Promotion Section (3rd Block) */
.promotion-section {
    padding: 130px 20px 0px 20px;
    background-color: #F9F9F9;
    text-align: center;
}

.promo-header {
    align-items: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Snippet uses line-height for spacing, so gap might be 0 or small */
}

.promo-subtitle {
    font-size: 30px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 48px;
    color: #21201F;
    margin-bottom: 0;
}

.promo-title {
    font-size: 40px;
    font-family: 'Pretendard', sans-serif;
    line-height: 1.6em;
    color: #21201F;
    margin: 0;
    font-weight: 500;
}

.promo-title span {
    font-weight: 500;
    /* Default for black text parts */
}

.highlight {
    color: #C04E37;
    font-weight: 500 !important;
}

.promo-video-container {
    width: 100%;
    max-width: 640px;
    height: auto;
    aspect-ratio: 640/801;
    margin-bottom: 150px !important;
    /* from snippet dims */
    margin: 0 auto;
    padding: 10px;
    /* Outer padding mimicking the border-like effect */

    border-radius: 30px;
    overflow: hidden;
    position: relative;
    /* Reset background to match snippet bg */
}

.promo-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
    /* Inner video radius slightly smaller than outer container */
}

/* Skin Problems Section (4th Block) */
.problems-section {
    padding: 130px 0px 130px 0px;
    background-color: #F9F9F9;
    text-align: center;
}

.problems-section .product-section {
    margin-top: 40px;

}

.problems-title {
    font-size: 40px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    line-height: 60px;
    color: #C04E37;
    /* Red color from snippet */
    margin-bottom: 60px;
}

.problems-title span {
    font-weight: 600;
}

.problems-badge {
    background-color: #C04E37;
    color: #fff;
    padding: 3px 5px 5px 5px;
    display: inline-flex;
    gap: 1px;
    margin-bottom: 5px;
    line-height: 1;
}

.badge-char {
    font-size: 48px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    line-height: 1;
}

.badge-char::before {
    content: '•';
    font-size: 20px;
    margin-bottom: 4px;
    line-height: 10px;
}

.problems-grid {
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    /* No gap - images are touching */
    width: 640px;
    max-width: 100%;
    margin: 0 auto 20px auto;
    position: relative;
    /* For absolute positioning of overlay */
}

.problem-item {
    padding: 0;
    /* No padding - images touch each other */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
    display: inline-flex;
    position: relative;
    /* For overlay positioning */
}

.problem-img {
    width: 155px;
    height: 270px;
    object-fit: cover;
    background-color: #F3F4EF;
    margin-bottom: 0;
    display: block;
}

/* Sliding Overlay */
.sliding-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 155px;
    height: 100%;
    /* Cover full height of grid/item */
    background: url('image/on.png') no-repeat center center;
    background-size: 100% 100%;
    /* Stretch to fill */
    pointer-events: none;
    transition: transform 0.5s ease-in-out;
    z-index: 10;
    padding: 0;
    box-sizing: border-box;
}

/* Label Styling */
.problem-label {
    width: 151px;
    text-align: center;
    font-size: 30px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 30px;
    color: #21201F;
    padding: 0;
    background-color: transparent !important;
    border-radius: 0;
    position: relative;
    z-index: 11;
    /* Above overlay */
    margin-top: 10px;
    padding-bottom: 15px;
    line-height: 1.3
        /* Restore gap as margin since flex gap is 0? 
                       Wait, GAP was 20px in .problem-item? 
                       Yes, gap: 20px in .problem-item. */
}

/* Highlight/Active Item State */


.highlight-item .problem-label {

    color: #F9F9F9 !important;
    /* Light text on dark bg */
    background-color: transparent !important;
    border-radius: 0;
}



.problems-note {
    font-size: 0.7rem;
    color: #ccc;
    text-align: left;
    margin-top: 15px;
}

/* Product Section (Signature Routine - 5th Block) */
.product-section {
    padding: 130px 0px 200px 0px;
    /* Matches snippet padding */
    background: #F9F9F9;
    text-align: center;
}

.product-section .product-list {
    margin-top: 40px
}

.product-section .section-desc {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.6em;
    margin-top: 100px;
}

.speech-bubble-header {
    background-color: #C04E37;
    /* Red background from snippet */
    color: white;
    /* Default text color on red bg */
    padding: 20px 20px;
    border-radius: 30px;
    /* Snippet implies rounded box */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    max-width: 640px;
    /* Match snippet width */
    margin-left: auto;
    margin-right: auto;
    box-shadow: none;
    animation: tension-bob 2s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}




.speech-bubble-header h2 {
    font-size: 40px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    line-height: 1.6em;
    color: white;
    /* Default text color on red bg */
}

.highlight-underline {
    background-color: #F9F9F9;
    color: #C04E37;
    padding: 0 7px;
    margin-right: 10px;
    display: inline-block;
    font-weight: 600;
    line-height: 1.5em;
}

@keyframes float-bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.bubble-arrow {
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 35px solid #c05844;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.product-card {
    display: flex;
    flex-direction: row;
    /* Image Left, Content Right */
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    background: transparent;
    /* Snippet has no bg for card itself, just image bg */
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    width: 640px;
    max-width: 100%;
}

/* Image Wrapper for Zoom Effect */
.product-img-wrapper {
    width: 315px;
    height: 315px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0;
    background-color: #F3F4EF;
}

.product-img-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img-real {
    transform: scale(1.1);
}

.product-info {
    padding: 30px 0;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0px;
    /* Spacing between text and price */
    height: 315px;
    /* Match image height */
}

.product-info h3 {
    font-size: 30px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    line-height: 48px;
    color: #21201F;
    margin-bottom: 10px;
}

.product-info .desc {
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    color: #21201F;
    margin-bottom: 0;
    line-height: 28px;
}

/* Price Layout */
.price-row {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    /* Row layout to put badge next to price group */
    align-items: flex-end;
    /* Align bottom like image */
    justify-content: flex-end;
    /* Move to right? Or Left? 
       Image shows Badge LEFT, Price RIGHT.
       If we want Badge Left of Price Group:
       Just flex-row is fine.
       Check HTML structure: <badge> <group>
    */
    width: 100%;
    gap: 12px;
}

.price-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Right align text */
}

.original-price {
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    color: #B3A9A6;
    text-decoration: line-through;
    /* Restore strikethrough */
    margin-bottom: 5px;
}

.sale-price {
    font-size: 40px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    color: #21201F;
    line-height: 1;
}

/* Satisfaction / Review Section (6th Section) */
.satisfaction-section {
    padding: 100px 0;
    /* Snippet padding */
    background-color: #F9F9F9;
    /* Snippet bg */
    text-align: center;
}



.satisfaction-header .sub-desc {
    font-size: 24px;
    /* Slightly smaller sub */
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 1.4;
    color: #21201F;
    margin-bottom: 5px;
}

.satisfaction-header .main-desc {
    font-size: 36px;
    /* Adjusted title */
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    color: #21201F;
}

.satisfaction-stat {
    margin-bottom: 90px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    line-height: 1;
}

.satisfaction-stat span {
    color: #21201F;
    font-family: 'Pretendard', sans-serif;
}

.satisfaction-stat span:first-child {
    font-size: 55px;
    /* '만족도' size */
    font-weight: 400;
    margin-right: 15px;
}

.satisfaction-stat .stat-number {
    font-size: 140px;
    /* Much larger 100 */
    font-weight: 700;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
}

.satisfaction-stat .percent {
    font-size: 60px;
    /* % size */
    font-weight: 400;
    margin-left: 5px;
}

.review-box {
    width: 640px;
    height: 350px;
    /* Snippet height */
    margin: 0 auto;
    background-color: transparent;
    /* Container itself, inner card is beige */
    overflow: hidden;
    position: relative;
    padding: 0;
}

/* Background Card for the List */
.review-box::before {
    content: '';
    position: absolute;
    top: 50%;
    /* Center vertical */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 680px;
    /* Slightly wider than box */
    height: 400px;
    /* Taller to cover bounds */
    background-color: #F3F4EF;
    border-radius: 30px;
    z-index: 0;
}

.review-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #F3F4EF 0%, rgba(243, 244, 239, 0) 20%, rgba(243, 244, 239, 0) 80%, #F3F4EF 100%);
    border-radius: 30px;
    pointer-events: none;
    z-index: 2;
}

.review-row {
    display: flex;
    align-items: center;
    padding: 20px 80px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

.review-row div {
    display: flex;
    align-items: center;
    gap: 48px;
}

.swiper-slide-active .review-row,
.swiper-slide-active {
    opacity: 1 !important;
    filter: grayscale(0%) !important;
}

/* Badge Styling */
.review-badge {
    background-color: #E0DDD9;
    /* Light badge for inactive */
    color: #999;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 999px;
    white-space: nowrap;
    min-width: 100px;
    text-align: center;
}

.swiper-slide-active .review-badge {
    background-color: #B3A9A6;
    /* Darker badge for active */
    color: #222222;
    font-weight: 600;
}

.review-text {
    font-size: 28px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    /* Fixed weight to prevent jump */
    line-height: 1.4;
    color: #999;
    /* Faded text inactive */
    text-align: left;
    margin: 0;
}

.swiper-slide-active .review-text {
    color: #21201F;
    /* Active dark text */
}

.review-text strong {
    font-weight: 600;
    color: inherit;
    /* Inherit from parent status */
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.discount-badge {
    background-color: #c05844;
    color: white;
    font-size: 18px;
    padding: 3px 18px;
    border-radius: 30px;
    font-weight: 40;

    /* Vertically align with price group */
}

.original-price {
    display: block;
    text-decoration: line-through;
    color: #bbb;

    margin-bottom: 0;
    text-align: right;
}



/* Satisfaction Section (6th Block) */
.satisfaction-section {
    padding: 130px 20px;
    background-color: #fbfbfb;
    text-align: center;
}

.satisfaction-header {
    margin-bottom: 70px;
}

.satisfaction-header .sub-desc {
    font-size: 30px;
    color: var(--text-gray);
    margin-bottom: 10px;
    font-weight: 300;
}

.satisfaction-header .main-desc {
    font-size: 40px;
    font-weight: 500;
    color: var(--text-dark);
}

.satisfaction-stat {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 90px;
    color: var(--text-dark);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.satisfaction-stat .stat-number {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
}

.satisfaction-stat .percent {
    font-size: 55px;
    font-weight: 400;
}

.review-box {
    background-color: #f7f7f5;
    /* Beige background */
    border-radius: 20px;
    padding: 20px 80px;
    /* Reduced vertical padding since Swiper controls spacing */
    height: 350px;
    /* Fixed height for vertical swiper (approx 3 items) */
    overflow: hidden;
    /* Hide overflow */
    max-width: 640px;
    /* Optional constraint */
    margin: 0 auto;
    position: relative;
}


/* Active Slide Styling - Center slide with opacity 1 */
.swiper-slide-active {
    opacity: 1 !important;
}

.swiper-slide-active .review-text {
    font-weight: 700;
    color: var(--text-dark);
}

.swiper-slide-active .badge-light {
    /* Make badge darker when active */
    background-color: #a89c96;
    color: var(--text-dark);
}

.review-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.badge-light {
    background-color: #e3e3e3;
    color: #999;
}

.badge-dark {
    background-color: #a89c96;
    /* Darker beige/gray */
    color: var(--text-dark);
}

.review-text {

    line-height: 1.5;
    color: var(--text-gray);
    margin-bottom: 0;
    /* Reset */
    word-break: keep-all;
}

.text-bold {
    font-weight: 700;
}

/* Insight Section (7th Block) */
.insight-section {
    padding: 80px 20px;
    background-color: var(--white);
    text-align: center;
}

/* ... existing insight styles ... */

/* Consultant Section (8th Block) */
.consultant-section {
    padding: 80px 20px;
    background-color: #fcfcfc;
    /* Very light gray */
    text-align: center;
}

/* ... existing consultant styles ... */

/* Q&A Section (9th Block) */
.qa-section {
    padding: 99px 20px 129px 20px;
    background-color: #fbfbfb;
    text-align: center;
}

.qa-header h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.qa-header p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 50px;
}

.qa-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.qa-bubble {
    margin-top: 20px;
    padding: 25px 45px;
    border-radius: 12px;
    position: relative;
    text-align: left;
    line-height: 1.5;
    font-size: 25px;
}

/* Question Bubble */
.qa-bubble.question {
    background-color: #6d605d;
    /* Dark Brown */
    color: white;
    align-self: flex-start;
    /* Left aligned roughly? Image implies centered but bubble shape */
    /* Actually reference has Q leftish styled, A rightish styled or centered block? 
       Image: Q bubble has left tail, A bubble has right tail. They look vertically stacked. */
    width: 100%;
}

.qa-bubble.question .qa-text {
    font-weight: 400;
}

/* Answer Bubble */
.qa-bubble.answer {
    background-color: #e0dcd9;
    /* Light Beige */
    color: #4a4a4a;
    width: 100%;
    margin-left: 20px;
}

.qa-bubble.answer strong {
    font-weight: 700;
    color: #333;
}

/* Tails */
.qa-tail {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
}

.tail-left {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #6d605d transparent transparent;
}

.tail-right {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #e0dcd9;
}

/* Sticky Header Styles */
header {
    transition: all 0.3s ease;
    position: absolute;
    /* Initially absolute within relative wrapper */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* When fixed */
body.scrolled header {
    position: fixed;
    /* Fixed relative to viewport */
    top: 0;
    /* Center it based on the wrapper width logic */
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    max-width: 750px;
    /* Match #app-wrapper max-width */

    background-color: #5d4d4a;
    /* Dark brown */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    padding-top: 10px;
    padding-bottom: 10px;
}

/* Ensure the content below doesn't jump */
body.scrolled {
    padding-top: 0;
    /* Or header height if needed, but header overlays in this design often */
}

/* Realization Section (7th Block) */
.realization-section {
    padding: 113px 20px 170px 20px;
    background-color: #F9F9F9;
    text-align: center;
}

.realization-content {
    max-width: 640px;
    margin: 0 auto;
}

/* Define container_sub to match container behavior since user changed class in HTML */
.container_sub {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}


@keyframes tension-bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Restored Realization Bubble Styles */
/* Realization Card Styles */
.realization-card {
    background-color: #DDD9D8;
    border-radius: 20px;
    padding: 60px 36px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.warning-icon {
    margin-bottom: 30px;
}

.card-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.6;
    color: #21201F;
    margin-bottom: 30px;
    word-break: keep-all;
}

.card-desc {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.6;
    color: #21201F;
    word-break: keep-all;
}



/* 3. Visual Area */
.realization-visual {
    position: relative;
    margin-bottom: 80px;
}

.visual-main-img {
    width: 100%;
    border-radius: 30px;

    display: block;
}

.visual-note {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    /* If over dark image */
    margin: 0;
    font-weight: 300;
}

/* Consultant Bottom */

/* Consultant Bottom */
.consultant-bottom {
    margin-top: 80px;
}

.consultant-title {
    font-size: 40px;
    font-weight: 400;
    /* Regular weight based on image? Or bold? Image looks Regular/Medium. Let's stick to 400/500 */
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 30px;
    line-height: 1.5;
    letter-spacing: -0.5px;
    padding-top: 20px;
}

.vertical-divider {
    width: 1px;
    height: 63px;
    background-color: #999;
    /* Light gray line */
    margin: 0 auto 30px auto;
}

.consultant-desc {
    font-size: 30px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 300;
}

.consultant-bottom-img {
    width: 100%;
    border-radius: 20px;
}

/* Mobile responsive tweaks for this section */
@media (max-width: 768px) {
    .bubble-main-text {
        font-size: 22px;
    }
}

/* ... existing styles ... */

/* Closing & Coupon Section (10th Block) */
.closing-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.coupon-section {
    padding: 20px 20px;
    background-color: #f9f9f9;
    text-align: center;
}



.laurel-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.laurel-title h2 {
    font-size: 40px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.laurel-icon {
    width: 72px;
    height: auto;
    display: inline-block;
}

.closing-header p {
    font-size: 30px;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 300;
}

/* Coupon Styles */
.coupon-wrapper {
    position: relative;
    max-width: 650px;
    margin: 73px auto 130px;
    padding-top: 55px;
    /* Space for floating button overlay */
}

.coupon-card {
    background-color: #5d4d4a;
    /* Dark Brown */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 250px;
    border-radius: 0px;
    color: white;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.coupon-left {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.coupon-label {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 1px;
    line-height: 1;
}

.coupon-desc {
    font-size: 25px;
    line-height: 1;
    color: #B3A9A6;
    font-weight: 300;
}

.coupon-right {
    text-align: right;
}

.coupon-price {
    font-size: 96px;
    font-weight: 500;
    line-height: 1;
}

.coupon-price span {
    font-size: 34px;
}

/* Closing Section ... */
/* ... existing styles ... */

/* Branch Information Section (11th Block) */
.branch-section {
    padding: 150px 20px;
    background-color: #fafafa;
    /* Very light gray */
}

.branch-header {
    text-align: center;
    margin-bottom: 80px;
}

.branch-header h2 {
    font-size: 40px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

.branch-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 640px;
    margin: 0 auto;
}

.qa-text {
    line-height: 1.7em
}

.branch-item {
    display: flex;
    align-items: flex-start;

    gap: 20px;
    text-align: left;
}

.branch-img {
    width: 45%;
    /* Approx half width */
    aspect-ratio: 4/3;
    background-color: #ddd;
    border-radius: 12px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    padding: 0 !important;
    /* Override image-placeholder padding */
}

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

.branch-img .badge-grand-open {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #c05844;
    /* Accent Red */
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.branch-info {
    flex: 1;
    padding-top: 20px !important;
}

.branch-info h3 {
    font-size: 30px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.branch-info p {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.5;
    word-break: keep-all;
}

.laurel-title h2 {
    font-size: 48px;
    margin: 0px 15px;
    line-height: 1.3em;
}

/* Adjust for mobile if needed, but flex row usually works fine on 375px+ */
@media (max-width: 400px) {
    .branch-item {
        gap: 15px;
    }

    .branch-img {
        width: 140px;
        /* Fixed width on very small screens? */
    }

    .branch-info h3 {
        font-size: 1.1rem;
    }

    .branch-info p {
        font-size: 0.85rem;
    }
}

/* Cutouts */
.cutout {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border-radius: 50%;
}

.cutout.left {
    left: -10px;
}

.cutout.right {
    right: -10px;
}

/* Floating Download Button */
.download-btn {
    position: absolute;
    top: 0;
    left: 40px;
    /* Align with left text somewhat */
    width: 114px;
    height: 114px;
    background-color: #c05844;
    /* Accent Red */
    border-radius: 50%;
    border: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s;
    animation: soft-bounce 2s infinite ease-in-out;
}

.download-icon {
    width: 49px;
    height: auto;
    display: block;
    /* Optional: filter to make white if the png is black */
    filter: brightness(0) invert(1);
}

@keyframes soft-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}

.download-btn:hover {
    transform: scale(1.1);
}

.final-divider {
    height: 1px;
    width: 100%;
    background-color: #B5B5B5;
    margin-top: 40px;
}

.vertical-line {
    width: 1px;
    height: 40px;
    background-color: #ddd;
    margin: 0 auto 30px;
}

.consultant-header p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.consultant-img {
    width: 100%;
    aspect-ratio: 4/3;
    /* Landscape photo */
    border-radius: 20px;
    background-color: #ddd;
    max-width: 600px;
    margin: 0 auto;
}

/* Reusing speech-bubble-header with tweaks */
.insight-bubble {
    padding: 25px 20px;
    max-width: 95%;
    width: auto;
    display: inline-block;
    margin-bottom: 30px;
}

.insight-bubble .bubble-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 400;
}

.insight-bubble .bubble-main {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.bg-white-text {
    background-color: white;
    color: #c05844;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.insight-desc {
    margin-bottom: 40px;
}

.insight-desc p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}

.insight-image-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.insight-img {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: #ddd;
    border-radius: 20px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.insight-note {
    font-size: 0.7rem;
    color: #ccc;
    text-align: right;
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.cta-section {
    padding: 60px 20px;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--white);
}

.cta-banner {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    color: var(--text-dark);
}

.badge {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.cta-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.cta-img {
    height: 150px;
    margin: 20px 0;
    border-radius: 8px;
}

.main-footer {
    padding: 100px 20px;
    background-color: #f5f5f0;
    /* Light beige/gray from image */
    color: #555;
    text-align: center;
    font-size: 1rem;
}

.footer-logo img {
    width: 320px;
    height: auto;
    margin-bottom: 30px;
}

.footer-info p {
    margin-bottom: 5px;
    line-height: 1.4;
    color: #555;
    font-weight: 300;
}

.footer-info span {
    margin: 0 5px;
    display: inline-block;
}

@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }

    .product-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.promo-container img {
    width: 100%;
    max-width: 670px;
}

/* Floating Banner Styles */
.test-floating-wrapper {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 750px;
    background-color: #5d4d4a;
    /* Dark Brown */
    z-index: 9999;
    padding: 20px 40px 0px 40px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    /* Hide form when collapsed */
}

.floating-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
    /* Space below header */
    cursor: pointer;

}

.banner-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-text {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: white;
}

.banner-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

/* Rotate arrow when expanded */
.test-floating-wrapper.expanded .banner-arrow {
    transform: rotate(180deg);
}

.btn-toggle-form {
    background-color: white;
    color: #2c2c2c;
    border: none;
    padding: 10px 70px;
    border-radius: 6px;
    font-weight: 400;
    cursor: pointer;
    font-size: 13px;

}

/* Form Styles */
.floating-form {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 0;
}

.test-floating-wrapper.expanded .floating-form {
    max-height: 500px;
    /* Approximate max height */
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
    padding-bottom: 30px;
}

/* Utility to hide initially if needed, though max-height handles it */
.custom-hidden {
    display: none;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.form-group>label {
    font-size: 15px;
    width: 80px;
    color: white;
    font-weight: 400;
    flex-shrink: 0;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    flex: 1;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px;
    color: white;
    border-radius: 4px;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.branch-selector {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 3 cols like image */
    gap: 5px;
}

.branch-selector button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 8px 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
}

.branch-selector button.selected {
    background-color: white;
    color: #5d4d4a;
    font-weight: 700;
}

.privacy-check {
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.custom-checkbox {
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 13px;
    width: auto !important;
    /* Override label width */
}

.btn-submit {
    width: 100%;
    background-color: white;
    color: #2c2c2c;
    /* Dark text */
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

/* Privacy Link Styling */
.privacy-link {
    color: #c5a085;
    text-decoration: underline;
    cursor: pointer;
}

.privacy-link:hover {
    color: #a08060;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    max-height: 65vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: #000;
}

.modal-content h2 {
    color: #c5a085;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.modal-content h3 {
    color: #2c2c2c;
    margin-top: 15px;
    margin-bottom: 8px;
    font-size: 14px;
}

.modal-body {
    color: #555;
    line-height: 1.5;
    font-size: 12px;
}

.modal-body p {
    margin-bottom: 8px;
}

.modal-body ul {
    margin: 8px 0;
    padding-left: 18px;
}

.modal-body li {
    margin-bottom: 4px;
}

/* Ensure body has padding bottom so footer isn't hidden by banner */
body {
    padding-bottom: 40px;
}

/* Responsive Scaling - Proportional scaling for screens under 750px */


@media (max-width: 750px) {

    /* Base font size scaling */
    html {
        font-size: calc(100vw / 750 * 16);
        /* 16px base at 750px */
    }

    .program-slider-card {
        padding-bottom: calc(100vw / 750 * 70);
    }

    section.promotion-section {
        padding-top: calc(100vw / 750 * 130) !important;
    }

    section.problems-section {
        padding-top: calc(100vw / 750 * 130) !important;
    }

    .promo-video-container {

        margin-bottom: calc(100vw / 750 * 150) !important;

    }

    .banner-text {
        font-size: calc(100vw / 750 * 24);
    }

    .banner-arrow {
        width: calc(100vw / 750 * 24);
        height: calc(100vw / 750 * 24);
    }

    .floating-form {
        margin-top: 0px;
    }

    .intro-section {
        padding: 70px 0px
    }

    /* Hero section */
    .hero-title {
        font-size: calc(100vw / 750 * 48);
    }

    /* Section headers */
    .section-header .sub-title {
        font-size: calc(100vw / 750 * 30);
    }

    .section-header .main-title {
        font-size: calc(100vw / 750 * 40);
    }

    /* Program slider */
    .program-title {
        font-size: calc(100vw / 750 * 30);
    }

    .program-desc {
        font-size: calc(100vw / 750 * 20);
    }

    /* Promo section */

    .promotion-section {
        padding: 70px 0px;
    }

    .promo-subtitle {
        font-size: calc(100vw / 750 * 30);
    }

    .promo-title {
        font-size: calc(100vw / 750 * 40);
    }

    /* Problems section */
    .problems-section {
        padding-top: 70px
    }

    .problems-title {
        font-size: calc(100vw / 750 * 40);
        margin-bottom: calc(100vw / 750 * 60);
    }

    .problem-label {
        font-size: calc(100vw / 750 * 30);
    }

    /* Product section */
    .speech-bubble-header h2 {
        font-size: calc(100vw / 750 * 40);
        padding: 0px 4px;
    }

    .section-desc {
        font-size: calc(100vw / 750 * 30) !important;
        line-height: calc(100vw / 750 * 42) !important;
    }

    /* Satisfaction section */
    .satisfaction-header .sub-desc {
        font-size: calc(100vw / 750 * 30);
    }

    .satisfaction-header .main-desc {
        font-size: calc(100vw / 750 * 40);
    }

    .satisfaction-header {
        margin-bottom: calc(100vw / 750 * 70);

    }

    .satisfaction-stat span:first-child {
        font-size: calc(100vw / 750 * 55);
    }

    .satisfaction-stat .stat-number {
        font-size: calc(100vw / 750 * 120);
    }

    .satisfaction-stat .percent {
        font-size: calc(100vw / 750 * 55);
    }

    .review-text {
        font-size: calc(100vw / 750 * 28);
    }

    /* Realization section */
    .realization-card {
        border-radius: calc(100vw / 750 * 20);
        padding: calc(100vw / 750 * 60) calc(100vw / 750 * 36);
        margin-bottom: calc(100vw / 750 * 30);
    }

    .warning-icon {
        margin-bottom: calc(100vw / 750 * 30);
    }

    .warning-icon svg {
        width: calc(100vw / 750 * 60);
        height: auto;
    }

    .card-title {
        font-size: calc(100vw / 750 * 30);
        margin-bottom: calc(100vw / 750 * 30);
    }

    .card-desc {
        font-size: calc(100vw / 750 * 25);
    }

    /* Consultant section */
    .consultant-title {
        font-size: calc(100vw / 750 * 40);
    }

    .consultant-desc {
        font-size: calc(100vw / 750 * 30);
    }

    /* Q&A section */
    .qa-header h2 {
        font-size: calc(100vw / 750 * 40);
    }

    .qa-bubble {
        font-size: calc(100vw / 750 * 25);
    }

    /* Closing section */
    .laurel-title h2 {
        font-size: calc(100vw / 750 * 48);
    }

    .closing-header p {
        font-size: calc(100vw / 750 * 30);
    }

    /* Branch section */
    .branch-header h2 {
        font-size: calc(100vw / 750 * 40);
    }

    .branch-info h3 {
        font-size: calc(100vw / 750 * 30);
    }

    .branch-info p {
        font-size: calc(100vw / 750 * 20);
    }

    /* Spacing adjustments */
    .container,
    .container_sub {
        padding: 0 calc(100vw / 750 * 20);
    }

    section {
        padding-top: calc(100vw / 750 * 160) !important;
        padding-bottom: calc(100vw / 750 * 160) !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    /* Specific overriding for realization section */
    .realization-section {
        padding-top: calc(100vw / 750 * 113) !important;
        padding-bottom: calc(100vw / 750 * 170) !important;
    }

    .product-section {
        padding-bottom: 0px !important
    }

    /* Image containers */
    .promo-video-container {
        border-radius: calc(100vw / 750 * 30);
        padding: calc(100vw / 750 * 10);
    }

    .visual-main-img {
        border-radius: calc(100vw / 750 * 30);
    }

    .satisfaction-stat {
        margin-bottom: calc(100vw / 750 * 90)
    }

    .consultant-bottom-img-wrapper {
        margin-bottom: 0px
    }

    /* Review box */
    .review-box {
        height: calc(100vw / 750 * 350);
        padding: calc(100vw / 750 * 20) calc(100vw / 750 * 80);
        border-radius: calc(100vw / 750 * 20);
        width: calc(100vw / 750 * 650);
    }

    .review-box::after {
        border-radius: calc(100vw / 750 * 20);
    }

    .review-row {
        padding: calc(100vw / 750 * 10) calc(100vw / 750 * 80);
    }

    .review-row div {
        gap: calc(100vw / 750 * 48);
    }

    /* Product Cards */
    .product-card {
        width: calc(100vw / 750 * 640);
        gap: calc(100vw / 750 * 20);
    }

    .product-img-wrapper {
        width: calc(100vw / 750 * 315);
        height: calc(100vw / 750 * 315);
        border-radius: calc(100vw / 750 * 15);
    }

    .product-img-real {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .product-info {
        padding: calc(100vw / 750 * 30) 0;
        gap: calc(100vw / 750 * 36);
        height: calc(100vw / 750 * 315);
    }

    .product-info h3 {
        font-size: calc(100vw / 750 * 30);
        line-height: calc(100vw / 750 * 48);
        margin-bottom: calc(100vw / 750 * 10);
    }

    .product-info .desc {
        font-size: calc(100vw / 750 * 20);
        line-height: calc(100vw / 750 * 28);
    }

    .price-row {
        gap: calc(100vw / 750 * 12);
    }

    .original-price {
        font-size: calc(100vw / 750 * 20);
        margin-bottom: calc(100vw / 750 * 5);
    }

    .sale-price {
        font-size: calc(100vw / 750 * 40);
    }

    .discount-badge {
        font-size: calc(100vw / 750 * 18);
        padding: calc(100vw / 750 * 5) calc(100vw / 750 * 25);
        border-radius: 50px;
    }

    /* Product list spacing */
    .product-list {
        gap: calc(100vw / 750 * 10);
    }

    .product-section .section-desc {
        margin-top: calc(100vw / 750 * 100);
    }

    /* Speech bubble */
    .speech-bubble-header {
        padding: calc(100vw / 750 * 30) calc(100vw / 750 * 20);
        border-radius: calc(100vw / 750 * 20);
        margin-bottom: calc(100vw / 750 * 50);
        max-width: calc(100vw / 750 * 640);
    }

    .bubble-arrow {
        bottom: calc(100vw / 750 * -30);
        border-left: calc(100vw / 750 * 35) solid transparent;
        border-right: calc(100vw / 750 * 35) solid transparent;
        border-top: calc(100vw / 750 * 35) solid #C04E37;
    }

    /* Realization bubble */
    .realization-bubble {
        padding: calc(100vw / 750 * 25) calc(100vw / 750 * 30);
        border-radius: calc(100vw / 750 * 30);
        margin-bottom: calc(100vw / 750 * 50);
        max-width: calc(100vw / 750 * 640);
    }

    .bubble-white-box {
        padding: calc(100vw / 750 * 10);
    }

    .realization-bubble .bubble-tail {
        bottom: calc(100vw / 750 * -30);
        border-left: calc(100vw / 750 * 35) solid transparent;
        border-right: calc(100vw / 750 * 35) solid transparent;
        border-top: calc(100vw / 750 * 35) solid #C04E37;
    }

    .realization-visual {
        margin-bottom: calc(100vw / 750 * 80)
    }

    .consultant-bottom {
        margin-top: calc(100vw / 750 * 80)
    }

    section.qa-section {
        padding-top: calc(100vw / 750 * 99) !important;
        padding-bottom: calc(100vw / 750 * 129) !important;
    }


    .realization-text-group {
        margin-bottom: calc(100vw / 750 * 60)
    }

    /* Vertical divider */
    .vertical-divider {
        height: calc(100vw / 750 * 60);
        margin: 0 auto calc(100vw / 750 * 30) auto;
    }

    /* Divider lines */
    .divider {
        border-top: calc(100vw / 750 * 1) solid #666;
    }

    /* Problem items */
    .problem-img {
        width: calc(100vw / 750 * 155);
        height: calc(100vw / 750 * 270);
    }

    .problem-item {
        gap: 0px;
    }

    .problem-item.highlight-item {
        padding: 0;
    }

    .problems-grid {
        width: calc(100vw / 750 * 640);
        margin-bottom: calc(100vw / 750 * 20);
    }

    .sliding-overlay {
        width: calc(100vw / 750 * 155);
        height: 100% !important;
    }

    .problem-label {
        font-size: calc(100vw / 750 * 30);
        width: calc(100vw / 750 * 151);
        line-height: 1.3 !important;
        margin-top: calc(100vw / 750 * 10);
        padding-bottom: calc(100vw / 750 * 15);
    }

    /* Review badges */
    .review-badge {
        padding: calc(100vw / 750 * 6) calc(100vw / 750 * 15);
        border-radius: calc(100vw / 750 * 20);
        font-size: calc(100vw / 750 * 14);
        min-width: calc(100vw / 750 * 80);
    }

    /* QA bubbles */
    .qa-bubble {
        padding: calc(100vw / 750 * 20) calc(100vw / 750 * 25);
        border-radius: calc(100vw / 750 * 12);
    }

    .qa-content {
        gap: calc(100vw / 750 * 20);
        max-width: calc(100vw / 750 * 600);
    }

    /* Coupon */
    .coupon-card {
        padding: calc(100vw / 750 * 30) calc(100vw / 750 * 40);

    }

    /* Branch items */
    .branch-list {
        gap: calc(100vw / 750 * 30);
    }

    .branch-item {
        gap: calc(100vw / 750 * 20);
    }

    .branch-img {
        height: calc(100vw / 750 * 200);
        border-radius: calc(100vw / 750 * 15);
    }

    /* Floating banner */
    .test-floating-wrapper {
        padding: calc(100vw / 750 * 20);
        padding-bottom: 0px;
        border-top-left-radius: calc(100vw / 750 * 20);
        border-top-right-radius: calc(100vw / 750 * 20);
    }

    /* Header */
    .main-header {
        padding: calc(100vw / 750 * 15) 0;
    }

    .logo {
        font-size: calc(100vw / 750 * 20);
    }



    .laurel-icon {
        width: calc(100vw / 750 * 60);
        height: auto;
    }

    .laurel-title h2 {
        font-size: calc(100vw / 750 * 48);
        margin: 0 calc(100vw / 750 * 15);
    }

    .closing-header p {
        font-size: calc(100vw / 750 * 30);
        line-height: calc(100vw / 750 * 45);
    }

    /* Coupon Section Responsive */
    .coupon-wrapper {
        max-width: calc(100vw / 750 * 650);
        margin: 0 auto !important;
    }

    section.coupon-section {
        padding-top: calc(100vw / 750 * 50) !important;
        padding-bottom: calc(100vw / 750 * 150) !important;
    }

    section.closing-section {
        padding-top: calc(100vw / 750 * 100) !important;
        padding-bottom: calc(100vw / 750 * 100) !important;
    }

    .main-footer {
        padding-top: calc(100vw / 750 * 100) !important;
        padding-bottom: calc(100vw / 750 * 100) !important;
        padding-left: calc(100vw / 750 * 15) !important;
        padding-right: calc(100vw / 750 * 15) !important;
    }

    .floating-banner-content {
        padding-bottom: 10px
    }

    .footer-logo img {
        width: calc(100vw / 750 * 320) !important;
    }

    .footer-info p {
        font-size: calc(100vw / 750 * 18);
        line-height: 1.6;
    }

    .footer-info span {
        font-size: calc(100vw / 750 * 17);
        margin: 0 calc(100vw / 750 * 3);
    }

    .form-group>label {
        font-size: calc(100vw / 750 * 15) !important;
    }

    .coupon-label {
        font-size: calc(100vw / 750 * 40);
        margin-bottom: calc(100vw / 750 * 8);
    }

    .coupon-desc {
        font-size: calc(100vw / 750 * 25);
    }

    .coupon-price {
        font-size: calc(100vw / 750 * 96);
    }

    .coupon-price span {
        font-size: calc(100vw / 750 * 34);
    }

    .coupon-card {
        height: calc(100vw / 750 * 250);
    }

    .cutout {
        width: calc(100vw / 750 * 20);
        height: calc(100vw / 750 * 20);
    }

    .cutout.left {
        left: calc(100vw / 750 * -10);
    }

    .cutout.right {
        right: calc(100vw / 750 * -10);
    }

    .download-btn {
        width: calc(100vw / 750 * 114);
        height: calc(100vw / 750 * 114);
        left: calc(100vw / 750 * 40);
    }

    .download-icon {
        width: calc(100vw / 750 * 49);
    }
}

@media (max-width: 640px) {
    .hero-section {
        height: 100vh;
        max-height: 100vh;
    }
}

@media (max-width: 580px) {
    .hero-section {
        height: 100vh;
        max-height: 88vh;
    }
}

/* -------------------------------------------------------- */
/* Scroll Animation (Fade In Up) */
/* -------------------------------------------------------- */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}