/* --- FUTURISTIC LIGHT/DARK COCA-COLA THEME FOR PUNYALINK --- */

/* Default: Light Mode Variables */
:root {
    --coca-cola: #F40009;
    --coca-cola-dark: #B30006;
    --coca-cola-light: #FF3B43;
    --coca-cola-glow: rgba(244, 0, 9, 0.08);
    --bg-page: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.7);
    --card-border: rgba(0, 0, 0, 0.08);
    --card-border-active: rgba(244, 0, 9, 0.4);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --radius-huge: 32px;
    --radius-pill: 9999px;
}

/* Dark Mode Variables Override */
body.home-page.dark-mode {
    --bg-page: #090b11;
    --bg-card: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.06);
    --card-border-active: rgba(244, 0, 9, 0.3);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --coca-cola-glow: rgba(244, 0, 9, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Prevent sections from being hidden behind sticky navbar */
section[id], .section-anchor { scroll-margin-top: 90px; }

/* Base body styles */
body.home-page {
    background-color: var(--bg-page) !important;
    color: var(--text-primary) !important;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.text-coca-cola { 
    color: var(--coca-cola-light); 
    text-shadow: 0 0 15px rgba(255, 59, 67, 0.4);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Sticky Floating Header - Default Light Mode */
.home-navbar {
    position: sticky;
    top: 20px;
    max-width: 1100px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
    z-index: 100;
    transition: all 0.3s ease;
}
.home-navbar .brand-logo span {
    color: #0f172a !important;
    text-shadow: none;
}
.home-nav-links { display: flex; gap: 16px; align-items: center; }
.nav-item {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
}
.nav-item:hover { 
    background: rgba(0, 0, 0, 0.05); 
}

/* Navbar - Dark Mode Override */
body.home-page.dark-mode .home-navbar {
    background: rgba(9, 11, 17, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
body.home-page.dark-mode .home-navbar .brand-logo span {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(244, 0, 9, 0.4);
}
body.home-page.dark-mode .nav-item:hover { 
    background: rgba(255, 255, 255, 0.05); 
}

.home-btn {
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.home-btn-primary {
    background: var(--coca-cola);
    color: white;
    box-shadow: 0 8px 20px rgba(244, 0, 9, 0.3);
}
.home-btn-primary:hover {
    background: var(--coca-cola-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(244, 0, 9, 0.5);
}
.home-btn-text { color: var(--text-primary); }
.home-btn-text:hover { background: rgba(0, 0, 0, 0.05); }
body.home-page.dark-mode .home-btn-text:hover { background: rgba(255, 255, 255, 0.05); }

/* Ambient Floating Glow Orbs - Pulse Animation */
.bg-glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--coca-cola-glow) 0%, rgba(244, 0, 9, 0) 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    animation: pulseOrb 10s infinite alternate;
}
.bg-glow-orb-1 { top: -100px; right: -100px; }
.bg-glow-orb-2 { top: 800px; left: -200px; background: radial-gradient(circle, rgba(244, 0, 9, 0.15) 0%, rgba(244, 0, 9, 0) 70%); }
.bg-glow-orb-3 { bottom: 400px; right: -200px; }

body.home-page.dark-mode .bg-glow-orb-2 {
    background: radial-gradient(circle, rgba(244, 0, 9, 0.2) 0%, rgba(244, 0, 9, 0) 70%);
}

@keyframes pulseOrb {
    0% { transform: scale(1) translate(0, 0); opacity: 0.4; }
    100% { transform: scale(1.1) translate(50px, 50px); opacity: 0.6; }
}

/* Section Spacing */
.section-pad { padding: 120px 5%; }
.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}
.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
}

/* 2-Column Hero */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5% 80px;
    gap: 60px;
    position: relative;
}
.hero-content { flex: 1; max-width: 600px; }
.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2.5px;
    color: var(--text-primary);
}
.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 500;
}
.claim-form-modern {
    display: flex;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-pill);
    padding: 8px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
    max-width: 500px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.claim-form-modern:focus-within {
    border-color: rgba(244, 0, 9, 0.5);
    box-shadow: 0 0 25px rgba(244, 0, 9, 0.25);
}
.claim-input-wrapper { flex: 1; display: flex; align-items: center; padding-left: 24px; }
.claim-input-wrapper .prefix { color: var(--text-muted); font-weight: 600; font-size: 1.2rem; }
.claim-input-wrapper input {
    border: none; 
    outline: none; 
    font-size: 1.2rem; 
    font-weight: 700; 
    width: 100%; 
    color: var(--text-primary); 
    background: transparent;
    font-family: inherit;
}
.claim-input-wrapper input::placeholder { color: var(--text-muted); }

