:root {
    --red: #FF0000;
    --red-dark: #D80000;
    --red-pale: #FFF5F5;
    --white: #FFFFFF;
    --dark: #0A0A0A;
    --gray: #666666;
    --light-gray: #F5F5F7;
    --font: 'Inter', sans-serif;
    --shadow: 0 20px 40px rgba(0,0,0,0.05);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--white); color: var(--dark); overflow-x: hidden; line-height: 1.5; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Noise Effect */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999; pointer-events: none; opacity: 0.05;
    filter: url(#noiseFilter);
}

/* Header */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 25px 0; transition: var(--transition);
}
header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px); padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { 
    display: flex; 
    flex-direction: column; 
    line-height: 1.1;
    color: var(--dark); 
}
.logo .logo-line1 { 
    font-weight: 800; 
    font-size: 1.1rem; 
    letter-spacing: -0.5px; 
}
.logo .logo-line2 { 
    font-weight: 600; 
    font-size: 0.75rem; 
    color: var(--red);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
header:not(.scrolled) .logo { color: var(--white); }
header:not(.scrolled) .logo .logo-line2 { color: rgba(255,255,255,0.8); }

/* Buttons */
.btn {
    text-decoration: none; display: inline-block; font-weight: 700;
    border-radius: 14px; transition: var(--transition); border: none; cursor: pointer;
}
.btn-lg { background: var(--red); color: white; padding: 20px 45px; font-size: 1.1rem; box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2); }
.btn-sm { background: var(--red); color: white; padding: 10px 22px; font-size: 0.85rem; }
.btn-outline { background: transparent; border: 2px solid var(--red); color: var(--red); padding: 18px 40px; }
.btn-block { width: 100%; text-align: center; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3); }

/* HERO SECTION */
.hero {
    height: 100vh; min-height: 650px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
}

/* Gradient Mesh Background */
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; overflow: hidden;
}
.gradient-mesh {
    position: absolute; width: 100%; height: 100%;
    filter: blur(80px);
}
.mesh-color {
    position: absolute; border-radius: 50%;
    animation: meshFloat 20s ease-in-out infinite;
}
.mesh-1 {
    width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
    background: radial-gradient(circle, rgba(255,0,0,0.2) 0%, transparent 70%);
    top: -20%; left: -10%;
    animation-duration: 25s;
}
.mesh-2 {
    width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
    background: radial-gradient(circle, rgba(255,50,50,0.15) 0%, transparent 70%);
    bottom: -10%; right: -5%;
    animation-duration: 20s; animation-delay: -5s;
}
.mesh-3 {
    width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
    background: radial-gradient(circle, rgba(255,100,100,0.12) 0%, transparent 70%);
    top: 30%; right: 10%;
    animation-duration: 22s; animation-delay: -10s;
}
.mesh-4 {
    width: 35vw; height: 35vw; max-width: 400px; max-height: 400px;
    background: radial-gradient(circle, rgba(200,0,50,0.1) 0%, transparent 70%);
    bottom: 20%; left: 20%;
    animation-duration: 18s; animation-delay: -8s;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Floating Particles */
.particles {
    position: absolute; width: 100%; height: 100%;
    z-index: 1;
}
.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,255,255,0.3), 0 0 20px rgba(255,100,100,0.2);
    animation: particleFloat 15s ease-in-out infinite;
}
.particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 18s; width: 3px; height: 3px; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-duration: 22s; animation-delay: -2s; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-duration: 16s; animation-delay: -4s; width: 5px; height: 5px; }
.particle:nth-child(4) { left: 40%; top: 60%; animation-duration: 20s; animation-delay: -6s; }
.particle:nth-child(5) { left: 50%; top: 30%; animation-duration: 19s; animation-delay: -8s; width: 6px; height: 6px; }
.particle:nth-child(6) { left: 60%; top: 70%; animation-duration: 17s; animation-delay: -10s; }
.particle:nth-child(7) { left: 70%; top: 25%; animation-duration: 21s; animation-delay: -1s; width: 3px; height: 3px; }
.particle:nth-child(8) { left: 80%; top: 55%; animation-duration: 23s; animation-delay: -3s; }
.particle:nth-child(9) { left: 90%; top: 85%; animation-duration: 18s; animation-delay: -5s; width: 5px; height: 5px; }
.particle:nth-child(10) { left: 15%; top: 50%; animation-duration: 20s; animation-delay: -7s; }
.particle:nth-child(11) { left: 25%; top: 15%; animation-duration: 16s; animation-delay: -9s; width: 4px; height: 4px; }
.particle:nth-child(12) { left: 35%; top: 90%; animation-duration: 22s; animation-delay: -11s; }
.particle:nth-child(13) { left: 45%; top: 45%; animation-duration: 19s; animation-delay: -13s; width: 3px; height: 3px; }
.particle:nth-child(14) { left: 55%; top: 10%; animation-duration: 21s; animation-delay: -2s; }
.particle:nth-child(15) { left: 65%; top: 65%; animation-duration: 17s; animation-delay: -4s; width: 5px; height: 5px; }
.particle:nth-child(16) { left: 75%; top: 35%; animation-duration: 23s; animation-delay: -6s; }
.particle:nth-child(17) { left: 85%; top: 75%; animation-duration: 18s; animation-delay: -8s; width: 4px; height: 4px; }
.particle:nth-child(18) { left: 5%; top: 65%; animation-duration: 20s; animation-delay: -10s; }
.particle:nth-child(19) { left: 95%; top: 40%; animation-duration: 16s; animation-delay: -12s; width: 3px; height: 3px; }
.particle:nth-child(20) { left: 50%; top: 95%; animation-duration: 22s; animation-delay: -14s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(20px, -40px) scale(1.2); opacity: 1; }
    50% { transform: translate(-15px, -20px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(25px, -60px) scale(1.1); opacity: 0.8; }
}

