/* ===== GUAYHK.COM - Hong Kong Guide & Culture ===== */

:root {
    --bg: #0d1117;
    --bg-alt: #161b22;
    --surface: #1c2333;
    --surface-light: #252d3d;
    --text: #e6edf3;
    --text-light: #8b949e;
    --primary: #e63946;
    --primary-light: #ff4d5a;
    --primary-dark: #c62833;
    --secondary: #ffb703;
    --secondary-light: #ffc933;
    --accent: #00b4d8;
    --accent-light: #48cae4;
    --border: rgba(255,255,255,0.08);
    --shadow: rgba(0,0,0,0.3);
    --shadow-md: rgba(0,0,0,0.5);
    --radius: 10px;
    --radius-lg: 16px;
    --max-width: 1200px;
    --header-height: 72px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.7; font-size: 16px; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
a { color: var(--secondary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--secondary-light); }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 20px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 48px 0 20px; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin: 32px 0 14px; }
p { margin-bottom: 16px; }
ul, ol { margin: 0 0 20px 24px; }
li { margin-bottom: 8px; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(13,17,23,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: all 0.3s; height: var(--header-height); display: flex; align-items: center; }
.header.scrolled { border-bottom-color: var(--border); box-shadow: 0 4px 30px var(--shadow); }
.header .container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.3rem; color: var(--text); }
.logo:hover { color: var(--primary); }
.logo-icon { flex-shrink: 0; }
.logo strong { color: var(--primary); }
.logo .accent { color: var(--secondary); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: var(--text-light); transition: all 0.3s; }
.nav-link:hover { color: var(--primary); background: rgba(230,57,70,0.08); }
.nav-link.active { color: var(--primary); background: rgba(230,57,70,0.12); font-weight: 600; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero { padding: 140px 0 80px; background: linear-gradient(135deg, var(--bg) 0%, #1a0a1e 40%, #0d1117 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -150px; right: -50px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(230,57,70,0.1) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -100px; left: 10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,183,3,0.06) 0%, transparent 70%); border-radius: 50%; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-block; background: rgba(230,57,70,0.12); color: var(--primary); padding: 8px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; border: 1px solid rgba(230,57,70,0.2); }
.hero h1 span { color: var(--primary); }
.hero h1 .gold { color: var(--secondary); }
.hero p { font-size: 1.15rem; color: var(--text-light); max-width: 540px; }

.hero-visual { display: flex; justify-content: center; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: var(--surface); padding: 28px 24px; border-radius: var(--radius-lg); border: 1px solid var(--border); text-align: center; transition: all 0.3s; }
.stat-card:hover { border-color: rgba(230,57,70,0.3); transform: translateY(-3px); }
.stat-card .stat-number { font-family: var(--font-heading); font-size: 2rem; color: var(--primary); display: block; margin-bottom: 4px; }
.stat-card .stat-label { font-size: 0.82rem; color: var(--text-light); line-height: 1.3; }

/* ===== PAGE HERO ===== */
.page-hero { padding: 120px 0 50px; background: linear-gradient(135deg, var(--bg) 0%, #1a0a1e 100%); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; }
.breadcrumb a { color: var(--secondary); }
.breadcrumb .current { color: var(--text); font-weight: 500; }
.page-hero p { font-size: 1.1rem; color: var(--text-light); max-width: 700px; }

/* ===== PAGE CONTENT ===== */
.page-content { padding: 60px 0 80px; }
.content-wrapper { max-width: 800px; }
.content-wrapper h2:first-child { margin-top: 0; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ===== GUIDE CARDS ===== */
.guides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.guide-card { background: var(--surface); border-radius: var(--radius-lg); padding: 32px 28px; border: 1px solid var(--border); transition: all 0.3s; position: relative; overflow: hidden; }
.guide-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); opacity: 0; transition: opacity 0.3s; }
.guide-card:hover { border-color: rgba(230,57,70,0.3); transform: translateY(-4px); }
.guide-card:hover::before { opacity: 1; }
.guide-card .card-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.guide-card h3 { font-size: 1.2rem; margin: 0 0 10px; }
.guide-card p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 16px; }
.card-link { color: var(--secondary); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.card-link:hover { gap: 10px; color: var(--secondary-light); }

/* ===== HIGHLIGHT CARDS ===== */
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.highlight-card { background: var(--surface); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); }
.highlight-card .tag { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.tag-food { background: rgba(230,57,70,0.12); color: var(--primary); }
.tag-culture { background: rgba(255,183,3,0.12); color: var(--secondary); }
.tag-travel { background: rgba(0,180,216,0.12); color: var(--accent); }
.tag-expat { background: rgba(72,202,228,0.12); color: var(--accent-light); }
.highlight-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.highlight-card p { color: var(--text-light); font-size: 0.93rem; margin: 0; }

/* ===== NUMBERED LIST ===== */
.tips-list { list-style: none; margin: 0; padding: 0; counter-reset: tips; }
.tips-list li { counter-increment: tips; padding: 20px 20px 20px 70px; position: relative; background: var(--surface); border-radius: var(--radius); margin-bottom: 12px; border: 1px solid var(--border); }
.tips-list li::before { content: counter(tips); position: absolute; left: 20px; top: 20px; width: 36px; height: 36px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }

/* ===== TABLES ===== */
.comparison-table { width: 100%; border-collapse: collapse; margin: 24px 0; background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); font-size: 0.93rem; }
.comparison-table thead { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white; }
.comparison-table th { padding: 14px 16px; text-align: left; font-weight: 600; }
.comparison-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: rgba(230,57,70,0.04); }

/* ===== INFO BOXES ===== */
.info-box { padding: 24px 28px; border-radius: var(--radius); margin: 28px 0; border: 1px solid var(--border); }
.info-box h4 { font-family: var(--font-body); font-weight: 700; margin-bottom: 10px; font-size: 1rem; }
.info-box p { margin-bottom: 0; font-size: 0.95rem; color: var(--text-light); }
.info-box.tip { background: rgba(255,183,3,0.06); border-color: rgba(255,183,3,0.2); }
.info-box.tip h4 { color: var(--secondary); }
.info-box.warning { background: rgba(230,57,70,0.06); border-color: rgba(230,57,70,0.2); }
.info-box.warning h4 { color: var(--primary); }
.info-box.culture { background: rgba(0,180,216,0.06); border-color: rgba(0,180,216,0.2); }
.info-box.culture h4 { color: var(--accent); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--surface); border-radius: var(--radius); margin-bottom: 10px; border: 1px solid var(--border); overflow: hidden; }
.faq-question { width: 100%; padding: 18px 24px; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--text); text-align: left; }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--primary); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* ===== NEWSLETTER ===== */
.newsletter { padding: 60px 0; background: linear-gradient(135deg, #1a0a1e 0%, var(--bg-alt) 50%, #0d1117 100%); text-align: center; }
.newsletter h2 { margin-top: 0; }
.newsletter p { color: var(--text-light); max-width: 500px; margin: 0 auto 24px; }
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); color: var(--text); font-size: 0.95rem; font-family: var(--font-body); }
.newsletter-form input::placeholder { color: var(--text-light); }
.newsletter-form input:focus { outline: none; border-color: var(--primary); }
.newsletter-form button { padding: 14px 28px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border: none; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all 0.3s; white-space: nowrap; }
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(230,57,70,0.3); }

