/* 2Protect Solutions — Static site styles */

:root {
  --color-primary: #0d3b66;
  --color-primary-dark: #082847;
  --color-accent: #e87722;
  --color-accent-hover: #cf6618;
  --color-bg: #f7f9fc;
  --color-bg-alt: #eef2f7;
  --color-white: #ffffff;
  --color-text: #1a2b3c;
  --color-text-muted: #5a6b7d;
  --color-border: #dde4ec;
  --color-success: #1a7f4b;
  --color-alert: #c0392b;
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-heading: "Segoe UI", system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(13, 59, 102, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 59, 102, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --max-width: 1140px;
  --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-accent); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  margin: 0 0 0.75rem;
  color: var(--color-primary-dark);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }

ul { margin: 0 0 1rem; padding-left: 1.25rem; }

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Top bar */
.top-bar {
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  text-align: center;
}

.top-bar a { color: var(--color-white); font-weight: 600; }
.top-bar a:hover { color: var(--color-accent); }

/* Announcement bar */
.announcement-bar {
  background: #edf2f7;
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-bar p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  line-height: 1.55;
  color: var(--color-text);
  text-align: center;
  max-width: 920px;
}

.announcement-line1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.announcement-line2 {
  display: block;
}

.announcement-logo {
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.logo img { height: 48px; width: auto; }

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img { height: 48px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 1.5rem; }

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg);
}

.lang-switcher a,
.lang-switcher span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8rem;
  color: var(--color-primary);
}

.lang-switcher a:hover { color: var(--color-accent); }

.lang-switcher .active {
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  margin: 5px 0;
  transition: 0.3s;
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

.btn.btn-sm.header-cta {
  padding: 0.55rem 1rem;
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(13, 59, 102, 0.92), rgba(8, 40, 71, 0.88)),
    url("../assets/images/hero-bg.png") center/cover no-repeat;
  color: var(--color-white);
  padding: 4rem 0 5rem;
}

.hero .eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.hero h1 { color: var(--color-white); margin-bottom: 1rem; }

