:root {
  --ink: #080a0b;
  --ink-soft: #101315;
  --panel: #15191b;
  --line: rgba(255, 255, 255, 0.11);
  --paper: #f1f2f2;
  --silver: #c8ccce;
  --muted: #8e9598;
  --orange: #ff641f;
  --orange-hot: #ff7a26;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; background: var(--ink); }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, summary, a { -webkit-tap-highlight-color: transparent; }

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(8,10,11,.78);
  backdrop-filter: blur(16px);
}

.header-inner { height: 82px; display: flex; align-items: center; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.33);
  transform: skewX(-11deg);
  overflow: hidden;
  background: linear-gradient(145deg, #252a2c, #0c0e0f);
}
.brand-mark::after { content: ""; position: absolute; inset: auto -8px 6px; height: 4px; background: var(--orange); transform: rotate(-19deg); }
.brand-mark span { transform: skewX(11deg); font-weight: 900; font-size: 15px; letter-spacing: -.05em; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 16px; font-weight: 900; letter-spacing: .08em; }
.brand-copy small { margin-top: 5px; color: var(--orange); font-size: 8px; font-weight: 900; letter-spacing: .28em; }

.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { position: relative; color: #b8bdc0; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: .25s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--orange); transition: .25s ease; }
.desktop-nav a:hover { color: white; }
.desktop-nav a:hover::after { right: 0; }

.header-call { display: flex; align-items: center; gap: 10px; padding-left: 24px; border-left: 1px solid var(--line); }
.header-call > span:last-child { display: flex; flex-direction: column; }
.header-call small { color: var(--orange); font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.header-call strong { margin-top: 3px; font-size: 14px; font-weight: 900; letter-spacing: .02em; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,100,31,.13); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(255,100,31,0); } }

