/* ============================================================
   MEYER CRIMINAL LAW — Final Stylesheet
   - No italic anywhere
   - Larger icons (88px boxes, 44px SVG)
   - Reduced padding throughout
   - Footer aligned on all pages
   - Tighter footer spacing
   ============================================================ */

:root {
  --navy:         #0E2D6E;
  --royal:        #2E63A9;
  --skyblue:      #BCDAF2;
  --skyblue-bg:   #EAF4FD;
  --orange:       #E8610A;
  --orange-dark:  #C4520A;
  --orange-light: #FDF0E8;
  --bg:           #FFFFFF;
  --bg-grey:      #F4F6FA;
  --bg-mid:       #E8EDF5;
  --border:       #D8E2EE;
  --border-navy:  rgba(14,45,110,0.15);
  --text:         #1A1A2A;
  --text-mid:     #3D4C66;
  --text-muted:   #5A6B88;
  --text-light:   rgba(255,255,255,0.75);
  --white:        #FFFFFF;
  --dark-1:       #0A1929;
  --dark-2:       #0D2137;
  --surface:      rgba(255,255,255,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  font-style: normal;
}
h1 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 600; }
p  { line-height: 1.8; color: var(--text-mid); font-weight: 400; font-style: normal; }
em { font-style: normal; font-weight: 700; color: var(--royal); }

a { color: var(--royal); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--navy); }

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 4rem;
}

/* ─── NAVIGATION ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(14,45,110,0.06);
}

.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; z-index: 1001; }
.nav-logo-img { height: 100px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0 1.5rem;
  position: relative;
  z-index: 999;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: var(--text-mid);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
  transition: all 0.2s;
  display: block;
  cursor: pointer;
}
.nav-links > li > a:hover { color: var(--navy); background: var(--bg-grey); }
.nav-links > li > a.active { color: var(--navy); font-weight: 700; }

.nav-links li.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  margin-left: 0.25rem;
  display: inline-block;
  transition: transform 0.2s;
}
.nav-links li.has-dropdown:hover > a::after { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(14,45,110,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  margin-top: 0.5rem;
  z-index: 1002;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-mid);
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
  font-weight: 400;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--bg-grey); color: var(--navy); padding-left: 1.5rem; }

.nav-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; z-index: 1001; }

.lang-switcher { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.lang-btn {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  padding: 0.4rem 0.65rem; transition: all 0.2s;
  border-right: 1px solid var(--border);
}
.lang-btn:last-child { border-right: none; }
.lang-btn:hover { background: var(--bg-grey); color: var(--navy); }
.lang-btn.active { background: var(--navy); color: var(--white); }
.lang-btn .flag { font-size: 0.95rem; }

.btn-notfall-nav {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: var(--white) !important;
  padding: 0.7rem 1.4rem; font-size: 0.84rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 3px; text-decoration: none;
  transition: background 0.25s, transform 0.15s;
  white-space: nowrap;
}
.btn-notfall-nav:hover { background: var(--orange-dark); transform: translateY(-1px); color: var(--white) !important; }
.btn-notfall-nav svg { width: 16px; height: 16px; fill: white; flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-mid); transition: all 0.3s; border-radius: 1px; }

.mobile-menu {
  display: none;
  position: fixed; top: 106px; left: 0; right: 0;
  background: var(--white); border-bottom: 2px solid var(--navy);
  padding: 1.25rem 1.5rem; z-index: 998;
  flex-direction: column; gap: 0;
  box-shadow: 0 8px 24px rgba(14,45,110,0.12);
  max-height: calc(100vh - 106px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-mid); font-size: 0.88rem;
  padding: 0.8rem 0; border-bottom: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.mobile-menu a:hover { color: var(--navy); }
.mobile-menu .btn-notfall-nav { margin-top: 1rem; justify-content: center; padding: 0.9rem; font-size: 0.9rem; border-radius: 4px; }

.sticky-call {
  display: none;
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 998;
  background: var(--orange); color: var(--white);
  width: 58px; height: 58px; border-radius: 50%;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(232,97,10,0.45);
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.sticky-call:hover { transform: scale(1.08); background: var(--orange-dark); color: var(--white); }
.sticky-call svg { width: 24px; height: 24px; fill: white; }

/* ─── HERO (50% less spacing) ─── */
.hero {
  min-height: auto;
  display: flex; align-items: center;
  padding: 6.6rem 0 3.45rem;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #162B60 55%, #1A3A7A 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(188,218,242,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 85%, rgba(46,99,169,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; width: 100%; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--skyblue); font-weight: 500;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--royal); }

.hero h1 {
  color: var(--white); max-width: 800px; margin-bottom: 0.75rem;
  letter-spacing: -0.01em; font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 700;
}

.hero-sub {
  max-width: 540px;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem; margin-bottom: 1.25rem; line-height: 1.85;
  font-weight: 400;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.75rem; }

.hero-meta {
  display: flex; gap: 0; padding-top: 1.25rem;
  border-top: 1px solid rgba(188,218,242,0.18);
}
.hero-meta-item {
  padding-right: 2.5rem; margin-right: 2.5rem;
  border-right: 1px solid rgba(188,218,242,0.14);
}
.hero-meta-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-meta-item .num { font-size: 2.2rem; color: var(--white); line-height: 1; margin-bottom: 0.3rem; font-weight: 700; }
.hero-meta-item .label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); font-weight: 400; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--orange); color: var(--white);
  padding: 0.95rem 2.3rem; font-size: 0.84rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; border-radius: 3px; cursor: pointer; text-decoration: none;
  transition: background 0.25s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); color: var(--white); }
