/* =============================================
   DESIGN SYSTEM & CSS VARIABLES
   ============================================= */
:root {
    /* Colors */
    --bg-primary: #0a0b0f;
    --bg-secondary: #11131a;
    --bg-card: #161923;
    --bg-card-hover: #1c1f2e;
    --bg-elevated: #1a1d2b;
    
    --text-primary: #f0f0f5;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --accent-primary: #e11d48;
    --accent-primary-hover: #f43f5e;
    --accent-primary-glow: rgba(225, 29, 72, 0.3);
    --accent-gradient: linear-gradient(135deg, #e11d48, #f97316);
    --accent-gradient-text: linear-gradient(135deg, #f43f5e, #fb923c);
    
    --wa-green: #25d366;
    --wa-green-hover: #20bd5a;
    --wa-green-glow: rgba(37, 211, 102, 0.35);
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-color-hover: rgba(255, 255, 255, 0.12);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --container-padding: 0 24px;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px var(--accent-primary-glow);
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-gradient {
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.2);
    color: var(--accent-primary-hover);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px var(--accent-primary-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-primary-glow);
}

.btn--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn--xl {
    padding: 20px 48px;
    font-size: 1.15rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 11, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

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

.header__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-icon {
    font-size: 1.3rem;
}

.logo-accent {
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header__nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header__cta {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(225, 29, 72, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(249, 115, 22, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(225, 29, 72, 0.04) 0%, transparent 30%);
    z-index: 0;
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(225, 29, 72, 0.3);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-80px) scale(1.5); opacity: 0.8; }
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary-hover);
    margin-bottom: 20px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(225, 29, 72, 0); }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero__subtitle strong {
    color: var(--text-primary);
}

.hero__cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__plus {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image img {
    width: 100%;
    max-width: 480px;
    animation: heroFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(225, 29, 72, 0.2));
}

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

.hero__image-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-bar__text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-bar__logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-logo {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition);
}

.trust-logo:hover {
    opacity: 1;
}

/* =============================================
   FEATURES
   ============================================= */
.features {
    padding: var(--section-padding);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

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

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card__desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-card__desc strong {
    color: var(--text-primary);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    padding: 20px 0;
}

.cta-banner__inner {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.cta-banner__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.06), transparent 70%);
    border-radius: 50%;
}

.cta-banner__content {
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-banner__desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
}

/* =============================================
   PRODUCTS
   ============================================= */
.products {
    padding: var(--section-padding);
}

.products__showcase {
    text-align: center;
    margin-bottom: 48px;
}

.products__showcase img {
    margin: 0 auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.products__hint {
    text-align: center;
    margin: 16px auto 40px;
    padding: 16px 24px;
    background: rgba(225, 29, 72, 0.05);
    border: 1px dashed rgba(225, 29, 72, 0.3);
    border-radius: var(--radius-lg);
    max-width: 600px;
}

.products__hint p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.products__hint strong {
    color: var(--accent-primary-hover);
    font-size: 1.05rem;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.1);
}

.product-card__icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
    display: block;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
}

/* Product Gallery Accordion */
.product-accordion {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out, margin 0.4s ease-in-out, padding 0.4s ease-in-out;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
}

.product-accordion.active {
    max-height: 2000px;
    opacity: 1;
    margin: 8px 0 24px;
    padding: 24px;
    border-color: var(--border-color);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

.product-accordion__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
}

.product-accordion__item {
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--bg-primary);
    border-radius: 4px;
}

.product-accordion__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-accordion__item::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 29, 72, 0.7);
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-accordion__item:hover::after {
    opacity: 1;
}

.product-accordion__note {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--text-primary);
}

.product-accordion__note span {
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .product-accordion__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .product-accordion__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-accordion.active {
        padding: 16px;
    }
}

/* =============================================
   PROCESS
   ============================================= */
.process {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.process__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    text-align: center;
    flex: 0 0 280px;
    padding: 32px 24px;
}

.process-step__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.process-step__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step__desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.process-step__connector {
    flex: 0 0 60px;
    height: 2px;
    background: var(--accent-gradient);
    margin-top: 70px;
    border-radius: 2px;
    opacity: 0.3;
}

