/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #0f0f1a;
    color: #e8e8f0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== DESIGN TOKENS ===== */
:root {
    --primary-pink: #ff6b8a;
    --primary-dark-pink: #e8375a;
    --primary-light-pink: #ff9eb8;
    --primary-coral: #ff7b7b;
    --primary-purple: #8b5cf6;
    --primary-blue: #3b82f6;
    --gradient-main: linear-gradient(135deg, #ff6b8a 0%, #e8375a 50%, #c73e5a 100%);
    --gradient-hero: linear-gradient(135deg, #ff6b8a 0%, #ff9eb8 30%, #e8375a 70%, #8b5cf6 100%);
    --gradient-pink-btn: linear-gradient(135deg, #ff6b8a, #e8375a);
    --gradient-glow: linear-gradient(135deg, #ff6b8a, #8b5cf6, #3b82f6);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    --bg-page: #0f0f1a;
    --bg-section-1: #12121f;
    --bg-section-2: #141425;
    --bg-card: rgba(255, 255, 255, 0.06);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-white: #ffffff;
    --text-light: #c8c8d8;
    --text-muted: #8888a8;
    --text-pink: #ff6b8a;
    --text-gradient: linear-gradient(135deg, #ff6b8a, #ff9eb8);
    --text-gradient-multi: linear-gradient(135deg, #ff6b8a, #8b5cf6, #3b82f6);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-button: 0 8px 32px rgba(255, 107, 138, 0.35);
    --shadow-glow-pink: 0 0 40px rgba(255, 107, 138, 0.3);
    --shadow-glow-purple: 0 0 40px rgba(139, 92, 246, 0.2);
    --shadow-float: 0 8px 24px rgba(0, 0, 0, 0.4);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-full: 999px;
    --max-width: 420px;
    --header-height: 64px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== LAYOUT WRAPPER ===== */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: var(--radius-full);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: var(--shadow-button); }
    50% { transform: scale(1.03); box-shadow: 0 12px 40px rgba(255, 107, 138, 0.5); }
    100% { transform: scale(1); box-shadow: var(--shadow-button); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 138, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 107, 138, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 138, 0); }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

@keyframes toastSlide {
    0% { transform: translateX(-120%); opacity: 0; }
    10% { transform: translateX(0); opacity: 1; }
    90% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-120%); opacity: 0; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(1deg); }
    66% { transform: translateY(4px) rotate(-1deg); }
}

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

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
    0% { border-color: rgba(255, 107, 138, 0.3); }
    50% { border-color: rgba(139, 92, 246, 0.5); }
    100% { border-color: rgba(255, 107, 138, 0.3); }
}

@keyframes textShimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 0.6; }
    100% { transform: scale(4); opacity: 0; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.pulse-animation {
    animation: pulse 2s var(--transition-smooth) infinite;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}

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

/* ===== DECORATIVE ELEMENTS ===== */
.section-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.08;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-glass);
    height: var(--header-height);
    transition: all 0.4s var(--transition-smooth);
}

.header.scrolled {
    background: rgba(15, 15, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(1.1);
}

.footer-logo .logo-img {
    height: 44px;
    filter: brightness(0.9) invert(1);
}

.logo-icon svg {
    display: block;
    filter: drop-shadow(0 0 8px rgba(200, 150, 12, 0.4));
}

.logo-icon svg circle {
    stroke: #C8960C;
}

.logo-icon svg path {
    fill: #C8960C;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #C8960C;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.logo-sub {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    font-style: italic;
}

.header-cta {
    position: relative;
    background: var(--gradient-pink-btn);
    color: white;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    border: none;
    box-shadow: var(--shadow-button);
    white-space: nowrap;
    overflow: hidden;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: inherit;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s var(--transition-smooth);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255, 107, 138, 0.5);
}