.btn-primary svg { width: 16px; height: 16px; fill: white; }

.btn-call {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: var(--orange); color: var(--white);
  padding: 0.95rem 2.3rem; font-size: 0.98rem; font-weight: 700;
  letter-spacing: 0.04em; border-radius: 3px; text-decoration: none;
  transition: background 0.25s, transform 0.15s;
}
.btn-call:hover { background: var(--orange-dark); transform: translateY(-2px); color: var(--white); }
.btn-call svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: rgba(255,255,255,0.9);
  padding: 0.95rem 2.1rem; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 3px;
  text-decoration: none; transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--skyblue); color: var(--white); background: rgba(188,218,242,0.08); }

.btn-secondary-light {
  color: var(--navy); border-color: var(--border-navy);
}
.btn-secondary-light:hover { background: var(--bg-grey); border-color: var(--royal); color: var(--navy); }

.btn-text {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--royal); font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  transition: gap 0.2s, color 0.2s; font-weight: 500;
}
.btn-text::after { content: '→'; }
.btn-text:hover { gap: 0.8rem; color: var(--navy); }

/* ─── SECTIONS ─── */
.section { padding: 5rem 0; position: relative; z-index: 1; }
.section-white { background: var(--white); }
.section-grey  { background: var(--bg-grey); }
.section-dark  { background: var(--dark-1); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-navy  { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }

.section-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--royal); margin-bottom: 0.75rem; font-weight: 700; }
.section-title { margin-bottom: 1.25rem; }
.section-intro { max-width: 580px; color: var(--text-muted); margin-bottom: 3rem; font-size: 0.98rem; font-weight: 400; }
.section-header-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap; }

/* ─── AREAS GRID (icons 100% larger: 88px box, 44px SVG) ─── */
.areas-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.area-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--navy), var(--royal));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.area-card:hover { border-color: rgba(46,99,169,0.4); box-shadow: 0 6px 28px rgba(14,45,110,0.1); transform: translateY(-3px); }
.area-card:hover::before { transform: scaleX(1); }

.area-icon {
  width: 88px; height: 88px;
  background: var(--skyblue-bg); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; flex-shrink: 0;
}
.area-icon svg { width: 44px; height: 44px; fill: var(--navy); }

.area-title { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.6rem; font-weight: 700; }
.area-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; flex-grow: 1; font-weight: 400; }
.area-more { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--royal); display: flex; align-items: center; gap: 0.4rem; font-weight: 700; margin-top: auto; }
.area-more::after { content: '→'; transition: transform 0.2s; }
.area-card:hover .area-more::after { transform: translateX(4px); }

/* ─── NOTFALL BOX (30% less padding, 30% larger phone + text) ─── */
.notfall-box {
  background: var(--orange-light);
  border: 1px solid rgba(232,97,10,0.22);
  border-left: 4px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.notfall-box h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 0.35rem; font-weight: 700; }
.notfall-box p { color: var(--text-mid); font-size: 0.9rem; max-width: 480px; font-weight: 400; }
.notfall-badge { display: inline-block; background: var(--orange); color: var(--white); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.2rem 0.7rem; border-radius: 2px; margin-bottom: 0.5rem; font-weight: 700; }

.notfall-box .btn-primary {
  font-size: 1.09rem;
  padding: 1.05rem 2.5rem;
}
.notfall-box .btn-primary svg {
  width: 21px;
  height: 21px;
}

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden; margin-top: 2.5rem;
}
.stat-box { background: var(--white); padding: 1.75rem; }
.stat-box .num { font-size: 2.4rem; color: var(--navy); line-height: 1; margin-bottom: 0.4rem; font-weight: 700; }
.stat-box .label { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }

.bverfg-badge {
  background: var(--skyblue-bg);
  border: 1px solid rgba(46,99,169,0.18);
  border-left: 3px solid var(--royal);
  padding: 1.5rem 2rem; margin-top: 2rem;
  border-radius: 0 6px 6px 0;
}
.bverfg-badge .badge-label { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--royal); margin-bottom: 0.4rem; font-weight: 700; }
.bverfg-badge .badge-text { font-size: 1.05rem; color: var(--navy); font-weight: 600; }
.bverfg-badge .badge-sub { font-size: 0.82rem; color: var(--text-mid); margin-top: 0.3rem; font-weight: 400; }

.memberships { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.5rem; }
.membership-tag { background: var(--bg-grey); border: 1px solid var(--border); color: var(--text-mid); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0.85rem; border-radius: 3px; font-weight: 500; }

/* ─── CONTACT FORM & MAP ─── */
.contact-map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 2.5rem; box-shadow: 0 2px 16px rgba(14,45,110,0.06); }
.contact-form h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1.5rem; font-weight: 700; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-mid); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem; font-size: 0.92rem; font-family: 'Lato', sans-serif;
  border: 1px solid var(--border); border-radius: 4px; transition: all 0.2s;
  color: var(--text); background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px rgba(46,99,169,0.1); }
.form-group textarea { resize: vertical; min-height: 140px; }

.map-box { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 2rem; box-shadow: 0 2px 16px rgba(14,45,110,0.06); }
.map-box h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1.25rem; font-weight: 700; }
.map-box iframe { width: 100%; height: 400px; border: none; border-radius: 4px; }

/* ─── SIDEBAR CTA (50% larger text, 50% less padding) ─── */
.sidebar-cta {
  background: var(--orange-light);
  border: 1px solid rgba(232,97,10,0.22);
  border-left: 4px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.sidebar-cta .notfall-badge {
  font-size: 0.55rem;
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.35rem;
}
.sidebar-cta h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.sidebar-cta p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.sidebar-cta .btn-call {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 0.8rem 1.5rem;
}
.sidebar-cta .btn-secondary-light {
  width: 100%;
  text-align: center;
  display: block;
  padding: 0.75rem;
  font-size: 0.78rem;
  margin-top: 0.5rem;
}

.sidebar-links {
  background: var(--bg-grey);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
}
.sidebar-links .section-label { margin-bottom: 0.75rem; }
.sidebar-links ul { list-style: none; }
.sidebar-links ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-links ul li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-links .btn-text { font-size: 0.78rem; }

/* ─── PAGE HERO ─── */
.page-hero { padding: 8.5rem 0 3.5rem; background: linear-gradient(135deg, var(--navy) 0%, #1A3A7A 100%); }
.page-hero .container { padding-top: 1.25rem; }
.page-hero .breadcrumb { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumb a:hover { color: var(--skyblue); }
.page-hero h1 { color: var(--white); }
.page-hero .section-label { color: var(--skyblue); }

/* ─── CONTENT ─── */
.content-body { max-width: 800px; }
.content-body h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--navy); font-weight: 700; }
.content-body h3 { font-size: 1.1rem; margin-top: 1.75rem; margin-bottom: 0.75rem; color: var(--royal); font-weight: 600; }
.content-body p { color: var(--text-mid); margin-bottom: 1rem; font-size: 0.96rem; font-weight: 400; }
.content-body ul { list-style: none; margin-bottom: 1.25rem; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.content-body ul li { color: var(--text-mid); font-size: 0.93rem; padding: 0.7rem 1rem 0.7rem 2.2rem; position: relative; border-bottom: 1px solid var(--border); background: var(--white); font-weight: 400; }
.content-body ul li:last-child { border-bottom: none; }
.content-body ul li::before { content: '›'; position: absolute; left: 0.9rem; color: var(--royal); font-size: 1.1rem; font-weight: 700; }

.content-with-sidebar { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }

/* ─── LEGAL ─── */
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.2rem; margin-top: 2.5rem; margin-bottom: 0.9rem; color: var(--navy); border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; font-weight: 700; }
.legal-content h3 { font-size: 1rem; margin-top: 1.5rem; margin-bottom: 0.6rem; color: var(--royal); font-weight: 600; }
.legal-content p { font-size: 0.89rem; color: var(--text-mid); margin-bottom: 0.75rem; line-height: 1.85; font-weight: 400; }
.legal-content a { color: var(--royal); }
.legal-content ul { list-style: disc; margin: 0.75rem 0 1rem 1.5rem; }

/* ─── HONORAR ─── */
.honorar-box { margin-top: 2.5rem; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.honorar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.honorar-item { background: var(--skyblue-bg); padding: 2.25rem 2rem; border-right: 1px solid var(--border); }
.honorar-item:last-child { border-right: none; }
.honorar-item .label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--royal); margin-bottom: 0.75rem; font-weight: 700; }
.honorar-item .value { font-family: Georgia, serif; font-size: 2rem; color: var(--navy); line-height: 1; margin-bottom: 0.9rem; }
.honorar-item .desc { font-size: 0.83rem; color: var(--text-mid); line-height: 1.75; }
@media (max-width: 900px) { .honorar-grid { grid-template-columns: repeat(2, 1fr); } .honorar-item:nth-child(2) { border-right: none; } .honorar-item:nth-child(1), .honorar-item:nth-child(2) { border-bottom: 1px solid var(--border); } }
.legal-content ul li { font-size: 0.89rem; color: var(--text-mid); margin-bottom: 0.35rem; }

/* ─── FOOTER (tighter spacing, no logo line, aligned on all pages) ─── */
.site-footer { background: var(--navy); padding: 3rem 4rem 1.5rem; }
.site-footer > .container { padding: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; }
.footer-brand .footer-logo { font-size: 1.25rem; color: var(--white); margin-bottom: 0.15rem; letter-spacing: 0.05em; font-weight: 700; }
.footer-brand .footer-tagline { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.85rem; font-weight: 400; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.58); line-height: 1.6; font-weight: 400; }