/* Process Video */
.process__video {
    margin-top: 60px;
    text-align: center;
}

.process__video-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-primary-hover);
    margin-bottom: 24px;
}

.process__video-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(225, 29, 72, 0.08);
    max-width: 800px;
    margin: 0 auto;
    background: #000;
}

.process__video-wrapper:hover {
    border-color: rgba(225, 29, 72, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(225, 29, 72, 0.12);
}

.process__video-player {
    width: 100%;
    display: block;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.process__video-wrapper {
    max-width: 400px;
}

.process__video-caption {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    font-style: italic;
}

/* =============================================
   PROMO SECTION
   ============================================= */
.promo {
    padding: var(--section-padding);
}

.promo__card {
    background: var(--bg-elevated);
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(225, 29, 72, 0.12), 0 0 120px rgba(225, 29, 72, 0.06);
}

.promo__card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(225, 29, 72, 0.04), transparent 50%);
    pointer-events: none;
}

.promo__urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 200, 0, 0.1);
    border: 1px solid rgba(255, 200, 0, 0.3);
    border-radius: var(--radius-full);
    color: #fbbf24;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: urgencyPulse 1.5s ease-in-out infinite;
}

.promo__urgency-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: dotBlink 1s ease-in-out infinite;
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 200, 0, 0.15); }
    50% { box-shadow: 0 0 0 6px rgba(255, 200, 0, 0); }
}

.promo__header {
    margin-bottom: 32px;
    position: relative;
}

.promo__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}

.promo__subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.promo__subtitle strong {
    color: #fbbf24;
}

/* Promo Benefits */
.promo__benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.promo__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    font-size: 1.05rem;
}

.promo__benefit--highlight {
    background: rgba(225, 29, 72, 0.1);
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.promo__benefit-icon {
    font-size: 1.8rem;
}

.promo__benefit-arrow {
    color: var(--accent-primary);
    animation: arrowSlide 1.2s ease-in-out infinite;
}

@keyframes arrowSlide {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(8px); opacity: 1; }
}

/* Countdown Timer */
.promo__countdown-wrapper {
    margin-bottom: 36px;
}

.promo__countdown-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.promo__countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown__number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 70px;
    padding: 12px 8px;
    background-color: rgba(225, 29, 72, 0.08);
    border: 1px solid rgba(225, 29, 72, 0.2);
    border-radius: var(--radius-md);
    /* Need to override the background-clip for the bg-color to show */
    background: linear-gradient(135deg, #f43f5e, #fb923c) text, rgba(225, 29, 72, 0.08);
    -webkit-background-clip: text, padding-box;
    background-clip: text, padding-box;
}

.countdown__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown__separator {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-primary);
    margin-bottom: 20px;
    animation: separatorBlink 1s step-end infinite;
}

@keyframes separatorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* Animated Arrows */
.promo__cta-area {
    position: relative;
}

.promo__arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 16px;
}

.promo__arrow {
    color: var(--accent-primary);
    font-size: 1.2rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

.promo__arrow--1 { animation-delay: 0s; opacity: 0.4; }
.promo__arrow--2 { animation-delay: 0.15s; opacity: 0.65; }
.promo__arrow--3 { animation-delay: 0.3s; opacity: 1; }

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

/* Promo CTA Button */
.btn--promo {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 22px 48px;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 30px rgba(34, 197, 94, 0.4);
    animation: ctaPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn--promo:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.5);
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 6px 30px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(34, 197, 94, 0.6), 0 0 0 8px rgba(34, 197, 94, 0.1); }
}

