:root {
  --bg: #0a0a0b;
  --surface: #141416;
  --surface-2: #1c1c1f;
  --line: rgba(255,255,255,.12);
  --text: #f7f7f8;
  --muted: #b5b5bb;
  --red: #e21f2f;
  --red-dark: #b80f1e;
  --white: #fff;
  --shadow: 0 22px 60px rgba(0,0,0,.28);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
address { font-style: normal; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { max-width: 820px; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 200; padding: 10px 14px; background: var(--white); color: #000; border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #ff6874; outline-offset: 3px; }

.topbar { background: #050506; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .83rem; }
.topbar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--white); }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(10,10,11,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--white); text-decoration: none; font-size: 1.05rem; font-weight: 850; letter-spacing: .01em; }
.logo-box { width: 52px; height: 52px; display: grid; place-items: center; overflow: hidden; border-radius: 12px; background: #050506; border: 1px solid var(--line); }
.logo-box img { width: 48px; height: 48px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: .68rem; font-weight: 550; }
.menu { display: flex; align-items: center; gap: 6px; }
.menu a { padding: 10px 12px; border-radius: 9px; color: #dedee2; text-decoration: none; font-size: .92rem; font-weight: 700; }
.menu a:hover, .menu a.active { color: var(--white); background: rgba(255,255,255,.07); }
.menu .nav-cta { margin-left: 8px; padding-inline: 17px; background: var(--red); color: var(--white); }
.menu .nav-cta:hover { background: #f02a3a; }
.menu-toggle { display: none; width: 46px; height: 42px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--white); }

.hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; }
.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(4,4,5,.96) 0%, rgba(4,4,5,.78) 48%, rgba(4,4,5,.3) 100%), linear-gradient(0deg, var(--bg) 0%, transparent 22%); }
.hero-content { position: relative; z-index: 2; padding-block: 100px 120px; }
.eyebrow { display: inline-block; margin-bottom: 14px; color: #ff6874; font-size: .75rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 850px; margin-bottom: 24px; font-size: clamp(2.75rem, 7vw, 5.65rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4.2vw, 3.55rem); }
h3 { margin-bottom: 12px; font-size: 1.3rem; }
.hero .lead { max-width: 720px; color: #dddde1; font-size: clamp(1.08rem, 2vw, 1.3rem); }
.lead, .lead-small { color: var(--muted); }
.lead-small { max-width: 660px; font-size: 1.08rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 20px; border: 1px solid transparent; border-radius: 11px; text-decoration: none; font-weight: 800; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: var(--white); }
.button-primary:hover { background: #f02a3a; }
.button-secondary { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.3); color: var(--white); }
.button-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 28px; margin: 58px 0 0; padding: 0; color: var(--muted); font-size: .92rem; list-style: none; }
.hero-facts li { padding-left: 14px; border-left: 2px solid var(--red); }
.hero-facts strong { display: block; color: var(--white); }

.section { padding-block: 96px; }
.section-contrast { background: var(--surface); border-block: 1px solid var(--line); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 470px; margin-bottom: 5px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 265px; display: flex; flex-direction: column; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(226,31,47,.72); background: var(--surface-2); }
.service-number { color: #ff6874; font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin-top: auto; }
.service-card p { color: var(--muted); }
.text-link { color: #ff6874; font-weight: 800; text-decoration: none; }
.centered-action { display: flex; justify-content: center; margin-top: 32px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 0; padding: 0; list-style: none; }
.steps li { display: flex; gap: 18px; padding: 28px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); }
.steps li > span { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--red); font-weight: 900; }
.steps p { margin: 0; color: var(--muted); }
.two-column { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.check-list { padding: 0; margin: 28px 0; list-style: none; }
.check-list li { position: relative; margin: 12px 0; padding-left: 30px; color: #e7e7e9; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #ff6874; font-weight: 900; }
.location-card { padding: 38px; background: linear-gradient(150deg, #211014, var(--surface)); border: 1px solid rgba(226,31,47,.35); border-radius: 24px; box-shadow: var(--shadow); }
.location-card address { margin: 22px 0; font-size: 1.12rem; }
.section-offer { background: #0f0f11; border-block: 1px solid var(--line); }
.offer-layout { display: grid; grid-template-columns: 290px 1fr; gap: 70px; align-items: center; }
.offer-layout picture { max-height: 400px; overflow: hidden; border-radius: 18px; }
.offer-layout img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.faq-wrap { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 22px 42px 22px 0; cursor: pointer; font-weight: 800; }
.faq-list p { padding-right: 30px; color: var(--muted); }
.cta-section { padding: 0 0 96px; }
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 48px; background: linear-gradient(120deg, #481018, #161619 66%); border: 1px solid rgba(226,31,47,.42); border-radius: 24px; }
.cta-box h2 { margin-bottom: 0; font-size: clamp(1.8rem, 3.2vw, 2.8rem); }
.cta-box p { margin-bottom: 0; color: var(--muted); }

.page-hero { padding-block: 90px 65px; background: radial-gradient(circle at 75% 20%, rgba(226,31,47,.16), transparent 34%); border-bottom: 1px solid var(--line); }
.page-hero.compact { padding-block: 64px 46px; }
.page-hero h1 { max-width: 900px; margin-bottom: 18px; font-size: clamp(2.5rem, 6vw, 4.7rem); }
.page-hero .lead { max-width: 760px; font-size: 1.14rem; }
.service-list { display: grid; gap: 16px; }
.service-detail { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 34px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); scroll-margin-top: 110px; }
.service-detail h2 { margin-bottom: 8px; font-size: clamp(1.65rem, 3vw, 2.3rem); }
.service-detail p { max-width: 820px; color: var(--muted); }
.service-price { display: block; margin-bottom: 14px; color: #ff8b94; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { display: flex; flex-direction: column; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.price-card h2 { min-height: 55px; margin-bottom: 14px; font-size: 1.32rem; }
.price-card > strong { color: #ff6874; font-size: 1.65rem; }
.price-subline { color: var(--muted); font-size: .9rem; }
.price-card ul { flex: 1; margin: 10px 0 24px; padding-left: 20px; color: #d5d5d9; }
.price-card li { margin-block: 7px; }
.price-note { margin-top: 30px; padding: 24px 28px; background: #1a1516; border-left: 4px solid var(--red); border-radius: 10px; }
.price-note p { margin: 6px 0 0; color: var(--muted); }
.offer-page-grid { display: grid; grid-template-columns: minmax(280px, 480px) 1fr; gap: 70px; align-items: start; }
.offer-poster { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.offer-copy { position: sticky; top: 120px; }
.offer-copy h2 { max-width: 620px; }
.fine-print { margin-top: 22px; color: var(--muted); font-size: .84rem; }

.contact-section { padding-top: 70px; }
.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 42px; align-items: start; }
.contact-info { position: sticky; top: 120px; padding: 34px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-info address { margin-bottom: 22px; color: #dedee1; }
.contact-links { display: grid; gap: 10px; }
.contact-links a { display: flex; flex-direction: column; padding: 16px; background: var(--bg); border: 1px solid var(--line); border-radius: 11px; text-decoration: none; }
.contact-links a:hover { border-color: rgba(226,31,47,.72); }
.contact-links span { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; }
.contact-links strong { overflow-wrap: anywhere; }
.availability { margin: 24px 0 0; color: var(--muted); }
.contact-form { padding: 38px; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.form-heading { margin-bottom: 28px; }
.form-heading h2 { margin-bottom: 7px; font-size: 2.2rem; }
.form-heading p { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-span { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-weight: 750; }
.form-field label span { color: var(--muted); font-size: .78rem; font-weight: 500; }
input, select, textarea { width: 100%; border: 1px solid #3b3b40; border-radius: 10px; background: #0c0c0e; color: var(--white); padding: 13px 14px; }
input:focus, select:focus, textarea:focus { border-color: #ff6874; outline: 2px solid rgba(226,31,47,.28); }
input[type="file"] { padding: 11px; }
textarea { resize: vertical; min-height: 150px; }
.field-help { margin: -8px 0 0; color: var(--muted); font-size: .83rem; }
.privacy-check { display: grid; grid-template-columns: 22px 1fr; gap: 12px; margin: 26px 0 18px; color: #d8d8dc; font-size: .9rem; }
.privacy-check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--red); }
.form-status { min-height: 26px; margin-bottom: 12px; color: #ff9aa2; font-weight: 700; }
.submit-button { min-width: 190px; border: 0; }
.submit-button:disabled { opacity: .6; cursor: wait; transform: none; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.legal { max-width: 860px; }
.legal h2 { margin-top: 44px; font-size: 1.55rem; letter-spacing: -.02em; }
.legal p { color: #d2d2d6; }
.legal a { color: #ff8b94; }
.status-page { min-height: 68vh; display: grid; place-items: center; padding-block: 80px; }
.status-card { max-width: 720px; padding: 55px; text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; }
.status-card h1 { margin-inline: auto; font-size: clamp(2.3rem, 5vw, 4rem); }
.status-card p { color: var(--muted); }
.status-card .button-row { justify-content: center; }
.status-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: var(--red); font-size: 2rem; font-weight: 900; }
.status-code { display: block; color: #ff6874; font-size: 4rem; font-weight: 950; line-height: 1; }

.site-footer { padding: 62px 0 26px; background: #050506; border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr .7fr .9fr; gap: 44px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: start; }
.footer-grid strong { margin-bottom: 13px; color: var(--white); }
.footer-brand { font-size: 1.25rem; }
.footer-grid p, .footer-grid address { margin-bottom: 10px; }
.footer-grid a { margin-bottom: 7px; color: #d6d6da; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.muted { color: #8f8f96; font-size: .85rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .8rem; }
.mobile-actions { display: none; }

@media (max-width: 1000px) {
  .menu-toggle { display: block; }
  .menu { position: fixed; inset: 79px 0 auto; display: none; flex-direction: column; align-items: stretch; padding: 18px 20px 24px; background: rgba(10,10,11,.99); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .menu.open { display: flex; }
  .menu a { padding: 14px; }
  .menu .nav-cta { margin: 8px 0 0; text-align: center; }
  .service-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .two-column, .faq-wrap, .contact-layout { grid-template-columns: 1fr; }
  .contact-info, .offer-copy { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  body { padding-bottom: 66px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .topbar-inner { justify-content: center; min-height: 32px; }
  .topbar-inner > span:first-child { display: none; }
  .topbar-contact { font-size: .75rem; }
  .nav-wrap { min-height: 70px; }
  .menu { inset: 71px 0 auto; }
  .logo-box { width: 46px; height: 46px; }
  .logo-box img { width: 42px; height: 42px; }
  .brand-copy small { display: none; }
  .hero { min-height: 680px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(4,4,5,.98) 0%, rgba(4,4,5,.72) 72%, rgba(4,4,5,.48) 100%); }
  .hero-content { padding-block: 85px 90px; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
  .hero-facts { gap: 16px; margin-top: 42px; }
  .section { padding-block: 68px; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading > p { margin-top: 15px; }
  .service-grid, .price-grid, .offer-page-grid, .offer-layout, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 225px; }
  .offer-layout { gap: 30px; }
  .offer-layout picture { max-height: 340px; }
  .faq-wrap { gap: 25px; }
  .cta-section { padding-bottom: 68px; }
  .cta-box { display: block; padding: 32px 24px; }
  .page-hero { padding-block: 66px 46px; }
  .service-detail { grid-template-columns: 44px 1fr; padding: 26px 20px; gap: 14px; }
  .price-card h2 { min-height: auto; }
  .offer-page-grid { gap: 34px; }
  .contact-form, .contact-info { padding: 26px 20px; }
  .form-span { grid-column: auto; }
  .footer-grid { gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .status-card { padding: 40px 22px; }
  .mobile-actions { position: fixed; z-index: 150; inset: auto 0 0; display: grid; grid-template-columns: 1fr 1fr; background: #09090a; border-top: 1px solid var(--line); }
  .mobile-actions a { min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; font-weight: 850; }
  .mobile-actions a:last-child { background: var(--red); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
