/* ============================================================
   LOCKPOINT — Main CSS
   Design System, Variables, Typography, Global
   ============================================================ */

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
  --blue:        #004e9e;
  --blue-dark:   #003878;
  --blue-light:  #1a6bc4;
  --blue-pale:   #e8f0fb;
  --blue-xpale:  #f4f7fd;
  --white:       #ffffff;
  --off-white:   #f9fafb;
  --ink:         #0d1b2a;
  --ink-2:       #1f2d3d;
  --text:        #334155;
  --text-light:  #64748b;
  --border:      #e2e8f0;
  --border-strong: #cbd5e1;
  --success:     #16a34a;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:      0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.10), 0 6px 16px rgba(0,0,0,.06);
  --shadow-blue: 0 8px 32px rgba(0,78,158,.20);
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --font-display: 'Roboto', sans-serif;
  --font-body:    'Roboto', sans-serif;
  --transition:  .22s cubic-bezier(.4,0,.2,1);
  --transition-slow: .4s cubic-bezier(.4,0,.2,1);
  --max-w:       1200px;
  --nav-h:       72px;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); letter-spacing: -.02em; }
h4 { font-size: 1.15rem; letter-spacing: -.01em; }

p { color: var(--text); line-height: 1.7; }

.text-sm   { font-size: .875rem; }
.text-xs   { font-size: .75rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-muted { color: var(--text-light); }
.text-blue  { color: var(--blue); }
.text-white { color: var(--white); }
.font-display { font-family: var(--font-display); }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }
.fw-500 { font-weight: 500; }

/* ─── Layout Utilities ──────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 960px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -.01em;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
  background: rgba(255,255,255,.12);
}

.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 12px 40px rgba(0,78,158,.30);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-secondary:hover {
  background: var(--blue-pale);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  background: var(--blue-xpale);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

.btn-call {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-call svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── Section Headers ───────────────────────────────────── */
.section-header {
  margin-bottom: 64px;
}

.section-header.centered { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 600px; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ─── Cards ─────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-blue {
  background: var(--blue);
  color: var(--white);
  border-color: transparent;
}

.card-pale {
  background: var(--blue-xpale);
  border-color: transparent;
}

/* ─── Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: .03em;
}

.badge-blue { background: var(--blue-pale); color: var(--blue); }
.badge-white { background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.badge-green { background: #dcfce7; color: #15803d; }

/* ─── Divider ────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ─── Icon box ───────────────────────────────────────────── */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.icon-box svg { width: 26px; height: 26px; }

.icon-box-lg {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
}

.icon-box-lg svg { width: 32px; height: 32px; }

/* ─── Backgrounds ────────────────────────────────────────── */
.bg-white { background: var(--white); }
.bg-pale  { background: var(--blue-xpale); }
.bg-blue  { background: var(--blue); }
.bg-ink   { background: var(--ink); }

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.04em;
  flex-shrink: 0;
}

.nav-logo span { color: var(--blue); }
.nav-logo-img { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: -.01em;
}

.nav-link:hover {
  color: var(--blue);
  background: var(--blue-pale);
}

.nav-link.active { color: var(--blue); font-weight: 600; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
}

.lang-btn {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text-light);
  padding: 5px 10px;
  border-radius: 6px;
  transition: var(--transition);
  text-transform: uppercase;
}

.lang-btn.active {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.lang-btn:hover:not(.active) { color: var(--text); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger:hover { background: var(--blue-pale); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }

.nav-mobile-link {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-mobile-link:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .08;
  background: var(--blue);
}

.hero-bg-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.hero-bg-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  opacity: .05;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,78,158,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,78,158,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {}

.hero-badge-wrap { margin-bottom: 24px; }

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--blue);
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .87rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--ink-2);
  transition: var(--transition);
}

.hero-trust-item:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
  color: var(--blue);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-visual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.hero-visual-icon {
  width: 140px;
  height: 140px;
  color: var(--blue);
  opacity: .25;
}
.hero-visual-logo { width: 270px; height: auto; display: block; }

