/*
Theme Name: CivCom DPP Compliance Desk
Theme URI: https://civcom.org
Author: CivCom
Description: A focused WordPress theme for EU Battery Passport, ESPR and Digital Product Passport compliance services.
Version: 0.1.0
Text Domain: civcom-dpp
*/

:root {
  --navy: #07182d;
  --navy-2: #102a46;
  --navy-3: #183a5e;
  --gold: #b88b4a;
  --gold-soft: #efe2ce;
  --paper: #f7f3eb;
  --card: #ffffff;
  --ink: #111827;
  --muted: #667085;
  --line: #e3e8ef;
  --green: #2f855a;
  --red: #b91c1c;
  --blue: #1d4ed8;
  --shadow: 0 24px 70px rgba(7, 24, 45, .10);
  --shadow-soft: 0 14px 36px rgba(7, 24, 45, .07);
  --font-latin: Inter, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --font-cjk: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 1px 1px, rgba(7, 24, 45, .055) 1px, transparent 0) 0 0 / 28px 28px,
    linear-gradient(180deg, #fbf8f2 0%, var(--paper) 34%, #f8fafc 100%);
  font-family: var(--font-latin), var(--font-cjk);
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: geometricPrecision;
}

a { color: inherit; text-decoration: none; }

::selection {
  background: rgba(184, 139, 74, .25);
  color: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 242, .78);
  backdrop-filter: blur(22px) saturate(1.25);
  border-bottom: 1px solid rgba(227, 232, 239, .76);
  box-shadow: 0 10px 34px rgba(7, 24, 45, .045);
}

.wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .11), transparent 42%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  color: #fff;
  box-shadow: 0 14px 32px rgba(7, 24, 45, .18);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
}

.brand strong {
  display: block;
  font-size: 17px;
  letter-spacing: -.03em;
}

.brand span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #314054;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -.01em;
}

.nav a {
  opacity: .76;
  transition: color .22s ease, opacity .22s ease;
}
.nav a:hover { opacity: 1; color: var(--navy); }

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(7, 24, 45, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset;
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 30px;
  padding: 6px 9px;
  border-radius: 999px;
  color: rgba(7, 24, 45, .62);
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.language-option:hover,
.language-option.active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(7, 24, 45, .14);
}

.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid rgba(7, 24, 45, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75) inset;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button.primary,
button.primary,
input[type="submit"] {
  border-color: var(--navy);
  background:
    radial-gradient(circle at 20% 0, rgba(255, 255, 255, .16), transparent 35%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 16px 34px rgba(7, 24, 45, .20), 0 0 0 1px rgba(255, 255, 255, .08) inset;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  border-color: rgba(184, 139, 74, .55);
  box-shadow: 0 16px 34px rgba(7, 24, 45, .12);
}

.button {
  gap: 4px;
  flex-direction: column;
}

.button span,
button span {
  line-height: 1;
}

.button small {
  color: currentColor;
  opacity: .68;
  font-size: 11px;
  font-weight: 820;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 60px;
  background:
    radial-gradient(circle at 78% 8%, rgba(184, 139, 74, .22), transparent 32%),
    radial-gradient(circle at 12% 16%, rgba(29, 78, 216, .10), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.88) 52%, rgba(239,246,255,.86) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 24, 45, .055) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, rgba(7, 24, 45, .045) 1px, transparent 1px) 0 0 / 88px 88px;
  mask-image: radial-gradient(circle at 72% 22%, black, transparent 68%);
}

.professional-hero {
  padding: 104px 0 76px;
}

