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

:root {
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1a1a1a;
  --border: #2a2a2a;
  --accent: #c8a96e;
  --accent2: #e8c98e;
  --text: #f0f0f0;
  --muted: #888;
  --radius: 12px;
}

body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }

header { position: sticky; top: 0; z-index: 100; background: rgba(13,13,13,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 0 24px; }
.header-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 20px; font-weight: 700; color: var(--accent); }
.logo span { color: var(--text); font-weight: 400; }
nav { display: flex; gap: 24px; }
nav a { font-size: 14px; color: var(--muted); transition: color .2s; }
nav a:hover { color: var(--text); }
.header-cta { background: var(--accent); color: #000; border: none; padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s; }
.header-cta:hover { background: var(--accent2); }

section { padding: 80px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; margin-bottom: 16px; }
h1 { font-size: clamp(28px, 5vw, 56px); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(22px, 4vw, 38px); font-weight: 700; line-height: 1.2; }
h3 { font-size: 18px; font-weight: 600; }
em { color: var(--accent); font-style: normal; }

.hero { padding: 100px 24px 80px; background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(200,169,110,0.15) 0%, transparent 70%); }
.hero .container { max-width: 780px; text-align: center; }
.hero-badge { display: inline-block; background: rgba(200,169,110,0.15); border: 1px solid rgba(200,169,110,0.3); color: var(--accent); font-size: 13px; font-weight: 500; padding: 6px 16px; border-radius: 100px; margin-bottom: 32px; }
.hero h1 { margin-bottom: 20px; }
.hero-sub { font-size: 17px; color: var(--muted); margin-bottom: 40px; max-width: 580px; margin-inline: auto; margin-bottom: 40px; }
.hero-sub strong { color: var(--text); }

.btn-primary { background: var(--accent); color: #000; border: none; padding: 16px 32px; border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; transition: background .2s; display: inline-block; }
.btn-primary:hover { background: var(--accent2); color: #000; }
.btn-big { display: inline-block; background: var(--accent); color: #000; padding: 18px 44px; border-radius: 12px; font-size: 17px; font-weight: 700; cursor: pointer; border: none; transition: background .2s; }
.btn-big:hover { background: var(--accent2); color: #000; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; }

.card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.card-icon { font-size: 28px; margin-bottom: 14px; }
.card h3 { margin-bottom: 8px; font-size: 16px; }
.card p { font-size: 14px; color: var(--muted); }

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; gap: 12px; align-items: flex-start; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(200,169,110,0.2); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.check-item p { font-size: 15px; }
.check-item small { color: var(--muted); display: block; font-size: 13px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea { background: var(--bg2); border: 1px solid var(--border); color: var(--text); border-radius: 8px; padding: 10px 14px; font-size: 15px; outline: none; transition: border-color .2s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--bg2); }
.form-note { font-size: 12px; color: var(--muted); margin-top: 10px; text-align: center; }

.step-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; }
.step { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: rgba(200,169,110,0.15); border: 1px solid rgba(200,169,110,0.3); display: flex; align-items: center; justify-content: center; color: var(--accent); font-weight: 700; margin-bottom: 14px; }
.step h3 { font-size: 15px; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--muted); }

.cta-band { background: linear-gradient(135deg, rgba(200,169,110,0.1) 0%, transparent 100%), var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }

.barrier-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.barrier-q { font-size: 14px; color: var(--muted); font-style: italic; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.barrier-q::before { content: '— '; }
.barrier-a { font-size: 14px; line-height: 1.6; }
.barrier-a strong { color: var(--accent); }

.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; }
.faq-item { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; color: var(--text); padding: 18px 22px; font-size: 15px; font-weight: 500; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 20px; color: var(--accent); }
.faq-q.open::after { content: '−'; }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-a.open { display: block; }

.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 1000; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--bg3); border: 1px solid var(--border); border-radius: 20px; padding: 36px; max-width: 480px; width: 100%; position: relative; }
.modal-close { position: absolute; top: 14px; right: 14px; background: none; border: none; color: var(--muted); font-size: 24px; cursor: pointer; }
.modal h3 { font-size: 20px; margin-bottom: 6px; }
.modal > p { font-size: 14px; color: var(--muted); margin-bottom: 22px; }

footer { background: var(--bg); border-top: 1px solid var(--border); padding: 48px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo { font-size: 18px; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 13px; color: var(--muted); }
.footer-col h4 { font-size: 12px; font-weight: 600; margin-bottom: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom { max-width: 1100px; margin: 28px auto 0; padding-top: 22px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }

.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }

.tag { display: inline-block; font-size: 12px; color: var(--accent); background: rgba(200,169,110,0.1); border-radius: 100px; padding: 4px 12px; }

@media (max-width: 768px) {
  nav { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
}

.modal-form { display: flex; flex-direction: column; gap: 14px; }