.header-cta:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* ===== HERO SECTION ===== */
.hero-section {
    margin-top: var(--header-height);
    background: linear-gradient(180deg, #1a0a1e 0%, #2a0a2e 30%, #1a1028 60%, var(--bg-section-1) 100%);
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 40%, rgba(255, 107, 138, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(255, 170, 0, 0.06) 0%, transparent 40%);
    animation: float 15s ease-in-out infinite;
    pointer-events: none;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.hero-text-block {
    text-align: center;
    padding: 20px 0 28px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 138, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 138, 0.3);
    color: white;
    padding: 8px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s var(--transition-smooth);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #ff9eb8 50%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 20px rgba(255, 107, 138, 0.3));
    animation: fadeInUp 0.8s var(--transition-smooth) 0.1s both;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(90deg, #fbbf24, #ff8c00, #fbbf24);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.2s both, gradientShift 3s ease infinite;
}

.hero-price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.3s both;
}

.hero-price {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.hero-price-original {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.hero-price-note {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-left: 4px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.hero-banner-image {
    margin-top: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 138, 0.15);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s var(--transition-smooth) 0.35s both;
}

.hero-banner-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 4s ease;
}

.hero-banner-image:hover img {
    transform: scale(1.03);
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 16px 48px;
    background: var(--gradient-pink-btn);
    color: white;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(255, 107, 138, 0.4);
    transition: all 0.4s var(--transition-smooth);
    animation: fadeInUp 0.8s var(--transition-smooth) 0.4s both;
}

.hero-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 138, 0.6);
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 24px 16px 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s var(--transition-smooth);
}

.feature-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 107, 138, 0.2);
    transform: translateY(-2px);
}

.feature-center {
    width: auto;
    justify-content: center;
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.3);
}

.hero-guarantee {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
}

.guarantee-line {
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    width: fit-content;
    transition: all 0.3s var(--transition-smooth);
}

.gradient-line {
    background: var(--gradient-pink-btn);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 138, 0.3);
}

.gradient-line:hover {
    box-shadow: 0 6px 28px rgba(255, 107, 138, 0.5);
    transform: translateY(-2px);
}

.pink-line {
    background: rgba(255, 107, 138, 0.1);
    color: var(--primary-light-pink);
    border: 1px solid rgba(255, 107, 138, 0.2);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 8px;
    position: relative;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b8a, #ff9eb8, #8b5cf6);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.white-text {
    color: white;
    text-shadow: 0 2px 20px rgba(255, 107, 138, 0.3);
}

.section-subtitle {
    font-size: 14px;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 40px;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: var(--bg-section-1);
    padding: 48px 0 36px;
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 138, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.problem-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 138, 0.2);
    box-shadow: var(--shadow-glow-pink);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 12px 8px 10px;
    color: var(--text-white);
}

.problem-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a1a2e;
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.problem-card:hover .problem-image img {
    transform: scale(1.08);
}

.problem-list {
    padding: 14px 14px 18px;
}

.problem-list li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.5;
    display: flex;
    gap: 6px;
}

.list-icon {
    color: var(--primary-pink);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 14px 44px;
    background: var(--gradient-pink-btn);
    color: white;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: var(--shadow-button);
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--transition-smooth), height 0.6s var(--transition-smooth);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(255, 107, 138, 0.5);
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

.cta-button:active {
    transform: translateY(0px);
}

/* ===== CAUSES SECTION ===== */
.causes-section {
    background: var(--bg-section-2);
    padding: 48px 0 36px;
    position: relative;
}

.causes-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.causes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.cause-card {
    text-align: center;
    transition: transform 0.4s var(--transition-smooth);
}

.cause-card:hover {
    transform: translateY(-4px);
}

.cause-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #1a1a2e;
    margin-bottom: 12px;
    border: 1px solid var(--border-glass);
    transition: all 0.4s var(--transition-smooth);
}

.cause-card:hover .cause-image {
    border-color: rgba(255, 107, 138, 0.3);
    box-shadow: var(--shadow-glow-pink);
}

.cause-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.cause-card:hover .cause-image img {
    transform: scale(1.08);
}

