:root {
  --navy-950: #03112f;
  --navy-900: #071b43;
  --navy-800: #0b2a66;
  --navy-700: #123f8c;
  --red-600: #d7193f;
  --red-500: #e32646;
  --red-100: #fff0f3;
  --blue-100: #edf4ff;
  --blue-50: #f7faff;
  --ink: #15213a;
  --muted: #5e6b82;
  --line: #dfe6f1;
  --white: #ffffff;
  --shadow-sm: 0 10px 28px rgba(7, 27, 67, 0.08);
  --shadow-md: 0 22px 60px rgba(7, 27, 67, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--navy-900);
  padding: 10px 16px;
  z-index: 10000;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.section-soft { background: var(--blue-50); }
.section-navy { background: var(--navy-900); color: var(--white); }
.section-title { max-width: 760px; margin-bottom: 42px; }
.section-title.center { text-align: center; margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-600);
  margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 3px; background: currentColor; }
h1, h2, h3, h4 { line-height: 1.12; margin: 0 0 16px; color: var(--navy-900); letter-spacing: -0.025em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2.05rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.3rem); color: var(--muted); max-width: 720px; }
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy .lead, .section-navy p { color: rgba(255,255,255,.78); }

.topbar { background: var(--navy-950); color: rgba(255,255,255,.9); font-size: .88rem; }
.topbar .container { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-links { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.topbar a:hover { color: var(--white); }
.fsp-pill { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.75); }
.fsp-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #55d58b; box-shadow: 0 0 0 5px rgba(85,213,139,.13); }

.site-header { position: sticky; top: 0; z-index: 999; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(7,27,67,.08); }
.nav-wrap { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; }
.brand img { width: 170px; height: auto; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 30px; font-weight: 700; font-size: .94rem; color: var(--navy-900); }
.nav-links > a { position: relative; padding: 31px 0; }
.nav-links > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 24px; height: 3px; border-radius: 3px; background: var(--red-600); transition: right .25s ease; }
.nav-links > a:hover::after, .nav-links > a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: var(--white); border-radius: 12px; place-items: center; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--navy-900); position: relative; display: block; }
.mobile-toggle span::before, .mobile-toggle span::after { content: ""; width: 22px; height: 2px; background: var(--navy-900); position: absolute; left: 0; transition: .25s ease; }
.mobile-toggle span::before { top: -7px; }
.mobile-toggle span::after { top: 7px; }

