*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0d1b2a; --navy-mid: #162032; --navy-light: #1e2e45;
  --gold: #c9a84c; --gold-light: #e2c97e; --white: #ffffff; --muted: #8fa0b4;
  --border: rgba(201,168,76,0.18);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--navy); color: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 2.5rem; background: rgba(13,27,42,0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.nav-logo-icon { width: 34px; height: 34px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.nav-logo-text { font-size: 0.9rem; font-weight: 600; color: var(--white); letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-link { color: var(--muted); font-size: 0.85rem; text-decoration: none; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-contact { padding: 0.55rem 1.25rem; border: 1px solid var(--gold); border-radius: 6px; color: var(--gold); font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: background 0.2s, color 0.2s; }
.nav-contact:hover { background: var(--gold); color: var(--navy); }
@media (max-width: 720px) { nav { padding: 1rem 1.25rem; } .nav-links .nav-link { display: none; } }

.page { max-width: 820px; margin: 0 auto; padding: 8.5rem 1.5rem 5rem; }
.page-label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.75rem; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.15; margin-bottom: 0.75rem; }
.page-meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 2.5rem; }
.page h2 { font-size: 1.2rem; font-weight: 600; margin: 2.25rem 0 0.75rem; color: var(--white); }
.page h3 { font-size: 1rem; font-weight: 600; margin: 1.5rem 0 0.5rem; color: var(--gold-light); }
.page p, .page li { color: #d5dde7; font-size: 0.97rem; }
.page p { margin-bottom: 0.9rem; }
.page ul, .page ol { margin: 0 0 1rem 1.4rem; }
.page li { margin-bottom: 0.4rem; }
.page strong { color: var(--white); }
.callout { background: var(--navy-mid); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: 8px; padding: 1.1rem 1.3rem; margin: 1.5rem 0; }
.callout p:last-child { margin-bottom: 0; }
table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 0.92rem; }
th, td { text-align: left; padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--muted); font-weight: 500; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
td { color: #d5dde7; }
.table-wrap { overflow-x: auto; }

/* Support page */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 1rem; }
@media (max-width: 720px) { .support-grid { grid-template-columns: 1fr; gap: 2rem; } }
.contact-items { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 8px; background: var(--navy-light); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; }
.contact-item-body strong { display: block; font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.contact-item-body a, .contact-item-body span { font-size: 0.95rem; color: var(--white); }
.contact-item-body a:hover { color: var(--gold); }
.contact-form { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; }
.contact-form h2 { margin: 0 0 1.25rem; font-size: 1.05rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 0.35rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.7rem 0.85rem; background: var(--navy); border: 1px solid var(--border); border-radius: 6px; color: var(--white); font-family: inherit; font-size: 0.9rem; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 0.85rem; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); border: none; border-radius: 6px; font-weight: 600; font-size: 0.9rem; cursor: pointer; font-family: inherit; }
.form-submit:hover { opacity: 0.9; }
.form-submit[disabled] { opacity: 0.6; cursor: default; }
.form-status { margin-top: 0.85rem; font-size: 0.85rem; min-height: 1.2em; }
.form-status.ok { color: #7fd8a0; }
.form-status.err { color: #f08a8a; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.brands { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 0.6rem; margin: 0.75rem 0 1.25rem; }
.brand { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 8px; padding: 0.7rem 0.9rem; font-size: 0.88rem; }
.brand span { display: block; color: var(--muted); font-size: 0.75rem; }

footer { border-top: 1px solid var(--border); padding: 2rem 1.5rem; text-align: center; }
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin-bottom: 0.75rem; font-size: 0.82rem; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: var(--muted); }
