:root {
  --ink: #071b33;
  --ink-2: #0d2948;
  --blue: #1768f2;
  --blue-dark: #0e4fc3;
  --aqua: #1fddc5;
  --paper: #f5f8fc;
  --white: #fff;
  --text: #182b42;
  --muted: #5d6e81;
  --line: #dce5ef;
  --shadow: 0 24px 60px rgba(7, 27, 51, .14);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --shell: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body { margin: 0; color: var(--text); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }
.shell { width: min(calc(100% - 2rem), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; left: 1rem; top: -5rem; padding: .7rem 1rem; color: #fff; background: var(--ink); border-radius: 0 0 8px 8px; }
.skip-link:focus { top: 0; }

.site-header { position: sticky; z-index: 100; top: 0; color: var(--white); background: rgba(7, 27, 51, .94); border-bottom: 1px solid rgba(255,255,255,.09); backdrop-filter: blur(14px); }
.header-inner { min-height: 4.75rem; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: inherit; text-decoration: none; line-height: 1.05; }
.brand-mark { width: 2.5rem; height: 2.5rem; display: grid; place-items: center; color: var(--aqua); background: rgba(31,221,197,.11); border: 1px solid rgba(31,221,197,.35); border-radius: 12px; }
.brand-mark svg { width: 1.55rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.brand b { display: block; font-size: .97rem; letter-spacing: -.02em; }
.brand small { display: block; margin-top: .18rem; color: #a9bdd1; font-size: .69rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.menu-button { position: relative; width: 2.8rem; height: 2.8rem; display: grid; place-content: center; gap: 5px; padding: 0; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; cursor: pointer; }
.menu-button span { width: 1.2rem; height: 2px; background: currentColor; border-radius: 3px; transition: transform .2s, opacity .2s; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-nav { position: fixed; inset: 4.75rem 0 auto; display: none; flex-direction: column; gap: .25rem; padding: 1rem; color: var(--white); background: var(--ink); border-top: 1px solid rgba(255,255,255,.08); box-shadow: 0 20px 40px rgba(0,0,0,.25); }
.site-nav.open { display: flex; }
.site-nav a { padding: .9rem 1rem; font-weight: 720; text-decoration: none; border-radius: 10px; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--aqua); background: rgba(255,255,255,.06); }
.site-nav .nav-cta { margin-top: .3rem; color: var(--ink); text-align: center; background: var(--aqua); }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { color: var(--ink); background: #5ae7d5; }

.hero { position: relative; overflow: hidden; padding: 3rem 0 0; color: var(--white); background: var(--ink); }
.hero::before { content: ""; position: absolute; width: 34rem; height: 34rem; right: -20rem; top: -10rem; background: radial-gradient(circle, rgba(23,104,242,.35), transparent 67%); pointer-events: none; }
.hero-grid { position: relative; display: grid; gap: 2.6rem; }
.eyebrow { display: flex; align-items: center; gap: .65rem; margin: 0 0 1rem; color: var(--blue); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 1.75rem; height: 2px; background: currentColor; }
.eyebrow.light { color: var(--aqua); }
.hero h1 { max-width: 12ch; margin: 0; color: #fff; font-size: clamp(2.65rem, 12vw, 5.8rem); line-height: .98; letter-spacing: -.065em; }
.hero h1 em { color: var(--aqua); font-style: normal; }
.hero-lede { max-width: 34rem; margin: 1.4rem 0 0; color: #b8cadb; font-size: 1.05rem; }
.hero-actions { display: grid; gap: .75rem; margin-top: 1.7rem; }
.button { min-height: 3.25rem; display: inline-flex; align-items: center; justify-content: center; gap: .75rem; padding: .78rem 1.2rem; border: 0; border-radius: 12px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 13px 30px rgba(23,104,242,.27); }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { color: var(--text); background: #fff; border: 1px solid var(--line); }
.hero .button-secondary { color: #fff; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.25); }
.button-full { width: 100%; }
.call-link { width: fit-content; display: flex; align-items: center; gap: .75rem; margin-top: 1.3rem; color: #fff; text-decoration: none; }
.icon-circle { width: 2.7rem; height: 2.7rem; display: grid; place-items: center; color: var(--aqua); background: rgba(31,221,197,.12); border-radius: 50%; }
.icon-circle svg { width: 1.15rem; fill: none; stroke: currentColor; stroke-width: 2; }
.call-link small, .call-link b { display: block; }
.call-link small { color: #8ea6bd; font-size: .73rem; }
.call-link b { font-size: .92rem; }
.hero-visual { min-width: 0; padding-bottom: .4rem; }
.image-frame { position: relative; overflow: visible; }
.image-frame img { width: 100%; aspect-ratio: 3/2; object-fit: cover; object-position: 57% center; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-badge { position: absolute; left: .8rem; bottom: .8rem; max-width: calc(100% - 1.6rem); display: grid; grid-template-columns: 2rem 1fr; column-gap: .65rem; align-items: center; padding: .7rem .9rem; color: var(--text); background: rgba(255,255,255,.95); border-radius: 12px; box-shadow: 0 10px 26px rgba(7,27,51,.2); }
.image-badge > span { grid-row: 1/3; width: 2rem; height: 2rem; display: grid; place-items: center; color: var(--ink); background: var(--aqua); border-radius: 50%; font-weight: 900; }
.image-badge b, .image-badge small { line-height: 1.25; }
.image-badge b { font-size: .82rem; }
.image-badge small { color: var(--muted); font-size: .69rem; }
.availability-card { width: calc(100% - 1.5rem); position: relative; z-index: 2; display: flex; align-items: center; gap: .75rem; margin: -.3rem auto 0; padding: .9rem 1rem; color: var(--text); background: #fff; border-radius: 0 0 var(--radius-sm) var(--radius-sm); box-shadow: var(--shadow); }
.availability-card b, .availability-card small { display: block; line-height: 1.3; }
.availability-card b { font-size: .84rem; }
.availability-card small { color: var(--muted); font-size: .72rem; }
.pulse { width: .7rem; height: .7rem; flex: 0 0 auto; background: #17b978; border-radius: 50%; box-shadow: 0 0 0 5px rgba(23,185,120,.14); }
.trust-strip { position: relative; display: grid; margin-top: 3rem; border-top: 1px solid rgba(255,255,255,.11); }
.trust-strip > div { display: flex; align-items: center; gap: .85rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.trust-strip svg { width: 1.35rem; flex: 0 0 auto; fill: none; stroke: var(--aqua); stroke-width: 1.8; }
.trust-strip b, .trust-strip small { display: block; }
.trust-strip b { font-size: .84rem; }
.trust-strip small { color: #8ea6bd; font-size: .73rem; }

.brand-strip { padding: 2rem 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.brand-strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 1.25rem; }
.brand-strip-label { margin: 0 .5rem 0 0; color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.brand-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem; }
.brand-chip { display: inline-flex; align-items: center; gap: .7rem; padding: .5rem 1.1rem .5rem .5rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 10px 24px rgba(7,27,51,.06); transition: transform .2s, box-shadow .2s; }
.brand-chip:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(7,27,51,.1); }
.brand-chip-icon { width: 2.4rem; height: 2.4rem; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; }
.brand-chip-icon svg { width: 1.1rem; height: 1.1rem; fill: none; stroke: #fff; stroke-width: 2; }
.brand-chip-icon--apple { background: #1c1c1e; }
.brand-chip-icon--pixel { background: conic-gradient(from 180deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4); }
.brand-chip-icon--samsung { background: #1428a0; }
.brand-chip-icon--playstation { background: #003791; }
.brand-chip-icon--xbox { background: #107c10; }
.brand-chip-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-chip-text b { color: var(--ink); font-size: .88rem; }
.brand-chip-text small { color: var(--muted); font-size: .72rem; }

.section { padding: 5.5rem 0; }
.section-heading { display: grid; gap: 1rem; margin-bottom: 2rem; }
.section h2 { margin: 0; color: var(--ink); font-size: clamp(2rem, 8vw, 3.4rem); line-height: 1.06; letter-spacing: -.05em; }
.section-heading > p { max-width: 34rem; margin: 0; color: var(--muted); }
.service-grid { display: grid; gap: 1rem; }
.service-card { position: relative; min-height: 18.5rem; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; padding: 1.5rem; background: var(--paper); border: 1px solid transparent; border-radius: var(--radius); transition: transform .25s, border-color .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-4px); border-color: #cddae9; box-shadow: 0 18px 40px rgba(7,27,51,.08); }
.service-card.featured { color: #fff; background: var(--blue); }
.service-number { position: absolute; right: 1.25rem; top: 1rem; color: #9baabc; font-size: .74rem; font-weight: 800; letter-spacing: .08em; }
.featured .service-number { color: rgba(255,255,255,.7); }
.service-icon { width: 3.5rem; height: 3.5rem; display: grid; place-items: center; color: var(--blue); background: #fff; border: 1px solid var(--line); border-radius: 15px; }
.service-icon svg { width: 1.7rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.featured .service-icon { color: var(--ink); background: var(--aqua); border-color: var(--aqua); }
.service-card h3 { margin: 1.5rem 0 .5rem; color: var(--ink); font-size: 1.25rem; letter-spacing: -.025em; }
.service-card p { margin: 0 0 1.25rem; color: var(--muted); font-size: .93rem; }
.service-card a { margin-top: auto; color: var(--blue); font-size: .86rem; font-weight: 820; text-decoration: none; }
.featured h3, .featured p, .featured a { color: #fff; }
.service-card a span { margin-left: .3rem; }

.console-gallery { padding-top: 0; background: #fff; }
.console-grid { display: grid; gap: 1.1rem; }
.console-photo { margin: 0; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 34px rgba(7,27,51,.06); transition: transform .25s, box-shadow .25s, border-color .25s; }
.console-photo:hover { transform: translateY(-4px); border-color: #cddae9; box-shadow: 0 18px 40px rgba(7,27,51,.12); }
.console-photo-media { position: relative; width: 100%; padding-top: 75%; overflow: hidden; }
.console-photo-media img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.console-photo:hover .console-photo-media img { transform: scale(1.07); }
.console-photo figcaption { padding: .9rem 1.1rem; color: var(--ink); font-size: .92rem; font-weight: 820; transition: color .25s; }
.console-photo:hover figcaption { color: var(--blue); }

.process { color: #fff; background: var(--ink); }
.process-grid { display: grid; gap: 3rem; }
.process h2 { color: #fff; }
.process-intro > p:not(.eyebrow) { max-width: 31rem; color: #a9bdd1; }
.text-link { display: inline-flex; gap: .65rem; margin-top: 1rem; color: var(--aqua); font-weight: 800; text-decoration: none; }
.steps { display: grid; gap: .8rem; margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.2rem; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; }
.steps li > span { width: 3rem; height: 3rem; display: grid; place-items: center; color: var(--ink); background: var(--aqua); border-radius: 50%; font-weight: 900; }
.steps h3 { margin: .15rem 0 .25rem; font-size: 1.05rem; }
.steps p { margin: 0; color: #9fb4c8; font-size: .9rem; }

.form-section { background: var(--paper); }
.form-layout { display: grid; gap: 2.25rem; }
.form-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-note { display: flex; align-items: flex-start; gap: .8rem; margin-top: 1.5rem; padding: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.contact-note svg { width: 1.35rem; flex: 0 0 auto; fill: none; stroke: var(--blue); stroke-width: 2; }
.contact-note b, .contact-note small { display: block; }
.contact-note b { color: var(--ink); font-size: .86rem; }
.contact-note small { margin-top: .2rem; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.repair-form { padding: 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 20px 50px rgba(7,27,51,.08); }
.booking-call { display: flex; flex-direction: column; align-items: center; gap: .6rem; padding: 2.25rem 1.5rem; text-align: center; }
.booking-call svg { width: 2.75rem; height: 2.75rem; padding: .7rem; color: var(--blue); background: rgba(23,104,242,.1); border-radius: 50%; fill: none; stroke: currentColor; stroke-width: 2; }
.booking-call h3 { margin: .25rem 0 0; font-size: 1.15rem; }
.booking-call > p { margin: 0 0 .5rem; color: var(--muted); }
.booking-call .button { width: 100%; max-width: 22rem; }
.form-fineprint { margin: .75rem 0 0; color: var(--muted); font-size: .72rem; text-align: center; }

.faq-layout { display: grid; gap: 2.5rem; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.faq-intro .button { margin-top: .7rem; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { min-height: 4.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--ink); font-size: 1rem; font-weight: 800; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 1.65rem; height: 1.65rem; flex: 0 0 auto; background: var(--paper); border-radius: 50%; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; left: 50%; top: 50%; width: .72rem; height: 2px; background: var(--blue); transform: translate(-50%,-50%); }
.accordion summary span::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s; }
.accordion details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
.accordion details p { margin: -.2rem 0 1.2rem; padding-right: 2rem; color: var(--muted); font-size: .91rem; }

.contact-section { padding-top: 0; }
.contact-card { overflow: hidden; color: #fff; background: var(--blue); border-radius: var(--radius-lg); }
.contact-main { padding: 1.6rem; }
.contact-main h2 { color: #fff; }
.contact-main > p:last-child { color: #dbe8ff; }
.contact-list { background: rgba(6,35,79,.42); }
.contact-list a { display: grid; grid-template-columns: 2.5rem 1fr auto; gap: .8rem; align-items: center; padding: 1.1rem 1.4rem; color: #fff; text-decoration: none; border-top: 1px solid rgba(255,255,255,.14); }
.contact-list a:hover { background: rgba(255,255,255,.07); }
.contact-list svg { width: 1.35rem; fill: none; stroke: var(--aqua); stroke-width: 1.8; }
.contact-list small, .contact-list b { display: block; }
.contact-list small { color: #b8d2f4; font-size: .7rem; }
.contact-list b { font-size: .82rem; line-height: 1.4; }
.contact-list i { font-style: normal; }

.site-footer { padding: 3.5rem 0 6.5rem; color: #c0cfdd; background: #041426; }
.footer-grid { display: grid; gap: 2rem; }
.footer-brand { color: #fff; }
.footer-grid > div:first-child p { max-width: 21rem; color: #7f98ae; font-size: .85rem; }
.footer-grid h2 { margin: 0 0 .8rem; color: #fff; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand), .footer-grid address { display: block; margin: .48rem 0; color: #91a8bd; font-size: .84rem; font-style: normal; text-decoration: none; }
.footer-grid > div > a:hover { color: var(--aqua); }
.footer-bottom { display: grid; gap: .25rem; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom p { margin: 0; color: #71899f; font-size: .72rem; }
.mobile-action { position: fixed; z-index: 90; left: .75rem; right: .75rem; bottom: .75rem; display: grid; grid-template-columns: 3.2rem 1fr; gap: .6rem; padding: .55rem; background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 16px 42px rgba(7,27,51,.28); backdrop-filter: blur(12px); }
.mobile-action .button { min-height: 3.1rem; }
.mobile-call { display: grid; place-items: center; color: var(--blue); background: #eaf1ff; border-radius: 10px; }
.mobile-call svg { width: 1.25rem; fill: none; stroke: currentColor; stroke-width: 2; }

.legal-page { background: var(--paper); }
.legal-header { position: sticky; z-index: 10; top: 0; color: #fff; background: var(--ink); }
.legal-header .header-inner { min-height: 4.5rem; }
.back-link { color: var(--aqua); font-size: .85rem; font-weight: 750; text-decoration: none; }
.legal-hero { padding: 4rem 0 2rem; color: #fff; background: var(--ink); }
.legal-hero h1 { margin: 0; font-size: clamp(2.4rem, 10vw, 4.6rem); line-height: 1; letter-spacing: -.055em; }
.legal-hero p { color: #9db3c7; }
.legal-document { width: min(calc(100% - 2rem), 830px); margin: 2rem auto 5rem; padding: 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 16px 45px rgba(7,27,51,.07); }
.legal-document h2 { margin: 2rem 0 .65rem; color: var(--ink); font-size: 1.25rem; }
.legal-document h3 { margin: 1.35rem 0 .5rem; color: var(--ink); font-size: 1rem; }
.legal-document p, .legal-document li { color: #4e6073; font-size: .92rem; }
.legal-document ul { padding-left: 1.2rem; }
.legal-document a { color: var(--blue); }

:focus-visible { outline: 3px solid #ffca3a; outline-offset: 3px; }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .58s ease, transform .58s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; } .js .reveal { opacity: 1; transform: none; } }

@media (min-width: 580px) {
  .hero-actions { display: flex; }
  .hero-actions .button { min-width: 10.5rem; }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .trust-strip > div { padding: 1.2rem 1rem; border-right: 1px solid rgba(255,255,255,.11); border-bottom: 0; }
  .trust-strip > div:first-child { padding-left: 0; }
  .trust-strip > div:last-child { border-right: 0; }
  .service-grid, .form-row, .console-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .legal-document { padding: 2rem; }
}

@media (min-width: 860px) {
  .shell { width: min(calc(100% - 3rem), var(--shell)); }
  .site-header { background: rgba(7,27,51,.9); }
  .menu-button { display: none; }
  .site-nav { position: static; display: flex; flex-direction: row; align-items: center; gap: .15rem; padding: 0; background: transparent; border: 0; box-shadow: none; }
  .site-nav a { padding: .65rem .8rem; font-size: .82rem; }
  .site-nav .nav-cta { margin: 0 0 0 .45rem; padding-inline: 1.1rem; }
  .hero { padding-top: 5rem; }
  .hero-grid { grid-template-columns: .95fr 1.05fr; align-items: center; gap: 4.5rem; }
  .hero-copy { padding-bottom: 2rem; }
  .hero h1 { font-size: clamp(4rem, 6.4vw, 5.8rem); }
  .hero-lede { font-size: 1.12rem; }
  .image-frame img { min-height: 32rem; aspect-ratio: 4/5; object-position: 58% center; }
  .image-badge { left: -2.2rem; bottom: 2rem; }
  .availability-card { position: absolute; right: -1rem; top: -1.3rem; width: auto; border-radius: var(--radius-sm); }
  .hero-visual { position: relative; }
  .trust-strip { margin-top: 4rem; }
  .section { padding: 7.5rem 0; }
  .console-gallery, .contact-section { padding-top: 0; }
  .section-heading { grid-template-columns: 1.2fr .8fr; align-items: end; margin-bottom: 3rem; }
  .section-heading > p { justify-self: end; }
  .service-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .console-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .process-grid { grid-template-columns: .9fr 1.1fr; align-items: center; gap: 6rem; }
  .steps li { padding: 1.4rem; }
  .form-layout { grid-template-columns: .78fr 1.22fr; gap: 5.5rem; align-items: start; }
  .form-copy { position: sticky; top: 7rem; }
  .repair-form { padding: 2rem; }
  .quote-card { grid-template-columns: .9fr 1.1fr; gap: 4rem; padding: 3rem; align-items: center; }
  .quote-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 1rem; }
  .quote-form .field:last-of-type { grid-column: 1/3; }
  .quote-form .button, .quote-form .form-status { grid-column: 1/3; }
  .faq-layout { grid-template-columns: .75fr 1.25fr; gap: 6rem; }
  .faq-intro { position: sticky; top: 7rem; align-self: start; }
  .contact-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .contact-main { padding: 3rem; }
  .contact-list { display: grid; align-content: center; padding: 1.25rem 0; }
  .contact-list a:first-child { border-top: 0; }
  .footer-grid { grid-template-columns: 1.6fr .75fr .75fr 1.1fr; }
  .footer-bottom { display: flex; justify-content: space-between; }
  .site-footer { padding-bottom: 2rem; }
  .mobile-action { display: none; }
  .legal-document { padding: 3rem; }
}

@media (min-width: 1180px) {
  .header-inner { min-height: 5.2rem; }
  .site-nav a { padding-inline: 1rem; }
  .service-card { min-height: 20rem; padding: 1.8rem; }
}