/* Shine effect on CTA */
.btn__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shineSlide 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shineSlide {
    0% { left: -100%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

.promo__scarcity {
    color: #fbbf24;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 16px;
    animation: scarcityPulse 2s ease-in-out infinite;
}

@keyframes scarcityPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Trust Bar in Promo */
.promo__trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .promo__card {
        padding: 32px 20px;
    }

    .promo__benefits {
        flex-direction: column;
        gap: 12px;
    }

    .promo__benefit-arrow {
        transform: rotate(90deg);
    }

    @keyframes arrowSlide {
        0%, 100% { transform: rotate(90deg) translateX(0); opacity: 0.5; }
        50% { transform: rotate(90deg) translateX(8px); opacity: 1; }
    }

    .countdown__number {
        font-size: 1.8rem;
        min-width: 55px;
        padding: 10px 6px;
    }

    .countdown__separator {
        font-size: 1.4rem;
    }

    .promo__countdown {
        gap: 6px;
    }

    .btn--promo {
        font-size: 1rem;
        padding: 18px 28px;
    }

    .promo__trust {
        gap: 12px;
        font-size: 0.8rem;
    }
}
/* =============================================
   FREE SHIPPING BANNER
   ============================================= */
.free-shipping {
    padding: 20px 0;
}

.free-shipping__inner {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(16, 185, 129, 0.04));
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.free-shipping__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.free-shipping__icon {
    color: #22c55e;
    margin-bottom: 16px;
}

.free-shipping__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 12px;
}

.free-shipping__desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.free-shipping__desc strong {
    color: #22c55e;
}

.free-shipping__badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.free-shipping__badge {
    padding: 6px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* =============================================
   MARKETPLACE SECTION
   ============================================= */
.marketplace {
    padding: var(--section-padding);
}

.marketplace__buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.marketplace__btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 40px;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    min-width: 240px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.marketplace__logo {
    flex-shrink: 0;
}

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

.marketplace__btn-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.marketplace__btn-name {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

/* Shopee */
.marketplace__btn--shopee {
    background: linear-gradient(135deg, #ee4d2d, #f76434);
    color: white;
    box-shadow: 0 6px 25px rgba(238, 77, 45, 0.3);
}

.marketplace__btn--shopee:hover {
    box-shadow: 0 10px 35px rgba(238, 77, 45, 0.45);
}

/* TikTok */
.marketplace__btn--tiktok {
    background: linear-gradient(135deg, #010101, #1a1a2e);
    color: white;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.marketplace__btn--tiktok:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(37, 244, 238, 0.3);
}

.marketplace__btn--tiktok .marketplace__logo {
    filter: drop-shadow(1px 0 0 #25f4ee) drop-shadow(-1px 0 0 #fe2c55);
}

.marketplace__note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.marketplace__note strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .free-shipping__inner {
        padding: 28px 20px;
    }

    .marketplace__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .marketplace__btn {
        min-width: auto;
        justify-content: center;
        padding: 16px 24px;
    }
}

/* =============================================
   PROMO BANNERS
   ============================================= */
.promo-banners {
    padding: 0 0 60px 0; /* Adding spacing after marketplace/promo sections */
}

.promo-banners__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.promo-banner-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.promo-banner-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(225, 29, 72, 0.15);
}

@media (max-width: 768px) {
    .promo-banners__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* =============================================
   SOCIAL PROOF / TESTIMONIALS
   ============================================= */
.social-proof {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.social-proof__image {
    text-align: center;
    margin-bottom: 48px;
}

.social-proof__image img {
    margin: 0 auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 700px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-img-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 9/16;
}

.testimonial-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-img-card:hover img {
    transform: scale(1.05);
}

.testimonial-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 15, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-img-card:hover .testimonial-img-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .testimonials__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    padding: var(--section-padding);
}

.faq__list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-color-hover);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--bg-card);
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-item__question:hover {
    background: var(--bg-card-hover);
}

.faq-item__icon {
    font-size: 1.4rem;
    font-weight: 300;
    transition: var(--transition);
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-item__answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
    padding: var(--section-padding);
}

.final-cta__inner {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 64px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta__inner::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(225, 29, 72, 0.05), transparent 50%);
}

.final-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
}

.final-cta__desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
}

.final-cta__note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 24px;
    position: relative;
}

/* =============================================
   PAYMENT METHODS
   ============================================= */
.payment-methods {
    padding: 0 0 var(--section-padding) 0;
    text-align: center;
    background: var(--bg-primary);
}

.payment-banner-img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer__brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.7;
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer__links a,
.footer__contact a,
.footer__contact p {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--accent-primary-hover);
    padding-left: 4px;
}

.footer__bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
}

.footer__bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =============================================
   STICKY WHATSAPP BUTTON
   ============================================= */
