:root {
  --red: #e30613;
  --red-dark: #c9000d;
  --red-soft: #fff0f1;
  --navy: #0b162a;
  --navy-2: #111e35;
  --ink: #101828;
  --text: #334155;
  --muted: #667085;
  --line: #dce3ed;
  --surface: #f5f8fc;
  --white: #ffffff;
  --green: #06ad55;
  --amber: #f59e0b;
  --shadow: 0 18px 50px rgba(10, 23, 43, .10);
  --shadow-sm: 0 8px 24px rgba(10, 23, 43, .08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 128px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 800px); margin-inline: auto; }
.section { padding: 96px 0; }
.alt-section { background: var(--surface); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 99px; background: currentColor; }
.eyebrow-light { color: #ffb6bd; }
.section-heading { max-width: 710px; margin-bottom: 44px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading h2 {
  margin: 10px 0 12px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading p { margin: 0; color: var(--muted); font-size: 18px; }

.btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 780;
  line-height: 1.15;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--red); box-shadow: 0 10px 26px rgba(227, 6, 19, .20); }
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 14px 32px rgba(227, 6, 19, .28); }
.btn-dark { color: #fff; background: var(--navy); box-shadow: 0 12px 30px rgba(11, 22, 42, .18); }
.btn-dark:hover { background: #14243e; }
.btn-outline { background: #fff; border-color: var(--line); color: var(--navy); }
.btn-outline:hover { border-color: #b9c4d4; box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--navy); }
.btn-white { background: #fff; color: var(--navy); }
.btn-red-outline { color: #fff; border-color: rgba(255,255,255,.45); background: transparent; }
.btn-large { min-height: 60px; padding-inline: 26px; border-radius: 16px; }
.btn-small { min-height: 44px; padding-inline: 16px; border-radius: 12px; font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; color: var(--red); }

.urgency-bar { height: 34px; background: var(--red); color: #fff; position: relative; z-index: 60; }
.urgency-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-size: 12px; }
.urgency-inner p { margin: 0; display: flex; align-items: center; gap: 7px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.urgency-inner a { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 55;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(220,227,237,.9);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { width: 49px; height: 49px; border-radius: 14px; color: #fff; background: var(--red); display: grid; place-items: center; box-shadow: 0 8px 18px rgba(227,6,19,.20); }
.brand-mark .icon { width: 28px; height: 28px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { color: var(--navy); font-size: 24px; letter-spacing: -.05em; }
.brand-copy strong span { color: var(--red); }
.brand-copy small { margin-top: 5px; color: #6a778d; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.desktop-nav a { color: #495970; font-size: 14px; font-weight: 700; white-space: nowrap; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-pill { min-height: 43px; padding: 0 14px; border: 1px solid var(--line); border-radius: 13px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 750; color: var(--navy); background: #f9fbfd; }
.phone-pill .icon { color: var(--red); }
.menu-button { width: 44px; height: 44px; display: none; border: 1px solid var(--line); border-radius: 12px; color: var(--navy); background: #fff; }
.menu-button .icon { width: 23px; height: 23px; }
.mobile-menu { display: none; border-top: 1px solid var(--line); background: #fff; }
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding-block: 16px 24px; display: grid; gap: 2px; }
.mobile-menu a:not(.btn) { padding: 12px 0; border-bottom: 1px solid #edf1f6; font-weight: 750; color: #3f4f65; }
.mobile-menu .btn { margin-top: 12px; }

.hero { position: relative; overflow: hidden; background: var(--surface); border-bottom: 1px solid var(--line); }
.hero-dots, .inner-hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(#cfd7e4 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: .55;
  pointer-events: none;
}
.home-hero { padding: 58px 0 28px; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .92fr); gap: 22px; align-items: stretch; }
.hero-main { padding: 52px 44px 40px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
.hero-main h1 { max-width: 780px; margin: 15px 0 20px; font-size: clamp(42px, 5.5vw, 68px); line-height: .99; letter-spacing: -.058em; }
.hero-main h1 span { color: var(--red); }
.hero-lead { max-width: 700px; margin: 0; color: #526176; font-size: 18px; line-height: 1.7; }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-microtrust { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 18px; color: #5e6d82; font-size: 13px; font-weight: 680; }
.hero-microtrust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-microtrust .icon { color: var(--green); }
.hero-panel { padding: 30px; border-radius: var(--radius-xl); color: #fff; background: linear-gradient(145deg, #111e35, #081224); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.panel-header { display: flex; gap: 15px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.10); }
.panel-icon { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; color: #fff; background: var(--red); }
.panel-icon .icon { width: 26px; height: 26px; }
.panel-header span:not(.panel-icon) { color: #ff9ca5; font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.panel-header h2 { margin: 3px 0 0; font-size: 22px; line-height: 1.2; }
.hero-panel > a { min-height: 66px; padding: 0 4px; border-bottom: 1px solid rgba(255,255,255,.10); display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #ecf1f8; font-weight: 720; }
.hero-panel > a span { display: flex; align-items: center; gap: 11px; }
.hero-panel > a span .icon { color: #ff5561; }
.hero-panel > a:hover { color: #fff; transform: translateX(3px); }
.panel-footer { margin-top: auto; padding-top: 20px; display: flex; align-items: center; gap: 8px; color: #aab6c9; font-size: 12px; }
.panel-footer .icon { color: var(--green); }

.trust-strip { position: relative; padding: 22px 0 60px; background: var(--surface); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-card { min-height: 176px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 5px 15px rgba(11,22,42,.05); }
.trust-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #8190a7; font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.trust-icon { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; color: var(--red); background: var(--red-soft); }
.trust-card h3 { margin: 17px 0 5px; font-size: 25px; line-height: 1.08; letter-spacing: -.035em; }
.trust-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.trust-card-red { color: #fff; border-color: var(--red); background: var(--red); box-shadow: 0 14px 30px rgba(227,6,19,.16); }
.trust-card-red .trust-card-top { color: #ffd9dc; }
.trust-card-red .trust-icon { color: #fff; background: rgba(120,0,7,.30); }
.trust-card-red p { color: #fff1f2; }

.situation-section { padding-top: 110px; }
.situation-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.situation-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.situation-card:hover { transform: translateY(-5px); border-color: #ffc1c5; box-shadow: var(--shadow); }
.situation-card > span { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; color: var(--red); background: var(--red-soft); }
.situation-card > span .icon { width: 25px; height: 25px; }
.situation-card h3 { margin: 22px 0 9px; font-size: 21px; line-height: 1.2; letter-spacing: -.025em; }
.situation-card p { min-height: 72px; margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.situation-card strong { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-size: 14px; }

.services-section { background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 315px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; position: relative; overflow: hidden; }
.service-card::after { content: ""; position: absolute; right: -45px; bottom: -60px; width: 150px; height: 150px; border: 24px solid var(--red-soft); border-radius: 50%; opacity: .7; }
.service-card-top { display: flex; align-items: center; justify-content: space-between; color: #a2adbd; font-size: 13px; font-weight: 850; }
.service-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; color: #fff; background: var(--navy); }
.service-icon .icon { width: 26px; height: 26px; }
.service-card h3 { margin: 25px 0 10px; font-size: 24px; line-height: 1.16; letter-spacing: -.03em; }
.service-card p { margin: 0 0 24px; color: var(--muted); font-size: 15px; }
.service-card a { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 800; font-size: 14px; }

.diagnostic-section { color: #fff; background: linear-gradient(145deg, #101d34, #07101f); position: relative; overflow: hidden; }
.diagnostic-section::before { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; right: -150px; top: -220px; background: radial-gradient(circle, rgba(227,6,19,.33), transparent 68%); }
.diagnostic-layout { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: 64px; align-items: center; }
.diagnostic-copy h2 { margin: 13px 0 18px; font-size: clamp(36px, 4.5vw, 54px); line-height: 1.04; letter-spacing: -.045em; }
.diagnostic-copy > p { color: #b4c0d2; font-size: 17px; }
.check-list { margin: 28px 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 10px; color: #edf3fb; font-weight: 680; }
.check-list .icon { color: #34d17a; }
.diagnostic-security { padding: 14px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; display: flex; align-items: center; gap: 9px; color: #aeb9cb; font-size: 12px; background: rgba(255,255,255,.04); }
.diagnostic-card { color: var(--ink); border-radius: var(--radius-xl); background: #fff; box-shadow: 0 28px 70px rgba(0,0,0,.25); overflow: hidden; }
.diagnostic-form { padding: 34px; }
.form-progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-bottom: 28px; }
.form-progress span { height: 5px; border-radius: 99px; background: #e7ebf1; }
.form-progress span.active { background: var(--red); }
.step-label { display: flex; align-items: center; gap: 10px; color: #7a879b; font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.step-label span { width: 27px; height: 27px; border-radius: 9px; display: grid; place-items: center; color: #fff; background: var(--red); }
.form-step h3 { margin: 14px 0 25px; font-size: 25px; line-height: 1.2; letter-spacing: -.025em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label > span { color: #4e5d71; font-size: 13px; font-weight: 750; }
.form-grid input, .form-grid select { width: 100%; height: 52px; padding: 0 14px; border: 1px solid #d7dfea; border-radius: 12px; outline: none; background: #fbfcfe; color: var(--ink); }
.form-grid input:focus, .form-grid select:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(227,6,19,.08); background: #fff; }
.form-actions { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.consent { margin-top: 18px; display: flex; gap: 10px; align-items: flex-start; color: #657287; font-size: 12px; }
.consent input { margin-top: 3px; accent-color: var(--red); }
.consent a { color: var(--red); text-decoration: underline; }
.form-disclaimer { margin: 15px 0 0; padding: 12px 14px; border-radius: 12px; color: #657287; background: #f4f7fa; font-size: 11px; }
.form-error { margin: 16px 0 0; padding: 10px 12px; border-radius: 10px; color: #a50009; background: #fff0f1; font-size: 12px; font-weight: 700; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.process-grid::before { content: ""; position: absolute; left: 12%; right: 12%; top: 52px; height: 1px; border-top: 1px dashed #c4cfdd; }
.process-grid article { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.process-grid article > span { position: absolute; right: 18px; top: 16px; color: #d9e0e9; font-size: 34px; font-weight: 900; letter-spacing: -.06em; }
.process-icon { width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; color: #fff; background: var(--navy); position: relative; z-index: 2; box-shadow: 0 0 0 8px #fff; }
.process-icon .icon { width: 24px; height: 24px; }
.process-grid h3 { margin: 24px 0 8px; font-size: 20px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.process-cta { margin-top: 22px; padding: 22px 24px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: space-between; gap: 18px; background: var(--red-soft); }
.process-cta p { margin: 0; color: #7c1c24; font-weight: 750; }

.property-section { background: var(--surface); }
.property-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.visual-window { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid #cad4e1; background: #fff; box-shadow: var(--shadow); }
.visual-top { height: 38px; padding: 0 15px; display: flex; align-items: center; gap: 7px; background: var(--navy); }
.visual-top span { width: 8px; height: 8px; border-radius: 50%; background: #52647f; }
.visual-top span:first-child { background: var(--red); }
.visual-body { min-height: 380px; padding: 24px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 18px; background-image: radial-gradient(#d6deea 1px, transparent 1px); background-size: 18px 18px; }
.visual-plan { min-height: 330px; position: relative; border: 2px solid var(--navy); background: rgba(255,255,255,.88); }
.plan-line { position: absolute; background: var(--navy); }
.plan-line.p1 { left: 45%; top: 0; bottom: 42%; width: 2px; }
.plan-line.p2 { left: 0; right: 28%; top: 58%; height: 2px; }
.plan-line.p3 { right: 28%; top: 25%; bottom: 0; width: 2px; }
.plan-room { position: absolute; padding: 4px 8px; border-radius: 6px; color: #fff; background: var(--navy); font-size: 9px; font-weight: 850; letter-spacing: .08em; }
.plan-room.r1 { left: 12%; top: 20%; }
.plan-room.r2 { right: 8%; bottom: 12%; background: var(--red); }
.plan-marker { position: absolute; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--red); font-weight: 850; box-shadow: 0 0 0 5px rgba(227,6,19,.13); }
.plan-marker.m1 { left: 34%; top: 45%; }
.plan-marker.m2 { right: 12%; top: 36%; }
.visual-checks { padding: 18px; border-radius: 16px; color: #fff; background: var(--navy); display: flex; flex-direction: column; gap: 15px; align-self: stretch; }
.visual-checks strong { margin-bottom: 5px; }
.visual-checks span { display: flex; align-items: center; gap: 8px; color: #c8d2e1; font-size: 12px; }
.visual-checks .icon { color: #36d47d; }
.property-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.property-tags span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 99px; color: #4b5b71; background: #fff; font-size: 13px; font-weight: 720; }

.about-preview-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.about-card { min-height: 480px; padding: 30px; border-radius: var(--radius-xl); color: #fff; background: linear-gradient(145deg, var(--red), #b9000b); position: relative; overflow: hidden; box-shadow: 0 24px 54px rgba(227,6,19,.18); }
.about-card::after { content: ""; position: absolute; width: 290px; height: 290px; border: 40px solid rgba(255,255,255,.08); border-radius: 50%; right: -100px; bottom: -100px; }
.about-seal { display: inline-flex; align-items: center; gap: 11px; padding: 10px 13px; border-radius: 12px; color: #fff; background: rgba(100,0,5,.28); font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.about-seal .icon { width: 25px; height: 25px; }
.about-card-content { position: relative; z-index: 1; margin-top: 76px; }
.about-card-content > span { color: #ffd4d7; font-size: 11px; font-weight: 850; letter-spacing: .13em; }
.about-card-content h2 { margin: 12px 0 16px; font-size: 36px; line-height: 1.05; letter-spacing: -.04em; }
.about-card-content p { color: #fff3f4; }
.about-points { margin-top: 25px; display: grid; gap: 10px; }
.about-points span { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; }
.about-copy h2 { margin: 13px 0 20px; font-size: clamp(36px, 4vw, 50px); line-height: 1.06; letter-spacing: -.045em; }
.about-copy p { color: var(--muted); font-size: 17px; }
.about-copy .btn { margin-top: 14px; }

.blog-preview { background: var(--surface); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-grid-large { grid-template-columns: repeat(3, 1fr); }
.article-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.article-card > span { display: flex; align-items: center; gap: 7px; color: #8490a2; font-size: 11px; font-weight: 750; }
.article-card h3, .article-card h2 { margin: 20px 0 10px; font-size: 23px; line-height: 1.22; letter-spacing: -.03em; }
.article-card p { color: var(--muted); font-size: 14px; }
.article-card a { margin-top: 10px; display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 800; font-size: 14px; }

.faq-section { background: #fff; }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px; cursor: pointer; color: var(--navy); font-weight: 780; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-plus { width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 10px; display: grid; place-items: center; color: var(--red); font-size: 20px; transition: transform .2s ease; }
.faq-list details[open] .faq-plus { transform: rotate(45deg); }
.faq-list details > div { padding: 0 48px 22px 0; }
.faq-list p { margin: 0; color: var(--muted); }

.final-cta { padding: 72px 0; color: #fff; background: var(--red); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta h2 { margin: 10px 0 8px; font-size: clamp(36px, 4vw, 52px); line-height: 1.03; letter-spacing: -.045em; }
.final-cta p { max-width: 620px; margin: 0; color: #ffe4e7; font-size: 17px; }
.final-cta-inner > div:last-child { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.breadcrumbs { min-height: 48px; display: flex; align-items: center; gap: 7px; color: #7d899b; font-size: 12px; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs .icon { width: 12px; }
.inner-hero { position: relative; padding: 70px 0 84px; overflow: hidden; background: var(--surface); border-bottom: 1px solid var(--line); }
.inner-hero-grid { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; gap: 52px; align-items: center; }
.inner-hero-copy h1 { max-width: 790px; margin: 14px 0 20px; font-size: clamp(44px, 5.5vw, 68px); line-height: 1.0; letter-spacing: -.055em; }
.inner-hero-copy > p { max-width: 740px; margin: 0; color: #56657a; font-size: 18px; }
.service-hero-card { padding: 30px; border-radius: var(--radius-xl); color: #fff; background: linear-gradient(145deg, var(--navy-2), #081122); box-shadow: var(--shadow); }
.service-hero-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; color: #fff; background: var(--red); }
.service-hero-icon .icon { width: 29px; height: 29px; }
.service-hero-card small { display: block; margin-top: 24px; color: #ff9ba4; font-weight: 850; letter-spacing: .12em; }
.service-hero-card h2 { margin: 8px 0 10px; font-size: 29px; line-height: 1.1; }
.service-hero-card p { color: #b8c3d4; }
.service-hero-card .btn { margin-top: 10px; width: 100%; }
.two-column { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: start; }
.two-column.reverse { grid-template-columns: .95fr 1.05fr; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.feature-list li { min-height: 60px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 14px; display: flex; align-items: center; gap: 12px; color: #3c4c61; background: #fff; font-weight: 680; }
.feature-list li .icon { color: var(--red); }
.content-callout { padding: 32px; border-radius: var(--radius-xl); border: 1px solid #ffd2d5; background: var(--red-soft); position: sticky; top: 120px; }
.content-callout > span { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; color: #fff; background: var(--red); }
.content-callout h3 { margin: 22px 0 10px; font-size: 25px; }
.content-callout p { color: #70545a; }
.content-callout.dark { color: #fff; border-color: var(--navy); background: var(--navy); }
.content-callout.dark p { color: #bdc8d8; }
.deliverables-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-sm); }
.deliverables-card h2 { margin: 11px 0 22px; font-size: 34px; line-height: 1.1; }
.deliverables-card ul { margin: 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.deliverables-card li { display: flex; gap: 10px; color: #3d4d62; font-weight: 680; }
.deliverables-card li .icon { color: var(--green); margin-top: 4px; }
.deliverables-card > p { margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.mini-process { margin-top: 28px; display: grid; gap: 13px; }
.mini-process article { padding: 17px; border: 1px solid var(--line); border-radius: 15px; display: flex; gap: 15px; background: #fff; }
.mini-process article > span { width: 35px; height: 35px; border-radius: 11px; display: grid; place-items: center; color: #fff; background: var(--navy); font-weight: 850; flex: 0 0 auto; }
.mini-process h3 { margin: 0 0 3px; font-size: 17px; }
.mini-process p { margin: 0; color: var(--muted); font-size: 13px; }
.lead-band { padding: 56px 0; color: #fff; background: var(--red); }
.lead-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.lead-band h2 { margin: 9px 0 7px; font-size: 40px; line-height: 1.05; letter-spacing: -.04em; }
.lead-band p { margin: 0; color: #ffe5e7; }
.related-section { background: var(--surface); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-grid > a { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.related-grid > a > span { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: var(--navy); }
.related-grid h3 { margin: 19px 0 8px; font-size: 21px; }
.related-grid p { color: var(--muted); font-size: 14px; }
.related-grid strong { display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-size: 13px; }


/* Service detail pages */
.service-detail-hero { padding-bottom: 74px; }
.service-summary-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(145deg, var(--navy-2), #081122);
  box-shadow: var(--shadow);
}
.service-summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.service-summary-label {
  color: #ff9ba4;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-align: right;
}
.service-summary-card h2 {
  margin: 22px 0 10px;
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.service-summary-card > p {
  margin: 0;
  color: #b8c3d4;
  font-size: 14px;
}
.service-facts {
  margin: 24px 0 22px;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.10);
}
.service-facts > div {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 14px;
}
.service-facts dt {
  color: #8f9db1;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.service-facts dd {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 720;
}
.service-summary-card .btn { width: 100%; }

.service-page-nav {
  position: relative;
  z-index: 6;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.service-page-nav .container {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.service-page-nav .container::-webkit-scrollbar { display: none; }
.service-page-nav a {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 10px;
  color: #58667a;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}
.service-page-nav a:hover {
  color: var(--red);
  background: var(--red-soft);
}

.service-overview { background: #fff; }
.service-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: 72px;
  align-items: start;
}
.service-longcopy { max-width: 780px; }
.service-longcopy h2 {
  margin: 13px 0 20px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.service-longcopy p {
  margin: 0 0 18px;
  color: #4b5b70;
  font-size: 17px;
  line-height: 1.82;
}
.service-diagnosis-card {
  padding: 28px;
  border: 1px solid #ffd4d7;
  border-radius: var(--radius-xl);
  background: var(--red-soft);
}
.service-diagnosis-card > span {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
}
.service-diagnosis-card > span .icon { width: 25px; height: 25px; }
.service-diagnosis-card h3 {
  margin: 20px 0 9px;
  font-size: 24px;
  line-height: 1.12;
}
.service-diagnosis-card > p {
  margin: 0;
  color: #70545a;
  font-size: 14px;
}
.service-diagnosis-card ul {
  margin: 20px 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}
.service-diagnosis-card li {
  display: flex;
  gap: 9px;
  color: #51434a;
  font-size: 13px;
  font-weight: 700;
}
.service-diagnosis-card li .icon {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex: 0 0 auto;
}
.service-diagnosis-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 820;
}

.service-situation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.service-situation-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 14px;
  background: #fff;
}
.situation-number {
  color: #a0acbd;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
}
.situation-icon {
  grid-column: 3;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
}
.situation-icon .icon { width: 20px; height: 20px; }
.service-situation-grid p {
  grid-column: 1 / -1;
  align-self: end;
  margin: 0;
  color: #344459;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 720;
}

.service-process-section { overflow: hidden; }
.service-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-process-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48px;
  height: 1px;
  background: var(--line);
}
.service-process-grid article {
  position: relative;
  z-index: 1;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}
.process-number {
  display: block;
  color: #9aa6b8;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
}
.process-dot {
  width: 48px;
  height: 48px;
  margin: 14px 0 20px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 0 0 7px #fff;
}
.process-dot .icon { width: 24px; height: 24px; }
.service-process-grid h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.18;
}
.service-process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.service-scope-card,
.service-documents-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
}
.service-scope-card h2,
.service-documents-card h2 {
  margin: 11px 0 22px;
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.service-scope-card ul,
.service-documents-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}
.service-scope-card li,
.service-documents-card li {
  min-height: 44px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #3d4d62;
  font-size: 14px;
  font-weight: 680;
}
.service-scope-card li .icon {
  color: var(--green);
  margin-top: 2px;
  flex: 0 0 auto;
}
.service-documents-card li .icon {
  color: var(--red);
  margin-top: 2px;
  flex: 0 0 auto;
}
.service-card-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.service-documents-card .text-link { margin-top: 22px; }

.service-analysis-section {
  padding-top: 0;
  background: var(--surface);
}
.service-analysis-panel {
  padding: 44px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 55px;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0b1b35);
  overflow: hidden;
}
.service-analysis-panel h2 {
  margin: 12px 0 12px;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.service-analysis-panel p {
  margin: 0 0 22px;
  color: #b8c3d4;
}
.service-analysis-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.service-analysis-list span {
  min-height: 58px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e2e8f0;
  background: rgba(255,255,255,.04);
  font-size: 13px;
  font-weight: 700;
}
.service-analysis-list .icon {
  color: #47dd8b;
  flex: 0 0 auto;
}

.about-story { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: start; }
.about-story > div:first-child > p { color: var(--muted); font-size: 17px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.values-grid article { min-height: 180px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.values-grid article > .icon { width: 30px; height: 30px; color: var(--red); }
.values-grid h3 { margin: 20px 0 5px; }
.values-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.pending-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.pending-proof h2 { margin: 12px 0; font-size: 42px; line-height: 1.08; letter-spacing: -.04em; }
.pending-proof p { color: var(--muted); }
.pending-card { padding: 30px; border-radius: var(--radius-xl); display: flex; gap: 20px; color: #fff; background: var(--navy); }
.pending-card > span { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; color: #fff; background: var(--red); flex: 0 0 auto; }
.pending-card > span .icon { width: 30px; height: 30px; }
.pending-card small { color: #ff9ca5; font-weight: 850; letter-spacing: .1em; }
.pending-card h3 { margin: 7px 0; font-size: 24px; }
.pending-card p { margin: 0; color: #b8c3d4; }
.contact-facts { display: grid; gap: 14px; }
.contact-facts p { margin: 0; padding: 16px; border: 1px solid var(--line); border-radius: 14px; display: flex; align-items: center; gap: 14px; }
.contact-facts p > .icon { width: 25px; height: 25px; color: var(--red); }
.contact-facts span { display: grid; color: var(--muted); font-size: 13px; }
.contact-facts strong { color: var(--navy); font-size: 15px; }

.contact-page { padding: 78px 0 100px; background: var(--surface); }
.contact-page-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: start; }
.contact-intro h1 { margin: 14px 0 20px; font-size: clamp(42px, 5vw, 62px); line-height: 1.02; letter-spacing: -.05em; }
.contact-intro > p { color: var(--muted); font-size: 17px; }
.contact-cards { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-cards > * { min-height: 105px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; display: flex; align-items: center; gap: 14px; background: #fff; }
.contact-cards > * > .icon { width: 26px; height: 26px; color: var(--red); }
.contact-cards span { display: grid; }
.contact-cards small { color: #8591a3; font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.contact-cards strong { font-size: 14px; }
.contact-form-card { position: sticky; top: 118px; }

.blog-hero { padding: 82px 0; color: #fff; background: var(--navy); position: relative; overflow: hidden; }
.blog-hero::after { content: ""; position: absolute; right: -120px; top: -180px; width: 480px; height: 480px; border: 70px solid rgba(227,6,19,.20); border-radius: 50%; }
.blog-hero .container { position: relative; z-index: 1; }
.blog-hero h1 { max-width: 880px; margin: 14px 0 16px; font-size: clamp(44px, 6vw, 70px); line-height: 1; letter-spacing: -.055em; }
.blog-hero p { max-width: 700px; margin: 0; color: #bac5d5; font-size: 18px; }
.article-page { background: #fff; }
.article-header { padding: 72px 0; color: #fff; background: var(--navy); }
.article-header h1 { margin: 14px 0 18px; font-size: clamp(42px, 5.5vw, 66px); line-height: 1.02; letter-spacing: -.052em; }
.article-header p { color: #bdc7d7; font-size: 19px; }
.article-meta { display: flex; align-items: center; gap: 8px; margin-top: 22px; color: #93a1b6; font-size: 13px; }
.article-layout { padding: 72px 0 100px; display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 70px; align-items: start; }
.article-content { max-width: 760px; }
.article-content section { margin-bottom: 44px; }
.article-content h2 { margin: 0 0 16px; font-size: 32px; line-height: 1.15; letter-spacing: -.035em; }
.article-content p { color: #48576b; font-size: 17px; line-height: 1.85; }
.article-warning { margin: 40px 0; padding: 20px; border: 1px solid #ffd3a0; border-radius: 16px; display: flex; gap: 14px; background: #fff8ec; }
.article-warning > .icon { width: 26px; height: 26px; color: var(--amber); flex: 0 0 auto; }
.article-warning strong { color: #75470a; }
.article-warning p { margin: 4px 0 0; color: #7b6445; font-size: 13px; line-height: 1.6; }
.article-sidebar { position: sticky; top: 120px; display: grid; gap: 16px; }
.article-sidebar > div { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.article-sidebar > div:first-child > .icon { width: 33px; height: 33px; color: var(--red); }
.article-sidebar h3 { margin: 12px 0 8px; }
.article-sidebar p { color: var(--muted); font-size: 13px; }
.article-sidebar > div:last-child { display: grid; gap: 4px; background: #fff; }
.article-sidebar > div:last-child h3 { margin-top: 0; }
.article-sidebar > div:last-child a { padding: 11px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 10px; color: #435268; font-size: 13px; font-weight: 720; }

.link-list { display: grid; gap: 10px; }
.link-list > a { padding: 15px; border: 1px solid var(--line); border-radius: 15px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; background: #fff; }
.link-list > a > .icon:first-child { width: 26px; height: 26px; color: var(--red); }
.link-list span { display: grid; }
.link-list small { color: var(--muted); font-size: 12px; }
.link-list > a > .icon:last-child { color: #8c98aa; }

.legal-page { padding: 70px 0 100px; }
.legal-page h1 { margin: 13px 0 10px; font-size: 58px; letter-spacing: -.05em; }
.legal-updated { color: var(--muted); }
.legal-page section { margin-top: 38px; }
.legal-page h2 { font-size: 26px; }
.legal-page p { color: #4d5c70; font-size: 16px; line-height: 1.8; }
.legal-page a { color: var(--red); text-decoration: underline; }
.not-found { min-height: 620px; display: grid; place-items: center; text-align: center; background: var(--surface); }
.not-found-code { display: block; color: var(--red); font-size: 120px; line-height: 1; font-weight: 900; letter-spacing: -.08em; }
.not-found h1 { margin: 15px 0 8px; font-size: 42px; }
.not-found p { color: var(--muted); }
.not-found div > div { margin-top: 24px; display: flex; gap: 12px; justify-content: center; }

.site-footer { padding: 72px 0 0; color: #fff; background: #07101f; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1.15fr; gap: 54px; }
.site-footer .brand-copy strong { color: #fff; }
.footer-brand > p { max-width: 390px; color: #a9b5c7; font-size: 14px; }
.footer-brand .technical-note { margin-top: 18px; padding: 13px; border: 1px solid rgba(255,255,255,.10); border-radius: 12px; color: #8896aa; font-size: 11px; background: rgba(255,255,255,.03); }
.footer-grid h3 { margin: 6px 0 18px; font-size: 15px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid > div:not(:first-child) > a:not(.btn) { color: #9aa8ba; font-size: 13px; }
.footer-grid > div:not(:first-child) > a:not(.btn):hover { color: #fff; }
.footer-grid > div:last-child > p { margin: 0; display: flex; gap: 8px; align-items: flex-start; color: #9aa8ba; font-size: 12px; }
.footer-grid > div:last-child > p .icon { margin-top: 3px; color: #ff5964; }
.footer-grid > div:last-child > p a { color: #fff; }
.footer-cta { margin-top: 12px; }
.footer-bottom { margin-top: 55px; min-height: 72px; border-top: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #728096; font-size: 11px; }
.floating-whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 48; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: #08ad56; box-shadow: 0 15px 32px rgba(8,173,86,.35); transition: transform .2s ease; }
.floating-whatsapp:hover { transform: scale(1.06); }
.floating-whatsapp .icon { width: 29px; height: 29px; }
.mobile-lead-bar { display: none; }
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 80; max-width: 900px; margin-inline: auto; padding: 18px; border: 1px solid var(--line); border-radius: 18px; align-items: center; justify-content: space-between; gap: 20px; background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,.20); }
.cookie-banner:not([hidden]) { display: flex; }
.cookie-banner strong { color: var(--navy); }
.cookie-banner p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.cookie-banner > div:last-child { display: flex; gap: 8px; flex: 0 0 auto; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; place-items: center; }
  .phone-pill { margin-left: auto; }
  .hero-grid { grid-template-columns: 1.25fr .75fr; }
  .hero-main { padding-inline: 34px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .situation-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; display: grid !important; grid-template-columns: repeat(4, auto); align-items: center; }
  .footer-cta { margin-top: 0; }
}

@media (max-width: 900px) {
  .section { padding: 76px 0; }
  .header-actions .btn { display: none; }
  .hero-grid, .inner-hero-grid, .diagnostic-layout, .property-layout, .about-preview-grid, .faq-layout, .two-column, .two-column.reverse, .about-story, .pending-proof, .contact-page-grid, .article-layout { grid-template-columns: 1fr; }
  .hero-panel { min-height: 470px; }
  .inner-hero-grid { gap: 30px; }
  .service-hero-card { max-width: 600px; }
  .diagnostic-layout { gap: 40px; }
  .property-layout, .about-preview-grid { gap: 42px; }
  .visual-window { max-width: 650px; }
  .faq-layout { gap: 22px; }
  .section-heading { max-width: none; }
  .article-grid, .article-grid-large { grid-template-columns: 1fr 1fr; }
  .article-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .content-callout, .contact-form-card { position: static; }
  .final-cta-inner, .lead-band-inner { align-items: flex-start; flex-direction: column; }
  .final-cta-inner > div:last-child { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; display: flex !important; }
  .footer-grid > div:nth-child(3) { grid-row: span 2; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 104px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 62px 0; }
  .urgency-bar { height: 32px; }
  .urgency-inner { justify-content: center; }
  .urgency-inner p { font-size: 10px; }
  .urgency-inner p strong { display: none; }
  .urgency-inner > a { display: none; }
  .header-inner { min-height: 67px; gap: 10px; }
  .brand-mark { width: 43px; height: 43px; border-radius: 13px; }
  .brand-mark .icon { width: 24px; height: 24px; }
  .brand-copy strong { font-size: 20px; }
  .brand-copy small { font-size: 8px; }
  .phone-pill { width: 43px; height: 43px; min-height: 43px; padding: 0; justify-content: center; }
  .phone-pill span { display: none; }
  .menu-button { width: 43px; height: 43px; }
  .home-hero { padding-top: 26px; }
  .hero-main { padding: 32px 22px 26px; border-radius: 22px; }
  .hero-main h1 { font-size: 42px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-microtrust { gap: 9px 14px; }
  .hero-panel { padding: 23px; border-radius: 22px; min-height: auto; }
  .hero-panel > a { min-height: 62px; font-size: 14px; }
  .trust-strip { padding-bottom: 38px; }
  .trust-grid, .situation-grid, .services-grid, .process-grid, .article-grid, .article-grid-large, .related-grid, .values-grid, .contact-cards { grid-template-columns: 1fr; }
  .trust-card { min-height: 155px; }
  .situation-section { padding-top: 70px; }
  .situation-card p { min-height: auto; }
  .service-card { min-height: 290px; }
  .diagnostic-form { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { align-items: stretch; }
  .form-actions .btn { flex: 1; }
  .process-cta { align-items: flex-start; flex-direction: column; }
  .visual-body { min-height: 320px; padding: 14px; grid-template-columns: 1fr; }
  .visual-plan { min-height: 260px; }
  .visual-checks { display: grid; grid-template-columns: 1fr 1fr; }
  .visual-checks strong { grid-column: 1 / -1; }
  .about-card { min-height: 440px; padding: 24px; }
  .about-card-content { margin-top: 55px; }
  .about-card-content h2 { font-size: 31px; }
  .faq-list summary { min-height: 70px; font-size: 14px; }
  .faq-list details > div { padding-right: 0; }
  .final-cta { padding: 58px 0 84px; }
  .final-cta-inner > div:last-child { display: grid; width: 100%; }
  .final-cta-inner .btn { width: 100%; }
  .breadcrumbs { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .inner-hero { padding: 45px 0 60px; }
  .inner-hero-copy h1 { font-size: 43px; }
  .inner-hero-copy > p { font-size: 16px; }
  .two-column { gap: 35px; }
  .deliverables-card { padding: 24px; }
  .lead-band-inner .btn { width: 100%; }
  .pending-card { flex-direction: column; }
  .contact-page { padding: 52px 0 80px; }
  .contact-intro h1 { font-size: 43px; }
  .article-header { padding: 55px 0; }
  .article-header h1 { font-size: 42px; }
  .article-layout { padding-top: 50px; gap: 40px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-content h2 { font-size: 27px; }
  .article-content p { font-size: 16px; }
  .legal-page h1 { font-size: 43px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > div:nth-child(3) { grid-row: auto; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 20px 88px; }
  .floating-whatsapp { display: none; }
  .mobile-lead-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 49; height: 66px; padding: 8px; display: grid; grid-template-columns: .38fr .62fr; gap: 8px; background: rgba(255,255,255,.96); border-top: 1px solid var(--line); backdrop-filter: blur(14px); }
  .mobile-lead-bar a { border: 1px solid var(--line); border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--navy); font-weight: 800; font-size: 13px; }
  .mobile-lead-bar a:last-child { color: #fff; border-color: var(--red); background: var(--red); }
  .cookie-banner { left: 10px; right: 10px; bottom: 76px; align-items: stretch; flex-direction: column; }
  .cookie-banner > div:last-child { display: grid; grid-template-columns: 1fr 1fr; }
  .not-found-code { font-size: 90px; }
  .not-found h1 { font-size: 33px; }
}


@media (max-width: 900px) {
  .service-summary-card { max-width: 650px; }
  .service-overview-grid,
  .service-scope-grid,
  .service-analysis-panel { grid-template-columns: 1fr; }
  .service-overview-grid { gap: 34px; }
  .service-process-grid { grid-template-columns: repeat(2, 1fr); }
  .service-process-grid::before { display: none; }
  .service-analysis-panel { gap: 32px; }
}

@media (max-width: 680px) {
  .service-detail-hero { padding-bottom: 52px; }
  .service-summary-card { padding: 24px; border-radius: 22px; }
  .service-summary-card h2 { font-size: 25px; }
  .service-summary-top { align-items: flex-start; }
  .service-summary-label { max-width: 120px; }
  .service-facts > div { grid-template-columns: 92px 1fr; gap: 10px; }
  .service-page-nav .container {
    width: 100%;
    padding-inline: 14px;
  }
  .service-page-nav a:first-child { margin-left: 0; }
  .service-longcopy h2 { font-size: 32px; }
  .service-longcopy p { font-size: 16px; line-height: 1.72; }
  .service-diagnosis-card { padding: 23px; }
  .service-situation-grid,
  .service-process-grid { grid-template-columns: 1fr; }
  .service-situation-grid article { min-height: 135px; }
  .service-scope-card,
  .service-documents-card { padding: 23px; }
  .service-scope-card h2,
  .service-documents-card h2 { font-size: 27px; }
  .service-analysis-panel { padding: 25px; border-radius: 22px; }
  .service-analysis-panel h2 { font-size: 31px; }
  .service-analysis-list { grid-template-columns: 1fr; }
  .service-analysis-list span { min-height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
