:root {
    --primary: #07365e;
    --primary-dark: #052844;
    --accent: #f47b1c;
    --bg: #f4f6f8;
    --surface: #fff;
    --text: #163047;
    --muted: #617485;
    --line: #d9e2e8;
    --shadow: 0 20px 60px rgba(7, 54, 94, .12);
}

* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; line-height: 1.6; color: var(--text); background: var(--bg); }
a { color: inherit; text-decoration: none; }
.container { width: min(1040px, calc(100% - 32px)); margin: 0 auto; }
.site-header { background: rgba(244,246,248,.96); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { display: block; height: 52px; width: auto; }
.back-link { color: var(--primary); font-weight: 700; }
.hero { padding: 76px 0 44px; background: radial-gradient(circle at top left, rgba(244,123,28,.1), transparent 35%); }
.eyebrow { display: inline-flex; padding: 7px 13px; border-radius: 999px; color: var(--accent); background: rgba(244,123,28,.14); font-size: 13px; font-weight: 800; letter-spacing: .04em; }
h1 { max-width: 850px; margin: 18px 0 16px; color: var(--primary); font-size: clamp(38px, 6vw, 62px); line-height: 1.06; letter-spacing: -.03em; }
.lead { max-width: 760px; margin: 0; color: var(--muted); font-size: 19px; }
.content { padding: 30px 0 80px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 26px; padding: 32px; box-shadow: var(--shadow); }
.card h2 { margin: 0 0 12px; color: var(--primary); font-size: clamp(27px, 4vw, 38px); }
.card p { color: var(--muted); }
.price { margin: 20px 0 8px; color: var(--primary); font-size: clamp(32px, 5vw, 48px); font-weight: 900; line-height: 1.1; }
.price-note { margin: 0 0 22px; color: var(--muted); font-weight: 700; }
.points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 26px 0; }
.point { padding: 18px; border-radius: 18px; background: #eef3f6; color: var(--primary); font-weight: 700; }
.point::before { content: "✓"; margin-right: 8px; color: var(--accent); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; border: 1px solid var(--primary); font-weight: 800; }
.btn-primary { color: #fff; background: var(--primary); box-shadow: 0 12px 28px rgba(7,54,94,.2); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { color: var(--primary); background: #fff; }
.map { width: 100%; height: 430px; border: 0; border-radius: 18px; }
.footer { padding: 24px 0 38px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap; }
.footer address { font-style: normal; }
.footer a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 720px) {
    .header-inner { min-height: 72px; }
    .brand img { height: 44px; }
    .hero { padding-top: 48px; }
    .points { grid-template-columns: 1fr; }
    .card { padding: 24px 20px; }
    .btn { width: 100%; }
}