.localized-hero h1 {
  font-size: clamp(44px, 5.8vw, 72px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(7, 24, 45, .54);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(48px, 6.6vw, 82px);
  line-height: .9;
  letter-spacing: -.075em;
}

h1 span {
  display: block;
}

.headline-accent {
  font-family: var(--font-latin);
  font-size: 1.18em;
  letter-spacing: -.08em;
  background: linear-gradient(135deg, var(--navy) 18%, #244f7b 72%, var(--gold) 118%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 24px 0 0;
  max-width: 720px;
  color: #4f5f73;
  font-size: 18px;
  line-height: 1.82;
  letter-spacing: -.01em;
}

.hero-subtitle {
  margin: 10px 0 0;
  color: var(--gold);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  letter-spacing: -.035em;
}

.zh-lead {
  margin-top: 10px;
  font-size: 16px;
  opacity: .88;
}

.regulation-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.regulation-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(184, 139, 74, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  color: rgba(7, 24, 45, .72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .86) inset;
  font-size: 12px;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero h1,
.hero-card h2,
.dossier-head h2,
.section-title,
.card h2,
.card h3,
.service-card h3,
.cta-band h2,
.analysis-card h2,
.analysis-card h3,
.content-card h2 {
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.heading-line {
  display: block;
  white-space: nowrap;
}

.localized-page .section-title {
  max-width: 820px;
}

.localized-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 32px;
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 24px;
}

.assurance-card {
  border-color: rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 12% 0, rgba(255, 255, 255, .16), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(184, 139, 74, .24), transparent 34%),
    linear-gradient(145deg, #07182d, #102943 58%, #07182d);
  color: #fff;
}

.assurance-card h2 { color: #fff; }

.dossier-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.dossier-head h2 {
  max-width: 420px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  color: #f3dec0;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dossier-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.dossier-list div {
  display: grid;
  grid-template-columns: 42px 82px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .075);
}

.dossier-list span {
  color: #f3dec0;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.dossier-list strong {
  color: #eff6ff;
  font-size: 14px;
  line-height: 1.55;
}

.icon-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(184, 139, 74, .34);
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 10%, rgba(255, 255, 255, .95), transparent 34%),
    linear-gradient(135deg, #fff8ed, #ffffff);
  color: var(--gold);
  box-shadow: 0 12px 28px rgba(7, 24, 45, .07);
}

.icon-mark svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.assurance-card .icon-mark {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .09);
  color: #f3dec0;
  box-shadow: none;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #d7e2ef;
  line-height: 1.62;
  font-weight: 760;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 106px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.timeline-row strong {
  color: var(--gold);
  font-size: 13px;
}

.timeline-row span {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 750;
}

.section {
  padding: 78px 0;
}

.muted-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .76)),
    radial-gradient(circle at 8% 0, rgba(184, 139, 74, .10), transparent 28%);
  border-top: 1px solid rgba(221, 229, 239, .65);
  border-bottom: 1px solid rgba(221, 229, 239, .65);
}

.section-title {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(32px, 4.3vw, 52px);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.section-lead {
  margin: 0 0 28px;
  max-width: 790px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
  letter-spacing: -.01em;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.card {
  padding: 28px;
  border: 1px solid rgba(227, 232, 239, .92);
  border-radius: 30px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -.045em;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.7;
}

.card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -18px;
  padding: 0 0 22px;
  background: transparent;
  color: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid div {
  padding: 20px;
  border: 1px solid rgba(227, 232, 239, .92);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.proof-grid div:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 139, 74, .36);
  box-shadow: 0 22px 54px rgba(7, 24, 45, .11);
}

.proof-grid strong {
  display: block;
  margin: 14px 0 7px;
  color: var(--navy);
  font-size: 16px;
  letter-spacing: -.03em;
}

.proof-grid span:not(.icon-mark) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 760;
}

.radar-strip {
  padding: 34px 0 48px;
  background:
    radial-gradient(circle at 10% 0, rgba(184, 139, 74, .10), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(247, 244, 238, .82));
  border-top: 1px solid rgba(221, 229, 239, .65);
  border-bottom: 1px solid rgba(221, 229, 239, .65);
}

.radar-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.radar-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.055em;
  text-wrap: balance;
  word-break: keep-all;
}

.radar-head p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.radar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.radar-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(227, 232, 239, .92);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .9)),
    radial-gradient(circle at 0 0, rgba(184, 139, 74, .10), transparent 34%);
  box-shadow: var(--shadow-soft);
}

.radar-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.04em;
  text-wrap: balance;
  word-break: keep-all;
}

.radar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radar-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f4ead8;
  color: #7c5c2f;
  font-size: 12px;
  font-weight: 900;
}

.radar-card p,
.radar-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.radar-card ul {
  margin: 0;
  padding-left: 18px;
}

.radar-source {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.radar-source:hover {
  color: var(--gold);
}

.radar-note {
  margin-top: 18px;
  color: #7a8596;
  font-size: 13px;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(227, 232, 239, .94);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .90)),
    radial-gradient(circle at 0 0, rgba(184, 139, 74, .12), transparent 30%);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 139, 74, .42);
  box-shadow: 0 28px 64px rgba(7, 24, 45, .13);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.service-card-top span,
.service-card-top strong,
.service-audience,
.deliverable-grid article > span:not(.icon-mark),
.field-map article > span:not(.icon-mark) {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.service-card h3,
.deliverable-grid h3,
.field-map h3,
.roadmap h3 {
  margin: 0;
  color: var(--navy);
  letter-spacing: -.035em;
}

.service-subtitle {
  margin: -6px 0 0;
  color: var(--gold) !important;
  font-size: 14px;
  font-weight: 850;
}

.service-card p,
.service-card li,
.deliverable-grid p,
.field-map p,
.roadmap p,
.boundary-note p {
  color: var(--muted);
  line-height: 1.75;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
}

.service-card .button {
  margin-top: auto;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  counter-reset: roadmap;
}

.roadmap article {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(227, 232, 239, .94);
  border-radius: 30px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-soft);
  counter-increment: roadmap;
}

.roadmap article::after {
  position: absolute;
  top: 24px;
  right: 24px;
  content: counter(roadmap, decimal-leading-zero);
  color: rgba(7, 24, 45, .10);
  font-family: var(--font-latin);
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -.08em;
}

