/* Competitiveness Section (Gap Analysis) */
.competitiveness-section {
    padding: 100px 0;
    /* Standardized spacing */
    margin: 0;
}

.market-gap-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1000px;
    height: 400px;
    /* Fixed height for animation space */
    margin: 0 auto;
    cursor: pointer;
    /* Indicate interactivity */
}

.circle-group {
    width: 350px;
    /* Larger circles */
    height: 350px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 1;
    position: absolute;
    /* Using absolute positioning for smooth expansion */
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    /* Hidden initially */
    transform: scale(0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Hover Effect: Expand circles */
.market-gap-visual:hover .circle-group {
    opacity: 1;
    transform: scale(1);
}

.market-gap-visual:hover .circle-group.left {
    left: 50px;
    /* Move to left */
}

.market-gap-visual:hover .circle-group.right {
    right: 50px;
    /* Move to right */
}

/* Initial state (Centered/Hidden) */
.circle-group.left {
    left: 50%;
    transform: translateX(-50%) scale(0.8);
}

.circle-group.right {
    right: 50%;
    transform: translateX(50%) scale(0.8);
}


.circle-group h3 {
    font-size: 1.8rem;
    /* Bigger title */
    margin-bottom: 20px;
    font-weight: 900;
    color: #333;
    line-height: 1.3;
}

.circle-group ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.circle-group li {
    font-size: 1.1rem;
    /* Bigger list text */
    color: #555;
    margin-bottom: 8px;
    font-weight: 600;
}

.circle-overlap {
    width: 280px;
    /* Larger center circle */
    height: 280px;
    background: var(--white);
    border: 5px solid var(--primary-color);
    /* Thicker border */
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(189, 0, 23, 0.3);
    animation: pulse-border 2s infinite;
}

.overlap-text {
    text-align: center;
    font-weight: 900;
    line-height: 1.5;
    color: var(--primary-color);
}

.overlap-text .highlight {
    font-size: 1.6rem;
    /* Much larger text */
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.brand-logo-small {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
    font-weight: 700;
    letter-spacing: 1px;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(189, 0, 23, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(189, 0, 23, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(189, 0, 23, 0);
    }
}

/* Menu Section (Dark Mode & Mockups) */
.bg-black {
    background-color: #111;
}

.text-white {
    color: #fff;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.6);
}

.burger-showcase-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* Consistent gap */
    flex-wrap: wrap;
    padding-top: 40px;
    margin-bottom: 60px;
    /* Space for CTA */
}

.burger-item {
    text-align: center;
    width: 300px;
    position: relative;
    transition: transform 0.3s ease;
}

.burger-item:hover {
    transform: translateY(-10px);
}

.size-options {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto 10px;
}

.size-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #888;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
}

.burger-item:hover .size-box {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.burger-image {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.burger-image img {
    width: 100%;
    aspect-ratio: 1/1;
    /* Square aspect ratio */
    object-fit: cover;
    /* Crop to fit */
    border-radius: 20px;
    /* Softer edges */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.burger-item:hover .burger-image img {
    transform: scale(1.05) rotate(2deg);
}

.burger-info {
    position: relative;
    padding-top: 15px;
}

.burger-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #333;
}

.kor-name {
    font-size: 1.8rem;
    font-family: var(--font-title);
    font-weight: normal;
    margin-bottom: 5px;
    color: #fff;
    letter-spacing: -1px;
}

.eng-name {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline-white:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

/* Footer Info */
.footer-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin: 30px 0;
    text-align: left;
}

.info-group {
    margin-bottom: 10px;
    color: #999;
    font-size: 0.9rem;
}

.info-group span {
    margin-right: 20px;
    position: relative;
    display: inline-block;
}

.info-group span::after {
    content: '|';
    position: absolute;
    right: -12px;
    top: 0;
    color: #444;
}

.info-group span:last-child::after {
    display: none;
}




/* Store Finder Section */
.store-section {
    padding: 100px 0;
    overflow: hidden;
}

.store-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.store-text-content {
    flex: 1;
    max-width: 500px;
}

.store-text-content .section-title {
    font-size: 3rem;
    line-height: 1.2;
}

.highlight-red {
    color: var(--primary-color);
}

.store-search-box {
    position: relative;
    max-width: 450px;
    margin-top: 30px;
}

.store-search-box input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    border-radius: 50px;
    border: 2px solid #ddd;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.store-search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.store-stats {
    display: flex;
    gap: 30px;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}

.stat-item strong {
    font-size: 2rem;
    font-weight: 900;
    color: #333;
}

.stat-item span {
    font-size: 1rem;
    color: #555;
    margin-left: 2px;
}

.store-map-visual {
    flex: 1.2;
    /* Give more space to map */
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.map-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 500px;
    /* Larger map */
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: pin-pulse 2s infinite;
}

@keyframes pin-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(189, 0, 23, 0.4);
    }

    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 15px rgba(189, 0, 23, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(189, 0, 23, 0);
    }
}


@media (max-width: 992px) {
    .store-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .store-text-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .store-text-content .section-title,
    .store-text-content .section-subtitle {
        text-align: center !important;
    }

    .store-search-box {
        margin: 30px auto;
    }

    .store-stats {
        justify-content: center;
    }

    .store-map-visual {
        justify-content: center;
        width: 100%;
    }
}

/* Viral SNS Section */
.viral-section {
    background: #f9f9f9;
    padding: 100px 0;
}

.badge-black {
    background: #000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.viral-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.v-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 25px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 280px;
}

.v-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(189, 0, 23, 0.3);
}