.cause-label-badge {
    display: inline-block;
    padding: 6px 28px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.mong-badge {
    background: var(--gradient-pink-btn);
    box-shadow: 0 4px 16px rgba(255, 107, 138, 0.3);
}

.cause-list {
    text-align: left;
    padding: 0 8px;
}

.cause-list li {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
    line-height: 1.5;
}

.causes-note {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    padding: 16px 8px;
    line-height: 1.7;
    font-style: italic;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    margin-bottom: 20px;
}

.causes-note strong {
    color: var(--primary-pink);
}

/* ===== TREATMENT SECTION ===== */
.treatment-section {
    background: var(--bg-section-1);
    padding: 48px 0 36px;
    position: relative;
    overflow: hidden;
}

.treatment-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 138, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.treatment-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    color: var(--primary-light-pink);
    margin-bottom: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.silk-derma-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    line-height: 1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ff6b8a, #ff9eb8, #8b5cf6);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    animation: gradientShift 3s ease infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 138, 0.2));
}

.treatment-badge {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    color: white;
    text-align: center;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    margin: 0 16px 24px;
    position: relative;
    overflow: hidden;
}

.treatment-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 138, 0.1), transparent);
    animation: textShimmer 3s ease-in-out infinite;
}

.treatment-info {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 0 16px;
    margin-bottom: 24px;
}

.treatment-details {
    flex: 1;
}

.treatment-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    align-items: flex-start;
    padding: 10px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
    transition: all 0.3s var(--transition-smooth);
}

.treatment-item:hover {
    border-color: rgba(255, 107, 138, 0.2);
    background: var(--bg-card-hover);
}

.treatment-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 0 6px rgba(255, 107, 138, 0.3));
}

.treatment-item p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-light);
}

.treatment-item p strong {
    color: var(--text-white);
}

.treatment-image {
    flex: 0 0 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-glass);
    position: relative;
}

.treatment-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, transparent 50%, rgba(255, 107, 138, 0.1) 100%);
    pointer-events: none;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== PRODUCT SECTION ===== */
.product-section {
    background: var(--bg-section-2);
    padding: 48px 0 36px;
    position: relative;
    overflow: hidden;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.product-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 138, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Product Hero Card */
.product-hero-card {
    position: relative;
    background: var(--gradient-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    margin-bottom: 16px;
    text-align: center;
    overflow: hidden;
}

.product-hero-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 138, 0.04), transparent, rgba(139, 92, 246, 0.04), transparent);
    animation: rotateGlow 10s linear infinite;
    pointer-events: none;
}

.product-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 170, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.phb-icon {
    font-size: 16px;
}

.product-hero-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.product-origin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
}

.origin-flag {
    font-size: 20px;
}

.product-scb {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.product-address {
    font-size: 11px;
    color: var(--text-muted);
}

/* Product Detail Cards */
.product-detail-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.product-detail-card:hover {
    border-color: rgba(255, 107, 138, 0.2);
    box-shadow: 0 8px 32px rgba(255, 107, 138, 0.08);
}

.pdc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--border-glass);
    background: linear-gradient(135deg, rgba(255, 107, 138, 0.04), rgba(139, 92, 246, 0.03));
}


.pdc-icon {
    font-size: 22px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(255, 107, 138, 0.3));
}

.pdc-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.pdc-body {
    padding: 16px 20px 20px;
}

/* Ingredient Highlights */
.ingredient-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.ingredient-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
    transition: all 0.3s var(--transition-smooth);
}

.ingredient-tag:hover {
    border-color: rgba(255, 107, 138, 0.25);
    background: linear-gradient(135deg, rgba(255, 107, 138, 0.06), rgba(139, 92, 246, 0.04));
    transform: translateX(4px);
}

.ing-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.ing-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ing-name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
}

.ing-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Full Ingredients List */
.ingredients-full {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    padding: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
}

.ingredients-full-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ingredients-full-text {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
}

/* Benefits */
.benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.3s var(--transition-smooth);
}

.benefit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.benefit-item:hover {
    transform: translateX(4px);
}

.benefit-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 107, 138, 0.25);
}

.benefit-content h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.benefit-content p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Usage Steps */
.usage-steps {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.usage-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
    transition: all 0.3s var(--transition-smooth);
}