.mobile-menu { display: none; margin-left: auto; position: relative; }
.mobile-menu summary { list-style: none; width: 44px; height: 44px; display: grid; align-content: center; gap: 5px; padding: 10px; cursor: pointer; border: 1px solid var(--line); }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { display: block; height: 2px; background: white; }
.mobile-menu nav { position: absolute; top: 54px; right: 0; width: min(310px, calc(100vw - 32px)); padding: 14px; border: 1px solid var(--line); background: #101315; box-shadow: 0 30px 70px rgba(0,0,0,.55); }
.mobile-menu nav a { display: block; padding: 14px 12px; border-bottom: 1px solid var(--line); color: #d7d9da; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.mobile-menu nav .mobile-menu-call { margin-top: 10px; text-align: center; background: var(--orange); color: white; border: 0; }

.hero { position: relative; min-height: 780px; height: 100svh; max-height: 980px; overflow: hidden; display: flex; align-items: center; background: #0d1011; }
.hero-image { position: absolute; inset: 0; background-image: url('../images/silver-road-hero.png'); background-size: cover; background-position: center; transform: scale(1.015); }
.hero-vignette { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,6,7,.98) 0%, rgba(4,6,7,.91) 35%, rgba(4,6,7,.42) 64%, rgba(4,6,7,.16) 100%), linear-gradient(0deg, rgba(4,6,7,.85) 0%, transparent 42%); }
.hero-grid, .final-cta-grid { position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, black, transparent 72%); }
.hero-inner { position: relative; z-index: 2; padding-top: 72px; }
.hero-copy { max-width: 720px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow > span { display: inline-block; width: 34px; height: 2px; background: var(--orange); }
.hero h1, .section h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(56px, 7vw, 98px);
  line-height: .91;
  letter-spacing: -.055em;
  text-transform: uppercase;
  font-weight: 900;
}
.hero h1 em, .section h2 em, .final-cta h2 em { color: var(--orange); font-style: normal; }
.hero h1 em { position: relative; display: inline-block; }
.hero h1 em::after { content: ""; position: absolute; left: 2%; right: -3%; bottom: -7px; height: 5px; background: var(--orange); transform: skewX(-28deg); }
.hero-lead { max-width: 620px; margin: 34px 0 0; color: #b9bec0; font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button { min-height: 58px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 25px; font-size: 12px; font-weight: 900; letter-spacing: .12em; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: white; box-shadow: 0 14px 40px rgba(255,100,31,.22); }
.button-primary:hover { background: var(--orange-hot); }
.button-ghost { border: 1px solid rgba(255,255,255,.28); color: white; background: rgba(9,11,12,.38); backdrop-filter: blur(8px); }
.button-ghost:hover { background: rgba(255,255,255,.09); }
.hero-proof { display: flex; gap: 0; margin-top: 58px; }
.hero-proof > div { display: flex; flex-direction: column; min-width: 155px; padding: 0 24px; border-left: 1px solid rgba(255,255,255,.2); }
.hero-proof > div:first-child { padding-left: 0; border: 0; }
.hero-proof strong { font-size: 11px; letter-spacing: .12em; }
.hero-proof span { margin-top: 5px; color: #7f8689; font-size: 11px; }
.scroll-cue { position: absolute; z-index: 3; right: 42px; bottom: 28px; display: flex; align-items: center; gap: 13px; color: #92989a; font-size: 8px; font-weight: 900; letter-spacing: .2em; writing-mode: vertical-rl; }
.scroll-cue i { display: block; width: 1px; height: 48px; background: linear-gradient(var(--orange), transparent); }

.trust-strip { position: relative; z-index: 5; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0c0e0f; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 116px; display: flex; align-items: center; gap: 16px; padding: 24px; border-left: 1px solid var(--line); }
.trust-item:last-child { border-right: 1px solid var(--line); }
.trust-item b { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(255,100,31,.35); color: var(--orange); font-size: 12px; font-weight: 900; transform: skewX(-8deg); }
.trust-item span { display: flex; flex-direction: column; }
.trust-item strong { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.trust-item small { margin-top: 6px; color: #767d80; font-size: 11px; }

.section { position: relative; padding: 125px 0; }
.services { background: #111416; }
.section-heading { margin-bottom: 55px; }
.section-heading h2, .pricing h2, .about h2, .faq h2 { font-size: clamp(42px, 5.3vw, 72px); }
.heading-split { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; }
.heading-split > p { max-width: 470px; margin: 0 0 4px; color: #8c9396; font-size: 16px; line-height: 1.75; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 330px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #131719; overflow: hidden; transition: background .3s ease, transform .3s ease; }
.service-card::before { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: .35s ease; }
.service-card:hover { background: #191d1f; transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-top { display: flex; align-items: center; justify-content: space-between; color: #596063; }
.service-top span { font: 700 13px monospace; }
.service-top i { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); font-style: normal; transition: .25s ease; }
.service-card:hover .service-top i { color: var(--orange); border-color: var(--orange); }
.service-card h3 { margin: 80px 0 15px; font-size: 23px; letter-spacing: -.025em; }
.service-card p { min-height: 72px; margin: 0; color: #8e9598; font-size: 14px; line-height: 1.65; }
.service-card a { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; color: #d7d9da; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.service-card a span { color: var(--orange); }

.pricing { overflow: hidden; background: #080a0b; }
.pricing::before { content: ""; position: absolute; width: 600px; height: 600px; right: -220px; top: -270px; border-radius: 50%; background: radial-gradient(circle, rgba(255,100,31,.12), transparent 65%); }
.pricing-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 95px; align-items: center; }
.price-intro > p:not(.eyebrow) { max-width: 480px; color: #858c8f; font-size: 15px; line-height: 1.75; }
.text-link { display: inline-flex; gap: 16px; margin-top: 25px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,100,31,.45); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.text-link span { color: var(--orange); }
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.price-card { position: relative; min-height: 380px; display: flex; flex-direction: column; padding: 35px; border: 1px solid var(--line); background: #111416; }
.price-card.featured { background: linear-gradient(145deg, #24282a, #121517); border-color: rgba(255,100,31,.45); }
.price-card.featured::before { content: "KIEMELT"; position: absolute; right: 0; top: 0; padding: 8px 13px; background: var(--orange); font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.price-label { color: #a3a8aa; font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.price { display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 0 8px; margin: 40px 0 28px; }
.price small { color: #72797c; font-size: 10px; text-transform: uppercase; }
.price strong { grid-row: 1 / span 2; grid-column: 2; color: white; font-size: clamp(52px, 5vw, 72px); line-height: .8; letter-spacing: -.07em; }
.price b { color: var(--orange); font-size: 10px; letter-spacing: .12em; }
.price-card p { margin: 0; color: #81888b; font-size: 13px; line-height: 1.65; }
.price-card a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.price-card a span { color: var(--orange); }
.price-note { grid-column: 1 / -1; margin: 6px 0 0; color: #656c6f; font-size: 11px; text-align: right; }
.payment-methods { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 24px; margin-top: 10px; padding: 22px 24px; border: 1px solid var(--line); background: #111416; }
.payment-methods > span { color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .16em; white-space: nowrap; }
.payment-methods > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.payment-methods strong { min-height: 42px; display: grid; place-items: center; padding: 8px 12px; border: 1px solid var(--line); color: #d7d9da; font-size: 11px; letter-spacing: .04em; text-align: center; }

.about { overflow: hidden; background: #eef0f0; color: #0d1011; }
.about::before { content: "SILVER ROAD"; position: absolute; left: -25px; bottom: -10px; color: rgba(5,8,9,.035); font-size: 18vw; line-height: .7; font-weight: 900; letter-spacing: -.08em; white-space: nowrap; }
.about-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.about-visual { position: relative; min-height: 475px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(13,16,17,.12); background: linear-gradient(145deg, #daddde, #f5f6f6); overflow: hidden; }
.about-visual::after { content: ""; position: absolute; width: 380px; height: 380px; border: 1px solid rgba(13,16,17,.09); border-radius: 50%; }
.road-line { position: absolute; width: 720px; height: 80px; border-top: 18px solid #171a1b; border-bottom: 3px solid var(--orange); transform: rotate(-22deg); opacity: .95; }
.road-line::after { content: ""; position: absolute; left: 0; right: 0; top: 26px; border-top: 3px dashed rgba(255,255,255,.5); }
.about-number { position: relative; z-index: 2; font-size: 108px; line-height: .8; font-weight: 900; letter-spacing: -.09em; text-shadow: 0 5px 0 white; }
.about-visual small { position: relative; z-index: 2; margin-top: 25px; color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .22em; }
.about-copy .eyebrow { color: #b8440d; }
.about-copy h2 em { color: #e54d0c; }
.about-lead { margin: 35px 0 18px; font-size: 20px !important; font-weight: 700; line-height: 1.5 !important; }
.about-copy > p:not(.eyebrow) { color: #4d5457; font-size: 15px; line-height: 1.8; }
.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; margin-top: 30px; padding-top: 28px; border-top: 1px solid rgba(13,16,17,.12); }
.about-checks span { font-size: 12px; font-weight: 800; }
.about-checks span::first-letter { color: var(--orange); }

.steps { background: #111416; }
.centered { text-align: center; }
.centered .eyebrow { justify-content: center; }
.step-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step-grid::before { content: ""; position: absolute; left: 16.5%; right: 16.5%; top: 38px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,100,31,.6), transparent); }
.step-grid article { position: relative; padding: 0 55px; text-align: center; }
.step-grid b { position: relative; z-index: 2; width: 76px; height: 76px; margin: 0 auto; display: grid; place-items: center; border: 1px solid rgba(255,100,31,.45); background: #111416; color: var(--orange); font: 900 13px monospace; transform: rotate(45deg); }
.step-grid b::first-line { transform: rotate(-45deg); }
.step-grid h3 { margin: 45px 0 14px; font-size: 20px; }
.step-grid p { margin: 0; color: #858c8f; font-size: 13px; line-height: 1.7; }

.faq { background: #090b0c; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.faq-heading > p:not(.eyebrow) { color: #80878a; font-size: 14px; line-height: 1.7; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 86px; display: grid; grid-template-columns: 40px 1fr 24px; align-items: center; gap: 14px; cursor: pointer; list-style: none; font-size: 15px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--orange); font: 700 10px monospace; }
.faq-list summary i { color: var(--orange); font-size: 22px; font-style: normal; transition: .25s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { margin: -2px 40px 28px 54px; color: #858c8f; font-size: 14px; line-height: 1.75; }

.final-cta { position: relative; overflow: hidden; padding: 86px 0; background: var(--orange); }
.final-cta::after { content: ""; position: absolute; width: 530px; height: 530px; right: -220px; top: -260px; border: 80px solid rgba(0,0,0,.08); border-radius: 50%; }
.final-cta-grid { opacity: .2; mask-image: linear-gradient(90deg, black, transparent); }
.final-cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.final-cta .eyebrow { color: #1b0b05; margin-bottom: 18px; }
.final-cta .eyebrow > span { background: #1b0b05; }
.final-cta h2 { font-size: clamp(43px, 5.3vw, 72px); }
.final-cta h2 em { color: #18100d; }
.final-cta-inner > a { min-width: 410px; min-height: 112px; display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 24px 28px; border: 1px solid rgba(0,0,0,.25); background: #0d1011; box-shadow: 0 20px 50px rgba(55,15,0,.22); }
.final-cta-inner > a small { color: #8b9295; font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.final-cta-inner > a strong { grid-column: 1; font-size: 24px; letter-spacing: .01em; }
.final-cta-inner > a > span { grid-column: 2; grid-row: 1 / span 2; width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--orange); }

footer { padding: 75px 0 110px; background: #080a0b; }
.footer-main { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 60px; }
.footer-brand { margin-bottom: 25px; }
.footer-main > div:first-child > p { max-width: 260px; color: #6f7679; font-size: 12px; line-height: 1.7; }
.footer-main h3 { margin: 0 0 22px; color: #d7d9da; font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.footer-main > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-main > div:not(:first-child) a, .footer-main > div:not(:first-child) span { margin: 0 0 12px; color: #6f7679; font-size: 11px; line-height: 1.4; }
.footer-main .footer-phone { color: var(--orange) !important; font-size: 16px !important; font-weight: 900; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line); color: #555c5f; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.floating-call { display: none; }

.social-proof { background: #111416; }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.social-card { min-height: 390px; padding: 34px; border: 1px solid var(--line); background: #0c0f10; }
.social-card-head { display: flex; align-items: center; gap: 16px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.social-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,100,31,.4); color: var(--orange); font-size: 24px; font-weight: 900; }
.social-card-head small { color: #6f7679; font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.social-card-head h3 { margin: 5px 0 0; font-size: 20px; }
.consent-gate, .external-ready { min-height: 255px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 36px; text-align: center; }
.consent-gate > span { color: var(--orange); font-size: 30px; }
.consent-gate p, .external-ready p { max-width: 390px; color: #858c8f; font-size: 13px; line-height: 1.7; }
.consent-gate button { margin-top: 12px; padding: 15px 18px; border: 1px solid rgba(255,100,31,.5); background: transparent; color: white; font-size: 9px; font-weight: 900; letter-spacing: .12em; cursor: pointer; }
.external-ready strong { color: var(--orange); }
.external-content { padding-top: 22px; }
.external-content iframe { width: 100%; height: 300px; display: block; border: 0; background: #15191b; }
.external-content > a { display: flex; justify-content: space-between; margin-top: 16px; padding: 15px 17px; border: 1px solid var(--line); color: #d7d9da; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.external-content > a span { color: var(--orange); }

.cookie-banner { position: fixed; z-index: 100; left: 24px; right: 24px; bottom: 24px; max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 24px; border: 1px solid rgba(255,100,31,.45); background: rgba(12,15,16,.98); box-shadow: 0 25px 80px rgba(0,0,0,.65); }
.cookie-banner strong { font-size: 15px; }
.cookie-banner p { margin: 8px 0; color: #9ba1a3; font-size: 12px; line-height: 1.55; }
.cookie-banner a { color: var(--orange); font-size: 11px; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-height: 46px; padding: 0 17px; font-size: 9px; font-weight: 900; letter-spacing: .08em; cursor: pointer; }
.cookie-secondary { border: 1px solid var(--line); background: transparent; color: white; }
.cookie-primary { border: 1px solid var(--orange); background: var(--orange); color: white; }
.cookie-settings { position: fixed; z-index: 90; left: 12px; bottom: 12px; padding: 9px 12px; border: 1px solid var(--line); background: #111416; color: #aeb3b5; font-size: 9px; cursor: pointer; }

.legal-page { min-height: 100vh; background: #0b0d0e; }
.legal-header { border-bottom: 1px solid var(--line); background: #080a0b; }
.legal-nav { min-height: 82px; display: flex; justify-content: space-between; align-items: center; }
.legal-nav > a:last-child { color: #aeb3b5; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.legal-content { max-width: 850px; padding-top: 90px; padding-bottom: 120px; }
.legal-content h1 { margin: 0; font-size: clamp(42px, 7vw, 74px); line-height: .95; letter-spacing: -.05em; text-transform: uppercase; }
.legal-updated { margin: 24px 0 60px; color: #7f8689; }
.legal-content h2 { margin: 48px 0 14px; color: var(--orange); font-size: 20px; }
.legal-content p { color: #b2b7b9; font-size: 15px; line-height: 1.8; }
.legal-content a { color: white; text-decoration: underline; text-decoration-color: var(--orange); }
.legal-note { margin-top: 55px; padding: 22px; border-left: 3px solid var(--orange); background: #121617; font-size: 12px !important; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .header-call { margin-left: auto; }
  .mobile-menu { display: block; margin-left: 0; }
  .hero-vignette { background: linear-gradient(90deg, rgba(4,6,7,.97), rgba(4,6,7,.76) 65%, rgba(4,6,7,.35)); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-layout, .about-layout { gap: 50px; }
  .faq-layout { gap: 60px; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-main > div:nth-child(3) { display: none; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 32px, 620px); }
  .site-header { position: absolute; }
  .header-inner { height: 70px; gap: 12px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 7px; }
  .header-call { display: none; }
  .mobile-menu { margin-left: auto; }
  .social-grid { grid-template-columns: 1fr; }
  .social-card { padding: 24px; }
  .cookie-banner { left: 12px; right: 12px; bottom: calc(86px + env(safe-area-inset-bottom, 0px)); max-height: calc(100svh - 110px); overflow-y: auto; grid-template-columns: 1fr; gap: 16px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions button { padding: 0 10px; }
  .cookie-settings { left: 12px; bottom: calc(86px + env(safe-area-inset-bottom, 0px)); padding: 8px 10px; }
  .legal-nav { min-height: 70px; }
  .legal-nav > a:last-child { font-size: 9px; }
  .legal-content { padding-top: 65px; }

  .hero { min-height: 760px; height: auto; padding: 130px 0 85px; align-items: flex-start; }
  .hero-image { background-position: 64% center; opacity: .72; }
  .hero-vignette { background: linear-gradient(90deg, rgba(4,6,7,.97), rgba(4,6,7,.78)), linear-gradient(0deg, #07090a 0%, transparent 50%); }
  .hero-inner { padding-top: 30px; }
  .hero h1 { font-size: clamp(49px, 15vw, 72px); }
  .hero-lead { font-size: 17px; line-height: 1.55; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
  .hero-proof > div { min-width: 0; padding: 0 0 0 14px; }
  .hero-proof > div:first-child { padding-left: 14px; border-left: 1px solid rgba(255,255,255,.2); }
  .scroll-cue { display: none; }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { min-height: 98px; padding: 18px 14px; }
  .trust-item:nth-child(3) { border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .trust-item b { width: 36px; height: 36px; font-size: 10px; }
  .trust-item strong { font-size: 11px; }
  .trust-item small { font-size: 9px; }

  .section { padding: 88px 0; }
  .heading-split, .pricing-layout, .about-layout, .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .heading-split { align-items: start; }
  .section-heading h2, .pricing h2, .about h2, .faq h2 { font-size: 42px; }
  .section-heading { margin-bottom: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 275px; padding: 27px; }
  .service-card h3 { margin-top: 54px; }
  .price-cards { grid-template-columns: 1fr; }
  .price-card { min-height: 340px; }
  .price-note { text-align: left; }
  .payment-methods { grid-template-columns: 1fr; gap: 14px; }
  .payment-methods > div { grid-template-columns: 1fr; }
  .about-visual { min-height: 340px; }
  .about-number { font-size: 82px; }
  .about-checks { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; gap: 55px; }
  .step-grid::before { display: none; }
  .step-grid article { padding: 0 25px; }
  .step-grid h3 { margin-top: 35px; }
  .faq-list summary { min-height: 78px; font-size: 13px; }
  .faq-list details p { margin-left: 0; }

  .final-cta { padding: 75px 0; }
  .final-cta-inner { flex-direction: column; align-items: stretch; }
  .final-cta h2 { font-size: 43px; }
  .final-cta-inner > a { min-width: 0; min-height: 100px; }
  .final-cta-inner > a strong { font-size: 20px; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .footer-main > div:nth-child(3) { display: none; }
  .footer-bottom { flex-direction: column; gap: 10px; }

  .floating-call { position: fixed; z-index: 60; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); min-height: 62px; display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 12px 15px; background: var(--orange); box-shadow: 0 12px 40px rgba(0,0,0,.45); }
  .floating-call span { font-size: 8px; font-weight: 900; letter-spacing: .15em; }
  .floating-call strong { grid-column: 1; font-size: 16px; }
  .floating-call i { grid-column: 2; grid-row: 1 / span 2; width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid rgba(0,0,0,.25); color: #160904; font-style: normal; }
}

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

/* Content pages */
.subpage { background: #0b0d0e; }
.subpage-header { position: absolute; }
.subhero { position: relative; min-height: 690px; display: flex; align-items: center; overflow: hidden; padding-top: 82px; }
.subhero-image { position: absolute; inset: 0; background: url('/silver-road-hero.png') 72% center / cover no-repeat; filter: saturate(.82) contrast(1.08); }
.subhero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,6,7,.98), rgba(4,6,7,.88) 46%, rgba(4,6,7,.32)), linear-gradient(0deg, rgba(4,6,7,.78), transparent 55%); }
.subhero-grid { position: absolute; z-index: 1; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, black, transparent 70%); }
.subhero-inner { position: relative; z-index: 2; padding: 95px 0 70px; }
.subhero h1 { max-width: 850px; margin: 0; font-size: clamp(58px, 7vw, 94px); line-height: .92; letter-spacing: -.055em; text-transform: uppercase; }
.subhero h1 em { color: var(--orange); font-style: normal; }
.subhero-inner > p:not(.eyebrow) { max-width: 670px; margin: 32px 0 0; color: #b6bbbd; font-size: 18px; line-height: 1.65; }
.subfacts { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0d1011; }
.subfacts-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.subfacts-grid > div { min-height: 118px; display: flex; flex-direction: column; justify-content: center; padding: 26px 38px; border-left: 1px solid var(--line); }
.subfacts-grid > div:last-child { border-right: 1px solid var(--line); }
.subfacts span { color: #70777a; font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.subfacts strong { margin-top: 10px; font-size: 21px; text-transform: uppercase; }
.article-section { background: #111416; }
.article-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 105px; align-items: start; }
.article-layout aside { position: sticky; top: 120px; }
.article-layout aside h2 { font-size: clamp(38px, 4.5vw, 62px); }
.article-phone { max-width: 360px; min-height: 96px; display: grid; grid-template-columns: 1fr auto; align-items: center; margin-top: 45px; padding: 22px 24px; border: 1px solid rgba(255,100,31,.42); background: #171b1d; }
.article-phone small { color: #7e8588; font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.article-phone strong { grid-column: 1; margin-top: 5px; font-size: 18px; }
.article-phone span { grid-column: 2; grid-row: 1 / span 2; color: var(--orange); font-size: 20px; }
.article-content { border-top: 1px solid var(--line); }
.article-content article { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 45px 0; border-bottom: 1px solid var(--line); }
.article-content article > span { color: var(--orange); font: 700 11px monospace; }
.article-content h2 { margin: -5px 0 17px; font-size: clamp(25px, 3vw, 34px); line-height: 1.2; letter-spacing: -.025em; text-transform: none; }
.article-content p { margin: 0; color: #92999b; font-size: 15px; line-height: 1.8; }
.article-content ul { display: grid; gap: 12px; margin: 25px 0 0; padding: 0; list-style: none; }
.article-content li { position: relative; padding-left: 22px; color: #c6cacc; font-size: 13px; line-height: 1.5; }
.article-content li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 2px; background: var(--orange); }
.related-services { padding: 80px 0; border-top: 1px solid var(--line); background: #0b0d0e; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-grid a { min-height: 125px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: .25s ease; }
.related-grid a:hover { background: #14181a; }
.related-grid b { color: #5d6467; font: 700 10px monospace; }
.related-grid strong { font-size: 15px; }
.related-grid span { color: var(--orange); }
.compact-cta { padding-block: 72px; }
.compact-cta h2 { font-size: clamp(40px, 4.8vw, 64px); }

@media (max-width: 760px) {
  .subhero { min-height: 700px; padding-top: 70px; }
  .subhero-image { background-position: 65% center; }
  .subhero h1 { font-size: clamp(46px, 13vw, 66px); }
  .subhero-inner > p:not(.eyebrow) { font-size: 16px; }
  .subfacts-grid { grid-template-columns: 1fr; }
  .subfacts-grid > div { min-height: 92px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .article-layout { grid-template-columns: 1fr; gap: 60px; }
  .article-layout aside { position: static; }
  .article-content article { grid-template-columns: 38px 1fr; gap: 10px; padding: 35px 0; }
  .article-content h2 { font-size: 25px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid a { min-height: 100px; }
}