.roadmap strong {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f4ead8;
  color: #7a572b;
  font-size: 13px;
}

.field-map,
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.field-map article,
.deliverable-grid article,
.boundary-note {
  padding: 26px;
  border: 1px solid rgba(227, 232, 239, .94);
  border-radius: 30px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-soft);
}

.field-map article,
.deliverable-grid article {
  display: grid;
  gap: 12px;
}

.boundary-note {
  border-color: rgba(184, 139, 74, .32);
  background:
    radial-gradient(circle at 100% 0, rgba(184, 139, 74, .14), transparent 34%),
    linear-gradient(135deg, #fffaf0, #ffffff);
}

.boundary-note h2 {
  margin: 0 0 12px;
  color: var(--navy);
}

.responsibility-table td:first-child {
  color: var(--navy);
  font-weight: 950;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 900;
}

.badge.gold { background: #f4ead8; color: #7c5c2f; }
.badge.green { background: #e4f5eb; color: #256d45; }

.cta-band {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 0, rgba(255, 255, 255, .16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(184, 139, 74, .25), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 28px 72px rgba(7, 24, 45, .18);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.cta-band p {
  color: #c7d4e5;
  line-height: 1.72;
}

.form-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92)),
    radial-gradient(circle at 0 0, rgba(184,139,74,.12), transparent 34%);
  color: var(--ink);
}

.civcom-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.civcom-form label {
  display: grid;
  gap: 8px;
  color: #39465a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.civcom-form input,
.civcom-form select,
.civcom-form textarea {
  width: 100%;
  border: 1px solid rgba(203, 213, 225, .92);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font: inherit;
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.civcom-form input:focus,
.civcom-form select:focus,
.civcom-form textarea:focus {
  outline: none;
  border-color: rgba(184, 139, 74, .72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184, 139, 74, .12);
}

.civcom-form textarea {
  min-height: 126px;
  resize: vertical;
}

.form-wide { grid-column: 1 / -1; }

.notice {
  padding: 14px 16px;
  border-radius: 16px;
  background: #e4f5eb;
  color: #256d45;
  font-weight: 850;
}

.site-footer {
  padding: 44px 0;
  background:
    radial-gradient(circle at 80% 0, rgba(184, 139, 74, .18), transparent 30%),
    linear-gradient(135deg, var(--navy), #061426);
  color: #c7d4e5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-grid strong { color: #fff; }

.article {
  max-width: 880px;
  padding: 68px 0;
}

.article h1,
.article h2,
.article h3 { color: var(--navy); }

.article p,
.article li {
  color: #4b586b;
  line-height: 1.86;
  font-size: 17px;
}

.article a {
  color: var(--blue);
  font-weight: 850;
}

.geo-summary {
  margin: 30px 0;
  padding: 30px;
  border: 1px solid rgba(184, 139, 74, .32);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(184, 139, 74, .14), transparent 34%),
    linear-gradient(135deg, #fffaf0, #ffffff);
  box-shadow: var(--shadow-soft);
}

.geo-summary h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.geo-summary ul,
.source-list ul {
  margin: 0;
  padding-left: 20px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.stat-card {
  padding: 24px;
  border: 1px solid rgba(227, 232, 239, .94);
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-soft);
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.stat-card strong {
  display: block;
  margin: 10px 0;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -.05em;
}

.stat-card p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.62;
}

.data-table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(227, 232, 239, .94);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-soft);
}

.data-table th,
.data-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: #f3f6fa;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.data-table tr:last-child td { border-bottom: 0; }

.source-list,
.faq-block {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(227, 232, 239, .94);
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-soft);
}

.faq-block details {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.faq-block details:last-child { border-bottom: 0; }

.faq-block summary {
  color: var(--navy);
  font-weight: 950;
  cursor: pointer;
}

.analysis-card {
  margin: 26px 0;
  padding: 28px;
  border-left: 5px solid var(--gold);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-soft);
}

.analysis-card h2,
.analysis-card h3 {
  margin-top: 0;
}

.content-list {
  display: grid;
  gap: 18px;
}

.content-card {
  padding: 26px;
  border: 1px solid rgba(227, 232, 239, .94);
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-soft);
}

.content-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
}

@media (max-width: 880px) {
  .header-inner,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
  .nav { flex-wrap: wrap; }
  .language-switch { flex-wrap: wrap; }
  .hero-grid,
  .grid.cols-3,
  .grid.cols-2,
  .proof-grid,
  .radar-grid,
  .service-grid,
  .roadmap,
  .field-map,
  .deliverable-grid,
  .stat-grid,
  .localized-service-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .radar-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .heading-line {
    white-space: normal;
  }
  h1 { font-size: clamp(42px, 18vw, 64px); }
  .dossier-list div { grid-template-columns: 42px 1fr; }
  .dossier-list span:not(.icon-mark) { display: none; }
}