.usage-step:hover {
    border-color: rgba(255, 107, 138, 0.2);
    background: linear-gradient(135deg, rgba(255, 107, 138, 0.05), rgba(139, 92, 246, 0.03));
    transform: translateX(4px);
}

.usage-step-num {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.usage-step p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.usage-step p strong {
    color: var(--primary-pink);
    font-weight: 700;
}

.usage-step-connector {
    width: 2px;
    height: 16px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    margin: 0 auto;
    margin-left: 29px;
    border-radius: 999px;
}

/* Notes */
.product-notes-card {
    border-color: rgba(255, 170, 0, 0.12);
}

.product-notes-card .pdc-header {
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.06), rgba(255, 140, 0, 0.03));
    border-bottom-color: rgba(255, 170, 0, 0.1);
}

.notes-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 170, 0, 0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 170, 0, 0.08);
    transition: all 0.3s var(--transition-smooth);
}

.note-item:hover {
    border-color: rgba(255, 170, 0, 0.2);
    transform: translateX(4px);
}

.note-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.note-item p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: var(--bg-section-2);
    padding: 48px 0 36px;
    position: relative;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
    position: relative;
}

/* Vertical timeline line */
.process-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-pink), var(--primary-purple), transparent);
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}

.process-step:hover {
    transform: translateX(6px);
    border-color: rgba(255, 107, 138, 0.25);
    box-shadow: var(--shadow-glow-pink);
    background: var(--bg-card-hover);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 107, 138, 0.3);
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== WHY SECTION ===== */
.why-section {
    background: var(--bg-section-1);
    padding: 48px 0 36px;
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}

.why-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 24px 14px;
    text-align: center;
    border: 1px solid var(--border-glass);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 138, 0.05), transparent, rgba(139, 92, 246, 0.05), transparent);
    animation: rotateGlow 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 138, 0.25);
    box-shadow: 0 12px 40px rgba(255, 107, 138, 0.15);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.why-icon svg circle {
    stroke: var(--primary-pink);
    fill: rgba(255, 107, 138, 0.08);
}

.why-icon svg path,
.why-icon svg rect {
    stroke: var(--primary-pink);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.why-card p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ===== RESULTS SECTION ===== */
.results-section {
    background: var(--bg-section-2);
    padding: 48px 0 36px;
    position: relative;
}

.results-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.result-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--border-glass);
    transition: all 0.4s var(--transition-smooth);
}

.result-card:hover {
    border-color: rgba(255, 107, 138, 0.2);
    box-shadow: var(--shadow-glow-pink);
    transform: translateY(-2px);
}

.result-images {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.result-before, .result-after {
    flex: 1;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 3/4;
    min-height: 200px;
}

.result-before img, .result-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.result-card:hover .result-before img,
.result-card:hover .result-after img {
    transform: scale(1.05);
}

.result-arrow {
    font-size: 20px;
    color: var(--primary-pink);
    flex-shrink: 0;
    font-weight: 700;
    animation: pulse 2s ease infinite;
    filter: drop-shadow(0 0 8px rgba(255, 107, 138, 0.4));
}

.result-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 6px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.before-label {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.85), rgba(37, 99, 235, 0.85));
}

.after-label {
    background: linear-gradient(135deg, rgba(255, 107, 138, 0.85), rgba(232, 55, 90, 0.85));
}

.result-desc {
    font-size: 13px;
    text-align: center;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--bg-section-1);
    padding: 48px 0 36px;
    position: relative;
}

.testimonials-slider {
    position: relative;
    min-height: 200px;
    margin-bottom: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-glass);
    display: none;
    animation: scaleIn 0.5s var(--transition-smooth);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 900;
    color: var(--primary-pink);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card.active {
    display: block;
}