.btn { display: inline-flex; justify-content: center; align-items: center; gap: 10px; border-radius: 999px; padding: 14px 24px; border: 1px solid transparent; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--red-600); box-shadow: 0 12px 28px rgba(215,25,63,.25); }
.btn-primary:hover { background: #bd1233; box-shadow: 0 15px 34px rgba(215,25,63,.32); }
.btn-secondary { color: var(--navy-900); background: var(--white); border-color: var(--line); }
.btn-secondary:hover { box-shadow: var(--shadow-sm); }
.btn-outline-light { color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.btn svg { width: 18px; height: 18px; }

.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #f7faff 0%, #fff 52%, #fff3f5 100%); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(18,63,140,.14), rgba(18,63,140,0) 68%); left: -260px; top: -160px; }
.hero::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(215,25,63,.12), rgba(215,25,63,0) 68%); right: -180px; bottom: -170px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; min-height: 690px; align-items: center; padding: 72px 0 84px; }
.hero-copy h1 span { color: var(--red-600); }
.hero-copy .lead { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; color: var(--navy-800); font-size: .92rem; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before { content: "✓"; display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; background: var(--blue-100); color: var(--navy-700); font-weight: 900; }
.hero-visual { position: relative; min-height: 540px; }
.hero-photo-shell { position: absolute; inset: 0 0 0 54px; border-radius: 44% 44% 28px 28px; overflow: hidden; background: var(--white); box-shadow: var(--shadow-md); }
.hero-photo-shell img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; }
.hero-photo-shell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,17,47,.3), transparent 48%); }
.floating-card { position: absolute; z-index: 3; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border: 1px solid rgba(7,27,67,.08); border-radius: 18px; box-shadow: var(--shadow-sm); padding: 17px 19px; max-width: 230px; animation: float 4.5s ease-in-out infinite; }
.floating-card strong { display: block; color: var(--navy-900); margin-bottom: 2px; }
.floating-card small { color: var(--muted); }
.floating-card.one { left: 0; top: 82px; }
.floating-card.two { right: -18px; bottom: 72px; animation-delay: -2s; }
.floating-icon { width: 42px; height: 42px; border-radius: 13px; background: var(--red-100); color: var(--red-600); display: grid; place-items: center; margin-bottom: 10px; }
.floating-icon svg { width: 23px; height: 23px; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.trust-strip { position: relative; z-index: 2; margin-top: -34px; }
.trust-strip-inner { background: var(--navy-900); color: var(--white); border-radius: 22px; box-shadow: var(--shadow-md); display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; }
.trust-item { padding: 26px 30px; display: flex; align-items: center; gap: 16px; border-right: 1px solid rgba(255,255,255,.14); }
.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 34px; height: 34px; color: #ff8ca1; flex: 0 0 auto; }
.trust-item strong { display: block; font-size: 1.03rem; }
.trust-item small { color: rgba(255,255,255,.7); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; transition: transform .25s ease, box-shadow .25s ease, border .25s ease; overflow: hidden; }
.feature-card::after { content: ""; position: absolute; width: 100px; height: 100px; border-radius: 50%; right: -50px; top: -50px; background: var(--red-100); transition: transform .35s ease; }
.feature-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); border-color: transparent; }
.feature-card:hover::after { transform: scale(1.35); }
.icon-box { width: 54px; height: 54px; border-radius: 17px; display: grid; place-items: center; background: var(--blue-100); color: var(--navy-700); margin-bottom: 22px; }
.icon-box.red { background: var(--red-100); color: var(--red-600); }
.icon-box svg { width: 27px; height: 27px; }
.feature-card p { color: var(--muted); font-size: .97rem; }

.split-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: center; }
.split-grid.reverse { grid-template-columns: 1.05fr .95fr; }
.image-stack { position: relative; min-height: 520px; }
.image-stack .main-image { position: absolute; inset: 0 54px 46px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.image-stack .main-image img { width: 100%; height: 100%; object-fit: cover; }
.image-stack .accent-panel { position: absolute; right: 0; bottom: 0; width: 50%; min-height: 180px; padding: 28px; border-radius: var(--radius-md); background: var(--red-600); color: var(--white); box-shadow: var(--shadow-sm); }
.image-stack .accent-panel h3 { color: var(--white); }
.image-stack .accent-panel p { color: rgba(255,255,255,.82); margin: 0; }
.check-list { display: grid; gap: 14px; margin: 28px 0 32px; }
.check-list div { display: flex; align-items: flex-start; gap: 12px; font-weight: 650; color: var(--navy-900); }
.check-list div::before { content: "✓"; display: grid; place-items: center; flex: 0 0 auto; width: 25px; height: 25px; border-radius: 50%; background: var(--red-100); color: var(--red-600); font-weight: 900; }

.coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.coverage-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 24px; }
.coverage-card strong { display: block; font-size: 1.08rem; margin-bottom: 8px; }
.coverage-card p { margin: 0; font-size: .94rem; }
.coverage-number { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--red-600); color: var(--white); font-weight: 900; margin-bottom: 20px; }

.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; margin-top: 28px; }
.service-list div { display: flex; gap: 11px; align-items: flex-start; color: var(--navy-900); font-weight: 700; }
.service-list svg { width: 21px; height: 21px; color: var(--red-600); flex: 0 0 auto; margin-top: 2px; }