/* ===== FOOTER ===== */
.footer { background: #080b10; color: var(--text-light); padding: 60px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; }
.footer-links h4 { color: var(--text); font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 16px; }
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-light); font-size: 0.9rem; }
.footer-links a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; font-size: 0.83rem; color: rgba(255,255,255,0.3); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero p { margin: 0 auto; }
    .hero-stats { max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav { position: fixed; top: var(--header-height); left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 20px; gap: 4px; transform: translateY(-100%); opacity: 0; pointer-events: none; transition: all 0.3s; box-shadow: 0 8px 30px var(--shadow-md); border-bottom: 1px solid var(--border); }
    .nav.active { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-toggle { display: flex; }
    .nav-link { padding: 12px 16px; width: 100%; }
    .guides-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-table th, .comparison-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr; max-width: 260px; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== SKIP TO CONTENT ===== */
.skip-link { position: absolute; top: -100%; left: 16px; background: var(--primary); color: #fff; padding: 12px 24px; border-radius: 0 0 8px 8px; font-weight: 700; font-size: 0.9rem; z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* ===== READING PROGRESS BAR ===== */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); z-index: 1001; width: 0%; transition: width 0.1s linear; pointer-events: none; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 900; opacity: 0; transform: translateY(16px); transition: all 0.3s; box-shadow: 0 4px 16px rgba(230,57,70,0.35); }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(230,57,70,0.45); }
.back-to-top:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; }
.back-to-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ===== TABLE OF CONTENTS ===== */
.toc { background: var(--surface, rgba(255,255,255,0.03)); border: 1px solid var(--border); border-radius: var(--radius, 12px); padding: 24px 28px; margin: 32px 0; }
.toc h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary, var(--text-muted)); margin-bottom: 12px; }
.toc ol { padding-left: 20px; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--primary); font-size: 0.95rem; }
.toc a:hover { color: var(--secondary); }