.testimonial-header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #1a1a2e;
    border: 2px solid var(--primary-pink);
    box-shadow: 0 0 12px rgba(255, 107, 138, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot:hover {
    background: rgba(255, 107, 138, 0.4);
}

.dot.active {
    background: var(--primary-pink);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(255, 107, 138, 0.5);
    border-color: var(--primary-pink);
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-section {
    background: linear-gradient(180deg, var(--bg-section-1) 0%, #1a0a1e 100%);
    padding: 32px 0;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 138, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.countdown-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.countdown-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-light-pink);
    margin-bottom: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.countdown-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.countdown-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 138, 0.2);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: white;
    animation: countPulse 2s ease infinite;
    box-shadow: 0 4px 20px rgba(255, 107, 138, 0.15);
}

.countdown-unit {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-slots {
    font-size: 13px;
    color: var(--primary-coral);
    font-weight: 600;
}

.countdown-slots strong {
    color: #fbbf24;
    font-size: 18px;
}

/* ===== USAGE NOTES BOX ===== */
.usage-notes-box {
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.06), rgba(255, 140, 0, 0.03));
    border: 1px solid rgba(255, 170, 0, 0.15);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 28px;
}

.usage-notes-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 14px;
}

.usage-notes-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.usage-notes-list li {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    padding: 8px 12px;
    background: rgba(255, 170, 0, 0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 170, 0, 0.08);
    transition: all 0.3s var(--transition-smooth);
}

.usage-notes-list li:hover {
    border-color: rgba(255, 170, 0, 0.2);
    transform: translateX(4px);
}

/* ===== ORIGIN SECTION ===== */
.origin-section {
    background: var(--bg-section-1);
    padding: 36px 0;
}

.origin-card {
    background: var(--gradient-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
}

.origin-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 18px;
}

.origin-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.origin-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
}

.origin-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.origin-value {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Certificate Image */
.origin-cert {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border-glass);
}

.origin-cert-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 14px;
}

.origin-cert-image {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s var(--transition-smooth);
}

.origin-cert-image:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.15);
    transform: scale(1.02);
}

.origin-cert-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== FORM SECTION ===== */
.form-section {
    background: linear-gradient(135deg, #1a0a1e 0%, #2a0a2e 50%, #1a1028 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top center, rgba(255, 107, 138, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.form-subtitle {
    font-size: 14px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.form-wrapper {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.form-before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.form-ba-item {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-card);
}

.form-ba-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 4px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ba-before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.85), rgba(37, 99, 235, 0.85));
}

.ba-after {
    background: linear-gradient(135deg, rgba(255, 107, 138, 0.85), rgba(232, 55, 90, 0.85));
}

.form-ba-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-ba-arrow svg {
    fill: var(--primary-pink);
    filter: drop-shadow(0 0 6px rgba(255, 107, 138, 0.4));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.04);
    outline: none;
    transition: all 0.3s var(--transition-smooth);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 107, 138, 0.1), 0 0 20px rgba(255, 107, 138, 0.05);
    background: rgba(255, 255, 255, 0.06);
}

.contact-form textarea {
    resize: none;
    min-height: 80px;
}

/* Product Options */
.product-options {
    display: flex;
    gap: 12px;
}

.product-option {
    flex: 1;
    position: relative;
    cursor: pointer;
    border: 2px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s var(--transition-smooth);
    text-align: center;
}

.product-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.product-option.active {
    border-color: var(--primary-pink);
    background: rgba(255, 107, 138, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 138, 0.1), var(--shadow-glow-pink);
}

.product-option:hover {
    border-color: rgba(255, 107, 138, 0.4);
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.option-qty {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-white);
}

.option-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-pink);
}

.option-price-original {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.option-discount {
    display: inline-block;
    background: var(--gradient-main);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 2px;
}

.option-freeship {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Order Total */
.order-total {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    padding: 12px;
    background: rgba(255, 107, 138, 0.06);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 107, 138, 0.15);
}

.order-total strong {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: #fbbf24;
}

.form-guarantee {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-pink);
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(255, 107, 138, 0.2));
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-pink-btn);
    color: white;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: var(--shadow-button);
    transition: all 0.4s var(--transition-smooth);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(255, 107, 138, 0.5);
}

.form-submit-btn:hover::before {
    left: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #0a0a14, #060610);
    padding: 36px 0 90px;
    color: white;
    border-top: 1px solid var(--border-glass);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    justify-content: center;
}