.v-stat .icon-box {
    width: 60px;
    height: 60px;
    background: #fff5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(189, 0, 23, 0.1);
}

.v-stat .text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.v-stat .text-group strong {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2px;
}

.v-stat .text-group .num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #000;
}

.viral-cta-wrapper {
    margin-top: 80px;
    /* Increased spacing */
}

.viral-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.viral-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.viral-card:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.phone-frame {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%;
    /* 9:16 Aspect Ratio */
    background: #000;
}

.phone-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Hide fallback image and play icon when iframe is present */
.phone-frame iframe+img,
.phone-frame iframe+.play-icon,
.phone-frame iframe~.play-icon {
    display: none;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    border: 2px solid #fff;
    transition: all 0.3s;
    pointer-events: none;
    /* Let clicks pass through if needed, though they are usually clicks to play */
}

.viral-card:hover .play-icon {
    background: var(--primary-color);
    /* Brand Red */
    border-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.2);
}

.sns-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    text-align: left;
    color: #fff;
}

.badge-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: inline-block;
}

.badge-youtube {
    background: #FF0000;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: inline-block;
}

.sns-overlay .desc {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Standard property */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reaction span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.btn-outline-black {
    border: 2px solid #000;
    color: #000;
    background: transparent;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-black:hover {
    background: #000;
    color: #fff;
}

/* Responsive Viral Grid */
@media (max-width: 992px) {
    .viral-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .viral-stats {
        gap: 20px;
    }

    .v-stat strong {
        font-size: 0.9rem;
    }

    .v-stat .num {
        font-size: 1.4rem;
    }

    .viral-grid {
        grid-template-columns: repeat(1, 1fr);
        /* 1 column on mobile for better view */
        max-width: 300px;
    }
}

.brand-trust-section {
    background: linear-gradient(135deg, #fffcfc 0%, #fff0f0 100%);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid #eee;
}

.brand-trust-section h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.trust-desc {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #444;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto 40px;
    word-break: keep-all;
}

.trust-desc strong {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.5rem;
    display: block;
    margin-top: 30px;
    text-shadow: 0 10px 20px rgba(189, 0, 23, 0.1);
}

.trust-highlight {
    margin-top: 60px;
    background: #fff;
    display: inline-block;
    padding: 25px 50px;
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(189, 0, 23, 0.15);
    border: 3px solid var(--primary-color);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.trust-highlight:hover {
    transform: scale(1.05);
}

.trust-highlight h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
    color: #000;
}

.bg-red {
    background-color: var(--primary-color);
    padding: 0 15px;
    transform: skewX(-10deg);
    display: inline-block;
}

/* Updated Features Detailed (Split Layout) */
.features-detailed {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1100px;
    margin: 80px auto 0;
    padding-top: 0;
    border-top: none;
    gap: 30px;
}

.feature-item {
    flex: 1;
    text-align: center;
    background: #fff;
    padding: 50px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-item h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark);
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.feature-item h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #444;
    font-weight: 500;
}

.feature-list strong {
    background: rgba(189, 0, 23, 0.08);
    color: var(--primary-color);
    padding: 0 5px;
    font-weight: 800;
}

.feature-divider {
    display: none;
    /* Removed in favor of card gap */
}

/* Fixed CTA Buttons */
.fixed-cta-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    /* Let clicks pass through gaps */
}

.cta-btn {
    pointer-events: auto;
    /* Re-enable clicks */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
    width: auto;
}

.phone-btn {
    background: var(--primary-color);
    border-top-right-radius: 20px;
}

.online-btn {
    background: var(--dark);
    border-top-left-radius: 20px;
}

.cta-btn:hover {
    transform: translateY(-5px);
    color: var(--white);
}

.cta-btn .icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Cost Section Specifics */
.cost-section {
    padding: 150px 0;
    /* Extra spacious for "Investment" */
}

/* ===== MEDIA QUERIES (섹션별) ===== */

/* ========== COMPETITIVENESS SECTION ========== */
@media (max-width: 1024px) {
    .market-gap-visual {
        max-width: 900px;
        height: 350px;
    }

    .circle-group {
        width: 300px;
        height: 300px;
    }

    .circle-overlap {
        width: 240px;
        height: 240px;
    }

    .circle-group h3 {
        font-size: 1.5rem;
    }

    .circle-group li {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .market-gap-visual {
        max-width: 100%;
        height: auto;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .circle-group,
    .circle-group.left,
    .circle-group.right {
        position: relative;
        width: 100%;
        max-width: 280px;
        height: 280px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: scale(1) !important;
        opacity: 1 !important;
        margin: 0 auto;
    }

    .circle-overlap {
        width: 220px;
        height: 220px;
    }

    .circle-group h3 {
        font-size: 1.3rem;
    }

    .circle-group li {
        font-size: 0.95rem;
    }

    .overlap-text .highlight {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .circle-group {
        max-width: 240px;
        height: 240px;
    }

    .circle-overlap {
        width: 190px;
        height: 190px;
    }

    .circle-group h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .circle-group li {
        font-size: 0.85rem;
    }

    .overlap-text .highlight {
        font-size: 1.2rem;
    }

    .brand-logo-small {
        font-size: 0.85rem;
    }
}

/* ========== BURGER SHOWCASE SECTION ========== */
@media (max-width: 1024px) {
    .burger-showcase-grid {
        gap: 25px;
        padding-top: 30px;
    }

    .burger-item {
        width: 280px;
    }

    .burger-image img {
        border-radius: 15px;
    }

    .kor-name {
        font-size: 1.6rem;
    }

    .eng-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .burger-showcase-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-top: 40px;
    }

    .burger-item {
        width: 100%;
        max-width: 300px;
    }

    .size-options {
        width: 90%;
    }

    .burger-image img {
        border-radius: 12px;
    }

    .kor-name {
        font-size: 1.4rem;
    }

    .size-box {
        font-size: 0.75rem;
        padding: 2px 8px;
    }
}

@media (max-width: 480px) {
    .burger-showcase-grid {
        padding-top: 30px;
    }

    .burger-item {
        width: 100%;
        max-width: 260px;
    }

    .burger-image img {
        border-radius: 10px;
    }

    .kor-name {
        font-size: 1.2rem;
    }

    .eng-name {
        font-size: 0.75rem;
    }

    .size-box {
        font-size: 0.7rem;
    }
}

/* ========== STORE FINDER SECTION ========== */
@media (max-width: 1024px) {
    .store-content-wrapper {
        gap: 40px;
    }

    .store-text-content .section-title {
        font-size: 2.5rem;
    }

    .store-search-box {
        max-width: 400px;
        margin-top: 25px;
    }

    .store-search-box input {
        padding: 15px 50px 15px 20px;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .store-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .store-text-content {
        max-width: 100%;
    }

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

    .store-search-box {
        max-width: 100%;
        margin: 20px auto;
    }

    .store-search-box input {
        padding: 12px 45px 12px 18px;
        font-size: 0.95rem;
    }

    .btn-search {
        width: 40px;
        height: 40px;
    }

    .store-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        padding-top: 20px;
    }

    .stat-item h3 {
        font-size: 0.85rem;
    }

    .stat-item strong {
        font-size: 1.8rem;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .store-text-content .section-title {
        font-size: 1.6rem;
    }

    .store-search-box input {
        padding: 10px 40px 10px 15px;
        font-size: 0.9rem;
    }

    .btn-search {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .store-stats {
        gap: 15px;
        padding-top: 15px;
    }

    .stat-item h3 {
        font-size: 0.8rem;
    }

    .stat-item strong {
        font-size: 1.5rem;
    }

    .map-container {
        height: 250px;
    }
}

/* ========== VIRAL SECTION ========== */
@media (max-width: 1024px) {
    .viral-stats {
        gap: 25px;
        margin-top: 50px;
    }

    .v-stat {
        padding: 20px 30px;
        min-width: 250px;
    }

    .v-stat .icon-box {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .v-stat .text-group .num {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .viral-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }

    .v-stat {
        width: 100%;
        max-width: 320px;
        padding: 18px 25px;
        min-width: auto;
    }

    .v-stat .icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .v-stat .text-group strong {
        font-size: 0.85rem;
    }

    .v-stat .text-group .num {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .viral-stats {
        gap: 15px;
    }

    .v-stat {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 20px;
    }

    .v-stat .icon-box {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .v-stat .text-group {
        text-align: center;
    }

    .v-stat .text-group strong {
        font-size: 0.8rem;
    }

    .v-stat .text-group .num {
        font-size: 1.1rem;
    }
}

/* ========== BRAND TRUST SECTION ========== */
@media (max-width: 1024px) {
    .brand-trust-section h2 {
        font-size: 2.5rem;
    }

    .trust-desc {
        font-size: 1.1rem;
    }

    .trust-desc strong {
        font-size: 1.3rem;
    }

    .trust-highlight h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .brand-trust-section {
        padding: 80px 20px;
    }

    .brand-trust-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .trust-desc {
        font-size: 1rem;
        margin: 0 auto 30px;
    }

    .trust-desc strong {
        font-size: 1.1rem;
        margin-top: 20px;
    }

    .trust-highlight {
        padding: 20px 40px;
        margin-top: 40px;
    }

    .trust-highlight h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .brand-trust-section {
        padding: 60px 15px;
    }

    .brand-trust-section h2 {
        font-size: 1.6rem;
    }

    .trust-desc {
        font-size: 0.95rem;
    }

    .trust-desc strong {
        font-size: 1rem;
    }

    .trust-highlight {
        padding: 15px 30px;
        border: 2px solid var(--primary-color);
    }

    .trust-highlight h3 {
        font-size: 1.2rem;
    }

    .bg-red {
        padding: 0 10px;
    }
}

/* ========== FEATURES DETAILED SECTION ========== */
@media (max-width: 1024px) {
    .features-detailed {
        gap: 25px;
        margin: 60px auto 0;
    }

    .feature-item {
        padding: 40px 25px;
    }

    .feature-item h3 {
        font-size: 2rem;
    }

    .feature-list li {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .features-detailed {
        flex-direction: column;
        gap: 20px;
        margin: 50px auto 0;
        max-width: 100%;
        padding: 0 20px;
    }

    .feature-item {
        padding: 30px 20px;
        border-radius: 20px;
        background: #fff;
    }

    .feature-item h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .feature-item h3::after {
        width: 40px;
    }

    .feature-list li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .features-detailed {
        margin: 40px auto 0;
        padding: 0 15px;
        gap: 15px;
    }

    .feature-item {
        padding: 20px 15px;
    }

    .feature-item h3 {
        font-size: 1.3rem;
    }

    .feature-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .feature-list strong {
        padding: 0 3px;
    }
}

/* ========== FIXED CTA BUTTONS ========== */
@media (max-width: 1024px) {
    .fixed-cta-wrapper {
        bottom: 0;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .phone-btn {
        border-top-right-radius: 15px;
    }

    .online-btn {
        border-top-left-radius: 15px;
    }

    .cta-btn .icon {
        margin-right: 8px;
    }
}

@media (max-width: 768px) {
    .fixed-cta-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        z-index: 100;
        display: flex;
        justify-content: space-between;
        padding: 15px 20px;
        background: var(--neon-red);
        gap: 10px;
        pointer-events: auto;
        margin-top: 40px;
    }

    .cta-btn {
        pointer-events: auto;
        flex: 1;
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 8px;
        justify-content: center;
    }

    .phone-btn {
        background: var(--primary-color);
        border-top-right-radius: 8px;
    }

    .online-btn {
        background: var(--dark);
        border-top-left-radius: 8px;
    }

    .cta-btn .icon {
        margin-right: 6px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .fixed-cta-wrapper {
        flex-direction: column;
        padding: 10px 15px;
        gap: 8px;
    }

    .cta-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
        width: 100%;
    }

    .phone-btn,
    .online-btn {
        border-radius: 6px;
    }

    .cta-btn .icon {
        display: none;
    }
}