.cta-panel { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); color: var(--white); border-radius: var(--radius-lg); padding: 58px; display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.cta-panel::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.07); right: -70px; top: -180px; }
.cta-panel h2 { color: var(--white); max-width: 680px; }
.cta-panel p { color: rgba(255,255,255,.76); max-width: 650px; margin-bottom: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; flex: 0 0 auto; position: relative; z-index: 1; }

.page-hero { position: relative; overflow: hidden; min-height: 410px; display: flex; align-items: center; color: var(--white); background: var(--navy-900); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,17,47,.96) 0%, rgba(7,27,67,.86) 49%, rgba(7,27,67,.42) 100%); z-index: 1; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 36%; }
.page-hero-content { position: relative; z-index: 2; max-width: 720px; padding: 75px 0; }
.page-hero h1 { color: var(--white); font-size: clamp(2.7rem, 5vw, 4.7rem); }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.15rem; }
.breadcrumbs { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.68); margin-bottom: 18px; }
.breadcrumbs span { color: #ffb3c0; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat-card { border: 1px solid var(--line); border-radius: 20px; padding: 26px; background: var(--white); }
.stat-card strong { display: block; color: var(--red-600); font-size: 2.1rem; line-height: 1; margin-bottom: 10px; }
.stat-card span { color: var(--muted); font-weight: 700; }

.services-catalogue { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-tile { border: 1px solid var(--line); border-radius: 20px; padding: 26px; background: var(--white); display: flex; gap: 16px; transition: .25s ease; }
.service-tile:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); border-color: transparent; }
.service-tile .mini-icon { width: 45px; height: 45px; border-radius: 14px; display: grid; place-items: center; color: var(--red-600); background: var(--red-100); flex: 0 0 auto; font-weight: 900; }
.service-tile p { color: var(--muted); font-size: .93rem; margin: 0; }