.hero .lead {
  font-size: 1.125rem;
  opacity: 0.95;
  max-width: 640px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.pillar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.pillar img { width: 56px; height: 56px; margin: 0 auto 0.75rem; object-fit: contain; }

.pillar h3 { color: var(--color-white); font-size: 1rem; margin-bottom: 0.35rem; }

.pillar p { font-size: 0.85rem; opacity: 0.85; margin: 0; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  padding: 3rem 0;
}

.page-hero h1 { color: var(--color-white); }

.page-hero .lead { opacity: 0.92; max-width: 680px; font-size: 1.1rem; }

.page-hero--compact { padding: 2.75rem 0; }

.legal-updated {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.legal-section { padding: 3rem 0 4rem; }

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p,
.legal-content li {
  line-height: 1.7;
  color: var(--color-text);
}

.legal-content ul {
  margin: 0.75rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-content a { color: var(--color-primary); }

.page-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { color: var(--color-accent); }

/* Sections */
section { padding: 4rem 0; }

section.bg-alt { background: var(--color-bg); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.section-header p { color: var(--color-text-muted); margin-bottom: 0; }

/* Trust strip */
.trust-strip {
  background: var(--color-bg-alt);
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  color: var(--color-primary);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.trust-item span { font-size: 0.85rem; color: var(--color-text-muted); }

.trust-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust-brands img { max-height: 40px; width: auto; opacity: 0.9; }

/* Forms */
.form-section { padding: 4rem 0; }

.form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  max-width: 560px;
  margin-inline: auto;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.1);
}

textarea { min-height: 120px; resize: vertical; }

.form-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  text-align: center;
}

.form-success {
  display: none;
  background: #e8f5ee;
  color: var(--color-success);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 1rem;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card h3 { margin-bottom: 0.5rem; }

.card p { color: var(--color-text-muted); flex: 1; }

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--color-bg);
  color: var(--color-primary);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

/* USP columns */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.usp-item {
  text-align: center;
  padding: 1.5rem;
}

.usp-icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
}

.step-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Service detail blocks */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.alert-box {
  background: #fdf0ee;
  border-left: 4px solid var(--color-alert);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.alert-box strong { color: var(--color-alert); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.check-list li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

/* Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.data-table th,
.data-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  text-align: left;
}

.data-table th {
  background: var(--color-primary);
  color: var(--color-white);
}

.data-table tr:nth-child(even) { background: var(--color-bg); }

/* FAQ */
.faq-list { max-width: 760px; margin-inline: auto; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--color-white);
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-question:hover { background: var(--color-bg); }

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-accent);
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  color: var(--color-text-muted);
}

.faq-item.open .faq-answer { display: block; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  padding: 3.5rem 0;
  text-align: center;
}

.cta-band h2 { color: var(--color-white); margin-bottom: 0.75rem; }

.cta-band p { opacity: 0.92; max-width: 560px; margin: 0 auto 1.5rem; }

.cta-band .btn-primary { margin: 0 0.5rem; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-info-block h3 { margin-top: 1.5rem; }
.contact-info-block h3:first-child { margin-top: 0; }

.contact-info-block a { font-weight: 600; }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.social-links a:hover { background: var(--color-accent); color: var(--color-white); }

.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background: var(--color-bg-alt);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: 420px;
  padding: 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.map-consent__text {
  max-width: 36rem;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.map-consent__btn { min-width: 12rem; }

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-embed-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.map-embed-footer a {
  font-weight: 600;
  white-space: nowrap;
}

/* Footer */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li { margin-bottom: 0.5rem; }

.site-footer a { color: rgba(255, 255, 255, 0.8); }
.site-footer a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom > p:first-child {
  margin: 0;
  opacity: 0.7;
}

.footer-credit {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.pricing-card.featured {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  margin: 1rem 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 1.5rem 0;
}

.pricing-card li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

/* Sticky mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}

.mobile-cta .container {
  display: flex;
  gap: 0.75rem;
}

.mobile-cta .btn { flex: 1; padding: 0.65rem; font-size: 0.85rem; }

/* Responsive — tablet & mobile */
@media (max-width: 1024px) {
  .split-section,
  .contact-grid,
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-section.reverse { direction: ltr; }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  section { padding: 3.5rem 0; }

  .page-hero { padding: 2.5rem 0; }

  .form-card { padding: 1.5rem; }
}

@media (max-width: 992px) {
  :root { --header-height: 64px; }

  .site-header.menu-open {
    z-index: 1000;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    margin-left: auto;
    min-width: 44px;
    min-height: 44px;
    position: relative;
  }

  .header-inner {
    flex-wrap: wrap;
    position: relative;
  }

  .logo img { height: 42px; }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    bottom: auto;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1.25rem;
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    z-index: 1001;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }

  .main-nav li { width: 100%; }

  .main-nav a {
    display: block;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--color-border);
    border-left: none;
    border-right: none;
    border-top: none;
    min-height: 44px;
  }

  .main-nav a.active {
    border-bottom-color: var(--color-border);
    background: var(--color-bg);
  }

  .main-nav .lang-switcher {
    align-self: center;
    margin: 1rem 0 0.75rem;
  }

  .main-nav .header-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    min-height: 44px;
  }

  .mobile-cta { display: block; }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  body.menu-open { overflow: hidden; }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: var(--header-height) 0 0 0;
    background: rgba(8, 40, 71, 0.35);
    z-index: 1000;
  }

  body.menu-open .nav-overlay { display: block; }

  .hero-actions,
  .page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .page-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-band .btn {
    display: flex;
    width: min(100%, 320px);
    margin: 0.35rem auto !important;
    justify-content: center;
  }

  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
  }

  .table-wrap .data-table {
    margin: 0;
    min-width: 520px;
    font-size: 0.875rem;
  }

  .map-embed iframe,
  .map-frame iframe { height: 320px; }

  .map-consent { min-height: 320px; }

  .map-embed-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-embed-footer a { white-space: normal; }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .top-bar {
    font-size: 0.8rem;
    padding: 0.45rem 0;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 0.35rem;
  }

  .top-bar span {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .hero {
    padding: 2.5rem 0 3rem;
  }

  .hero .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-pillars {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .cards-grid,
  .process-grid,
  .pricing-grid,
  .usp-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-brands img {
    max-height: 32px;
  }

  section { padding: 2.75rem 0; }

  .section-header { margin-bottom: 2rem; }

  .form-section { padding: 2.75rem 0; }

  .form-card {
    padding: 1.25rem;
    border-radius: var(--radius);
  }

  .cta-band { padding: 2.5rem 0; }

  .contact-info-block { padding: 1.5rem; }

  .contact-grid { gap: 2rem; }

  .card { padding: 1.35rem; }

  .usp-item { padding: 1rem; }

  .step { padding: 1.25rem; }

  .pricing-card { padding: 1.5rem; }

  .faq-question {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    gap: 0.75rem;
    text-align: left;
  }

  .site-footer { padding: 2.5rem 0 1.25rem; }

  .footer-grid { gap: 1.5rem; }

  .breadcrumb {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1rem, var(--max-width));
  }

  .logo img { height: 38px; }

  .top-bar span { display: none; }

  .hero h1 { font-size: 1.55rem; }

  .page-hero h1 { font-size: 1.5rem; }

  .btn {
    padding: 0.7rem 1.15rem;
    font-size: 0.9rem;
  }

  .mobile-cta .btn {
    font-size: 0.8rem;
    padding: 0.6rem 0.5rem;
  }

  .map-embed iframe,
  .map-frame iframe { height: 260px; }

  .map-consent { min-height: 260px; }

  .form-card h2 {
    font-size: 1.25rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero .lead { max-width: none; }
}
