/* ATF Garage Doors — responsive, light-theme website */
:root {
  --navy: #12314d;
  --navy-2: #0c263c;
  --blue: #176b9a;
  --blue-2: #2f89b9;
  --sky: #eaf5fc;
  --sky-2: #f5fbff;
  --orange: #f59b42;
  --orange-dark: #d9781b;
  --white: #ffffff;
  --ink: #183247;
  --muted: #607486;
  --line: #dbe8f0;
  --soft: #f7fafc;
  --success: #207a52;
  --danger: #a53a3a;
  --shadow-sm: 0 8px 24px rgba(18, 49, 77, .08);
  --shadow-md: 0 18px 50px rgba(18, 49, 77, .13);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--orange-dark); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .7em; color: var(--navy); line-height: 1.15; letter-spacing: -.025em; }
h1 { font-size: clamp(2.55rem, 5.8vw, 5.35rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.48rem); }
p { margin: 0 0 1.2rem; }
ul, ol { margin-top: 0; }
:focus-visible { outline: 3px solid rgba(245, 155, 66, .65); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 100px 0; }
.section-sm { padding: 66px 0; }
.section-sky { background: var(--sky-2); }
.section-navy { background: var(--navy); color: #e9f4fa; }
.section-navy h2, .section-navy h3 { color: var(--white); }
.skip-link { position: fixed; left: 18px; top: -70px; z-index: 9999; padding: 12px 18px; border-radius: 0 0 10px 10px; background: var(--navy); color: #fff; font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 0; color: #fff; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px; color: var(--blue); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 3px; border-radius: 99px; background: var(--orange); content: ""; }
.section-heading { max-width: 700px; margin-bottom: 46px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.section-navy .section-heading p { color: #c7dbe8; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 800; }
.text-link::after { content: "→"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }

/* Buttons */
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 2px solid transparent; border-radius: 12px; font-size: .95rem; font-weight: 800; line-height: 1.2; text-align: center; transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--navy-2); box-shadow: 0 8px 22px rgba(245, 155, 66, .25); }
.btn-primary:hover { background: #ffad5b; color: var(--navy-2); box-shadow: 0 12px 28px rgba(245, 155, 66, .34); }
.btn-secondary { background: var(--blue); color: #fff; box-shadow: 0 8px 22px rgba(23, 107, 154, .2); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-outline { border-color: #b9d2e1; background: #fff; color: var(--navy); }
.btn-outline:hover { border-color: var(--blue); background: var(--sky); color: var(--navy); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--sky); color: var(--navy); }
.btn-block { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; }
.icon { width: 20px; height: 20px; flex: 0 0 auto; }

/* Header */
.topbar { background: var(--navy-2); color: #d9e9f2; font-size: .83rem; }
.topbar .container { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 18px; }
.topbar p { margin: 0; }
.topbar-links { display: flex; align-items: center; gap: 22px; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-weight: 700; }
.topbar a:hover { color: #ffd2a5; }
.site-header { position: sticky; top: 0; z-index: 1000; height: var(--header-height); border-bottom: 1px solid rgba(219, 232, 240, .8); background: rgba(255, 255, 255, .95); backdrop-filter: blur(14px); }
.site-header .container { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 28px; }
.logo { display: block; width: 230px; flex: 0 0 auto; }
.logo img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; align-items: center; gap: 3px; margin: 0; padding: 0; list-style: none; }
.nav-links a { display: block; padding: 11px 13px; border-radius: 9px; color: #39546a; font-size: .92rem; font-weight: 760; white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--sky); color: var(--blue); }
.header-call { margin-left: 8px; }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 0; border-radius: 10px; background: var(--sky); color: var(--navy); }
.menu-lines, .menu-lines::before, .menu-lines::after { display: block; width: 22px; height: 2px; border-radius: 3px; background: currentColor; transition: transform .25s, top .25s, opacity .2s; content: ""; }
.menu-lines { position: relative; }
.menu-lines::before { position: absolute; top: -7px; }
.menu-lines::after { position: absolute; top: 7px; }
.menu-toggle[aria-expanded="true"] .menu-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-lines::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-lines::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: 675px; overflow: hidden; background: linear-gradient(110deg, #f8fcff 0%, #edf7fc 49%, #e2f2fb 100%); }
.hero::before { position: absolute; inset: auto auto -240px -210px; width: 560px; height: 560px; border-radius: 50%; background: rgba(47, 137, 185, .08); content: ""; }
.hero-grid { display: grid; min-height: 675px; grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr); align-items: center; gap: 58px; padding: 72px 0; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 680px; margin-bottom: 20px; }
.hero h1 .accent { color: var(--blue); }
.hero-lead { max-width: 620px; color: #4c6578; font-size: clamp(1.06rem, 1.6vw, 1.24rem); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 26px 0 32px; padding: 0; color: var(--navy); font-size: .93rem; font-weight: 750; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points li::before { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: #d7eee5; color: var(--success); font-size: .75rem; content: "✓"; }
.hero-visual { position: relative; }
.hero-image-wrap { position: relative; overflow: hidden; min-height: 510px; border: 9px solid rgba(255,255,255,.78); border-radius: 34px 34px 90px 34px; box-shadow: var(--shadow-md); }
.hero-image-wrap::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(12, 38, 60, .18)); pointer-events: none; content: ""; }
.hero-image { width: 100%; height: 100%; min-height: 510px; object-fit: cover; }
.hero-badge { position: absolute; z-index: 2; left: -30px; bottom: 34px; display: flex; width: min(300px, 70%); align-items: center; gap: 13px; padding: 18px; border: 1px solid rgba(219,232,240,.9); border-radius: 17px; background: rgba(255,255,255,.95); box-shadow: var(--shadow-md); }
.hero-badge-icon { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; border-radius: 13px; background: var(--sky); color: var(--blue); }
.hero-badge strong, .hero-badge span { display: block; }
.hero-badge strong { color: var(--navy); font-size: .96rem; }
.hero-badge span { color: var(--muted); font-size: .79rem; }

/* Trust strip */
.trust-strip { position: relative; z-index: 3; margin-top: -1px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; min-height: 105px; align-items: center; gap: 13px; padding: 22px 25px; border-right: 1px solid var(--line); }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-icon { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border-radius: 12px; background: var(--sky); color: var(--blue); }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { color: var(--navy); font-size: .92rem; }
.trust-item span { color: var(--muted); font-size: .78rem; line-height: 1.4; }

/* Cards and services */
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card-image { overflow: hidden; height: 235px; background: var(--sky); }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.service-card:hover .service-card-image img { transform: scale(1.035); }
.service-card-content { padding: 27px; }
.service-number { display: inline-grid; width: 38px; height: 38px; place-items: center; margin-bottom: 19px; border-radius: 11px; background: var(--sky); color: var(--blue); font-size: .78rem; font-weight: 900; }
.service-card p { color: var(--muted); }
.service-list { margin: 0 0 21px; padding: 0; list-style: none; }
.service-list li { position: relative; margin: 7px 0; padding-left: 23px; color: #526a7c; font-size: .91rem; }
.service-list li::before { position: absolute; left: 0; color: var(--orange-dark); font-weight: 900; content: "✓"; }

/* Split layouts */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(48px, 7vw, 88px); }
.split-image { position: relative; }
.split-image > img { width: 100%; aspect-ratio: 4 / 4.15; border-radius: 30px; object-fit: cover; box-shadow: var(--shadow-md); }
.image-accent { position: absolute; z-index: -1; right: -24px; bottom: -24px; width: 48%; height: 47%; border-radius: 26px; background: var(--orange); opacity: .2; }
.info-chip { position: absolute; left: -25px; bottom: 28px; max-width: 265px; padding: 18px 20px; border-radius: 16px; background: #fff; box-shadow: var(--shadow-md); }
.info-chip strong { display: block; color: var(--navy); }
.info-chip span { color: var(--muted); font-size: .82rem; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 27px 0 32px; }
.check-card { display: flex; align-items: flex-start; gap: 10px; padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: #fff; color: var(--navy); font-size: .9rem; font-weight: 750; }
.check-card i { display: grid; width: 22px; height: 22px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: #d7eee5; color: var(--success); font-size: .72rem; font-style: normal; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: process; }
.process-card { position: relative; padding: 28px 23px; border: 1px solid rgba(199,219,232,.18); border-radius: 18px; background: rgba(255,255,255,.07); }
.process-card::before { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 20px; border-radius: 13px; background: var(--orange); color: var(--navy-2); font-size: .85rem; font-weight: 900; counter-increment: process; content: "0" counter(process); }
.process-card p { margin: 0; color: #c7dbe8; font-size: .9rem; }

/* CTA and forms */
.quote-wrap { display: grid; overflow: hidden; grid-template-columns: .8fr 1.2fr; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); }
.quote-copy { position: relative; overflow: hidden; padding: clamp(35px, 5vw, 64px); background: var(--blue); color: #e7f3fa; }
.quote-copy::after { position: absolute; right: -120px; bottom: -150px; width: 330px; height: 330px; border: 52px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; }
.quote-copy h2, .quote-copy h3 { color: #fff; }
.quote-copy p { color: #d5e9f4; }
.contact-mini { position: relative; z-index: 1; margin: 31px 0 0; padding: 0; list-style: none; }
.contact-mini li { display: flex; align-items: flex-start; gap: 12px; margin: 15px 0; }
.contact-mini a { color: #fff; font-weight: 750; overflow-wrap: anywhere; }
.contact-mini .icon-box { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border-radius: 9px; background: rgba(255,255,255,.13); }
.quote-form { padding: clamp(32px, 5vw, 58px); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-group { min-width: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; margin-bottom: 7px; color: var(--navy); font-size: .86rem; font-weight: 800; }
.required { color: var(--danger); }
.form-control { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #cbdce7; border-radius: 11px; background: #fbfdff; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s, background .2s; }
textarea.form-control { min-height: 126px; resize: vertical; }
.form-control:focus { border-color: var(--blue-2); background: #fff; box-shadow: 0 0 0 4px rgba(47, 137, 185, .12); }
.form-control::placeholder { color: #8ba0af; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin: 5px 0 18px; color: var(--muted); font-size: .78rem; }
.checkbox-row input { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--blue); }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .76rem; text-align: center; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; }
.form-alert { display: none; margin-bottom: 22px; padding: 13px 15px; border-radius: 10px; font-size: .88rem; font-weight: 700; }
.form-alert.is-visible { display: block; }
.form-alert.success { border: 1px solid #a8d8c2; background: #eaf7f1; color: #17603e; }
.form-alert.error { border: 1px solid #e5b2b2; background: #fff1f1; color: #8d3030; }

/* FAQ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { margin-bottom: 13px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; background: transparent; color: var(--navy); font-weight: 820; text-align: left; }
.faq-plus { position: relative; width: 26px; height: 26px; flex: 0 0 auto; border-radius: 8px; background: var(--sky); }
.faq-plus::before, .faq-plus::after { position: absolute; top: 50%; left: 50%; width: 11px; height: 2px; background: var(--blue); content: ""; transform: translate(-50%, -50%); transition: transform .2s; }
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-plus::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 22px 20px; color: var(--muted); }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

/* Inner pages */
.page-hero { position: relative; overflow: hidden; padding: 90px 0 82px; background: linear-gradient(120deg, #eff8fd 0%, #f9fcff 55%, #e7f4fb 100%); }
.page-hero::after { position: absolute; right: -70px; bottom: -190px; width: 430px; height: 430px; border: 70px solid rgba(47,137,185,.07); border-radius: 50%; content: ""; }
.page-hero-content { position: relative; z-index: 1; max-width: 800px; }
.page-hero h1 { font-size: clamp(2.45rem, 5vw, 4.5rem); }
.page-hero p { max-width: 700px; color: var(--muted); font-size: 1.13rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: .8rem; font-weight: 750; }
.breadcrumbs a { color: var(--blue); }
.breadcrumbs span + span::before, .breadcrumbs a + span::before { margin-right: 8px; color: #92a6b4; content: "/"; }
.detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.detail-card { padding: 28px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.detail-icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 20px; border-radius: 13px; background: var(--sky); color: var(--blue); }
.detail-card p { color: var(--muted); }
.service-feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); align-items: center; gap: clamp(38px, 6vw, 74px); padding: 36px 0; }
.service-feature + .service-feature { margin-top: 34px; }
.service-feature:nth-child(even) .feature-image { order: 2; }
.feature-image img { width: 100%; aspect-ratio: 4 / 3; border-radius: 24px; object-fit: cover; box-shadow: var(--shadow-sm); }
.feature-copy p { color: var(--muted); }
.number-list { margin: 25px 0; padding: 0; list-style: none; }
.number-list li { display: flex; align-items: flex-start; gap: 12px; margin: 13px 0; color: #50697c; }
.number-list strong { display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; border-radius: 8px; background: var(--sky); color: var(--blue); font-size: .75rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 31px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.value-card .detail-icon { background: #fff0df; color: var(--orange-dark); }
.value-card p { margin-bottom: 0; color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 38px; }
.contact-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-panel-content { padding: 34px; }
.contact-card-list { margin: 28px 0 0; padding: 0; list-style: none; }
.contact-card-list li { display: flex; gap: 13px; padding: 17px 0; border-top: 1px solid var(--line); }
.contact-card-list strong, .contact-card-list span { display: block; }
.contact-card-list strong { color: var(--navy); font-size: .86rem; }
.contact-card-list span, .contact-card-list a { color: var(--muted); font-size: .88rem; overflow-wrap: anywhere; }
.contact-card-list a:hover { color: var(--blue); }
.map-card { position: relative; display: grid; min-height: 265px; place-items: center; overflow: hidden; padding: 28px; background: #dff0f8; text-align: center; }
.map-card::before { position: absolute; inset: 0; opacity: .58; background-image: linear-gradient(34deg, transparent 45%, rgba(23,107,154,.18) 46%, rgba(23,107,154,.18) 48%, transparent 49%), linear-gradient(150deg, transparent 45%, rgba(23,107,154,.14) 46%, rgba(23,107,154,.14) 48%, transparent 49%); background-size: 85px 75px, 115px 100px; content: ""; }
.map-pin { position: relative; z-index: 1; display: grid; width: 66px; height: 66px; place-items: center; margin: 0 auto 12px; border: 8px solid rgba(255,255,255,.76); border-radius: 50% 50% 50% 10%; background: var(--orange); color: var(--navy); box-shadow: var(--shadow-sm); transform: rotate(-45deg); }
.map-pin svg { transform: rotate(45deg); }
.map-card-inner { position: relative; z-index: 1; }
.map-card strong { display: block; margin-bottom: 12px; color: var(--navy); }

/* Legal */
.legal-wrap { display: grid; grid-template-columns: 260px minmax(0, 1fr); align-items: start; gap: 48px; }
.legal-nav { position: sticky; top: 110px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--sky-2); }
.legal-nav strong { display: block; margin-bottom: 13px; color: var(--navy); }
.legal-nav ul { margin: 0; padding: 0; list-style: none; }
.legal-nav a { display: block; padding: 8px 0; border-bottom: 1px solid #e3edf3; color: var(--muted); font-size: .84rem; font-weight: 700; }
.legal-nav li:last-child a { border: 0; }
.legal-nav a:hover { color: var(--blue); }
.legal-content { min-width: 0; }
.legal-content .updated { display: inline-block; margin-bottom: 25px; padding: 7px 12px; border-radius: 99px; background: var(--sky); color: var(--blue); font-size: .8rem; font-weight: 800; }
.legal-content section { scroll-margin-top: 110px; }
.legal-content h2 { margin-top: 1.35em; font-size: clamp(1.55rem, 3vw, 2rem); }
.legal-content h3 { margin-top: 1.4em; font-size: 1.12rem; }
.legal-content p, .legal-content li { color: #516879; }
.legal-content li { margin-bottom: 7px; }
.legal-callout { margin: 27px 0; padding: 21px 23px; border-left: 4px solid var(--orange); border-radius: 0 12px 12px 0; background: #fff8ef; }
.legal-callout p:last-child { margin-bottom: 0; }

/* Footer */
.site-footer { background: var(--navy-2); color: #bcd0dd; }
.footer-main { display: grid; grid-template-columns: 1.35fr .7fr .75fr 1.05fr; gap: 46px; padding: 70px 0 48px; }
.footer-logo { display: block; width: 228px; margin-bottom: 21px; padding: 10px 12px; border-radius: 12px; background: #fff; }
.footer-about p { max-width: 355px; font-size: .88rem; }
.footer-title { margin-bottom: 20px; color: #fff; font-size: .88rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 10px 0; }
.footer-links a { color: #bcd0dd; font-size: .88rem; }
.footer-links a:hover { color: #ffd2a5; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact .icon { margin-top: 4px; color: var(--orange); }
.footer-contact a, .footer-contact span { overflow-wrap: anywhere; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 23px 0; border-top: 1px solid rgba(219,232,240,.13); font-size: .79rem; }
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { color: #bcd0dd; }
.footer-legal a:hover { color: #fff; }
.mobile-call-bar { display: none; }

/* Responsive */
@media (max-width: 1080px) {
  :root { --header-height: 72px; }
  .header-call { display: none; }
  .logo { width: 205px; }
  .nav-links a { padding-inline: 10px; }
  .hero-grid { min-height: 620px; grid-template-columns: minmax(0, 1fr) minmax(380px, .95fr); gap: 38px; }
  .hero-image-wrap, .hero-image { min-height: 455px; }
  .footer-main { grid-template-columns: 1.35fr .65fr .75fr; }
  .footer-col.contact-col { grid-column: 1 / -1; }
  .footer-contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .footer-contact li { margin: 0; }
}

@media (max-width: 880px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 78px 0; }
  .topbar .container { justify-content: center; }
  .topbar p { display: none; }
  .topbar-links { width: 100%; justify-content: space-between; }
  .menu-toggle { display: inline-flex; }
  .site-nav { position: fixed; z-index: 1001; top: calc(var(--header-height) + 38px); right: 0; bottom: 0; width: min(390px, 88vw); display: block; padding: 22px; background: #fff; box-shadow: -18px 30px 45px rgba(18,49,77,.18); transform: translateX(105%); visibility: hidden; transition: transform .3s ease, visibility .3s; }
  .site-nav.is-open { transform: translateX(0); visibility: visible; }
  .nav-links { display: block; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a { padding: 16px 10px; font-size: 1rem; }
  .nav-overlay { position: fixed; z-index: 999; inset: calc(var(--header-height) + 38px) 0 0; background: rgba(12,38,60,.42); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
  .nav-overlay.is-visible { opacity: 1; visibility: visible; }
  .hero-grid { display: flex; min-height: auto; flex-direction: column; gap: 44px; padding: 68px 0 80px; }
  .hero-copy { width: 100%; }
  .hero h1 { max-width: 760px; }
  .hero-visual { width: 100%; }
  .hero-image-wrap { min-height: 420px; }
  .hero-image { min-height: 420px; }
  .hero-badge { left: 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid, .detail-grid, .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid .service-card:last-child, .detail-grid .detail-card:last-child, .values-grid .value-card:last-child { grid-column: 1 / -1; }
  .split { grid-template-columns: 1fr; }
  .split-image { max-width: 650px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-wrap { grid-template-columns: 1fr; }
  .quote-copy { padding-bottom: 42px; }
  .service-feature { grid-template-columns: 1fr; }
  .service-feature:nth-child(even) .feature-image { order: initial; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-wrap { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .legal-nav ul { display: flex; flex-wrap: wrap; gap: 0 18px; }
  .legal-nav a { border: 0; }
}

@media (max-width: 640px) {
  body { padding-bottom: 62px; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.65rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.5rem); }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 66px 0; }
  .section-sm { padding: 50px 0; }
  .topbar a { font-size: .77rem; }
  .topbar-links { gap: 12px; }
  .topbar-links a:last-child { max-width: 48%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .logo { width: 182px; }
  .site-nav { top: calc(var(--header-height) + 38px); }
  .hero-grid { padding-top: 56px; }
  .hero-lead { font-size: 1.04rem; }
  .button-row { flex-direction: column; }
  .button-row .btn { width: 100%; }
  .hero-points { display: grid; gap: 10px; }
  .hero-image-wrap { min-height: 330px; border-width: 6px; border-radius: 25px 25px 58px 25px; }
  .hero-image { min-height: 330px; }
  .hero-badge { right: 14px; bottom: 18px; left: 14px; width: auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 88px; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .card-grid, .detail-grid, .values-grid { grid-template-columns: 1fr; }
  .card-grid .service-card:last-child, .detail-grid .detail-card:last-child, .values-grid .value-card:last-child { grid-column: auto; }
  .service-card-image { height: 220px; }
  .split-image > img { aspect-ratio: 4 / 4.8; }
  .info-chip { right: 15px; bottom: 15px; left: 15px; max-width: none; }
  .image-accent { display: none; }
  .check-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .quote-wrap { border-radius: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .page-hero { padding: 65px 0 58px; }
  .page-hero p { font-size: 1.02rem; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding-top: 55px; }
  .footer-col.contact-col { grid-column: auto; }
  .footer-contact { display: block; }
  .footer-contact li { margin: 13px 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mobile-call-bar { position: fixed; z-index: 1200; right: 0; bottom: 0; left: 0; display: flex; height: 62px; padding: 7px 10px; gap: 8px; border-top: 1px solid #c9dce7; background: rgba(255,255,255,.97); box-shadow: 0 -8px 24px rgba(18,49,77,.1); backdrop-filter: blur(10px); }
  .mobile-call-bar a { display: inline-flex; flex: 1; align-items: center; justify-content: center; gap: 7px; border-radius: 10px; font-size: .82rem; font-weight: 850; }
  .mobile-call { background: var(--orange); color: var(--navy); }
  .mobile-quote { background: var(--blue); color: #fff; }
  .mobile-call:hover { color: var(--navy); }
  .mobile-quote:hover { color: #fff; }
}

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