.hero-floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-floating-badge-1 {
  bottom: 24px;
  left: -24px;
}

.hero-floating-badge-2 {
  top: 24px;
  right: -24px;
}

.hero-floating-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(22,163,74,.2);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

.hero-floating-badge .label {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.hero-floating-badge .sub {
  font-size: .73rem;
  color: var(--text-light);
}

/* ─── Service Zigzag ─────────────────────────────────────── */
.services-zigzag {}

.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.zigzag-item:last-child { border-bottom: none; }
.zigzag-item.reverse .zigzag-visual { order: -1; }

.zigzag-content {}

.zigzag-label {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.zigzag-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
}

.zigzag-title { margin-bottom: 18px; }
.zigzag-text { margin-bottom: 24px; color: var(--text-light); font-size: 1.05rem; line-height: 1.75; }

.zigzag-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.zigzag-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-2);
}

.zigzag-feature::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.zigzag-visual {
  position: relative;
}

.zigzag-visual-inner {
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--blue-xpale) 0%, var(--blue-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.zigzag-visual-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0,78,158,.06) 100%);
}

.zigzag-icon {
  width: 100px;
  height: 100px;
  color: var(--blue);
  opacity: .2;
}

.zigzag-visual-badge {
  position: absolute;
  top: 20px;
  right: -16px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  box-shadow: var(--shadow-blue);
}

/* ─── Trust Grid ─────────────────────────────────────────── */
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.trust-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-pale), var(--shadow);
}

.trust-card h4 { margin: 14px 0 8px; }
.trust-card p { font-size: .9rem; color: var(--text-light); }

/* ─── Area Section ───────────────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.area-card {
  background: var(--blue-xpale);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.area-card:hover { box-shadow: var(--shadow-lg); border-color: var(--blue); }

.area-card h3 { margin: 16px 0 12px; }
.area-card p { color: var(--text-light); margin-bottom: 24px; }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  font-size: .8rem;
  font-weight: 500;
  padding: 4px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  transition: var(--transition);
  text-decoration: none;
}

.area-tag:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ─── CTA Block ──────────────────────────────────────────── */
.cta-block {
  background: var(--blue);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-block::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.cta-block::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -150px;
  left: -50px;
  pointer-events: none;
}

.cta-block h2 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-block p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-block-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-or {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  transition: var(--transition);
  background: none;
  cursor: pointer;
}

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

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform var(--transition);
}

.faq-item.open .faq-question { color: var(--blue); }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--blue); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s ease;
}

.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--text-light);
  line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 500px; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 72px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}

.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-logo span { color: var(--blue-light); }
.footer-logo-img { height: 28px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 24px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}

.footer-contact-item svg { width: 16px; height: 16px; color: var(--blue-light); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.85); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  display: block;
  width: 100%;
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  padding: 2px 0;
  text-align: left;
  background: none;
  border: none;
}

.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-legal-links { display: flex; gap: 16px; }
.footer-legal-link {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  transition: var(--transition);
  cursor: pointer;
}

.footer-legal-link:hover { color: rgba(255,255,255,.75); }

/* ─── Mobile Sticky Call ─────────────────────────────────── */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 990;
  background: var(--blue);
  color: var(--white);
  border-radius: 100px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 32px rgba(0,78,158,.4);
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  white-space: nowrap;
  animation: slide-up-sticky .5s cubic-bezier(.34,1.56,.64,1) forwards;
}

.sticky-call:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 12px 40px rgba(0,78,158,.5); }
.sticky-call svg { width: 20px; height: 20px; }

/* ─── Cookie Consent ─────────────────────────────────────── */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.cookie-overlay.visible { opacity: 1; pointer-events: all; }

.cookie-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(480px, calc(100vw - 48px));
  max-width: 480px;
  z-index: 9999;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,.15), 0 8px 24px rgba(0,0,0,.08);
  border: 1px solid var(--border);
  transform: translate(-50%, calc(-50% + 24px));
  opacity: 0;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .4s ease;
}