.footer-logo .logo-icon svg circle {
    stroke: #C8960C;
}

.footer-logo .logo-icon svg path {
    fill: #C8960C;
}

.footer-info {
    margin-bottom: 24px;
    text-align: center;
}

.footer-info p {
    font-size: 13px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.footer-info a {
    color: #fbbf24;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-info a:hover {
    color: #fcd34d;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    text-align: center;
}

.footer-copyright p {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.5;
}

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--border-glass);
    max-width: 100%;
}

.sticky-phone {
    flex: 1;
    max-width: 200px;
    padding: 10px 16px;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    font-size: 13px;
    outline: none;
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    transition: all 0.3s var(--transition-smooth);
}

.sticky-phone::placeholder {
    color: var(--text-muted);
}

.sticky-phone:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 2px rgba(255, 107, 138, 0.1);
}

.sticky-submit {
    padding: 10px 26px;
    background: var(--gradient-pink-btn);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(255, 107, 138, 0.3);
}

.sticky-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(255, 107, 138, 0.5);
}

/* ===== FLOATING BUTTONS ===== */
/* ===== FLOATING CTA BUTTON ===== */
.floating-cta {
    position: fixed;
    right: 16px;
    bottom: 70px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: var(--gradient-pink-btn);
    color: white;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(255, 107, 138, 0.5);
    animation: pulse 2s var(--transition-smooth) infinite;
    transition: all 0.3s var(--transition-smooth);
    white-space: nowrap;
}

.floating-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 138, 0.7);
}

/* ===== NOTIFICATION TOAST ===== */
.notification-toast {
    position: fixed;
    bottom: 70px;
    left: 12px;
    z-index: 997;
    background: rgba(20, 20, 37, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-glass);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 280px;
    opacity: 0;
    transform: translateX(-120%);
    transition: transform 0.5s var(--transition-smooth), opacity 0.5s var(--transition-smooth);
    pointer-events: none;
}

.notification-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #1a1a2e;
    border: 2px solid rgba(255, 107, 138, 0.3);
}