/* Hero Glow */
.hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(255,0,0,0.04) 0%, transparent 60%);
    z-index: 0;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* Hero Content */
.hero-content { position: relative; z-index: 2; }
.hero h1, .hero-tagline { color: var(--white); }
.hero-tagline { color: rgba(255,255,255,0.7); }

.reveal-wrapper { overflow: hidden; display: block; }
.reveal-item { display: inline-block; transform: translateY(105%); }

.hero-badge {
    background: rgba(255,0,0,0.15); color: var(--red); padding: 10px 24px;
    border-radius: 50px; font-weight: 700; font-size: 0.85rem; margin-bottom: 25px;
    border: 1px solid rgba(255,0,0,0.3);
    backdrop-filter: blur(10px);
}
.hero h1 { font-size: clamp(2.2rem, 9vw, 6rem); font-weight: 900; letter-spacing: -3px; line-height: 1; margin-bottom: 25px; }
.text-red { color: var(--red); }
.hero-tagline { font-size: clamp(1.1rem, 3vw, 1.8rem); color: rgba(255,255,255,0.7); font-weight: 300; margin-bottom: 40px; }

.hero-meta { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.meta-card {
    background: rgba(255,255,255,0.1); padding: 14px 28px; border-radius: 16px;
    backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; gap: 12px; font-weight: 600; color: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.meta-card i { color: var(--red); }

/* SECTION COMMON */
.section { padding: clamp(60px, 12vh, 120px) 0; }
.section-title { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 800; margin-bottom: 60px; letter-spacing: -2px; }
.section-title span { color: var(--red); }
.text-center { text-align: center; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start; }
.about-text p { font-size: 1.15rem; color: var(--gray); margin-bottom: 20px; }
.premium-quote { border-left: 4px solid var(--red); padding: 25px; background: var(--red-pale); border-radius: 0 20px 20px 0; font-weight: 600; margin-top: 30px; }
.about-visual { padding-top: 120px; }

/* Trust Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.trust-item {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.trust-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}
.trust-label {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
    line-height: 1.3;
}

/* MODERATORS */
.moderators { background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%); }
.mods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.mod-card { 
    background: var(--white); 
    padding: 0; 
    border-radius: 24px; 
    text-align: left; 
    transition: var(--transition); 
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.mod-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-color: var(--red);
}
.mod-photo { 
    width: 100%; 
    aspect-ratio: 1; 
    overflow: hidden;
    position: relative;
    background: var(--light-gray);
}
.mod-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    pointer-events: none;
}
.mod-photo img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease;
    filter: grayscale(20%);
}
.mod-card:hover .mod-photo img {
    transform: scale(1.05);
    filter: grayscale(0%);
}
.mod-info { 
    padding: 28px 24px 32px; 
}
.mod-title { 
    display: inline-block;
    background: var(--red-pale); 
    color: var(--red); 
    padding: 6px 14px; 
    border-radius: 50px; 
    font-size: 0.75rem; 
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.mod-info h3 { 
    font-size: 1.35rem; 
    font-weight: 800; 
    margin-bottom: 8px; 
    letter-spacing: -0.5px;
    color: var(--dark);
}
.mod-role { 
    color: var(--red); 
    font-weight: 600; 
    font-size: 0.9rem; 
    margin-bottom: 12px;
}
.mod-desc { 
    color: var(--gray); 
    font-size: 0.85rem; 
    line-height: 1.6;
}

/* PROGRAM BENTO */
.program-bento { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.prog-card { background: white; padding: 30px; border-radius: 24px; border: 1px solid #eee; transition: 0.3s; }
.prog-card .num { font-weight: 900; color: var(--red); opacity: 0.2; font-size: 1.5rem; display: block; margin-bottom: 10px; }
.prog-card:hover { border-color: var(--red); }
.special-card { background: var(--red); color: white; border: none; }
.special-card .num { color: white; opacity: 0.5; }

/* PRICING */
.price-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.price-card { background: white; padding: 50px 40px; border-radius: 40px; border: 1px solid #eee; max-width: 400px; width: 100%; text-align: center; position: relative; }
.price-card.featured { border: 2px solid var(--red); transform: scale(1.05); z-index: 2; }
.amount { font-size: 4rem; font-weight: 900; margin: 20px 0; letter-spacing: -2px; }
.amount span { font-size: 1.5rem; font-weight: 500; }
.price-list { list-style: none; text-align: left; margin-bottom: 40px; }
.price-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--gray); }
.price-list li i { color: #27ae60; }
.badge { position: absolute; top: 20px; right: 20px; background: var(--red); color: white; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 800; }

/* FOOTER */
footer { background: #080808; color: white; padding: 100px 0 50px; }
footer .logo { color: var(--white); }
footer .logo .logo-line2 { color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 60px; }
.f-link { color: white; text-decoration: none; display: block; margin-bottom: 10px; transition: 0.3s; }
.f-link:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid #222; padding-top: 40px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; color: #888; font-size: 0.9rem; }
.legal-info { color: #888; }

/* ==========================================
   STATUS PAGES (success.html, error.html)
   ========================================== */
.status-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--light-gray);
}
.status-page .main-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.status-page .header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.status-page .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
}
.status-page .logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
}
.status-page .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.status-page .logo-text,
.policy-page .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.status-page .logo-text .logo-line1,
.policy-page .logo-text .logo-line1 {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}
.status-page .logo-text .logo-line2,
.policy-page .logo-text .logo-line2 {
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--red);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hero-tagline { font-size: 1.3rem; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.tagline-word { transition: all 0.4s ease; }
.tagline-word.active { color: var(--white); text-shadow: 0 0 20px rgba(255,255,255,0.3); }
.tagline-dot { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* Hero CSS Animations */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s ease forwards;
}
.reveal-item:nth-child(1) { animation-delay: 0.1s; }
.hero-title .reveal-wrapper:nth-child(1) .reveal-item { animation-delay: 0.2s; }
.hero-title .reveal-wrapper:nth-child(2) .reveal-item { animation-delay: 0.35s; }
.hero-tagline.reveal-item { animation-delay: 0.5s; }
.hero-meta.reveal-item { animation-delay: 0.65s; }
.hero-content > .reveal-item:last-child { animation-delay: 0.8s; }

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.status-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}
.status-card {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 32px;
    text-align: center;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.status-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}
.status-icon-wrapper svg {
    width: 40px;
    height: 40px;
}
.status-icon-wrapper.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}
.status-icon-wrapper.error {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.25);
}
.status-card h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.status-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.status-page .main-footer {
    background: var(--white);
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #eee;
}
.status-page .copyright {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Button variants for status/policy pages */
.btn-primary {
    background: var(--red);
    color: white;
    padding: 16px 32px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    border-radius: 14px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
}
.btn-secondary {
    background: var(--light-gray);
    color: var(--dark);
    padding: 12px 24px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-secondary:hover {
    background: #e8e8e8;
}

/* ==========================================
   POLICY PAGES (refund.html, terms.html)
   ========================================== */
.policy-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--light-gray);
}
.policy-page .main-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}
.policy-page .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.policy-page .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
}
.policy-page .logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
}
.policy-page .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.policy-page .logo-text {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}
.policy-content-section {
    flex: 1;
    padding: 60px 20px;
}
.policy-card {
    background: var(--white);
    padding: 60px;
    border-radius: 32px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.policy-card h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: var(--dark);
}
.policy-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--dark);
}
.policy-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.policy-card ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}
.policy-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: var(--gray);
    line-height: 1.7;
}
.policy-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}
.policy-card ul li strong {
    color: var(--dark);
}
.policy-page .main-footer {
    background: var(--white);
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #eee;
}
.policy-page .copyright {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ==========================================
   MODAL / POPUP FORM
   ========================================== */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: var(--white);
    border-radius: 28px;
    padding: 40px;
    max-width: 440px;
    width: 100%;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.modal-backdrop.active .modal-content {
    transform: translateY(0) scale(1);
}
.modal-close-btn {
    position: absolute;
    top: 20px; right: 24px;
    background: var(--light-gray);
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.modal-close-btn:hover {
    background: var(--red);
    color: white;
}
.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}
.modal-subtitle {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Form Styles */
.form-group {
    position: relative;
    margin-bottom: 16px;
}
.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: var(--font);
    transition: all 0.3s;
    background: var(--white);
}
.form-group input:focus {
    outline: none;
    border-color: var(--red);
}
.form-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s;
    background: var(--white);
    padding: 0 6px;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.75rem;
    color: var(--red);
    font-weight: 600;
}
.btn-submit {
    width: 100%;
    background: var(--red);
    color: white;
    padding: 14px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    margin-top: 8px;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
}
.btn-submit:disabled {
    background: var(--gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.form-status-msg {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}
.form-status-msg.error {
    color: var(--red);
}

/* Modal Success State */
#modalSuccessContent {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}
#modalSuccessContent h2 {
    margin-top: 24px;
}
#modalSuccessContent p {
    color: var(--gray);
    line-height: 1.6;
}
.modal-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}
.modal-success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .mods-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 768px) {
    .section { padding: 50px 0; }
    .section-title { margin-bottom: 30px; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-visual { order: 2; padding-top: 0; }
    .about-text { order: 1; }
    .about-text p { font-size: 1rem; margin-bottom: 15px; }
    .premium-quote { padding: 20px; margin-top: 20px; }
    .hero h1 { letter-spacing: -1px; }
    .hero-tagline { font-size: 0.85rem; letter-spacing: 1px; gap: 8px; }
    .tagline-dot { font-size: 0.5rem; }
    .price-card.featured { transform: scale(1); }
    .btn-lg { width: 100%; text-align: center; }
    .mods-grid { grid-template-columns: 1fr; gap: 24px; }
    .mod-card { display: flex; flex-direction: row; }
    .mod-photo { width: 140px; min-width: 140px; aspect-ratio: 1; border-radius: 24px 0 0 24px; }
    .mod-info { padding: 20px; display: flex; flex-direction: column; justify-content: center; }
    .mod-info h3 { font-size: 1.15rem; }
    .mod-desc { display: none; }
    .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .trust-item { padding: 18px 12px; border-radius: 16px; }
    .trust-number { font-size: 1.6rem; }
    .trust-label { font-size: 0.7rem; }
    
    /* Status pages mobile */
    .status-card { padding: 40px 24px; border-radius: 24px; }
    .status-card h1 { font-size: 1.5rem; }
    .status-icon-wrapper { width: 70px; height: 70px; margin-bottom: 24px; }
    .status-icon-wrapper svg { width: 32px; height: 32px; }
    
    /* Policy pages mobile */
    .policy-card { padding: 32px 24px; border-radius: 24px; }
    .policy-card h1 { font-size: 1.6rem; margin-bottom: 24px; }
    .policy-card h2 { font-size: 1.15rem; margin-top: 32px; }
    .policy-card p { font-size: 0.95rem; }
    .policy-content-section { padding: 30px 16px; }
    .policy-page .logo-text { display: none; }
    .status-page .logo-text { display: none; }
    
    /* Modal mobile */
    .modal-content { padding: 32px 20px; border-radius: 24px; max-height: 90vh; overflow-y: auto; }
    .modal-content h2 { font-size: 1.35rem; }
    .form-group input { padding: 14px 16px; }
    .btn-submit { padding: 14px 20px; font-size: 0.95rem; }
    
    /* Footer mobile */
    footer { padding: 60px 0 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; margin-bottom: 40px; }
    .f-col h4 { margin-bottom: 15px; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 15px; padding-top: 30px; }
    footer .logo { margin-bottom: 10px; display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 320px) { /* iPhone 4 / SE Support */
    .logo { font-size: 1.1rem; }
    .hero h1 { font-size: 1.8rem; }
    .amount { font-size: 3rem; }
    .section-title { font-size: 1.6rem; }
}