.footer-col h4 { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--skyblue); margin-bottom: 0.85rem; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.35rem; }
.footer-col ul li a { color: rgba(255,255,255,0.62); font-size: 0.82rem; transition: color 0.2s; font-weight: 400; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { font-size: 0.82rem; color: rgba(255,255,255,0.62); margin-bottom: 0.35rem; }
.footer-contact-item a { color: rgba(255,255,255,0.62); }
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item svg { fill: white !important; }
a svg, button svg { fill: inherit; }
.btn-notfall-nav svg, .sticky-call svg, .footer-contact-item svg { fill: white !important; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.38); font-weight: 400; }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { font-size: 0.74rem; color: rgba(255,255,255,0.38); }
.footer-bottom-links a:hover { color: var(--white); }

/* ─── THANK YOU PAGE ─── */
.thank-you-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1A3A7A 100%);
  padding: 2rem;
}
.thank-you-box {
  background: var(--white);
  border-radius: 8px;
  padding: 4rem 3rem;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.thank-you-box h1 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 700;
}
.thank-you-box p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1400px) {
  .site-nav { padding: 0 2.5rem; }
  .container { padding: 0 2.5rem; }
  .site-footer { padding: 3rem 2.5rem 1.5rem; }
}
@media (max-width: 1200px) {
  .container { padding: 0 2rem; }
  .site-footer { padding: 3rem 2rem 1.5rem; }
  .areas-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-map-grid { grid-template-columns: 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .site-nav { padding: 0 1.25rem; height: 80px; }
  .nav-logo-img { height: 60px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sticky-call { display: flex; }
  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .section { padding: 3rem 0; }
  .page-hero { padding: 6.5rem 0 2.5rem; }
  .container { padding: 0 1.25rem; }
  .areas-grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .site-footer { padding: 3rem 1.25rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .notfall-box { flex-direction: column; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-meta { flex-wrap: wrap; }
  .hero-meta-item { padding-right: 1.5rem; margin-right: 1.5rem; }
  .mobile-menu { top: 80px; max-height: calc(100vh - 80px); }
}
@media (max-width: 480px) {
  .lang-btn .lang-text { display: none; }
  .about-stats { grid-template-columns: 1fr; }
  .hero-meta-item { border-right: none; padding-right: 0; margin-right: 0; width: 48%; }
  .nav-logo-img { height: 50px; }
  .site-nav { height: 70px; }
  .mobile-menu { top: 70px; max-height: calc(100vh - 70px); }
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(14, 45, 110, 0.1);
  padding: 1.5rem 2rem;
  display: none;
}
.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cookie-text {
  flex: 1;
}
.cookie-text h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.cookie-text p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}
.cookie-text a {
  color: var(--royal);
  text-decoration: underline;
}
.cookie-text a:hover {
  color: var(--navy);
}
.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  font-family: inherit;
}
.cookie-btn-accept {
  background: var(--orange);
  color: var(--white);
}
.cookie-btn-accept:hover {
  background: var(--orange-dark);
}
.cookie-btn-decline {
  background: var(--bg-grey);
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.cookie-btn-decline:hover {
  background: var(--bg-mid);
  color: var(--navy);
}
@media (max-width: 768px) {
  .cookie-banner {
    padding: 1.25rem 1.5rem;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .cookie-buttons {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
