:root {
  --red: #e20b13;
  --red-dark: #c7090f;
  --ink: #101114;
  --muted: #5f626a;
  --line: #e4e5e8;
  --paper: #ffffff;
  --soft: #f5f5f6;
  --radius: 18px;
  --shadow: 0 20px 55px rgba(16, 17, 20, .13);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, .button { min-height: 48px; }
:focus-visible { outline: 3px solid #ffb3b5; outline-offset: 3px; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; padding: 10px 16px; color: #fff; background: #000; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.shell { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.announcement { background: #0d0e10; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .02em; text-align: center; }
.announcement a { display: block; padding: 9px 16px; text-decoration: none; }
.announcement strong { color: #ff484e; }
.site-header { position: sticky; top: 0; z-index: 100; height: 68px; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(16,17,20,.1); backdrop-filter: blur(12px); }
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand img { width: 70px; height: 48px; object-fit: contain; }
.brand-wordmark { display: grid; margin-left: 8px; color: var(--red); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 19px; letter-spacing: .01em; line-height: .82; text-transform: uppercase; }
.brand-wordmark small { margin-top: 5px; color: #111; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 7px; font-weight: 900; letter-spacing: .14em; line-height: 1; }
.nav-links { display: none; align-items: center; gap: 26px; }
.nav-links a { font-size: 14px; font-weight: 800; text-decoration: none; }
.nav-links a:hover { color: var(--red); }
.nav-actions { display: none; gap: 10px; }
.menu-button { width: 48px; height: 48px; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.menu-button span { display: block; width: 22px; height: 2px; margin: 5px auto; background: #111; transition: transform .2s, opacity .2s; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; top: var(--mobile-menu-top, 68px); right: 0; bottom: 0; left: 0; z-index: 90; display: none; padding: 20px 24px calc(32px + env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; background: #fff; }
.mobile-menu[data-open] { display: flex; flex-direction: column; }
.mobile-menu a { padding: 16px 2px; border-bottom: 1px solid var(--line); font-size: 19px; font-weight: 850; text-decoration: none; }
.mobile-menu .button { margin-top: 18px; border: 0; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 19px; border: 1px solid transparent; border-radius: 10px; background: var(--red); color: #fff; font-weight: 850; line-height: 1.15; text-align: center; text-decoration: none; cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s; }
.button:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(241,15,22,.22); }
.button-dark { background: #111; }
.button-dark:hover { background: #2b2b2d; }
.button-light { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.1); }
.button-light:hover { background: #fff; color: #111; }
.button-ghost { border-color: var(--line); background: #fff; color: #111; }
.button-ghost:hover { border-color: #aaa; background: var(--soft); color: #111; box-shadow: none; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 14px; color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.eyebrow::before { width: 24px; height: 3px; content: ""; background: currentColor; }
h1 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-weight: 800; letter-spacing: -.02em; line-height: .98; text-wrap: balance; }
h2, h3 { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-weight: 700; letter-spacing: -.035em; line-height: 1.08; text-wrap: balance; }
strong { font-weight: 700; }
h1 { font-size: clamp(44px, 13vw, 76px); }
h2 { font-size: clamp(36px, 9vw, 58px); }
h3 { font-size: 27px; }
p { margin: 0; }
.lede { max-width: 700px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.section { padding: 72px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: #111216; color: #fff; }
.section-head { display: grid; gap: 16px; margin-bottom: 34px; }
.section-head p { max-width: 690px; color: var(--muted); }
.section-dark .section-head p { color: #b9bbc2; }
.section-dark .eyebrow { color: #ff5156; }
.hero { position: relative; min-height: 690px; display: grid; align-items: end; overflow: hidden; background: #111; color: #fff; }
.hero-media { position: absolute; inset: 0; }
.hero-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(8,9,10,.48) 0%, rgba(8,9,10,.67) 52%, rgba(8,9,10,.96) 100%); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; }
.hero-grid { position: relative; z-index: 1; display: grid; gap: 28px; padding-block: 84px 44px; }
.hero-copy { max-width: 720px; }
.hero .eyebrow { color: #ff5c61; }
.hero h1 { font-family: "Arial Black", "Arial Bold", Arial, sans-serif; font-size: clamp(43px, 11.5vw, 72px); font-weight: 900; letter-spacing: -.055em; line-height: .96; text-shadow: 0 8px 28px rgba(0,0,0,.72); }
.hero h1 span { color: #ff4d52; text-shadow: 0 3px 0 rgba(87,0,3,.7), 0 10px 30px rgba(0,0,0,.78); }
.hero .summary { max-width: 660px; margin-top: 20px; color: #f1f1f3; font-size: 18px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 24px; color: #fff; font-size: 13px; font-weight: 750; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: "✓"; color: #ff4c52; font-weight: 1000; }
.quote-card { padding: 24px; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius); background: rgba(255,255,255,.97); color: #111; box-shadow: var(--shadow); }
.quote-card h2 { font-size: 34px; }
.quote-card > p { margin-top: 8px; color: var(--muted); font-size: 14px; }
.form-grid { display: grid; gap: 12px; margin-top: 18px; }
label { display: grid; gap: 6px; color: #303138; font-size: 13px; font-weight: 800; }
input, select, textarea { width: 100%; min-height: 48px; padding: 11px 12px; border: 1px solid #cfd1d6; border-radius: 9px; background: #fff; color: #111; }
textarea { min-height: 105px; resize: vertical; }
.form-note, .form-status { color: var(--muted); font-size: 12px; line-height: 1.45; }
.form-status { min-height: 18px; color: #15613d; font-weight: 750; }
.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.trust-item { min-height: 108px; display: grid; place-content: center; padding: 18px 10px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.trust-item:nth-child(2n) { border-right: 0; }
.trust-item strong { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 29px; font-weight: 700; letter-spacing: -.035em; line-height: 1; }
.trust-item span { margin-top: 7px; color: var(--muted); font-size: 12px; font-weight: 800; line-height: 1.3; text-transform: uppercase; }
.card-grid { display: grid; gap: 16px; }
.service-card { position: relative; min-height: 390px; display: flex; align-items: end; overflow: hidden; border-radius: var(--radius); background: #222; color: #fff; box-shadow: var(--shadow); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover img { transform: scale(1.035); }
.service-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 28%, rgba(0,0,0,.88) 100%); }
.service-card-content { position: relative; z-index: 1; padding: 25px; }
.service-card .tag { display: inline-flex; margin-bottom: 10px; padding: 5px 8px; border-radius: 5px; background: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.service-card p { margin-top: 10px; color: #e6e6e8; font-size: 14px; }
.service-card a { display: inline-flex; margin-top: 16px; font-size: 14px; font-weight: 900; text-decoration: none; }
.service-card a::after { margin-left: 8px; content: "→"; }
.split { display: grid; gap: 34px; align-items: center; }
.split-media { position: relative; min-height: 420px; overflow: hidden; border-radius: var(--radius); }
.split-media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.split-copy { display: grid; gap: 20px; }
.check-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 31px; color: #35363b; font-weight: 650; }
.check-list li::before { position: absolute; left: 0; top: 1px; display: grid; width: 21px; height: 21px; place-content: center; content: "✓"; border-radius: 50%; background: #ffe5e6; color: var(--red); font-size: 12px; font-weight: 1000; }
.section-dark .check-list li { color: #e4e4e7; }
.stat-cards { display: grid; gap: 12px; }
.stat-card { padding: 22px; border: 1px solid #2f3035; border-radius: 14px; background: #18191d; }
.stat-card strong { display: block; color: #ff5156; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 34px; font-weight: 700; letter-spacing: -.035em; line-height: 1.06; }
.stat-card span { display: block; margin-top: 7px; color: #d0d1d5; font-size: 13px; font-weight: 750; }
.process-grid { display: grid; gap: 16px; counter-reset: step; }
.process-card { position: relative; padding: 27px; border: 1px solid var(--line); border-radius: 14px; background: #fff; counter-increment: step; }
.process-card::before { display: grid; width: 42px; height: 42px; margin-bottom: 20px; place-content: center; content: "0" counter(step); border-radius: 50%; background: #111; color: #fff; font-size: 13px; font-weight: 900; }
.process-card p { margin-top: 12px; color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.gallery-item { min-height: 0; aspect-ratio: 4 / 3; margin: 0; overflow: hidden; border-radius: 12px; background: #dedfe2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.gallery-item:hover img { transform: scale(1.035); }
.review-grid { display: grid; gap: 15px; }
.review { display: grid; gap: 16px; padding: 24px; border: 1px solid #2e3036; border-radius: 14px; background: #191a1f; }
.stars { color: #ff3c42; letter-spacing: .14em; }
.review blockquote { margin: 0; color: #e5e5e8; font-size: 15px; }
.review cite { color: #fff; font-size: 13px; font-style: normal; font-weight: 900; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 22px 40px 22px 0; cursor: pointer; font-weight: 850; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; right: 4px; content: "+"; color: var(--red); font-size: 26px; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 760px; padding: 0 34px 22px 0; color: var(--muted); }
.cta-band { padding: 34px 0; background: var(--red); color: #fff; }
.cta-band .shell { display: grid; gap: 20px; }
.cta-band h2 { font-size: clamp(36px, 8vw, 52px); }
.cta-band p { margin-top: 10px; color: #fff; }
.cta-band .button-light { border-color: #fff; background: #fff; color: #111; }
.cta-band .button-light:hover { background: #f5f5f6; color: #111; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.page-hero { position: relative; min-height: 470px; display: grid; align-items: end; overflow: hidden; background: #111; color: #fff; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.83)); }
.page-hero .shell { position: relative; z-index: 1; padding-block: 100px 55px; }
.page-hero p { max-width: 650px; margin-top: 18px; color: #efeff2; font-size: 18px; }
.content-grid { display: grid; gap: 34px; }
.prose { max-width: 780px; }
.prose h2 { margin: 40px 0 18px; font-size: 38px; }
.prose h3 { margin: 30px 0 12px; font-size: 26px; }
.prose p + p, .prose ul + p, .prose p + ul { margin-top: 16px; }
.prose ul { display: grid; gap: 8px; padding-left: 20px; }
.aside-card { align-self: start; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.aside-card h2 { font-size: 32px; }
.aside-card p { margin: 12px 0 20px; color: var(--muted); }
.aside-card .button { width: 100%; }
.article-meta { margin-top: 16px; color: #ddd; font-size: 13px; font-weight: 750; }
.blog-grid { display: grid; gap: 16px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.blog-card img { width: 100%; height: 230px; object-fit: cover; }
.blog-card-body { display: grid; gap: 13px; padding: 23px; }
.blog-card-body h2 { font-size: 29px; }
.blog-card-body p { color: var(--muted); }
.blog-card-body a { color: var(--red); font-weight: 900; text-decoration: none; }
.contact-grid { display: grid; gap: 20px; }
.contact-list { display: grid; gap: 12px; }
.contact-list a { font-weight: 850; text-decoration: none; }
.contact-list a:hover { color: var(--red); }
.site-footer { padding: 56px 0 98px; background: #0e0f12; color: #fff; }
.footer-grid { display: grid; gap: 34px; }
.footer-brand-card { width: 230px; padding: 10px; border-radius: 9px; background: #fff; }
.footer-brand-card img { width: 100%; height: auto; }
.footer-copy { max-width: 410px; margin-top: 17px; color: #bfc0c5; }
.footer-title { margin-bottom: 13px; color: #fff; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #cbccd0; font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 42px; padding-top: 21px; border-top: 1px solid #2a2b30; color: #8f9198; font-size: 12px; }
.mobile-dock { position: fixed; right: 0; bottom: 0; left: 0; z-index: 110; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 8px; background: rgba(15,16,18,.96); transform: translateY(110%); transition: transform .25s ease; }
.hero-passed .mobile-dock { transform: translateY(0); }
.mobile-dock .button { width: 100%; min-width: 0; min-height: 50px; padding-inline: 6px; border-radius: 8px; font-size: 13px; }
.mobile-dock .button-dark { border: 1px solid #555; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (min-width: 700px) {
  .shell { width: min(calc(100% - 56px), var(--max)); }
  .section { padding: 92px 0; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-item { border-bottom: 0; }
  .trust-item:nth-child(2n) { border-right: 1px solid var(--line); }
  .trust-item:last-child { border-right: 0; }
  .card-grid, .process-grid, .review-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-cards { grid-template-columns: repeat(3, 1fr); }
  .cta-band .shell { grid-template-columns: 1fr auto; align-items: center; }
  .footer-grid { grid-template-columns: 1.7fr repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .site-header { height: 78px; }
  .brand img { width: 78px; height: 55px; }
  .brand-wordmark { font-size: 22px; }
  .brand-wordmark small { font-size: 8px; }
  .nav-links, .nav-actions { display: flex; }
  .menu-button, .mobile-menu { display: none !important; }
  .hero { min-height: 710px; align-items: center; }
  .hero-media::after { background: linear-gradient(90deg, rgba(8,9,10,.94) 0%, rgba(8,9,10,.76) 47%, rgba(8,9,10,.28) 100%); }
  .hero-grid { grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr); align-items: center; padding-block: 76px; }
  .hero-copy { padding-right: 30px; }
  .hero h1 { max-width: 760px; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 72px; }
  .split-reverse .split-media { order: 2; }
  .process-grid, .review-grid { grid-template-columns: repeat(4, 1fr); }
  .content-grid { grid-template-columns: minmax(0, 1fr) 340px; gap: 72px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .aside-card { position: sticky; top: 110px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .mobile-dock { display: none; }
  .site-footer { padding-bottom: 48px; }
}

@media (max-width: 959px) {
  .hero .quote-card { margin-top: 8px; }
}

@media (max-width: 699px) {
  .announcement span { display: none; }
  .page-hero { min-height: 420px; }
  .quote-card { border-radius: 14px; }
  .hero-actions .button { flex: 1 1 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; }
}

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