.faq-wrap { max-width: 900px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: var(--white); margin-bottom: 14px; overflow: hidden; }
.faq-question { width: 100%; border: 0; background: transparent; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 24px; font-weight: 850; color: var(--navy-900); }
.faq-question span:last-child { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-100); color: var(--navy-700); transition: transform .25s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-answer-inner { padding: 0 24px 22px; color: var(--muted); }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 36px; align-items: start; }
.contact-card { background: var(--navy-900); color: var(--white); border-radius: var(--radius-md); padding: 36px; position: sticky; top: 126px; }
.contact-card h2, .contact-card h3 { color: var(--white); }
.contact-card p { color: rgba(255,255,255,.74); }
.contact-method { display: flex; gap: 15px; align-items: flex-start; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-method:first-of-type { margin-top: 20px; }
.contact-method .icon-box { width: 46px; height: 46px; margin: 0; flex: 0 0 auto; background: rgba(255,255,255,.1); color: #ff9bad; }
.contact-method strong { display: block; }
.contact-method a { color: rgba(255,255,255,.82); }
.form-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 38px; box-shadow: var(--shadow-sm); background: var(--white); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { color: var(--navy-900); font-weight: 800; font-size: .9rem; }
input, select, textarea { width: 100%; border: 1px solid #ced8e7; border-radius: 12px; padding: 14px 15px; color: var(--ink); background: var(--white); outline: none; transition: border .2s ease, box-shadow .2s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--navy-700); box-shadow: 0 0 0 4px rgba(18,63,140,.1); }
textarea { min-height: 140px; resize: vertical; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--muted); }
.checkbox-row input { width: auto; margin-top: 5px; }
.form-note { font-size: .85rem; color: var(--muted); }
.honeypot { position: absolute !important; left: -9999px !important; }

.legal-content { max-width: 900px; }
.legal-content h2 { font-size: 1.7rem; margin-top: 38px; }
.legal-content h3 { font-size: 1.2rem; margin-top: 25px; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content ul { padding-left: 20px; }
.notice { border-left: 5px solid var(--red-600); background: var(--red-100); padding: 18px 20px; border-radius: 0 12px 12px 0; color: #722039; }

.site-footer { background: var(--navy-950); color: rgba(255,255,255,.72); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .85fr 1fr; gap: 46px; padding-bottom: 52px; }
.footer-brand img { width: 220px; height: auto; object-fit: contain; object-position: left; background: var(--white); border-radius: 12px; padding: 8px; margin-bottom: 18px; }
.footer-brand p { max-width: 420px; }
.footer-title { color: var(--white); font-weight: 850; font-size: 1rem; margin-bottom: 17px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: grid; gap: 12px; }
.footer-contact a { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: #ff8ca1; flex: 0 0 auto; margin-top: 3px; }
.sa-badge { border: 1px dashed rgba(255,255,255,.42); border-radius: 14px; padding: 15px; display: flex; align-items: center; gap: 12px; max-width: 235px; }
.sa-flag { width: 54px; height: 34px; border-radius: 5px; overflow: hidden; position: relative; background: linear-gradient(to bottom, #e03c31 0 33%, #fff 33% 39%, #007749 39% 61%, #fff 61% 67%, #001489 67% 100%); flex: 0 0 auto; }
.sa-flag::before { content: ""; position: absolute; left: 0; top: 0; border-top: 17px solid transparent; border-bottom: 17px solid transparent; border-left: 26px solid #ffb81c; }
.sa-flag::after { content: ""; position: absolute; left: 0; top: 5px; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 18px solid #000; }
.sa-badge strong { display: block; color: var(--white); line-height: 1.15; font-size: .9rem; }
.sa-badge small { color: rgba(255,255,255,.58); font-size: .72rem; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.11); padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; font-size: .83rem; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 18px; }
.compliance-bar { border-top: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.15); padding: 17px 0; font-size: .79rem; color: rgba(255,255,255,.55); }

.cookie-banner { position: fixed; z-index: 10000; left: 22px; right: 22px; bottom: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 25px 75px rgba(3,17,47,.25); padding: 18px 20px; display: none; align-items: center; justify-content: space-between; gap: 24px; max-width: 900px; margin-inline: auto; }
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .9rem; }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-actions .btn { padding: 10px 18px; font-size: .88rem; }

.call-fab { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--red-600); color: var(--white); box-shadow: 0 15px 36px rgba(215,25,63,.34); animation: pulse 2.6s infinite; }
.call-fab svg { width: 25px; height: 25px; }
@keyframes pulse { 0%,100% { box-shadow: 0 15px 36px rgba(215,25,63,.34), 0 0 0 0 rgba(215,25,63,.25); } 50% { box-shadow: 0 15px 36px rgba(215,25,63,.34), 0 0 0 13px rgba(215,25,63,0); } }
.mobile-quote-bar { display: none; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .nav-links { position: fixed; inset: 155px 20px auto 20px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-md); border-radius: 20px; padding: 18px; display: grid; gap: 0; transform: translateY(-20px); opacity: 0; visibility: hidden; transition: .25s ease; }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links > a { padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .nav-links > a::after { display: none; }
  .mobile-toggle { display: grid; }
  .header-actions .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .card-grid, .services-catalogue { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 800px) {
  .topbar .container { padding: 8px 0; align-items: flex-start; }
  .fsp-pill { display: none; }
  .topbar-links { gap: 10px 16px; }
  .brand img { width: 138px; height: auto; }
  .nav-wrap { min-height: 96px; }
  .nav-links { inset: 138px 14px auto 14px; }
  .section { padding: 72px 0; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 62px 0 90px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { min-height: 500px; max-width: 520px; width: 100%; margin-inline: auto; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .trust-item:last-child { border-bottom: 0; }
  .split-grid, .split-grid.reverse { grid-template-columns: 1fr; gap: 48px; }
  .image-stack { min-height: 460px; }
  .cta-panel { padding: 40px 28px; display: grid; }
  .cta-actions { flex: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 570px) {
  .container { width: min(100% - 26px, var(--container)); }
  .topbar { font-size: .76rem; }
  .topbar-links a:last-child { display: none; }
  h1 { font-size: 2.72rem; }
  .hero-grid { padding-top: 45px; }
  .hero-visual { min-height: 390px; }
  .hero-photo-shell { left: 24px; border-radius: 110px 110px 24px 24px; }
  .floating-card { padding: 12px 14px; max-width: 170px; }
  .floating-card.one { top: 38px; }
  .floating-card.two { right: -4px; bottom: 34px; }
  .floating-icon { width: 34px; height: 34px; margin-bottom: 6px; }
  .floating-card strong { font-size: .85rem; }
  .floating-card small { font-size: .7rem; }
  .trust-strip { margin-top: -46px; }
  .card-grid, .services-catalogue, .coverage-grid, .stats-grid, .service-list, .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .image-stack { min-height: 390px; }
  .image-stack .main-image { inset: 0 25px 80px 0; }
  .image-stack .accent-panel { width: 74%; min-height: auto; padding: 20px; }
  .form-card, .contact-card { padding: 25px 20px; }
  .page-hero { min-height: 350px; }
  .page-hero-content { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-legal { flex-direction: column; }
  .cookie-banner { left: 12px; right: 12px; bottom: 76px; display: none; align-items: stretch; flex-direction: column; }
  .cookie-banner.show { display: flex; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
  .call-fab { display: none; }
  .mobile-quote-bar { position: fixed; z-index: 950; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1.3fr; box-shadow: 0 -12px 30px rgba(3,17,47,.15); }
  .mobile-quote-bar a { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 15px 8px; font-weight: 850; }
  .mobile-quote-bar .call { background: var(--white); color: var(--navy-900); }
  .mobile-quote-bar .quote { background: var(--red-600); color: var(--white); }
  body { padding-bottom: 56px; }
}


/* WordPress integration */
.admin-bar .site-header { top: 32px; }
.nav-links .titus-menu { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links .titus-menu > li > a { position: relative; display: block; padding: 31px 0; }
.nav-links .titus-menu > li > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 24px; height: 3px; border-radius: 3px; background: var(--red-600); transition: right .25s ease; }
.nav-links .titus-menu > li > a:hover::after,
.nav-links .titus-menu > li.current-menu-item > a::after,
.nav-links .titus-menu > li.current_page_item > a::after { right: 0; }
.nav-links .titus-menu > li.current-menu-item > a,
.nav-links .titus-menu > li.current_page_item > a { color: var(--red-600); }
.form-alert { margin: 0 0 22px; padding: 16px 18px; border-radius: 12px; font-weight: 700; }
.form-alert.success { background: #eaf8ef; border: 1px solid #a7dfb8; color: #155d2d; }
.form-alert.error { background: #fff0f3; border: 1px solid #f0b0bf; color: #84253b; }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
.wp-site-blocks, .site-main { min-height: 40vh; }
.page-editor-content { padding: 60px 0; }
.page-editor-content .entry-content > * { max-width: 900px; margin-left: auto; margin-right: auto; }

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
@media (max-width: 1050px) {
  .nav-links .titus-menu { display: grid; gap: 0; width: 100%; }
  .nav-links .titus-menu > li > a { padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .nav-links .titus-menu > li:last-child > a { border-bottom: 0; }
  .nav-links .titus-menu > li > a::after { display: none; }
}

/* v1.3 logo replacement: exact July 2026 Titus Marketing eagle artwork. */
.brand img {
  width: 215px;
  max-height: 104px;
  object-fit: contain;
  object-position: left center;
}
.footer-brand img {
  width: 245px;
  max-height: 170px;
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 1050px) {
  .brand img { width: 180px; max-height: 92px; }
}
@media (max-width: 640px) {
  .brand img { width: 150px; max-height: 82px; }
}