.cookie-banner.visible {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.cookie-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.cookie-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.cookie-icon svg { width: 20px; height: 20px; }

.cookie-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  flex: 1;
  padding-top: 8px;
}

.cookie-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
  flex-shrink: 0;
}

.cookie-close:hover { background: var(--off-white); color: var(--ink); }
.cookie-close svg { width: 16px; height: 16px; }

.cookie-text { font-size: .87rem; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }

.cookie-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-btn-row { display: flex; gap: 8px; }

.cookie-btn {
  flex: 1;
  padding: 11px 16px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

.cookie-btn-accept {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.cookie-btn-accept:hover { background: var(--blue-light); }

.cookie-btn-reject {
  background: var(--off-white);
  color: var(--text);
  border: 1px solid var(--border);
}

.cookie-btn-reject:hover { background: var(--border); }

.cookie-detail {
  display: block;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-category:last-child { border-bottom: none; }

.cookie-cat-info h6 {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.cookie-cat-info p { font-size: .78rem; color: var(--text-light); }

.cookie-always-on {
  font-size: .72rem;
  font-weight: 600;
  color: var(--success);
  font-family: var(--font-display);
  white-space: nowrap;
  padding-top: 2px;
}

/* Toggle switch */
.toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.toggle input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-strong);
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.toggle input:checked + .toggle-slider { background: var(--blue); }
.toggle input:checked + .toggle-slider::before { transform: translateX(18px); }

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 72px;
  background: var(--blue-xpale);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  right: -200px;
  top: -200px;
  border-radius: 50%;
  background: rgba(0,78,158,.04);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--text-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--border-strong); }

/* ─── Service page ───────────────────────────────────────── */
.service-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-pale);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.05em;
}

.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: .9rem; color: var(--text-light); }

/* ─── Pricing ────────────────────────────────────────────── */
.pricing-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row.header {
  background: var(--blue);
  color: var(--white);
}

.pricing-row:not(.header):hover { background: var(--blue-xpale); }

.pricing-cell {
  padding: 16px 24px;
  font-size: .92rem;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
}

.pricing-row.header .pricing-cell { border-color: rgba(255,255,255,.15); }
.pricing-cell:last-child { border-right: none; }

.pricing-cell.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
}

.pricing-row.header .pricing-cell.price { color: var(--white); }

/* ─── Location page ──────────────────────────────────────── */
.location-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.location-service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: var(--transition);
  background: var(--white);
}

.location-service-card:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.location-service-card .icon-box { flex-shrink: 0; }

