:root {
    --navy: #0a192f;
    --navy-light: #172a45;
    --gold: #c5a059;
    --silver: #e2e8f0;
    --white: #ffffff;
    --text-body: #64748b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--navy); line-height: 1.6; background: var(--white); overflow-x: hidden; }
h1, h2, h3, .logo-text, .logo-text-footer { font-family: 'Cinzel', serif; font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }

/* TOP BAR */
.top-announcement { background: var(--navy); color: var(--white); text-align: center; padding: 12px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.top-announcement strong { color: var(--gold); }

/* NAVBAR */
.nav-bar { height: 100px; background: rgba(255,255,255,0.98); display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-area { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.main-logo { height: 55px; }
.logo-text { font-size: 20px; color: var(--navy); }
.logo-text span { color: var(--gold); }
.nav-menu a { text-decoration: none; color: var(--navy); margin: 0 15px; font-size: 14px; font-weight: 600; }
.nav-btn { background: var(--gold); color: white; padding: 14px 28px; text-decoration: none; font-weight: 800; border-radius: 4px; box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3); }

/* HERO */
.hero-section { padding: 100px 0; background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.official-tag { color: var(--gold); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; font-size: 12px; margin-bottom: 20px; }
h1 { font-size: 58px; color: var(--navy); line-height: 1.1; margin-bottom: 25px; }
h1 span { color: var(--gold); display: block; }
.hero-cta-group { display: flex; align-items: center; gap: 40px; margin-top: 40px; }
.hero-main-btn { background: var(--navy); color: white; padding: 22px 45px; text-decoration: none; font-weight: 800; border-radius: 2px; }
.lot-price .amount { font-size: 38px; font-weight: 900; line-height: 1; color: var(--navy); }
.lot-price .sub { font-size: 12px; color: var(--text-body); font-weight: 700; text-transform: uppercase; }

.hero-img-box { position: relative; border: 15px solid white; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.hero-img-box img { width: 100%; display: block; }
.image-label { position: absolute; bottom: 30px; left: -30px; background: var(--gold); color: white; padding: 15px 30px; font-weight: 700; font-size: 14px; }

/* VISION CARDS */
.vision-section { padding: 120px 0; }
.section-heading { text-align: center; margin-bottom: 80px; }
.section-heading h2 { font-size: 42px; color: var(--navy); margin-bottom: 15px; }
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.vision-card { padding: 50px 30px; background: #f8fafc; border-bottom: 5px solid var(--gold); transition: 0.3s; }
.vision-card:hover { transform: translateY(-10px); background: white; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.card-icon { font-size: 40px; color: var(--gold); margin-bottom: 25px; }

/* PAYMENT CARD */
.payment-section { padding: 100px 0; background: var(--navy); }
.payment-card { max-width: 650px; margin: 0 auto; background: white; padding: 60px; border-radius: 4px; }
.payment-header { text-align: center; margin-bottom: 40px; }
.selector-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }
.sel-item input { display: none; }
.sel-box { display: block; padding: 25px; border: 2px solid #f1f5f9; text-align: center; cursor: pointer; transition: 0.2s; }
.sel-item input:checked + .sel-box { border-color: var(--gold); background: #fffdf9; }
.sel-box strong { display: block; font-size: 24px; color: var(--navy); }
.input-fields input { width: 100%; padding: 18px; border: 1px solid #e2e8f0; margin-bottom: 15px; border-radius: 4px; outline: none; }
.compliance-box { font-size: 12px; display: flex; gap: 12px; margin-bottom: 25px; color: var(--text-body); }
.submit-btn { width: 100%; background: var(--gold); color: white; border: none; padding: 22px; font-weight: 800; font-size: 18px; cursor: pointer; letter-spacing: 1px; }

/* MODAL */
.success-overlay { position: fixed; inset: 0; background: rgba(10, 25, 47, 0.95); display: none; justify-content: center; align-items: center; z-index: 5000; padding: 20px; }
.success-overlay.visible { display: flex; }
.success-content { background: white; padding: 60px; max-width: 500px; width: 100%; text-align: center; border-top: 8px solid var(--gold); }
.award-icon { font-size: 70px; color: var(--gold); margin-bottom: 25px; }
.modal-buttons { margin-top: 35px; display: flex; flex-direction: column; gap: 15px; }
.close-text { background: none; border: none; text-decoration: underline; color: var(--text-body); cursor: pointer; font-weight: 700; }

/* FOOTER */
.main-footer { background: #050c16; color: #94a3b8; padding: 100px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.logo-text-footer { color: white; font-size: 22px; margin-bottom: 25px; }
.logo-text-footer span { color: var(--gold); }
.licence-badge { background: rgba(197, 160, 89, 0.1); color: var(--gold); padding: 8px 15px; font-size: 12px; font-weight: 800; display: inline-block; margin-top: 20px; border: 1px solid var(--gold); }
.footer-links a { display: block; color: #94a3b8; text-decoration: none; margin-bottom: 15px; font-size: 14px; }
.footer-links a:hover { color: white; }
.payment-methods { font-size: 32px; display: flex; gap: 20px; align-items: center; margin-top: 30px; color: white; }
.ideal-logo { background: #cc3399; padding: 3px 10px; font-weight: 900; font-size: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); margin-top: 60px; padding-top: 30px; text-align: center; font-size: 11px; }

@media (max-width: 900px) { .hero-grid, .vision-grid, .footer-grid { grid-template-columns: 1fr; } h1 { font-size: 40px; } }

/* LEGAL & CONTENT PAGES */
.legal-content { padding: 100px 20px; max-width: 900px; }
.legal-header { margin-bottom: 60px; border-bottom: 2px solid var(--silver); padding-bottom: 30px; }
.legal-header h1 { font-size: 48px; color: var(--navy); margin-bottom: 10px; }
.legal-header p { font-weight: 600; color: var(--gold); text-transform: uppercase; font-size: 13px; letter-spacing: 1px; }

.legal-articles { display: grid; gap: 40px; }
.article-box { display: flex; gap: 30px; align-items: flex-start; }
.art-num { font-family: 'Cinzel', serif; font-size: 24px; color: var(--gold); background: var(--navy); min-width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.article-box h2 { font-size: 24px; margin-bottom: 15px; color: var(--navy); }
.article-box p { color: var(--text-body); font-size: 16px; }

.status-box { background: #f0f4f8; border-left: 4px solid var(--gold); padding: 30px; margin-top: 40px; }
.status-box p { font-weight: 700; color: var(--navy); margin: 0; }
.privacy-body h2 { font-size: 26px; margin: 40px 0 20px; color: var(--navy); }
.privacy-body ul { padding-left: 20px; margin-bottom: 30px; color: var(--text-body); }

.contact-cards-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }

@media (max-width: 768px) {
    .article-box { flex-direction: column; gap: 15px; }
    .contact-cards-wrap { grid-template-columns: 1fr; }
    .legal-header h1 { font-size: 32px; }
}