.toast-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-name {
    font-size: 12px;
    color: var(--primary-pink);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-action {
    font-size: 11px;
    color: #4ade80;
    opacity: 0.9;
}

.toast-time {
    font-size: 10px;
    color: var(--text-muted);
}

/* ===== POPUP MODAL ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background: rgba(20, 20, 37, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    max-width: 380px;
    width: 100%;
    position: relative;
    transform: translateY(30px) scale(0.9);
    transition: transform 0.5s var(--transition-smooth);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.popup-overlay.active .popup-modal {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-muted);
    transition: all 0.3s var(--transition-smooth);
}

.popup-close:hover {
    background: rgba(255, 107, 138, 0.1);
    color: var(--primary-pink);
    border-color: rgba(255, 107, 138, 0.2);
}

.popup-ba {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 24px;
}

.popup-ba-item {
    position: relative;
    width: 140px;
    height: 130px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-card);
}

.popup-ba-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-ba-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 6px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.popup-before-label {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.85), rgba(37, 99, 235, 0.85));
}

.popup-after-label {
    background: linear-gradient(135deg, rgba(255, 107, 138, 0.85), rgba(232, 55, 90, 0.85));
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.04);
    outline: none;
    transition: all 0.3s var(--transition-smooth);
}

.popup-form input::placeholder,
.popup-form textarea::placeholder {
    color: var(--text-muted);
}

.popup-form input:focus,
.popup-form textarea:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 107, 138, 0.1);
}

.popup-form textarea {
    resize: none;
    min-height: 70px;
}

.popup-guarantee {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-pink);
    text-align: center;
}

.popup-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-pink-btn);
    color: white;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: var(--shadow-button);
    transition: all 0.4s var(--transition-smooth);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.popup-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s;
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(255, 107, 138, 0.5);
}

.popup-submit-btn:hover::before {
    left: 100%;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
    :root {
        --max-width: 480px;
    }
    
    body {
        background: var(--bg-page);
    }
    
    .hero-section,
    .problem-section,
    .causes-section,
    .treatment-section,
    .process-section,
    .why-section,
    .results-section,
    .testimonials-section,
    .form-section,
    .countdown-section {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer {
        max-width: 100%;
    }

    .sticky-bottom {
        max-width: 480px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
    
    .floating-cta {
        right: calc(50% - 240px + 16px);
    }
    
    .notification-toast {
        left: calc(50% - 240px + 12px);
    }
}

@media (max-width: 360px) {
    .hero-discount {
        font-size: 80px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .silk-derma-title {
        font-size: 44px;
    }
    
    .section-title {
        font-size: 20px;
    }

    .countdown-number {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}

/* ===== IMAGE PLACEHOLDERS ===== */
.hero-image-wrapper,
.problem-image,
.cause-image,
.treatment-image,
.result-before,
.result-after,
.form-ba-item,
.popup-ba-item,
.testimonial-avatar,
.toast-avatar {
    background: linear-gradient(135deg, #1a1028, #2a1a3a);
    position: relative;
}

/* Placeholder shimmer for missing images */
.hero-image-wrapper img[src="images/hero-banner.jpg"],
.problem-image img,
.cause-image img,
.treatment-image img,
.result-before img,
.result-after img,
.form-ba-item img,
.popup-ba-item img,
.testimonial-avatar img,
.toast-avatar img {
    background: linear-gradient(90deg, #1a1028 25%, #2a1a3a 50%, #1a1028 75%);
    background-size: 400% 100%;
    animation: shimmer 2s linear infinite;
    min-height: 50px;
}

/* ===== QUICK ORDER FORM (Form #1) ===== */
.quick-order-section {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--bg-section-1) 0%, #1a0a1e 50%, var(--bg-section-2) 100%);
    position: relative;
    overflow: hidden;
}

.quick-order-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 138, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.quick-order-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 107, 138, 0.2);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 60px rgba(255, 107, 138, 0.08);
    animation: fadeInUp 0.8s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.quick-order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
}

.quick-order-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #ff9eb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.quick-order-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.quick-order-form input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 14px;
    font-family: var(--font-body);
    margin-bottom: 10px;
    transition: all 0.3s var(--transition-smooth);
    outline: none;
}

.quick-order-form input:focus {
    border-color: var(--primary-pink);
    background: rgba(255, 107, 138, 0.06);
    box-shadow: 0 0 20px rgba(255, 107, 138, 0.1);
}

.quick-order-form input::placeholder {
    color: var(--text-muted);
}

.quick-order-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-pink-btn);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 8px 32px rgba(255, 107, 138, 0.4);
    transition: all 0.4s var(--transition-smooth);
}

.quick-order-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 138, 0.6);
}

/* ===== SOCIAL PROOF STATS BAR ===== */
.social-proof-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.social-proof-stats.form-stats {
    margin-bottom: 24px;
    background: rgba(255, 107, 138, 0.06);
    border-color: rgba(255, 107, 138, 0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.stat-icon {
    font-size: 18px;
    line-height: 1;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-white);
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== TRUST GRID SECTION ===== */
.trust-section {
    padding: 48px 0;
    background: linear-gradient(180deg, var(--bg-section-2) 0%, #1a0a1e 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.trust-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s var(--transition-smooth);
}

.trust-card:hover {
    border-color: rgba(255, 107, 138, 0.3);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    font-size: 32px;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 138, 0.2));
}

.trust-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.trust-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== RESPONSIVE - NEW SECTIONS ===== */
@media (max-width: 380px) {
    .quick-order-title {
        font-size: 20px;
    }

    .social-proof-stats {
        gap: 8px;
        padding: 12px 8px;
    }

    .stat-value {
        font-size: 14px;
    }

    .stat-label {
        font-size: 10px;
    }

    .trust-grid {
        gap: 8px;
    }

    .trust-card {
        padding: 16px 12px;
    }

    .trust-icon {
        font-size: 28px;
    }

    .trust-title {
        font-size: 13px;
    }

    .trust-desc {
        font-size: 11px;
    }
}