/* ===== RELATED GUIDES ===== */
.related-guides { padding: 64px 0; border-top: 1px solid var(--border); }
.related-guides h2 { text-align: center; margin-bottom: 40px; }
.related-guides .guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.related-guides .guide-card { background: var(--surface, rgba(255,255,255,0.03)); border: 1px solid var(--border); border-radius: var(--radius, 12px); padding: 28px; transition: all 0.3s; }
.related-guides .guide-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.related-guides .guide-card h3 { color: var(--primary); margin-bottom: 8px; font-size: 1.15rem; }
.related-guides .guide-card p { color: var(--text-secondary, var(--text-muted)); font-size: 0.95rem; line-height: 1.6; }
.guide-card-link { text-decoration: none; color: inherit; }

/* ===== TABLE WRAPPER ===== */
.table-wrapper { overflow-x: auto; margin: 24px 0; border-radius: var(--radius, 12px); border: 1px solid var(--border); }
.table-wrapper table { min-width: 600px; }

/* ===== FOCUS VISIBLE ===== */
*:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
input:focus-visible, textarea:focus-visible, button:focus-visible { outline-offset: 0; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border, #ccc); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===== SELECTION ===== */
::selection { background: rgba(230,57,70, 0.3); color: #fff; }

/* ===== PERFORMANCE ===== */
.faq, .newsletter, .footer { content-visibility: auto; contain-intrinsic-size: auto 500px; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
    .back-to-top { transition: none; }
}

/* ===== HIGH CONTRAST ===== */
@media (prefers-contrast: high) {
    .card, .faq-item { border: 1px solid rgba(255,255,255,0.3); }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header, .nav-toggle, .back-to-top, .progress-bar, .newsletter, .footer, .related-guides { display: none !important; }
    body { background: #fff; color: #111; font-size: 12pt; line-height: 1.5; }
    .hero, .page-hero { padding: 20px 0; background: none !important; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #666; }
    .card, section { break-inside: avoid; }
}
/* ===== COOKIE CONSENT ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(20,20,30,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 16px 24px; z-index: 9998; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; font-size: 0.9rem; transform: translateY(100%); transition: transform 0.4s ease; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { color: var(--text-secondary, #a1a1aa); max-width: 600px; line-height: 1.5; margin: 0; }
.cookie-banner a { color: var(--primary-light, var(--primary)); text-decoration: underline; }
.cookie-btn { background: var(--primary); color: #fff; border: none; padding: 10px 24px; border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 0.9rem; white-space: nowrap; transition: background 0.2s; }
.cookie-btn:hover { opacity: 0.9; }
.cookie-btn.secondary { background: transparent; border: 1px solid var(--border); color: var(--text-secondary, #a1a1aa); }
.cookie-btn.secondary:hover { border-color: var(--primary); color: var(--primary-light, var(--primary)); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { padding: 12px 0; font-size: 0.85rem; color: var(--text-muted, var(--text-secondary, #71717a)); }
.breadcrumbs a { color: var(--primary-light, var(--primary)); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .separator { margin: 0 8px; opacity: 0.5; }

/* ===== ARTICLE META (reading time, last updated, share) ===== */
.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 16px 0; margin-bottom: 24px; border-bottom: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted, var(--text-secondary, #71717a)); }
.article-meta svg { width: 16px; height: 16px; vertical-align: -2px; margin-right: 4px; stroke: currentColor; fill: none; }
.reading-time, .last-updated { display: flex; align-items: center; gap: 4px; }
.share-btn { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--text-secondary, #a1a1aa); padding: 6px 14px; border-radius: 6px; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.share-btn:hover { border-color: var(--primary); color: var(--primary-light, var(--primary)); background: rgba(230,57,70, 0.08); }
.share-btn.copied { border-color: var(--success, #10b981); color: var(--success, #10b981); }
.share-btn svg { width: 14px; height: 14px; }

/* ===== PAGE LOAD ANIMATION ===== */
@keyframes fadeInPage { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.page-hero, .hero { animation: fadeInPage 0.5s ease both; }
.content-wrapper { animation: fadeInPage 0.5s ease 0.1s both; }

/* ===== BUDGET CALCULATOR ===== */
.budget-section { background: rgba(230,57,70,0.03); }
.budget-card { background: rgba(230,57,70,0.06); border: 1px solid var(--border); border-radius: 16px; padding: 32px; max-width: 650px; margin: 0 auto; }
.budget-styles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.budget-style { padding: 14px; border: 1px solid var(--border); border-radius: 10px; text-align: center; cursor: pointer; transition: all 0.2s; }
.budget-style:hover { border-color: var(--primary); }
.budget-style.active { background: rgba(230,57,70,0.12); border-color: var(--primary); }
.budget-style .style-emoji { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.budget-style .style-name { font-weight: 600; font-size: 0.9rem; color: var(--text, #fff); }
.budget-style .style-range { font-size: 0.75rem; color: var(--muted, #888); margin-top: 2px; }
.budget-days { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.budget-days label { font-size: 0.9rem; color: var(--muted, #aaa); }
.budget-days input { width: 70px; padding: 8px 12px; background: rgba(230,57,70,0.08); border: 1px solid var(--border); border-radius: 8px; color: var(--text, #fff); font-size: 1rem; text-align: center; font-family: inherit; }
.budget-days input:focus { outline: none; border-color: var(--primary); }
.budget-breakdown { margin-top: 16px; }
.budget-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.budget-row:last-child { border-bottom: none; }
.budget-row .row-label { color: var(--muted, #bbb); }
.budget-row .row-value { font-weight: 600; color: var(--text, #fff); }
.budget-total { display: flex; justify-content: space-between; padding: 16px 0; margin-top: 8px; border-top: 2px solid var(--primary); font-size: 1.1rem; font-weight: 700; }
.budget-total .row-value { color: var(--primary); font-size: 1.3rem; }
.budget-usd { text-align: center; font-size: 0.8rem; color: var(--muted, #888); margin-top: 8px; }

/* ===== NEWSLETTER ===== */
.newsletter-section { text-align: center; }
.newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-input { flex: 1; min-width: 200px; padding: 14px 20px; border-radius: 8px; border: 1px solid var(--border); background: rgba(230,57,70,0.06); color: var(--text, #fff); font-size: 1rem; font-family: inherit; }
.newsletter-input:focus { outline: none; border-color: var(--primary); }
.newsletter-btn { padding: 14px 28px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-weight: 600; font-size: 1rem; cursor: pointer; font-family: inherit; transition: opacity 0.2s; }
.newsletter-btn:hover { opacity: 0.9; }
.newsletter-btn:disabled { opacity: 0.7; cursor: default; }