/* Claim form - Dark Mode Override */
body.home-page.dark-mode .claim-form-modern {
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 45px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.btn-claim-modern {
    background: var(--coca-cola);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(244, 0, 9, 0.3);
}
.btn-claim-modern:hover {
    background: var(--coca-cola-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(244, 0, 9, 0.5);
}
.btn-claim-modern:active {
    transform: translateY(0);
}

.hero-visual { flex: 1; display: flex; justify-content: center; perspective: 1000px; position: relative; }
.hero-phone {
    width: 320px;
    height: 650px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    border: 2px solid rgba(244, 0, 9, 0.2);
    transform: rotateY(-15deg) rotateX(5deg) rotateZ(2deg);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: floating 6s ease-in-out infinite;
}
.hero-phone:hover { 
    transform: rotateY(-3deg) rotateX(2deg) rotateZ(0deg) scale(1.02); 
    border-color: var(--coca-cola);
    box-shadow: 0 45px 90px rgba(244, 0, 9, 0.3);
}
@keyframes floating {
    0% { transform: rotateY(-15deg) rotateX(5deg) rotateZ(2deg) translateY(0px); }
    50% { transform: rotateY(-15deg) rotateX(5deg) rotateZ(2deg) translateY(-12px); }
    100% { transform: rotateY(-15deg) rotateX(5deg) rotateZ(2deg) translateY(0px); }
}
.phone-inner {
    background: rgba(9, 11, 17, 0.8);
    width: 100%;
    height: 100%;
    border-radius: 30px;
    padding: 30px 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.m-avatar { 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    background: #27272a; 
    margin: 0 auto 15px; 
    border: 3px solid rgba(255, 255, 255, 0.1); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.3); 
}
.m-name { text-align: center; font-weight: 800; font-size: 1.2rem; margin-bottom: 5px; color: white; }
.m-bio { text-align: center; color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 25px; }
.m-link { 
    background: rgba(255, 255, 255, 0.02); 
    border-radius: 16px; 
    padding: 14px; 
    margin-bottom: 12px; 
    text-align: center; 
    font-weight: 700; 
    font-size: 0.95rem; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    color: white;
    transition: all 0.2s ease;
}
.m-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}
.m-link.red { 
    background: var(--coca-cola); 
    color: white; 
    border: none; 
    box-shadow: 0 8px 20px rgba(244, 0, 9, 0.3); 
}
.m-link.red:hover {
    background: var(--coca-cola-light);
    box-shadow: 0 12px 25px rgba(244, 0, 9, 0.5);
}
.m-chat { 
    position: absolute; 
    bottom: 20px; 
    left: 15px; 
    right: 15px; 
    background: rgba(15, 23, 42, 0.8); 
    padding: 12px 20px; 
    border-radius: 99px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.4); 
    font-size: 0.9rem; 
    font-weight: 600; 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.m-chat::after { 
    content: '✨ AI'; 
    color: var(--coca-cola-light); 
    font-weight: 800;
    text-shadow: 0 0 10px rgba(244, 0, 9, 0.4);
}

/* Horizontal Creator Slider - Default Light Mode Background */
.creator-slider { 
    overflow: hidden; 
    white-space: nowrap; 
    padding: 80px 0; 
    background: #f1f5f9; 
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.slider-track {
    display: inline-block;
    animation: slide 30s linear infinite;
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Creator Slider - Dark Mode Override */
body.home-page.dark-mode .creator-slider { 
    background: #07090e; 
    border-color: rgba(255, 255, 255, 0.03);
}

/* Slider Phone Card Styling */
.slide-phone {
    width: 280px;
    height: 550px;
    display: inline-block;
    white-space: normal;
    vertical-align: top;
    margin: 0 20px;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
    border: 8px solid #1e293b;
    position: relative;
    transition: all 0.3s ease;
}
.slide-phone:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(244, 0, 9, 0.15);
}
.slide-notch {
    width: 120px;
    height: 25px;
    background: #1e293b;
    border-radius: 0 0 15px 15px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.slide-phone.theme-sarah {
    background: linear-gradient(135deg, #2a1b28 0%, #15111b 100%);
    border-color: #3b2a3a;
}
.slide-phone.theme-sarah .slide-notch { background: #3b2a3a; }

.slide-phone.theme-dev {
    background: linear-gradient(135deg, #0a0d18 0%, #020408 100%);
    border-color: #1e293b;
}

.slide-phone.theme-anita {
    background: linear-gradient(135deg, #2c1a1d 0%, #180c0e 100%);
    border-color: #4c2b30;
}
.slide-phone.theme-anita .slide-notch { background: #4c2b30; }

.slide-phone.theme-budi {
    background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
    border-color: #27272a;
}
.slide-phone.theme-budi .slide-notch { background: #27272a; }

.slide-phone.theme-rio {
    background: linear-gradient(135deg, #0c1c24 0%, #02080c 100%);
    border-color: #15353c;
}
.slide-phone.theme-rio .slide-notch { background: #15353c; }

/* Bento Grid - Default Light Mode */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.bento-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-huge);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 45px rgba(0,0,0,0.05);
    border: 1px solid var(--card-border);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.bento-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-active);
    box-shadow: 0 15px 50px rgba(244, 0, 9, 0.08);
}
.bento-card h3 { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; color: var(--text-primary); }
.bento-card p { color: var(--text-secondary); font-size: 1.1rem; }
.bento-span-2 { grid-column: span 2; }

/* Bento Grid - Dark Mode Override */
body.home-page.dark-mode .bento-card {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--card-border);
    box-shadow: 0 10px 45px rgba(0,0,0,0.4);
}
body.home-page.dark-mode .bento-card:hover {
    border-color: var(--card-border-active);
    box-shadow: 0 15px 50px rgba(244, 0, 9, 0.1);
}

.bento-red { 
    background: linear-gradient(135deg, var(--coca-cola) 0%, var(--coca-cola-dark) 100%) !important; 
    color: white; 
    border-color: var(--coca-cola) !important;
    box-shadow: 0 15px 45px rgba(244, 0, 9, 0.3) !important;
}
.bento-red:hover {
    border-color: var(--coca-cola-light) !important;
    box-shadow: 0 20px 50px rgba(244, 0, 9, 0.5) !important;
}
.bento-red h3, .bento-red p { color: white !important; }

/* Bento Dark - Default Light Mode */
.bento-dark { 
    background: #f1f5f9; 
    border-color: var(--card-border);
}
.bento-dark p { color: var(--text-secondary); }

/* Bento Dark - Dark Mode Override */
body.home-page.dark-mode .bento-dark { 
    background: #05070c; 
    border-color: var(--card-border);
}

.bento-visual { flex: 1; display: flex; align-items: center; justify-content: center; margin-top: 20px; }

/* Mockup UI - Default Light Mode */
.mockup-ui {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}
/* Mockup UI - Dark Mode Override */
body.home-page.dark-mode .mockup-ui {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.mockup-ui .mock-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    margin: 0 auto 12px;
}
.mockup-ui .mock-name {
    height: 12px; width: 50%; border-radius: 6px; margin: 0 auto 16px;
    background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite 0.1s;
}

/* Mockup Link Item - Default Light Mode */
.mockup-ui .mock-link {
    height: 38px; border-radius: 10px; margin-bottom: 10px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex; align-items: center; padding: 0 14px; gap: 10px;
    font-size: 0.82rem; font-weight: 600; color: #334155;
}
/* Mockup Link Item - Dark Mode Override */
body.home-page.dark-mode .mockup-ui .mock-link {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.mockup-ui .mock-link .mock-icon {
    width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
    background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}
.mockup-ui .mock-link.highlight {
    background: var(--coca-cola) !important;
    border-color: var(--coca-cola) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(244, 0, 9, 0.3);
}
.mockup-ui .mock-link.highlight .mock-icon {
    background: rgba(255,255,255,0.3);
    animation: none;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Pricing Card Glow & Receipt */
#harga {
    background: #05070c !important;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.pricing-wrapper { display: flex; justify-content: center; gap: 40px; align-items: flex-start; }

/* PRO Card - Default Light Mode Layout */
.pro-card {
    background: white;
    border-color: rgba(244,0,9,0.2);
    border-radius: 40px;
    padding: 50px;
    width: 400px;
    box-shadow: 0 20px 50px rgba(244, 0, 9, 0.08), 0 10px 25px rgba(0,0,0,0.03);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.pro-card::before {
    content: ''; position: absolute; inset: -2px; border-radius: 42px; background: linear-gradient(135deg, var(--coca-cola), transparent); z-index: -1; opacity: 0.4;
}
.pro-card .pricing-price {
    font-size: 4.5rem;
    font-weight: 900;
    color: #0f172a !important;
    margin: 10px 0;
    text-shadow: none;
}

/* PRO Card - Dark Mode Override */
body.home-page.dark-mode .pro-card {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(244,0,9,0.25);
    box-shadow: 0 0 50px rgba(244, 0, 9, 0.15), 0 20px 45px rgba(0,0,0,0.5);
}
body.home-page.dark-mode .pro-card .pricing-price {
    color: white !important;
    text-shadow: 0 0 20px rgba(244, 0, 9, 0.3);
}

/* Receipt Card - Default Light Mode */
.receipt-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 350px;
    padding: 40px;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.04));
    position: relative;
    /* Jagged edge effect */
    background-image: radial-gradient(circle at 10px 0, transparent 10px, #ffffff 11px);
    background-size: 20px 10px;
    background-position: top;
    background-repeat: repeat-x;
    margin-top: 10px;
    transition: all 0.3s ease;
}
.receipt-item { display: flex; justify-content: space-between; font-family: 'Courier New', monospace; font-size: 1.1rem; margin-bottom: 15px; color: #475569; }
.receipt-total { border-top: 2px dashed rgba(0, 0, 0, 0.08); padding-top: 20px; font-weight: 800; font-size: 1.5rem; display: flex; justify-content: space-between; position: relative; color: #0f172a; }

/* Receipt Card - Dark Mode Override */
body.home-page.dark-mode .receipt-card {
    background: #0f121d;
    border-color: rgba(255, 255, 255, 0.08);
    background-image: radial-gradient(circle at 10px 0, transparent 10px, #0f121d 11px);
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.4));
}
body.home-page.dark-mode .receipt-item { color: #cbd5e1; }
body.home-page.dark-mode .receipt-total { border-color: rgba(255, 255, 255, 0.1); color: white; }

.strike-red { position: absolute; top: 60%; left: -10px; right: -10px; height: 3px; background: var(--coca-cola-light); transform: translateY(-50%) rotate(-5deg); pointer-events: none; }
.strike-red::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%; background: inherit; transform: rotate(10deg); }

/* Testimonial Masonry */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
/* Review Card - Default Light Mode */
.review-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-active);
    box-shadow: 0 15px 35px rgba(244, 0, 9, 0.08);
}
.review-user { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.r-avatar { width: 50px; height: 50px; border-radius: 50%; }

/* Review Card - Dark Mode Override */
body.home-page.dark-mode .review-card {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--card-border);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
body.home-page.dark-mode .review-card:hover {
    border-color: var(--card-border-active);
    box-shadow: 0 15px 35px rgba(244, 0, 9, 0.15);
}

/* FAQ Accordion - Default Light Mode */
#faq {
    background: #f8fafc !important;
    transition: background-color 0.3s ease;
}
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    margin-bottom: 16px;
    padding: 24px 32px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.faq-item:hover { 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-2px); 
}
.faq-item.open { 
    box-shadow: 0 10px 30px rgba(244,0,9,0.08); 
    border-color: var(--coca-cola); 
    background: rgba(255, 255, 255, 0.8);
}
.faq-q {
    font-weight: 800;
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    color: #0f172a;
}
.faq-q .faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: #f1f5f9;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s ease;
    font-size: 1rem;
    color: #475569;
}
.faq-item.open .faq-icon { background: var(--coca-cola); color: white; transform: rotate(45deg); }
.faq-a {
    color: var(--text-secondary);
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.2s ease;
    line-height: 1.7;
    font-size: 1.05rem;
}
.faq-item.open .faq-a { max-height: 300px; margin-top: 15px; }

/* FAQ - Dark Mode Override */
body.home-page.dark-mode #faq {
    background: #090b11 !important;
}
body.home-page.dark-mode .faq-item {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--card-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
body.home-page.dark-mode .faq-item:hover { 
    box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
    border-color: rgba(255, 255, 255, 0.12);
}
body.home-page.dark-mode .faq-item.open { 
    box-shadow: 0 10px 30px rgba(244,0,9,0.15); 
    border-color: var(--coca-cola); 
    background: rgba(255, 255, 255, 0.04);
}
body.home-page.dark-mode .faq-q { color: white; }
body.home-page.dark-mode .faq-q .faq-icon { background: rgba(255, 255, 255, 0.05); color: #cbd5e1; }

/* Footer Wave Divider - Default Light Mode */
.wave-divider {
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 60" xmlns="http://www.w3.org/2000/svg"><path d="M0,30 C360,90 720,-30 1080,30 C1260,60 1380,10 1440,30 L1440,60 L0,60 Z" fill="%23ffffff"/></svg>') no-repeat center bottom;
    background-size: cover;
    margin-top: -2px;
}
/* Footer Wave Divider - Dark Mode Override */
body.home-page.dark-mode .wave-divider {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 60" xmlns="http://www.w3.org/2000/svg"><path d="M0,30 C360,90 720,-30 1080,30 C1260,60 1380,10 1440,30 L1440,60 L0,60 Z" fill="%23020617"/></svg>');
}

/* Footer - Default Light Mode */
.home-footer {
    background: #ffffff !important;
    border-top: 1px solid #e2e8f0 !important;
    padding: 80px 0 40px !important;
    color: #475569;
    transition: all 0.3s ease;
}
.home-footer .brand-logo span {
    color: #0f172a !important;
}
.home-footer h4 {
    color: #0f172a !important;
}
.home-footer a {
    color: #475569 !important;
    text-decoration: none;
    transition: color 0.2s ease;
}
.home-footer a:hover {
    color: var(--coca-cola) !important;
}
.footer-bottom {
    border-top: 1px solid #f1f5f9 !important;
    color: #94a3b8;
}

/* Footer - Dark Mode Override */
body.home-page.dark-mode .home-footer {
    background: #020617 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.03) !important;
    color: var(--text-secondary);
}
body.home-page.dark-mode .home-footer .brand-logo span { color: white !important; }
body.home-page.dark-mode .home-footer h4 { color: white !important; }
body.home-page.dark-mode .home-footer a { color: var(--text-secondary) !important; }
body.home-page.dark-mode .home-footer a:hover { color: var(--coca-cola-light) !important; }
body.home-page.dark-mode .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05) !important; color: var(--text-muted); }

/* Semantic text color helper classes */
.review-name {
    color: white;
    transition: color 0.3s ease;
}
.bento-passive-amount {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.receipt-title {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

body.home-page.dark-mode .review-name { color: white; }
body.home-page.dark-mode .bento-passive-amount { color: white; text-shadow: 0 0 10px rgba(255,255,255,0.2); }
body.home-page.dark-mode .receipt-title { color: #cbd5e1; }

/* Light Mode Overrides for semantic helpers */
body.home-page:not(.dark-mode) .review-name {
    color: #0f172a;
}
body.home-page:not(.dark-mode) .bento-passive-amount {
    color: #0f172a;
    text-shadow: none;
}
body.home-page:not(.dark-mode) .receipt-title {
    color: #475569;
}

/* Dynamic Section Title Overrides for Light Mode */
body.home-page:not(.dark-mode) .section-title {
    color: #0f172a;
}
body.home-page:not(.dark-mode) #harga .section-title {
    color: white;
}

@media (max-width: 992px) {
    .home-navbar { max-width: 90%; margin: 10px auto; padding: 15px; }
    .hero-section { flex-direction: column; text-align: center; }
    .hero-title { font-size: 3.5rem; }
    .claim-form-modern { margin: 0 auto; flex-direction: column; border-radius: 24px; padding: 15px; gap: 10px; }
    .btn-claim-modern { width: 100%; border-radius: 12px; }
    .bento-grid, .masonry-grid { grid-template-columns: 1fr; }
    .bento-span-2 { grid-column: span 1; }
    .bento-dark { flex-direction: column !important; align-items: flex-start !important; padding-right: 40px !important; }
    .bento-dark > div:last-child { 
        width: calc(100% + 80px); 
        margin-left: -40px; 
        margin-bottom: -40px; 
        border-radius: 0 0 30px 30px !important; 
        border-left: none !important; 
        border-top: 2px solid var(--coca-cola); 
        margin-top: 20px;
        background: #020408 !important;
    }
    body.home-page:not(.dark-mode) .bento-dark > div:last-child {
        background: #e2e8f0 !important;
    }
    .pricing-wrapper { flex-direction: column; align-items: center; }
    .pro-card, .receipt-card { width: 100%; max-width: 400px; }
}

/* ============================================================
   MOBILE NAVBAR FIX — tombol login/signup selalu terlihat
   ============================================================ */
@media (max-width: 640px) {
    /* Navbar: no margin/rounded, full-width sticky bar */
    .home-navbar {
        position: sticky !important;
        top: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 16px !important;
        z-index: 500 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    /* Hide "Fitur" and "Harga" text links — not needed on mobile */
    .nav-item {
        display: none !important;
    }

    /* Nav links container: no wrapping, right-aligned, gap tight */
    .home-nav-links {
        display: flex !important;
        gap: 8px !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }

    /* Compact buttons */
    .home-btn {
        padding: 9px 16px !important;
        font-size: 0.82rem !important;
        white-space: nowrap !important;
        border-radius: 99px !important;
    }

    /* Logo text slightly smaller */
    .brand-logo span {
        font-size: 1.2rem !important;
    }

    /* Hero title smaller */
    .hero-title { font-size: 2.2rem !important; }
}

@media (max-width: 380px) {
    .home-btn { padding: 8px 12px !important; font-size: 0.78rem !important; }
    .brand-logo span { font-size: 1.05rem !important; }
}