.sticky-wa {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--wa-green);
    color: white;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px var(--wa-green-glow);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.sticky-wa.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-wa:hover {
    background: var(--wa-green-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px var(--wa-green-glow);
}

.sticky-wa__pulse {
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-full);
    border: 2px solid var(--wa-green);
    animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0; }
}

.sticky-wa__icon {
    flex-shrink: 0;
}

/* =============================================
   STICKY BOTTOM BAR (MOBILE)
   ============================================= */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 12px 16px;
    display: none;
    opacity: 0;
    transform: translateY(100%);
    transition: var(--transition);
}

.sticky-bottom-bar.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-bottom-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--wa-green);
    color: white;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 -2px 20px var(--wa-green-glow);
}

.sticky-bottom-bar__btn:hover {
    background: var(--wa-green-hover);
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--right {
    transform: translateX(50px);
}

.reveal--right.visible {
    transform: translateX(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero__subtitle {
        margin: 0 auto 32px;
    }
    
    .hero__cta-group {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__image {
        order: -1;
    }
    
    .hero__image img {
        max-width: 350px;
    }
    
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card--popular {
        transform: none;
    }
    
    .pricing-card--popular:hover {
        transform: translateY(-4px);
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .process__steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step__connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }
    
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }
    
    .header__nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 11, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 999;
    }
    
    .header__nav.open {
        display: flex;
    }
    
    .header__nav .nav-link {
        font-size: 1.3rem;
        font-weight: 600;
    }
    
    .header__cta.desktop-only {
        display: none;
    }
    
    .header__hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .header__hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .header__hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .header__hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero__title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }
    
    .hero__stats {
        gap: 24px;
    }
    
    .stat__number {
        font-size: 1.6rem;
    }
    
    .hero__scroll-indicator {
        display: none;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
    }
    
    .products__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .process-step {
        flex: auto;
    }
    
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .sticky-wa {
        bottom: 80px;
        right: 16px;
    }
    
    .sticky-wa__text {
        display: none;
    }
    
    .sticky-wa {
        padding: 14px;
        border-radius: 50%;
    }
    
    .sticky-bottom-bar {
        display: block;
    }

    /* ===== ALL CTA BUTTONS FULL-WIDTH ON MOBILE ===== */
    
    /* Generic buttons */
    .btn--lg,
    .btn--xl {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 16px 20px;
        font-size: 1rem;
    }

    /* Hero CTA */
    .hero__cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__cta-group .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* CTA Banner button */
    .cta-banner__inner .btn {
        width: 100%;
        justify-content: center;
    }

    /* Promo CTA */
    .btn--promo {
        width: 100%;
        font-size: 1rem;
        padding: 18px 20px;
        white-space: normal;
        line-height: 1.4;
    }

    .promo__cta-btn {
        max-width: 100%;
    }

    /* Final CTA */
    .final-cta__inner .btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        line-height: 1.4;
        padding: 18px 20px;
    }

    /* Header CTA - smaller on mobile */
    .header__cta {
        padding: 8px 14px;
        font-size: 0.75rem;
        gap: 6px;
    }
    
    .header__cta svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-bar__logos {
        gap: 16px;
    }
    
    .trust-logo {
        font-size: 0.8rem;
    }

    /* Even more compact on small screens */
    .btn--lg,
    .btn--xl {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .btn--promo {
        font-size: 0.95rem;
        padding: 16px 16px;
    }

    .header__cta {
        padding: 7px 12px;
        font-size: 0.7rem;
    }
}

/* =============================================
   GALLERY MODAL
   ============================================= */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.gallery-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 15, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-modal__content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-modal.active .gallery-modal__content {
    transform: translateY(0) scale(1);
}

.gallery-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-modal__close:hover {
    background: var(--accent-primary);
    transform: rotate(90deg);
}

.gallery-modal__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
    text-transform: capitalize;
}

.gallery-modal__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    overflow-y: auto;
    padding-right: 12px;
    flex-grow: 1;
}

.gallery-modal__grid::-webkit-scrollbar {
    width: 8px;
}

.gallery-modal__grid::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.gallery-modal__grid::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 4px;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-modal__note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .gallery-modal__content {
        padding: 24px;
        max-height: 85vh;
    }
    
    .gallery-modal__title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .gallery-modal__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