.location-service-card h4 {
  font-size: .95rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.location-service-card p {
  font-size: .82rem;
  color: var(--text-light);
}

/* ─── 404 ────────────────────────────────────────────────── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.error-number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 800;
  color: var(--blue-pale);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 0;
  position: relative;
}

.error-number::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
}

/* ─── GDPR ───────────────────────────────────────────────── */
.gdpr-content h2 { margin: 48px 0 16px; font-size: 1.4rem; }
.gdpr-content h3 { margin: 32px 0 12px; font-size: 1.1rem; color: var(--ink-2); }
.gdpr-content p { margin-bottom: 16px; color: var(--text); line-height: 1.75; }
.gdpr-content ul { margin: 12px 0 20px 20px; display: flex; flex-direction: column; gap: 6px; }
.gdpr-content li { list-style: disc; color: var(--text); font-size: .95rem; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-visual-icon { width: 100px; height: 100px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .zigzag-item { grid-template-columns: 1fr; gap: 40px; }
  .zigzag-item.reverse .zigzag-visual { order: 0; }
  .area-grid { grid-template-columns: 1fr; }
  .service-process { grid-template-columns: 1fr; }
  .location-services { grid-template-columns: 1fr; }
  .pricing-row { grid-template-columns: 1.5fr 1fr; }
  .pricing-cell:last-child { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }
  .sticky-call { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-block { padding: 40px 24px; }
  .hero-trust { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 64px; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-lg { padding: 15px 26px; font-size: 1rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .cookie-banner { width: calc(100vw - 24px); padding: 22px; }
  .cta-block-btns { flex-direction: column; }
  .cta-block-btns .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── PAGE HERO ─────────────────────────────────────────────────────────── */
.page-hero {
  padding: 7rem 0 4rem;
  background: linear-gradient(135deg, var(--dark) 0%, #0a1628 100%);
  color: #fff;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.page-hero-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.page-hero--small { padding: 5rem 0 3rem; }

/* ─── LOCATION BADGE ────────────────────────────────────────────────────── */
.location-badge {
  display: none;
  background: rgba(232,240,251,0.9);
  border: 1px solid rgba(0,78,158,0.2);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  color: var(--blue);
}

.page-hero .location-badge + h1,
.page-hero .location-badge + h1 + .page-hero-sub {
  color: var(--blue);
}

/* ─── INTRO TEXT ────────────────────────────────────────────────────────── */
.intro-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: center;
}
.container-narrow { max-width: 720px; }

/* ─── STEPS GRID ────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.step-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}
.step-card:hover { box-shadow: var(--shadow-lg); }
.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}
.step-card h3 { margin-bottom: 0.35rem; font-size: 1rem; }
.step-card p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }

/* ─── PRICING ───────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,78,158,0.15);
}
.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
.pricing-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.pricing-icon { font-size: 1.75rem; }
.pricing-header h2 { font-size: 1.15rem; margin: 0; }
.pricing-rows { display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.925rem;
  gap: 1rem;
}
.pricing-row:last-child { border-bottom: none; padding-bottom: 0; }
.price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  font-size: 0.95rem;
}
.pricing-note {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  margin-top: 2.5rem;
}
.pricing-note h3 { margin-bottom: 0.75rem; }
.pricing-note p { color: var(--text-secondary); line-height: 1.7; margin: 0; }

/* ─── CONTACT ───────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1.5fr;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 480px) { .contact-info { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}
.contact-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.contact-card h3 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary); margin-bottom: 0.35rem; }
.contact-value { display: block; font-weight: 600; font-size: 0.95rem; color: var(--accent); margin-bottom: 0.25rem; }
.contact-card p { font-size: 0.825rem; color: var(--text-secondary); margin: 0; }
.contact-form-wrap h2 { margin-bottom: 0.75rem; }
.contact-form { margin-top: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; font-size: 0.875rem; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; }

/* ─── GDPR PROSE ────────────────────────────────────────────────────────── */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.35rem; margin: 2rem 0 0.75rem; color: var(--text); }
.prose p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { color: var(--text-secondary); line-height: 1.8; margin-bottom: 0.35rem; }
.prose a { color: var(--accent); }

/* ─── 404 ───────────────────────────────────────────────────────────────── */
.not-found-num {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 20vw, 10rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

/* ─── SERVICES LIST GRID (location pages) ───────────────────────────────── */
.services-list-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-list-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s;
}
.service-list-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-list-card > span { font-size: 2rem; flex-shrink: 0; }
.service-list-card h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.service-list-card p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }

/* City/location pages: center the services block and give CTA breathing room */
.page-hero + .section.section-alt + .section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.page-hero + .section.section-alt + .section .services-list-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero + .section.section-alt + .section .service-list-card {
  flex: 0 1 280px;
}

.page-hero + .section.section-alt + .section + .cta-section {
  padding: 0 0 64px;
}

.page-hero + .section.section-alt + .section + .cta-section .cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.page-hero + .section.section-alt + .section + .cta-section .cta-inner h2 {
  margin-bottom: 20px;
}

.page-hero + .section.section-alt + .section + .cta-section .cta-inner p {
  margin: 0 auto 24px;
}

/* ─── SECTION ALT ───────────────────────────────────────────────────────── */
.section-alt { background: var(--bg-light); }
