:root {
  --bg:        #050D1A;
  --bg-2:      #0A1626;
  --surface:   #0E1B2E;
  --surface-2: #12233A;
  --line:      rgba(255,255,255,.10);
  --text:      #E8EEF6;
  --muted:     #9FB0C4;
  --gold:      #C9A24B;
  --gold-strong:#E3C172;
  --blue:      #38BDF8;
  --radius:    14px;
  --container: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: 'Spectral', Georgia, serif; line-height: 1.12; font-weight: 700; }

/* ── Background FX ─────────────────────────────────────────── */
.fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.fx-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.fx-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: .35; }
.fx-glow.g1 { width: 520px; height: 520px; background: #1d4ed8; top: -160px; left: -120px; }
.fx-glow.g2 { width: 480px; height: 480px; background: var(--gold); bottom: -200px; right: -120px; opacity: .18; }

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
.section { padding: 84px 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.center { text-align: center; }

/* ── Nav ───────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,13,26,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; }
.brand img { width: 38px; height: 38px; border-radius: 50%; }
.brand-name { font-family: 'Inter', sans-serif; font-size: 16px; letter-spacing: -.01em; }
.brand-name span { color: var(--gold-strong); }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-links { display: flex; gap: 22px; list-style: none; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 13px 24px; border-radius: 11px;
  border: 1px solid transparent; cursor: pointer; transition: transform .12s, filter .15s, background .15s;
  font-family: 'Inter', sans-serif;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(135deg, var(--gold-strong), var(--gold)); color: #1a1206; }
.btn-primary:hover { filter: brightness(1.06); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-strong); }
.btn-sm { padding: 9px 17px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero { padding: 72px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: 48px; align-items: center; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,75,.10); border: 1px solid rgba(201,162,75,.32);
  color: var(--gold-strong); font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-strong); box-shadow: 0 0 0 4px rgba(201,162,75,.18); }
.hero h1 { font-size: clamp(40px, 7vw, 68px); margin: 22px 0 18px; letter-spacing: -.02em; }
.grad-text { background: linear-gradient(135deg, var(--gold-strong), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 540px; }
.hero-sub strong { color: var(--text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 30px 0 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px 22px; }
.trust { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.tick { color: var(--gold-strong); font-weight: 800; }

.hero-right { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.hero-logo {
  width: 200px; height: 200px; border-radius: 50%; display: block;
  filter: drop-shadow(0 14px 36px rgba(0,0,0,.55));
}
.hero-card {
  width: 100%;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: 18px; padding: 26px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.7);
}
.hero-card-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }
.hero-card-row .l { color: var(--muted); font-size: 14px; }
.hero-card-row .v { font-weight: 700; font-size: 15px; }
.hero-card-price { display: flex; align-items: baseline; justify-content: space-between; padding: 18px 0 20px; }
.hero-card-price .l { color: var(--muted); font-size: 14px; }
.hero-card-price .price { font-family: 'Spectral', serif; font-size: 30px; font-weight: 800; color: var(--gold-strong); }
.hero-card-note { font-size: 12.5px; color: var(--muted); line-height: 1.5; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.hero-card-note strong { color: var(--gold-strong); }
.card-tag { display: inline-block; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--gold-strong); background: rgba(201,162,75,.12); border: 1px solid rgba(201,162,75,.3); border-radius: 999px; padding: 2px 8px; margin-left: 6px; vertical-align: middle; }

/* ── Sections / typography ─────────────────────────────────── */
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; color: var(--gold-strong); margin-bottom: 12px; }
.section h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -.015em; }
.section .lead { color: var(--muted); font-size: 17px; margin-top: 18px; }
.section-sub { color: var(--muted); font-size: 16px; margin-top: 10px; }

/* ── Cards grid ────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: transform .15s, border-color .15s;
}
.card:hover { transform: translateY(-3px); border-color: rgba(201,162,75,.4); }
.card-ico { font-size: 26px; margin-bottom: 12px; }
.card h3 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; }

/* ── Galeria + lightbox ────────────────────────────────────── */
.gallery-title { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700; margin: 36px 0 14px; color: var(--text); }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.gal-item {
  padding: 0; margin: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  cursor: pointer; background: var(--surface); aspect-ratio: 1; display: block;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s; }
.gal-item:hover img { transform: scale(1.06); }
.gal-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(3,8,16,.93); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lb-img { max-width: 90vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 24px 70px rgba(0,0,0,.65); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,.08); border: 1px solid var(--line); color: #fff;
  cursor: pointer; border-radius: 999px; display: flex; align-items: center; justify-content: center; line-height: 1;
}
.lb-close { top: 18px; right: 18px; width: 44px; height: 44px; font-size: 26px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 30px; }
.lb-prev { left: 18px; } .lb-next { right: 18px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(201,162,75,.25); border-color: var(--gold); }
@media (max-width: 560px) { .lb-prev, .lb-next { width: 42px; height: 42px; font-size: 24px; } }

/* ── Two column / lists ────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { position: relative; padding: 9px 0 9px 30px; color: var(--text); font-size: 15.5px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 9px; color: var(--gold-strong); font-weight: 800; }

/* ── Stats ─────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; }
.stat-num { font-family: 'Spectral', serif; font-size: 30px; font-weight: 800; color: var(--gold-strong); }
.stat-label { color: var(--muted); font-size: 13px; margin-top: 6px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { border: 1px solid var(--line); border-radius: 12px; background: var(--surface); margin-top: 12px; overflow: hidden; }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-strong); font-size: 22px; font-weight: 400; }
.faq[open] summary::after { content: "−"; }
.faq p { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ── Form ──────────────────────────────────────────────────── */
.section-form { background: var(--bg-2); border-top: 1px solid var(--line); }
.form { margin-top: 34px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field > span { font-size: 13.5px; font-weight: 600; color: var(--muted); }
.field em { color: var(--gold-strong); font-style: normal; }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; color: var(--text); font-size: 15px; font-family: inherit; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18);
}
.field textarea { resize: vertical; }
.field input:user-invalid { border-color: #dc6b6b; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.consent { display: flex; gap: 11px; align-items: flex-start; margin: 20px 0 6px; font-size: 13.5px; color: var(--muted); }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--gold); flex-shrink: 0; }
.consent a { color: var(--gold-strong); text-decoration: underline; }
.consent em { color: var(--gold-strong); font-style: normal; }

.form button[type="submit"] { margin-top: 18px; }
.form-status { margin-top: 14px; text-align: center; font-size: 14.5px; font-weight: 600; min-height: 20px; }
.form-status.ok { color: #5fd38a; }
.form-status.err { color: #ec7777; }
button:disabled { opacity: .6; cursor: not-allowed; }

/* ── Footer ────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--line); padding: 40px 0; background: var(--bg); }
.foot-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; list-style: none; }
.foot-links a { color: var(--muted); font-size: 14px; }
.foot-links a:hover { color: var(--gold-strong); }
.foot-copy { color: var(--muted); font-size: 13px; opacity: .8; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .hero-logo { width: 150px; height: 150px; }
  .section { padding: 60px 0; }
  .cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form { padding: 22px; }
}
