:root {
  --red: #e53935;
  --dark: #222;
  --orange: #ff6b35;
  --light: #f5f5f6;
  --muted: #67696d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; color: var(--dark); font-family: Montserrat, Arial, sans-serif; line-height: 1.55; }
a { color: inherit; }
a:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.wrap { max-width: 1200px; margin: auto; padding-inline: 28px; }
.skip { position: absolute; top: -100px; background: #fff; z-index: 20; }
.skip:focus { top: 5px; }
.review { background: #ffefdc; color: #3e2920; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 7px 12px; }

.site-header { background: #fff; position: relative; z-index: 3; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 90px; }
.brand { display: flex; align-items: center; }
.brand img { width: 120px; height: 62px; object-fit: cover; object-position: center 53%; }
.nav nav { display: flex; gap: 30px; }
.nav nav a { text-decoration: none; font-size: 13px; font-weight: 700; }
.nav nav a:hover, .text-link:hover { color: var(--red); }
.btn { background: var(--red); color: #fff; display: inline-flex; gap: 20px; align-items: center; justify-content: center; min-height: 48px; padding: 15px 23px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 13px; transition: background .2s; }
.btn:hover { background: #b72220; }
.btn-small { padding: 12px 17px; }

.hero { position: relative; background: #151719; color: #fff; min-height: 620px; display: flex; align-items: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(7,10,13,.95) 0%, rgba(7,10,13,.78) 38%, rgba(7,10,13,.12) 82%), url('../images/hero-concept.jpg'); background-size: cover; background-position: center; }
.hero-inner { position: relative; width: 100%; padding-block: 95px; }
.hero-copy { max-width: 640px; }
.concept-label { position: absolute; right: 22px; bottom: 18px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.42); background: rgba(0,0,0,.55); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow { font-size: 12px; letter-spacing: .19em; font-weight: 800; color: #ff7772; margin: 0 0 18px; }
.eyebrow.red { color: var(--red); }
h1, h2, h3 { font-family: Rubik, Arial, sans-serif; line-height: 1.1; }
h1 { font-size: clamp(42px, 5.2vw, 75px); margin: 0 0 23px; letter-spacing: -.035em; }
h1 em { font-style: normal; color: #ff6965; }
.hero-copy > p:not(.eyebrow) { font-size: 17px; max-width: 545px; color: #e0e0e0; }
.actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-top: 30px; }
.text-link { color: #fff; text-decoration: none; font-weight: 700; font-size: 13px; }
.trustline { display: block; margin-top: 64px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #ddd; }

.quick-facts { background: var(--dark); color: #fff; }
.quick-facts .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding-block: 18px; }
.quick-facts span { font-size: 12px; border-left: 1px solid #4a4a4a; padding-left: 22px; }
.quick-facts span:first-child { border-left: 0; padding-left: 0; }
.quick-facts b { display: block; color: #ff7772; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2px; }

.intro { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 80px; padding-top: 100px; padding-bottom: 35px; }
.intro h2, .process h2, .contact h2, .reasons h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -.035em; margin: 0; }
.intro > p { max-width: 450px; color: var(--muted); }
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding-bottom: 110px; }
.services article { background: var(--light); min-height: 220px; padding: 30px; border-top: 3px solid transparent; }
.services article:hover { border-color: var(--red); }
.services span { font-weight: 800; color: var(--red); font-size: 12px; }
.services h3 { font-size: 21px; margin: 25px 0 10px; }
.services p, .steps p, .reason-grid p { font-size: 14px; color: var(--muted); margin: 0; }
.service-card-link { display: block; height: 100%; color: inherit; text-decoration: none; }
.service-card-link article { height: 100%; transition: transform .2s, border-color .2s; }
.service-card-link:hover article { transform: translateY(-3px); border-color: var(--red); }
.service-card-link article > b { display: inline-block; margin-top: 22px; color: var(--dark); font-size: 12px; }
.service-help { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 14px; padding: 26px 30px; color: #fff; background: var(--dark); }
.service-help strong { display: block; font-family: Rubik, Arial, sans-serif; font-size: 20px; }
.service-help p { color: #d4d4d4; margin-top: 4px; }
.text-cta { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 48px; color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.text-cta:hover { color: #ff7772; }

.process { background: #f2f2f2; padding: 92px 0; }
.process h2 { max-width: 600px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 55px; }
.steps article { border-top: 2px solid #d3d3d3; padding-top: 22px; }
.steps b { color: var(--red); font-size: 13px; }
.steps h3 { font-size: 20px; }
.draft-note { font-size: 11px; color: #777; margin: 32px 0 0; }

.reasons { display: grid; grid-template-columns: .85fr 1.4fr; gap: 80px; padding-block: 105px; }
.reasons-heading > p:not(.eyebrow) { color: var(--muted); max-width: 460px; }
.reason-grid { display: grid; gap: 0; }
.reason-grid article { display: grid; grid-template-columns: 42px 1fr; column-gap: 18px; border-top: 1px solid #d8d8d8; padding: 25px 0; }
.reason-grid span { grid-row: 1 / 3; color: var(--red); font-size: 12px; font-weight: 800; padding-top: 4px; }
.reason-grid h3 { font-size: 21px; margin: 0 0 8px; }

.contact { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; padding-block: 100px; border-top: 1px solid #dedede; }
.contact p { color: var(--muted); }
.contact .btn { margin-top: 18px; }
.contact aside { background: var(--dark); color: #fff; padding: 45px; }
.contact aside p { color: #ddd; }
.contact aside a { text-decoration: none; }
.contact aside a:hover { text-decoration: underline; }

footer { background: #111; color: #aaa; }
.footer { padding-block: 30px; display: flex; justify-content: space-between; align-items: center; gap: 30px; font-size: 11px; }
.footer-brand, .footer-meta { display: flex; align-items: center; gap: 18px; }
.footer-brand img { width: 120px; height: 62px; object-fit: cover; object-position: center 53%; }
.footer-meta { flex-direction: column; align-items: flex-end; gap: 4px; }
.footer-meta a { text-decoration: none; color: #ddd; }

.inner-hero { position: relative; overflow: hidden; background: linear-gradient(120deg, #111 0%, #242424 72%, #351514 100%); color: #fff; }
.inner-hero::after { content: ""; position: absolute; right: -8%; bottom: -46%; width: 48%; aspect-ratio: 1; border: 70px solid rgba(229,57,53,.12); border-radius: 50%; }
.inner-hero .wrap { position: relative; z-index: 1; padding-block: 92px; }
.inner-hero h1 { max-width: 870px; }
.inner-hero > .wrap > p:not(.eyebrow) { max-width: 650px; color: #ddd; font-size: 17px; }
.inner-hero .btn { margin-top: 22px; }
.service-jump { display: flex; flex-wrap: wrap; gap: 10px; padding-block: 28px; border-bottom: 1px solid #ddd; }
.service-jump a { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 14px; border: 1px solid #d7d7d7; border-radius: 4px; font-size: 12px; font-weight: 700; text-decoration: none; }
.service-jump a:hover { color: var(--red); border-color: var(--red); }
.service-details { padding-block: 45px 110px; }
.service-details article { display: grid; grid-template-columns: 110px minmax(0, 760px); justify-content: space-between; gap: 50px; padding-block: 72px; border-bottom: 1px solid #ddd; scroll-margin-top: 20px; }
.service-details article:last-child { border-bottom: 0; }
.service-number { color: #d0d0d0; font-family: Rubik, Arial, sans-serif; font-size: 58px; font-weight: 700; line-height: 1; }
.service-details h2 { margin: 0 0 20px; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.03em; }
.service-details h3 { margin: 30px 0 12px; font-size: 16px; }
.service-details p, .service-details li { color: var(--muted); }
.service-details ul { padding-left: 20px; }
.service-details li + li { margin-top: 7px; }
.red-link { margin-top: 20px; color: var(--red); }
.red-link:hover { color: #a8201e; }
.final-cta { background: var(--dark); color: #fff; }
.final-cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 60px; padding-block: 70px; }
.final-cta h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); }
.final-cta p:not(.eyebrow) { color: #d1d1d1; }

.contact-hero::after { right: 5%; bottom: -70%; width: 55%; }
.contact-page { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; padding-block: 100px; }
.contact-guide h2, .contact-card h2 { margin: 0 0 28px; font-size: clamp(30px, 4vw, 46px); }
.contact-guide ol { list-style: none; padding: 0; margin: 42px 0 0; }
.contact-guide li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding-block: 22px; border-top: 1px solid #ddd; }
.contact-guide li > span { color: var(--red); font-size: 12px; font-weight: 800; }
.contact-guide li p { margin: 4px 0 0; color: var(--muted); }
.contact-card { align-self: start; padding: 42px; background: var(--dark); color: #fff; }
.contact-card address { color: #ddd; font-style: normal; line-height: 1.7; }
.contact-lines { display: grid; margin-top: 32px; }
.contact-lines a, .contact-detail { display: grid; gap: 3px; min-height: 68px; padding-block: 13px; border-top: 1px solid #4a4a4a; text-decoration: none; }
.contact-lines span { color: #aaa; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.contact-lines strong { overflow-wrap: anywhere; }
.pending-info { margin: 26px 0 0; color: #aaa; font-size: 11px; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; }
.social-links a { color: #ddd; font-size: 12px; font-weight: 700; text-decoration: none; }
.social-links a:hover { color: #ff7772; }

@media (max-width: 800px) {
  .nav { min-height: 78px; }
  .brand img { width: 120px; height: 62px; }
  .nav nav { display: none; }
  .hero { min-height: 620px; }
  .hero-image { background-image: linear-gradient(90deg, rgba(7,10,13,.9), rgba(7,10,13,.55)), url('../images/hero-concept-mobile.jpg'); background-position: 55% center; }
  .hero-inner { padding-block: 70px; }
  .quick-facts .wrap { grid-template-columns: 1fr; gap: 12px; }
  .quick-facts span, .quick-facts span:first-child { border-left: 0; padding-left: 0; }
  .intro { grid-template-columns: 1fr; gap: 5px; padding-top: 70px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .service-help { align-items: flex-start; flex-direction: column; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reasons { grid-template-columns: 1fr; gap: 42px; padding-block: 75px; }
  .contact { grid-template-columns: 1fr; gap: 35px; padding-block: 75px; }
  .inner-hero .wrap { padding-block: 70px; }
  .service-details article { grid-template-columns: 70px minmax(0, 1fr); gap: 28px; }
  .service-number { font-size: 42px; }
  .final-cta .wrap { align-items: flex-start; flex-direction: column; gap: 28px; }
  .contact-page { grid-template-columns: 1fr; gap: 45px; padding-block: 75px; }
}

@media (max-width: 560px) {
  .wrap { padding-inline: 20px; }
  .nav .btn-small { font-size: 12px; padding: 11px; }
  .hero { min-height: 620px; }
  .hero-copy > p:not(.eyebrow) { font-size: 15px; }
  .actions { align-items: stretch; gap: 20px; }
  .actions .btn { width: 100%; }
  .trustline { margin-top: 40px; }
  .concept-label { right: 14px; bottom: 12px; }
  .services, .steps { grid-template-columns: 1fr; }
  .services article { min-height: unset; }
  .contact aside { padding: 30px; }
  .footer, .footer-brand { align-items: flex-start; flex-direction: column; }
  .footer-meta { align-items: flex-start; }
  h1 { font-size: clamp(38px, 11vw, 42px); }
  .inner-hero::after { width: 85%; right: -35%; bottom: -20%; }
  .service-jump { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 18px; }
  .service-jump a { flex: 0 0 auto; }
  .service-details article { grid-template-columns: 1fr; gap: 20px; padding-block: 55px; }
  .service-number { font-size: 36px; }
  .contact-card { padding: 30px; }
}

@media (max-width: 400px) {
  .wrap { padding-inline: 16px; }
  .nav { gap: 10px; }
  .brand img { width: 120px; height: 62px; }
  .nav .btn-small { padding-inline: 10px; }
  .service-help { padding: 24px 22px; }
}
