:root {
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-green: #f1f8f4;
  --ink: #032b50;
  --text: #24344a;
  --muted: #64708a;
  --line: #d9e0ec;
  --line-strong: #b8c4d8;
  --blue: #032b50;
  --blue-deep: #021f3b;
  --blue-soft: #eaf3f8;
  --green: #6bb23f;
  --green-deep: #579735;
  --green-soft: #eef8e9;
  --gold: #c7a34a;
  --gold-deep: #a9852f;
  --shadow: 0 18px 50px rgba(3, 43, 80, 0.08);
  --radius: 8px;
  --shell: min(1240px, calc(100vw - 40px));
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: var(--font-body);
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
}

:root[data-brand-theme="new"],
body[data-brand-theme="new"] {
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-green: #f1f8f4;
  --ink: #032b50;
  --text: #24344a;
  --muted: #4d5866;
  --line: #d9e0ec;
  --line-strong: #b8c4d8;
  --blue: #032b50;
  --blue-deep: #021f3b;
  --blue-soft: #eaf3f8;
  --green: #6bb23f;
  --green-deep: #579735;
  --green-soft: #eef8e9;
  --gold: #6bb23f;
  --gold-deep: #579735;
  --shadow: 0 18px 50px rgba(3, 43, 80, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow-x: clip;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
.nav-menu a,
.button,
.section-label,
.article-category,
.service-card-link,
.footer-links p,
.footer-contact p {
  font-family: var(--font-heading);
}

button {
  cursor: pointer;
}

::selection {
  color: #ffffff;
  background: var(--blue);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #ffffff;
  background: var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 224, 236, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 142px;
  min-width: 112px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 34px);
}

.nav-menu a {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--blue);
}

.language-switch {
  --language-thumb-x: 0;
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(42px, 1fr));
  align-items: center;
  position: relative;
  isolation: isolate;
  min-width: 98px;
  padding: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.94)),
    rgba(238, 243, 248, 0.92);
  border: 1px solid rgba(184, 196, 216, 0.84);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 12px 26px rgba(3, 43, 80, 0.08);
}

body[data-language="en"] .language-switch,
.language-switch[data-active-lang="en"] {
  --language-thumb-x: 100%;
}

.language-switch::before {
  content: "";
  position: absolute;
  inset: 4px auto 4px 4px;
  z-index: 0;
  width: calc((100% - 8px) / 2);
  background:
    linear-gradient(180deg, rgba(126, 197, 78, 0.98), var(--green));
  border: 1px solid rgba(84, 157, 47, 0.48);
  border-radius: inherit;
  box-shadow:
    0 8px 18px rgba(107, 178, 63, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  transform: translateX(var(--language-thumb-x));
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease;
}

.language-switch button {
  position: relative;
  z-index: 1;
  min-width: 42px;
  min-height: 32px;
  padding: 6px 11px;
  color: rgba(3, 43, 80, 0.62);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.language-switch button:hover,
.language-switch button:focus-visible {
  color: var(--blue);
  transform: translateY(-1px);
}

.language-switch button.is-active {
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(3, 43, 80, 0.16);
}

.language-switch:focus-within {
  border-color: rgba(107, 178, 63, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 4px rgba(107, 178, 63, 0.12),
    0 14px 28px rgba(3, 43, 80, 0.1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle svg,
.button svg,
.dialog-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  align-items: center;
  min-height: calc(86svh - 72px);
  padding: 46px 0 30px;
  gap: 34px;
}

.hero-copy {
  max-width: 610px;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 850;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 10px;
  padding: 0 22px;
  border-radius: 7px;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(107, 178, 63, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-deep);
}

.button-secondary {
  color: var(--blue);
  background: #ffffff;
  border-color: var(--blue);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--blue-soft);
}

.hero-art {
  position: relative;
  min-width: 0;
}

.hero-art::after {
  position: absolute;
  right: 4%;
  bottom: 2%;
  left: 8%;
  height: 22px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(107, 178, 63, 0.14), transparent);
  filter: blur(16px);
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.trust-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding: 0 0 28px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 720;
}

.trust-rail span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
}

.trust-rail span::before {
  width: 18px;
  height: 18px;
  content: "";
  background:
    linear-gradient(135deg, transparent 45%, #ffffff 45% 55%, transparent 55%) 46% 55% / 10px 10px no-repeat,
    var(--green);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.62);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-heading h2,
.coverage-title h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 820;
}

.section-heading h2 {
  max-width: 720px;
}

.services-heading {
  display: grid;
  justify-items: center;
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: center;
}

.services-heading h2 {
  max-width: 820px;
}

.section-intro {
  max-width: 660px;
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-label {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.foundation-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.foundation-grid::before,
.foundation-grid::after {
  position: absolute;
  right: 4%;
  left: 4%;
  height: 1px;
  content: "";
  background: var(--line-strong);
}

.foundation-grid::before {
  top: 10px;
}

.foundation-grid::after {
  bottom: 10px;
}

.foundation-card {
  min-height: 248px;
  padding: 42px 34px 38px;
  border-right: 1px solid var(--line-strong);
}

.foundation-card:last-child {
  border-right: 0;
}

.foundation-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--blue);
}

.foundation-icon svg,
.route-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.foundation-card h3,
.process-step h3,
.route-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 790;
}

.foundation-card p,
.process-step p,
.route-item p,
.article-card p {
  margin: 12px 0 0;
  color: var(--text);
}

.coverage {
  padding: 54px 0;
  background:
    linear-gradient(90deg, rgba(107, 178, 63, 0.08), rgba(3, 43, 80, 0.05)),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coverage-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.8fr;
  align-items: center;
  gap: 28px;
}

.coverage-title h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.55rem);
}

.route-panel {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: center;
  gap: 18px;
}

.route-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(107, 178, 63, 0.42);
  border-radius: var(--radius);
}

.route-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.route-item-green .route-icon,
.route-item-green h3 {
  color: var(--green);
}

.route-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 8px;
}

.route-logo {
  display: grid;
  place-items: center;
  width: min(212px, 100%);
  height: 56px;
  flex: 0 0 auto;
  padding: 8px 14px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(3, 43, 80, 0.08);
}

.route-logo img {
  max-width: 176px;
  max-height: 36px;
  object-fit: contain;
}

.route-logo-placeholder {
  color: rgba(3, 43, 80, 0.58);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.route-line {
  position: relative;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--green),
    var(--green) 5px,
    transparent 5px,
    transparent 10px
  );
}

.route-line span,
.route-line::before,
.route-line::after {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--bg-soft);
  border: 2px solid var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
}

.route-line::before {
  left: 0;
}

.route-line::after {
  right: 0;
}

.route-line span {
  left: calc(50% - 5px);
}

.coverage-note {
  margin: 0;
  padding-left: 22px;
  color: var(--text);
  border-left: 2px solid rgba(107, 178, 63, 0.48);
}

.articles-heading {
  align-items: center;
}

.article-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 286px;
  padding: 34px 30px;
  background: #ffffff;
  border-right: 1px solid var(--line);
  animation: fadeUp 420ms ease both;
}

.article-media {
  aspect-ratio: 16 / 9;
  margin: -10px -6px 22px;
  overflow: hidden;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card:last-child {
  border-right: 0;
}

.article-card:hover .article-open,
.article-card:focus-within .article-open {
  color: var(--blue-deep);
}

.article-category {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 820;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.24;
}

.article-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 24px;
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  font-size: 0.95rem;
  font-weight: 760;
}

.article-open svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.article-share {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(184, 196, 216, 0.86);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(3, 43, 80, 0.1);
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.article-share svg,
.dialog-share svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-share:hover,
.article-share:focus-visible {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 16px 34px rgba(3, 43, 80, 0.18);
  transform: translateY(-2px);
}

.article-share.is-copied,
.dialog-share.is-copied {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.process {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-step {
  position: relative;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-weight: 830;
}

.contact {
  padding-bottom: 70px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 58px;
  align-items: start;
}

.contact-copy p {
  max-width: 560px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
  font-weight: 700;
}

.contact-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.contact-list a {
  text-decoration-color: rgba(3, 43, 80, 0.28);
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
}

input,
textarea,
select {
  width: 100%;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  min-height: 130px;
  padding: 12px 14px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(3, 43, 80, 0.12);
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 650;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--green);
}

.form-submit {
  width: fit-content;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 730;
}

.site-footer {
  padding: 22px 0;
  color: var(--muted);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-inner a {
  color: #ffffff;
  text-decoration: none;
}

.article-dialog {
  width: min(720px, calc(100vw - 32px));
  max-height: min(720px, calc(100svh - 40px));
  padding: 34px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(3, 43, 80, 0.24);
}

.article-dialog::backdrop {
  background: rgba(3, 43, 80, 0.44);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.article-dialog h2 {
  margin: 0;
  padding-right: 42px;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.08;
}

.legal-page,
.admin-page {
  display: grid;
  align-content: start;
  min-height: 100svh;
  padding: 52px 0 76px;
}

.legal-brand {
  margin-bottom: 56px;
}

.legal-page h1,
.admin-panel h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.legal-page p,
.admin-panel p {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.06rem;
}

.legal-page .updated {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.legal-page h2 {
  max-width: 760px;
  margin: 30px 0 12px;
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  line-height: 1.18;
}

.legal-page ul {
  display: grid;
  max-width: 760px;
  margin: 0 0 18px;
  padding-left: 22px;
  gap: 8px;
  color: var(--text);
}

.legal-page li {
  padding-left: 4px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.legal-page .button {
  margin-top: 20px;
  width: fit-content;
}

.admin-panel {
  max-width: 820px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.admin-gate-page {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 30px 18px;
  background:
    radial-gradient(circle at 52% 28%, rgba(107, 178, 63, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(3, 43, 80, 0.055) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(180deg, #ffffff, var(--bg-soft));
}

.admin-gate-card {
  display: grid;
  gap: 24px;
  width: min(520px, 100%);
  padding: clamp(24px, 5vw, 38px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(3, 43, 80, 0.13);
}

.admin-gate-brand {
  width: 220px;
  min-width: 0;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-gate-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 7vw, 3.8rem);
  line-height: 0.98;
}

.admin-gate-card p {
  margin: 12px 0 0;
  color: var(--text);
}

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

.admin-gate-form .button {
  width: 100%;
}

.admin-gate-error {
  min-height: 22px;
  margin: 0;
  color: #9f1d1d;
  font-weight: 760;
}

.admin-gate-error:empty {
  display: none;
}

.admin-gate-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.service-page {
  background:
    linear-gradient(90deg, rgba(3, 43, 80, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    #ffffff;
}

.service-hero {
  padding: 72px 0 34px;
}

.service-back {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--muted);
  font-weight: 760;
  text-decoration: none;
}

.service-back:hover,
.service-back:focus-visible {
  color: var(--ink);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 46px;
  align-items: end;
}

.service-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.98;
}

.service-hero p:not(.section-label) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: 1.15rem;
}

.service-snapshot {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid rgba(107, 178, 63, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-snapshot span {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 830;
  text-transform: uppercase;
}

.service-snapshot strong {
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1.15;
}

.service-detail {
  padding-top: 42px;
}

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

.service-points article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(3, 43, 80, 0.055);
}

.service-points h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.38rem;
}

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

.service-points li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.service-points li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(107, 178, 63, 0.12);
}

.service-footer-bottom {
  margin-top: 0;
}

.dialog-date {
  margin: 14px 0 24px;
  color: var(--muted);
  font-weight: 700;
}

.dialog-share {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: -6px 0 22px;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(3, 43, 80, 0.045);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 820;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.dialog-share:hover,
.dialog-share:focus-visible {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.dialog-body {
  display: grid;
  gap: 16px;
}

.dialog-media {
  margin: 0 0 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.dialog-media img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
}

.dialog-body p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 620ms ease,
    transform 620ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 54px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-art {
    max-width: 820px;
    margin: 0 auto;
  }

  .coverage-inner {
    grid-template-columns: 1fr;
  }

  .coverage-note {
    padding: 18px 0 0;
    border-top: 1px solid rgba(107, 178, 63, 0.42);
    border-left: 0;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-hero-grid,
  .service-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .section {
    padding: 62px 0;
  }

  .nav {
    min-height: 64px;
  }

  .brand {
    width: 196px;
    min-width: 150px;
  }

  .brand img {
    height: 46px;
  }

  .nav-toggle {
    display: grid !important;
    margin-left: auto;
    border-color: var(--line-strong);
  }

  .nav-menu {
    position: fixed;
    inset: 64px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu .language-switch {
    width: 100%;
    margin: 10px 0;
  }

  .nav-menu .language-switch button {
    min-height: 40px;
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding: 48px 0 34px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.28rem, 10.4vw, 3.28rem);
  }

  .hero p {
    margin-top: 22px;
  }

  .hero-actions,
  .button,
  .form-submit {
    width: 100%;
  }

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

  .hero-art {
    overflow: hidden;
  }

  .hero-art img {
    width: 112%;
    max-width: none;
    margin-left: -6%;
  }

  .trust-rail {
    display: grid;
    gap: 8px;
    padding-bottom: 18px;
    font-size: 0.95rem;
  }

  .section-heading,
  .articles-heading {
    display: grid;
    gap: 18px;
  }

  .article-filters {
    justify-content: flex-start;
  }

  .foundation-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .foundation-card,
  .article-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .foundation-card:last-child,
  .article-card:last-child {
    border-bottom: 0;
  }

  .foundation-card {
    min-height: auto;
    padding: 32px 22px;
  }

  .route-panel {
    grid-template-columns: 1fr;
  }

  .route-line {
    width: 2px;
    height: 44px;
    margin: 0 auto;
    background: repeating-linear-gradient(
      180deg,
      var(--green),
      var(--green) 5px,
      transparent 5px,
      transparent 10px
    );
  }

  .route-line::before,
  .route-line::after,
  .route-line span {
    left: 50%;
    transform: translate(-50%, 0);
  }

  .route-line::before {
    top: 0;
  }

  .route-line::after {
    top: auto;
    bottom: 0;
  }

  .route-line span {
    top: calc(50% - 5px);
  }

  .route-item {
    grid-template-columns: 44px 1fr;
    min-height: auto;
    padding: 18px;
  }

  .route-icon {
    width: 44px;
    height: 44px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-inner {
    display: grid;
  }

  .article-dialog {
    padding: 26px 20px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.28rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-heading h2,
  .coverage-title h2,
  .contact-copy h2 {
    font-size: 1.85rem;
  }

  .article-card {
    padding: 28px 20px;
  }
}

/* Creative browsing rework */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
}

.back-to-top {
  --back-top-progress: 0;
  --back-top-circumference: 150.8px;
  --back-top-offset: 150.8px;
  position: fixed;
  right: clamp(18px, 2vw, 30px);
  bottom: calc(clamp(18px, 2vw, 30px) + 72px);
  z-index: 32;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  color: #ffffff;
  background: rgba(3, 43, 80, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(3, 43, 80, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--blue-deep);
  box-shadow: 0 22px 50px rgba(3, 43, 80, 0.34);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(107, 178, 63, 0.4);
  outline-offset: 4px;
}

.back-to-top-ring,
.back-to-top-arrow {
  grid-area: 1 / 1;
}

.back-to-top-ring {
  width: 58px;
  height: 58px;
  transform: rotate(-90deg);
}

.back-to-top-track,
.back-to-top-progress {
  fill: none;
  stroke-width: 2.5;
}

.back-to-top-track {
  stroke: rgba(255, 255, 255, 0.2);
}

.back-to-top-progress {
  stroke: var(--green);
  stroke-linecap: round;
  stroke-dasharray: var(--back-top-circumference);
  stroke-dashoffset: var(--back-top-offset);
  transition: stroke-dashoffset 80ms linear;
}

.back-to-top-arrow {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 30px);
  z-index: 32;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #ffffff;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 7px 14px rgba(3, 43, 80, 0.12);
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #1fb257;
  box-shadow: 0 9px 18px rgba(3, 43, 80, 0.16);
  transform: translateY(-1px);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.32);
  outline-offset: 4px;
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  box-shadow: 0 12px 34px rgba(3, 43, 80, 0.045);
}

.nav-menu a {
  position: relative;
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.is-current::after {
  transform: scaleX(1);
}

.nav-menu .nav-cta {
  min-height: 42px;
  padding: 10px 18px;
  color: #ffffff;
  background: var(--green);
  border-radius: 7px;
  box-shadow: 0 12px 26px rgba(107, 178, 63, 0.2);
}

.nav-menu .nav-cta::after {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: calc(84svh - 72px);
  padding: clamp(64px, 7vw, 96px) 0 clamp(58px, 6vw, 82px);
  isolation: isolate;
  overflow: visible;
}

.hero::before {
  position: absolute;
  inset: 18px calc(50% - 50vw) 18px calc(50% - 50vw);
  z-index: -1;
  content: "";
  background:
    radial-gradient(
      circle at calc(58% + var(--hero-bg-x, 0px)) calc(46% + var(--hero-bg-y, 0px)),
      rgba(107, 178, 63, 0.2),
      transparent 30%
    ),
    radial-gradient(circle at 82% 54%, rgba(3, 43, 80, 0.1), transparent 38%),
    linear-gradient(90deg, rgba(3, 43, 80, 0.065) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(0deg, rgba(243, 248, 251, 0.92), rgba(255, 255, 255, 0.98));
  border-top: 1px solid rgba(3, 43, 80, 0.06);
  border-bottom: 1px solid rgba(3, 43, 80, 0.06);
}

.hero::after {
  position: absolute;
  inset: 18px calc(50% - 50vw) 18px calc(50% - 50vw);
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 25%, rgba(255, 255, 255, 0.48) 46%, rgba(255, 255, 255, 0.16) 70%, rgba(255, 255, 255, 0.42) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 38%, rgba(255, 255, 255, 0.58));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 590px;
  padding: clamp(18px, 3vw, 42px) 0;
}

.hero-copy::before {
  position: absolute;
  inset: -22% -8% -18% -18%;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 26% 42%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72) 44%, transparent 72%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), transparent 78%);
  pointer-events: none;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(3.08rem, 4.6vw, 4.5rem);
  text-wrap: balance;
}

.hero p {
  max-width: 520px;
  color: #203247;
}

.hero-art {
  position: absolute;
  inset: 18px calc(50% - 50vw) 18px calc(50% - 50vw);
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  transform: translate3d(calc(var(--hero-x, 0) * 1px), calc(var(--hero-y, 0) * 1px), 0);
  transition: transform 260ms ease-out;
}

.hero-art::after {
  right: 8%;
  bottom: 1%;
  left: 16%;
  height: 28px;
  background: linear-gradient(90deg, transparent, rgba(3, 43, 80, 0.12), transparent);
  filter: blur(18px);
}

.hero-asset-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.hero-asset-frame::before {
  position: absolute;
  right: 5%;
  bottom: 12%;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(3, 43, 80, 0.26), transparent);
}

.hero-art img {
  width: min(1220px, 96vw);
  max-width: none;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 42px rgba(3, 43, 80, 0.08));
  mask-image:
    linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 5%, #000 92%, transparent 100%);
  mask-composite: intersect;
}

@media (min-width: 1081px) {
  .hero-copy {
    max-width: 520px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(3rem, 4.15vw, 4.08rem);
  }

  .hero p {
    max-width: 470px;
  }

  .hero-art {
    transform:
      translate3d(calc(118px + var(--hero-x, 0) * 1px), calc(var(--hero-y, 0) * 1px), 0);
  }

  .hero-art img {
    width: min(1130px, 82vw);
    mask-image:
      linear-gradient(90deg, transparent 0, transparent 9%, rgba(0, 0, 0, 0.34) 22%, #000 38%, #000 96%, transparent 100%),
      linear-gradient(180deg, transparent 0, #000 5%, #000 92%, transparent 100%);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 25%, rgba(255, 255, 255, 0.86) 38%, rgba(255, 255, 255, 0.34) 55%, rgba(255, 255, 255, 0.1) 76%, rgba(255, 255, 255, 0.42) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 38%, rgba(255, 255, 255, 0.58));
  }
}

.hero-art .hero-center-calculator-icon {
  position: absolute;
  top: 31.5%;
  left: 50%;
  z-index: 4;
  display: block;
  width: clamp(42px, 3vw, 56px);
  max-width: none;
  min-width: 0;
  height: auto;
  opacity: 1;
  mix-blend-mode: normal;
  filter: drop-shadow(0 10px 18px rgba(3, 43, 80, 0.14));
  mask-image: none;
  transform: translate(-50%, -50%);
}

.hero-center-icon-cleaner {
  position: absolute;
  top: 33%;
  left: 50%;
  z-index: 3;
  width: clamp(96px, 6.25vw, 122px);
  height: clamp(94px, 6vw, 116px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 254, 0.97));
  border-radius: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(117, 150, 184, 0.08),
    0 10px 24px rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.35;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof-row span::before {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  content: "";
  background:
    linear-gradient(135deg, transparent 44%, #ffffff 44% 55%, transparent 55%) 48% 55% / 10px 10px no-repeat,
    var(--green);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}

.services {
  padding-top: 72px;
}

.foundation-grid {
  align-items: stretch;
  gap: 18px;
  border: 0;
}

.foundation-grid::before {
  top: 50%;
  right: 8%;
  left: 8%;
  z-index: -1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(3, 43, 80, 0.16), transparent);
}

.foundation-grid::after {
  display: none;
}

.foundation-card {
  --lift: 0px;
  --hover-lift: 0px;
  position: relative;
  min-height: 296px;
  padding: 30px;
  overflow: hidden;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.88)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(3, 43, 80, 0.07);
  transform: translateY(calc(var(--lift) + var(--hover-lift))) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.foundation-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  content: "";
  background: var(--blue);
}

.foundation-card:hover,
.foundation-card:focus-within,
.foundation-card.is-hovering {
  --hover-lift: -8px;
  border-color: rgba(107, 178, 63, 0.55);
  box-shadow: 0 26px 64px rgba(3, 43, 80, 0.12);
}

.foundation-card:focus-visible {
  outline: 3px solid rgba(107, 178, 63, 0.28);
  outline-offset: 4px;
}

.foundation-card-primary {
  --lift: -22px;
  background:
    linear-gradient(180deg, #ffffff, rgba(238, 248, 233, 0.66)),
    #ffffff;
  border-color: rgba(107, 178, 63, 0.46);
}

.foundation-card-primary::before {
  background: var(--green);
}

.foundation-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(3, 43, 80, 0.16);
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 850;
}

.foundation-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(3, 43, 80, 0.08);
  transition:
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.foundation-card:hover .foundation-icon,
.foundation-card:focus-visible .foundation-icon,
.foundation-card.is-hovering .foundation-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 34px rgba(3, 43, 80, 0.13);
}

.foundation-card-primary .foundation-icon {
  color: var(--green);
}

.foundation-card h3 {
  font-size: 1.32rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 22px;
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 780;
  text-decoration: none;
}

.service-card-link::after {
  margin-left: 8px;
  content: "→";
  transition: transform 160ms ease;
}

.foundation-card:hover .service-card-link::after,
.foundation-card:focus-within .service-card-link::after {
  transform: translateX(4px);
}

.coverage {
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(107, 178, 63, 0.08), transparent 38%, rgba(3, 43, 80, 0.055)),
    var(--bg-soft);
}

.coverage-inner {
  grid-template-columns: minmax(230px, 0.7fr) minmax(500px, 1.45fr) minmax(210px, 0.7fr);
  gap: 36px;
}

.route-panel {
  gap: 14px;
}

.route-item {
  min-height: 132px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(3, 43, 80, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.route-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(3, 43, 80, 0.11);
}

.coverage-side {
  display: grid;
  gap: 18px;
}

.coverage-note {
  padding: 0 0 0 22px;
}

.coverage-map-card {
  display: grid;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(3, 43, 80, 0.08);
}

.coverage-map-preview {
  position: relative;
  display: block;
  width: 100%;
  min-height: 150px;
  overflow: hidden;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 6px;
  text-decoration: none;
}

.coverage-map-preview img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
}

.coverage-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--green);
  border: 3px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 8px 18px rgba(3, 43, 80, 0.2);
  transform: translate(-50%, -80%) rotate(-45deg);
}

.coverage-map-label {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2px 5px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 820;
}

.coverage-map-card iframe {
  width: 100%;
  min-height: 150px;
  border: 0;
  border-radius: 6px;
  filter: saturate(0.92) contrast(0.98);
}

.coverage-map-card a {
  justify-self: start;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 820;
  text-decoration-color: rgba(3, 43, 80, 0.22);
  text-underline-offset: 4px;
}

.coverage-map-card .coverage-map-preview {
  justify-self: stretch;
  font-size: inherit;
  text-decoration: none;
}

.coverage-map-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 2px;
}

.article-grid {
  gap: 18px;
  border: 0;
}

.article-card {
  position: relative;
  min-height: 306px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(3, 43, 80, 0.055);
  transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.article-card:last-child {
  border-right: 1px solid var(--line);
}

.article-card:hover,
.article-card:focus-within {
  border-color: rgba(107, 178, 63, 0.54);
  box-shadow: 0 25px 62px rgba(3, 43, 80, 0.11);
}

.process {
  background:
    linear-gradient(180deg, var(--bg-soft), #ffffff);
}

.process-steps {
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.process-step {
  background: #ffffff;
}

.process-step::after {
  position: absolute;
  top: 50px;
  right: -10px;
  z-index: 1;
  width: 20px;
  height: 20px;
  content: "";
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: rotate(45deg);
}

.process-step:last-child::after {
  display: none;
}

.contact {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(234, 243, 248, 0.68) 100%);
}

.contact-form {
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--green));
}

[data-scroll-float] {
  transform: translate3d(0, calc(var(--scroll-y, 0) * 1px), 0);
  transition: transform 220ms ease-out;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 66px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(90deg, rgba(107, 178, 63, 0.12) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(180deg, var(--blue), var(--blue-deep));
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 70% 20%, rgba(107, 178, 63, 0.18), transparent 30%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(160px, 0.58fr) minmax(170px, 0.6fr) minmax(260px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.footer-brand {
  width: 132px;
  min-width: 0;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: var(--radius);
}

.footer-brand img {
  width: 100%;
  height: auto;
  max-height: 88px;
}

.footer-brand-block p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 16px;
  color: #ffffff;
  background: var(--green);
  border-radius: 7px;
  font-weight: 780;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(107, 178, 63, 0.22);
}

.footer-links,
.footer-contact,
.footer-location {
  display: grid;
  gap: 10px;
}

.footer-links p,
.footer-contact p {
  margin: 0 0 8px;
  color: #ffffff;
  font-weight: 820;
}

.footer-location {
  justify-items: start;
  gap: 16px;
}

.footer-location .coverage-map-card {
  width: min(100%, 360px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-map-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-map-heading p {
  margin: 0;
  color: var(--blue);
  font-weight: 850;
}

.footer-map-heading span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
}

.footer-links a,
.footer-contact a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  justify-self: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 780;
}

.footer-bottom > a:last-child {
  justify-self: end;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal.is-visible[data-scroll-float] {
  transform: translate3d(0, calc(var(--scroll-y, 0) * 1px), 0);
}

.js .hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .hero {
    min-height: calc(82svh - 64px);
    text-align: center;
  }

  .hero-copy {
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-copy::before {
    inset: -18% -12% -12%;
    background:
      radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72) 48%, transparent 75%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.9), transparent 78%);
  }

  .hero p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-proof-row {
    justify-content: center;
  }

  .hero-art {
    inset: 18px calc(50% - 50vw) 18px calc(50% - 50vw);
    margin-right: 0;
    margin-left: 0;
  }

  .hero-asset-frame {
    width: 100%;
  }

  .hero-art img {
    width: min(1040px, 120vw);
    max-width: 100%;
  }

  .coverage-inner {
    grid-template-columns: 1fr;
  }

  .coverage-side {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.5fr);
    align-items: start;
  }

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

@media (max-width: 760px) {
  .scroll-progress {
    height: 2px;
  }

  .back-to-top {
    right: 12px;
    bottom: 68px;
    width: 46px;
    height: 46px;
  }

  .back-to-top-ring {
    width: 46px;
    height: 46px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 46px;
    height: 46px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu .nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
  }

  .hero {
    min-height: calc(88svh - 64px);
    padding: 46px 0 38px;
  }

  .hero::before {
    inset: 10px calc(50% - 50vw) 12px calc(50% - 50vw);
  }

  .hero h1 {
    font-size: clamp(2.38rem, 11vw, 3.36rem);
  }

  .hero-proof-row {
    display: grid;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-asset-frame {
    min-height: 100%;
  }

  .hero-art img {
    width: min(760px, 152vw);
    margin-left: 0;
    mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  }

  .foundation-grid {
    gap: 14px;
  }

  .foundation-card,
  .foundation-card-primary {
    --lift: 0px;
    min-height: auto;
    transform: none;
  }

  .coverage-side {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }

  [data-scroll-float] {
    transform: none;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-credit {
    justify-self: start;
  }

  .footer-bottom > a:last-child {
    justify-self: start;
  }

  .service-hero {
    padding-top: 48px;
  }

  .service-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .service-snapshot,
  .service-points article {
    padding: 22px;
  }
}

/* Accepted one-page direction */
:root {
  --shell: min(1680px, calc(100vw - clamp(36px, 10vw, 220px)));
}

main {
  display: flex;
  flex-direction: column;
}

main > .hero {
  order: 1;
}

main > .coverage {
  order: 2;
}

main > .home-split {
  order: 4;
}

main > .services {
  order: 3;
}

main > .contact {
  order: 5;
}

.hero,
.coverage,
.services,
.home-split,
.contact {
  scroll-margin-top: 92px;
}

.hero {
  min-height: clamp(430px, 47svh, 520px);
  padding: clamp(38px, 4vw, 58px) 0 clamp(28px, 3.2vw, 44px);
}

.hero::before {
  inset: 0 calc(50% - 50vw);
  background:
    linear-gradient(90deg, rgba(3, 43, 80, 0.04) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(180deg, #ffffff 0%, rgba(247, 250, 253, 0.86) 100%);
  border-top: 0;
}

.hero::after {
  inset: 0 calc(50% - 50vw);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 24%, rgba(255, 255, 255, 0.46) 42%, rgba(255, 255, 255, 0.08) 69%, rgba(255, 255, 255, 0.5) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 58%, rgba(255, 255, 255, 0.52));
}

.hero-copy {
  max-width: 650px;
  padding: 0;
}

.hero-copy::before {
  inset: -26% -36% -24% -18%;
  background:
    radial-gradient(circle at 26% 45%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.64) 42%, transparent 72%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), transparent 82%);
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.05rem, 3.75vw, 4.35rem);
}

.hero p {
  max-width: 520px;
  margin-top: 22px;
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
}

.hero-art {
  inset: 0 calc(50% - 50vw);
  place-items: center;
  padding: 0;
}

.hero-art::after {
  right: 50%;
  bottom: 12%;
  left: auto;
  width: min(920px, 74vw);
  transform: translateX(50%);
}

.hero-asset-frame {
  justify-items: center;
}

.hero-art img {
  width: min(1480px, 86vw);
  min-width: 1080px;
}

.hero-brand-image-new {
  display: none;
}

:root[data-brand-theme="new"] .hero-brand-image-old,
body[data-brand-theme="new"] .hero-brand-image-old {
  display: none;
}

:root[data-brand-theme="new"] .hero-brand-image-new,
body[data-brand-theme="new"] .hero-brand-image-new {
  display: block;
}

.hero-proof-row {
  margin-top: 30px;
  gap: 12px 24px;
}

.services {
  padding-top: clamp(52px, 5vw, 72px);
  padding-bottom: clamp(56px, 5vw, 78px);
}

.services-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services-heading h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.foundation-card,
.foundation-card-primary {
  min-height: 250px;
}

.service-card-link::after {
  content: "->";
}

.coverage {
  padding: clamp(38px, 4vw, 54px) 0;
  background:
    linear-gradient(90deg, rgba(107, 178, 63, 0.07), rgba(3, 43, 80, 0.045)),
    #f5f8fb;
}

.coverage-inner {
  grid-template-columns: minmax(190px, 0.45fr) minmax(720px, 1.7fr) minmax(250px, 0.58fr);
  gap: clamp(20px, 1.9vw, 24px);
}

.coverage-title h2 {
  font-size: clamp(1.9rem, 2.25vw, 2.55rem);
}

.coverage-title .section-label {
  display: none;
}

.route-panel {
  grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr);
}

.route-item {
  grid-template-columns: 50px 1fr;
  min-height: 104px;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.9);
}

.route-icon {
  width: 50px;
  height: 50px;
}

.coverage-side {
  align-self: stretch;
  gap: 14px;
  min-width: 0;
}

.coverage-mini-map {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 218px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    linear-gradient(90deg, rgba(107, 178, 63, 0.08), rgba(3, 43, 80, 0.05));
  border: 1px solid rgba(107, 178, 63, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(3, 43, 80, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.coverage-side[data-country-map] .coverage-mini-map {
  width: 100%;
  height: 100%;
  min-width: 250px;
}

.coverage-mini-map::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(3, 43, 80, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 43, 80, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, transparent, #000 16%, #000 82%, transparent);
  pointer-events: none;
}

.coverage-mini-map:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 178, 63, 0.66);
  box-shadow: 0 26px 58px rgba(3, 43, 80, 0.12);
}

.coverage-mini-map-top,
.coverage-mini-map-legend {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.coverage-mini-map-top p,
.coverage-mini-map-top span {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.coverage-mini-map-top span {
  color: var(--green);
  font-size: 0.88rem;
}

.coverage-mini-map svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  min-height: 150px;
  overflow: visible;
}

.mini-map-grid {
  fill: none;
  stroke: rgba(3, 43, 80, 0.12);
  stroke-width: 1;
}

.mini-map-route {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-dasharray: 8 8;
  stroke-linecap: round;
}

.mini-map-shape {
  fill: rgba(255, 255, 255, 0.56);
  stroke-width: 2.5;
}

.mini-map-kosovo {
  stroke: rgba(3, 43, 80, 0.38);
}

.mini-map-albania {
  fill: rgba(107, 178, 63, 0.08);
  stroke: rgba(107, 178, 63, 0.54);
}

.mini-map-pin {
  stroke: #ffffff;
  stroke-width: 6;
  filter: drop-shadow(0 8px 13px rgba(3, 43, 80, 0.14));
}

.mini-map-pin-blue {
  fill: var(--blue);
}

.mini-map-pin-green {
  fill: var(--green);
}

.coverage-mini-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 820;
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.legend-dot-blue {
  background: var(--blue);
}

.legend-dot-green {
  background: var(--green);
}

.coverage-note {
  font-size: 0.98rem;
  line-height: 1.55;
}

.coverage-map-card {
  min-height: 174px;
  background: rgba(255, 255, 255, 0.86);
}

.coverage-map-preview img,
.coverage-map-card iframe {
  min-height: 148px;
}

.home-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(54px, 6vw, 86px);
  align-items: start;
  padding-top: clamp(44px, 5vw, 70px);
  padding-bottom: clamp(48px, 5.5vw, 78px);
}

.home-split .home-panel {
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.home-split .home-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
}

.coverage .reveal,
.home-split .reveal,
.contact .reveal {
  opacity: 1;
  transform: none;
}

.home-split .section-heading {
  display: grid;
  align-content: start;
  min-height: 0;
  height: auto;
  margin-bottom: 22px;
}

.home-split .articles-heading > div {
  display: grid;
  align-content: start;
}

.home-split .section-label {
  display: none;
}

.home-split .section-heading h2 {
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  line-height: 1;
  margin: 0;
}

.home-split .article-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.home-split .article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.home-split .article-card {
  min-height: 230px;
  padding: 24px 22px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.home-split .article-card:last-child {
  border-right: 0;
}

.home-split .article-media {
  display: none;
}

.home-split .article-category {
  margin-bottom: 10px;
  font-size: 0.72rem;
}

.home-split .article-card h3 {
  font-size: 1rem;
}

.home-split .article-card p {
  margin-top: 9px;
  font-size: 0.86rem;
  line-height: 1.48;
}

.home-split .article-open {
  margin-top: 16px;
  font-size: 0.84rem;
}

.home-split .process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  box-shadow: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.home-split .process-step {
  padding: 26px 22px 28px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
}

.home-split .process-step:last-child {
  border-right: 0;
}

.home-split .process-step::after {
  top: 34px;
}

.home-split .process-step span {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--green);
  background: #ffffff;
  border: 1px solid rgba(107, 178, 63, 0.45);
}

.home-split .process-step h3 {
  font-size: 0.98rem;
}

.home-split .process-step p {
  font-size: 0.84rem;
  line-height: 1.48;
}

.contact {
  padding: 26px 0;
  background: linear-gradient(180deg, rgba(234, 243, 248, 0.66), rgba(247, 250, 253, 0.96));
  border-top: 1px solid var(--line);
}

.contact-layout {
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 46px);
  align-items: center;
}

.contact-copy .section-label,
.contact-list {
  display: none;
}

.contact-copy h2 {
  font-size: clamp(1.75rem, 2.35vw, 2.45rem);
}

.contact-copy p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr)) minmax(190px, 1.25fr) auto;
  gap: 12px;
  align-items: start;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-form::before {
  display: none;
}

.contact-form .field-grid {
  display: contents;
}

.contact-form label:not(.consent-field):not(.hp-field) {
  gap: 0;
}

.contact-form label:not(.consent-field):not(.hp-field) > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
  background: rgba(255, 255, 255, 0.9);
}

.contact-form textarea {
  min-height: 48px;
  max-height: 86px;
  resize: vertical;
}

.contact-form .consent-field {
  grid-column: 1 / -2;
  margin-top: 0;
  font-size: 0.78rem;
}

.contact-form .form-submit {
  width: 100%;
  min-width: 150px;
}

.contact-form .form-status {
  grid-column: 1 / -1;
}

/* Final presentation pass: make the three dense business sections visually distinct. */
.home-split {
  gap: clamp(68px, 7vw, 104px);
}

.home-split .articles {
  position: relative;
}

.home-split .articles::before {
  position: absolute;
  top: 74px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(107, 178, 63, 0.45), transparent 72%);
}

.home-split .article-grid {
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 18px;
  overflow: visible;
  border: 0;
  border-radius: 0;
}

.home-split .article-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 264px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, rgba(248, 251, 253, 0.94)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(3, 43, 80, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.home-split .article-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--blue);
}

.home-split .article-card:nth-child(2)::before {
  background: var(--green);
}

.home-split .article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 178, 63, 0.5);
  box-shadow: 0 24px 54px rgba(3, 43, 80, 0.11);
}

.home-split .article-card:last-child {
  border-right: 1px solid var(--line);
}

.home-split .article-media {
  display: grid;
  place-items: center;
  width: 100%;
  height: clamp(132px, 10vw, 158px);
  aspect-ratio: auto;
  margin: 0;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(107, 178, 63, 0.08), rgba(3, 43, 80, 0.055)),
    #ffffff;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.home-split .article-media img {
  width: min(78%, 230px);
  height: min(76px, 100%);
  object-fit: contain;
}

.home-split .article-category {
  display: inline-grid;
  width: fit-content;
  margin: 24px 28px 0;
  padding: 6px 10px;
  color: var(--blue);
  background: rgba(3, 43, 80, 0.06);
  border-radius: 999px;
}

.home-split .article-card h3 {
  max-width: 25ch;
  margin: 14px 28px 0;
  font-size: clamp(1.05rem, 1.15vw, 1.22rem);
}

.home-split .article-card p {
  max-width: 54ch;
  margin: 12px 28px 0;
  font-size: 0.92rem;
}

.home-split .article-card p.article-category {
  margin-top: 24px;
}

.home-split .article-open {
  margin: 22px 28px 28px;
}

.home-split .process {
  position: relative;
  padding: clamp(34px, 4vw, 52px);
  background:
    linear-gradient(135deg, rgba(3, 43, 80, 0.045), rgba(107, 178, 63, 0.085)),
    #f7fafc;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
}

.home-split .process .section-heading {
  margin-bottom: 34px;
}

.home-split .process-steps {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  overflow: visible;
  border: 0;
  border-radius: 0;
}

.home-split .process-steps::before {
  position: absolute;
  top: 24px;
  right: 7%;
  left: 7%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(107, 178, 63, 0.38), rgba(3, 43, 80, 0.22));
}

.home-split .process-step {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
}

.home-split .process-step:last-child {
  border-right: 0;
}

.home-split .process-step::after {
  display: none;
}

.home-split .process-step span {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  color: #ffffff;
  background: var(--green);
  border: 6px solid #ffffff;
  box-shadow: 0 16px 28px rgba(107, 178, 63, 0.24);
}

.home-split .process-step h3 {
  max-width: 18ch;
  font-size: 1.05rem;
}

.home-split .process-step p {
  max-width: 28ch;
  font-size: 0.9rem;
}

.contact {
  padding: clamp(58px, 6vw, 86px) 0;
  background:
    linear-gradient(90deg, rgba(3, 43, 80, 0.045), rgba(107, 178, 63, 0.08)),
    #f6f9fb;
  border-top: 1px solid var(--line);
}

.contact-layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}

.contact-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 3vw, 42px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(3, 43, 80, 0.98), rgba(3, 43, 80, 0.9)),
    var(--blue);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 24px 55px rgba(3, 43, 80, 0.18);
}

.contact-copy .section-label {
  display: block;
  color: var(--green);
}

.contact-copy h2 {
  color: #ffffff;
  font-size: clamp(2rem, 2.8vw, 3.05rem);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-list dt {
  color: rgba(255, 255, 255, 0.62);
}

.contact-list dd,
.contact-list a {
  color: #ffffff;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(3, 43, 80, 0.12);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 24px 58px rgba(3, 43, 80, 0.12);
}

.contact-form .field-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label:not(.consent-field):not(.hp-field) {
  gap: 8px;
}

.contact-form label:not(.consent-field):not(.hp-field) > span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  color: var(--blue);
  font-size: 0.82rem;
  white-space: normal;
}

.contact-form textarea {
  min-height: 126px;
  max-height: 180px;
}

.contact-form .consent-field {
  grid-column: 1 / -1;
  align-items: center;
  padding: 12px 14px;
  background: rgba(3, 43, 80, 0.035);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.86rem;
}

.contact-form .form-submit {
  justify-self: start;
  width: fit-content;
  min-width: 190px;
}

.contact-form .form-status {
  align-self: center;
  min-height: 0;
}

@media (max-width: 1180px) {
  .coverage-inner {
    grid-template-columns: 1fr;
  }

  .coverage-side {
    grid-template-columns: 1fr;
  }

  .coverage-mini-map {
    max-width: 560px;
  }
}

@media (max-width: 1080px) and (min-width: 761px) {
  .nav {
    gap: 14px;
  }

  .brand {
    width: 220px;
    min-width: 170px;
  }

  .nav-menu {
    gap: 10px;
  }

  .nav-menu a {
    font-size: 0.9rem;
  }

  .language-switch {
    min-width: 90px;
  }

  .language-switch button {
    min-width: 38px;
    padding-inline: 9px;
  }

  .nav-menu .nav-cta {
    padding-inline: 16px;
  }
}

@media (max-width: 1240px) {
  .hero-art img {
    width: min(960px, 64vw);
    min-width: 680px;
  }

  .home-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .coverage-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

  .contact-form .consent-field,
  .contact-form .form-status {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  html,
  body,
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .shell,
  .nav.shell,
  .hero.shell {
    width: var(--shell);
    max-width: var(--shell);
  }

  .hero {
    min-height: calc(88svh - 64px);
    padding: 54px 0 44px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy::before {
    inset: -18% -8% -12%;
  }

  .hero h1,
  .hero p {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 8.8vw, 2.35rem);
    line-height: 1.02;
    text-wrap: wrap;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-art {
    inset: 0;
    place-items: center;
    padding: 0;
    overflow: hidden;
  }

  .hero-art img {
    width: min(660px, 142vw);
    min-width: 0;
    opacity: 0.72;
    transform: translateY(42px);
  }

  .home-split .article-grid,
  .home-split .process-steps,
  .contact-form,
  .contact-form .field-grid {
    grid-template-columns: 1fr;
  }

  .home-split .article-card,
  .home-split .article-card:last-child,
  .home-split .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-split .article-card:last-child,
  .home-split .process-step:last-child {
    border-bottom: 0;
  }

  .contact-form .form-submit {
    min-width: 0;
  }
}

:root[data-brand-theme="new"] .site-header,
body[data-brand-theme="new"] .site-header {
  box-shadow: 0 12px 34px rgba(13, 37, 64, 0.055);
}

:root[data-brand-theme="new"] .brand,
body[data-brand-theme="new"] .brand {
  width: clamp(142px, 9vw, 168px);
}

:root[data-brand-theme="new"] .nav,
body[data-brand-theme="new"] .nav {
  min-height: 96px;
}

:root[data-brand-theme="new"] .brand img,
body[data-brand-theme="new"] .brand img {
  height: auto;
  max-height: 90px;
}

:root[data-brand-theme="new"] .footer-brand,
body[data-brand-theme="new"] .footer-brand {
  width: 138px;
}

:root[data-brand-theme="new"] .footer-brand img,
body[data-brand-theme="new"] .footer-brand img {
  height: auto;
  max-height: 92px;
}

:root[data-brand-theme="new"] .scroll-progress,
body[data-brand-theme="new"] .scroll-progress,
:root[data-brand-theme="new"] .nav-menu a::after,
body[data-brand-theme="new"] .nav-menu a::after {
  background: var(--gold);
}

:root[data-brand-theme="new"] .back-to-top-progress,
body[data-brand-theme="new"] .back-to-top-progress {
  stroke: var(--gold);
}

:root[data-brand-theme="new"] .back-to-top:focus-visible,
body[data-brand-theme="new"] .back-to-top:focus-visible {
  outline-color: rgba(199, 163, 74, 0.44);
}

:root[data-brand-theme="new"] .nav-menu .nav-cta,
body[data-brand-theme="new"] .nav-menu .nav-cta,
:root[data-brand-theme="new"] .button-primary,
body[data-brand-theme="new"] .button-primary,
:root[data-brand-theme="new"] .footer-cta,
body[data-brand-theme="new"] .footer-cta {
  color: #ffffff;
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(199, 163, 74, 0.25);
}

:root[data-brand-theme="new"] .nav-menu .nav-cta:hover,
:root[data-brand-theme="new"] .nav-menu .nav-cta:focus-visible,
:root[data-brand-theme="new"] .button-primary:hover,
:root[data-brand-theme="new"] .button-primary:focus-visible,
:root[data-brand-theme="new"] .footer-cta:hover,
:root[data-brand-theme="new"] .footer-cta:focus-visible,
body[data-brand-theme="new"] .nav-menu .nav-cta:hover,
body[data-brand-theme="new"] .nav-menu .nav-cta:focus-visible,
body[data-brand-theme="new"] .button-primary:hover,
body[data-brand-theme="new"] .button-primary:focus-visible,
body[data-brand-theme="new"] .footer-cta:hover,
body[data-brand-theme="new"] .footer-cta:focus-visible {
  background: var(--gold-deep);
}

:root[data-brand-theme="new"] .button-secondary,
body[data-brand-theme="new"] .button-secondary {
  color: var(--blue);
  border-color: rgba(14, 106, 106, 0.55);
}

:root[data-brand-theme="new"] .button-secondary:hover,
:root[data-brand-theme="new"] .button-secondary:focus-visible,
body[data-brand-theme="new"] .button-secondary:hover,
body[data-brand-theme="new"] .button-secondary:focus-visible {
  background: var(--green-soft);
}

:root[data-brand-theme="new"] .hero::before,
body[data-brand-theme="new"] .hero::before {
  background:
    radial-gradient(circle at 76% 34%, rgba(199, 163, 74, 0.13), transparent 30%),
    linear-gradient(90deg, rgba(13, 37, 64, 0.04) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(180deg, #ffffff 0%, rgba(243, 248, 248, 0.92) 100%);
}

:root[data-brand-theme="new"] .hero-art::after,
body[data-brand-theme="new"] .hero-art::after,
:root[data-brand-theme="new"] .hero-asset-frame::before,
body[data-brand-theme="new"] .hero-asset-frame::before {
  background: linear-gradient(90deg, transparent, rgba(14, 106, 106, 0.2), rgba(199, 163, 74, 0.18), transparent);
}

:root[data-brand-theme="new"] .hero-art img,
body[data-brand-theme="new"] .hero-art img {
  filter: drop-shadow(0 24px 42px rgba(13, 37, 64, 0.09)) saturate(0.95);
}

:root[data-brand-theme="new"] .hero-proof-row span::before,
body[data-brand-theme="new"] .hero-proof-row span::before,
:root[data-brand-theme="new"] .trust-rail span::before,
body[data-brand-theme="new"] .trust-rail span::before {
  background:
    linear-gradient(135deg, transparent 44%, #ffffff 44% 55%, transparent 55%) 48% 55% / 10px 10px no-repeat,
    var(--gold);
}

:root[data-brand-theme="new"] .section-label,
:root[data-brand-theme="new"] .article-category,
body[data-brand-theme="new"] .section-label,
body[data-brand-theme="new"] .article-category {
  color: var(--green);
}

:root[data-brand-theme="new"] .coverage,
body[data-brand-theme="new"] .coverage {
  background:
    linear-gradient(90deg, rgba(14, 106, 106, 0.08), rgba(199, 163, 74, 0.08)),
    #f1f3f5;
}

:root[data-brand-theme="new"] .route-item,
body[data-brand-theme="new"] .route-item {
  border-color: rgba(14, 106, 106, 0.22);
  box-shadow: 0 18px 42px rgba(13, 37, 64, 0.075);
}

:root[data-brand-theme="new"] .route-item-green .route-icon,
:root[data-brand-theme="new"] .route-item-green h3,
body[data-brand-theme="new"] .route-item-green .route-icon,
body[data-brand-theme="new"] .route-item-green h3 {
  color: var(--gold);
}

:root[data-brand-theme="new"] .route-line,
body[data-brand-theme="new"] .route-line {
  background: repeating-linear-gradient(
    90deg,
    var(--gold),
    var(--gold) 5px,
    transparent 5px,
    transparent 10px
  );
}

:root[data-brand-theme="new"] .route-line span,
:root[data-brand-theme="new"] .route-line::before,
:root[data-brand-theme="new"] .route-line::after,
body[data-brand-theme="new"] .route-line span,
body[data-brand-theme="new"] .route-line::before,
body[data-brand-theme="new"] .route-line::after {
  border-color: var(--gold);
}

:root[data-brand-theme="new"] .coverage-map-pin,
body[data-brand-theme="new"] .coverage-map-pin {
  background: var(--gold);
}

:root[data-brand-theme="new"] .coverage-note,
body[data-brand-theme="new"] .coverage-note {
  border-left-color: rgba(199, 163, 74, 0.5);
}

:root[data-brand-theme="new"] .coverage-mini-map,
body[data-brand-theme="new"] .coverage-mini-map {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 247, 246, 0.88)),
    linear-gradient(90deg, rgba(14, 106, 106, 0.1), rgba(199, 163, 74, 0.09));
  border-color: rgba(199, 163, 74, 0.46);
  box-shadow: 0 20px 48px rgba(13, 37, 64, 0.08);
}

:root[data-brand-theme="new"] .coverage-mini-map:hover,
body[data-brand-theme="new"] .coverage-mini-map:hover {
  border-color: rgba(199, 163, 74, 0.68);
}

:root[data-brand-theme="new"] .coverage-mini-map-top span,
body[data-brand-theme="new"] .coverage-mini-map-top span {
  color: var(--gold);
}

:root[data-brand-theme="new"] .mini-map-route,
body[data-brand-theme="new"] .mini-map-route {
  stroke: var(--gold);
}

:root[data-brand-theme="new"] .mini-map-kosovo,
body[data-brand-theme="new"] .mini-map-kosovo {
  stroke: rgba(13, 37, 64, 0.48);
}

:root[data-brand-theme="new"] .mini-map-albania,
body[data-brand-theme="new"] .mini-map-albania {
  fill: rgba(14, 106, 106, 0.08);
  stroke: rgba(14, 106, 106, 0.58);
}

:root[data-brand-theme="new"] .mini-map-pin-green,
body[data-brand-theme="new"] .mini-map-pin-green {
  fill: var(--gold);
}

:root[data-brand-theme="new"] .legend-dot-green,
body[data-brand-theme="new"] .legend-dot-green {
  background: var(--gold);
}

:root[data-brand-theme="new"] .foundation-card::before,
body[data-brand-theme="new"] .foundation-card::before {
  background: var(--green);
}

:root[data-brand-theme="new"] .foundation-card-primary,
body[data-brand-theme="new"] .foundation-card-primary {
  background:
    linear-gradient(180deg, #ffffff, rgba(199, 163, 74, 0.12)),
    #ffffff;
  border-color: rgba(199, 163, 74, 0.48);
}

:root[data-brand-theme="new"] .foundation-card-primary::before,
body[data-brand-theme="new"] .foundation-card-primary::before {
  background: var(--gold);
}

:root[data-brand-theme="new"] .foundation-card-primary .foundation-icon,
body[data-brand-theme="new"] .foundation-card-primary .foundation-icon {
  color: var(--gold);
}

:root[data-brand-theme="new"] .foundation-card:nth-child(1)::before,
body[data-brand-theme="new"] .foundation-card:nth-child(1)::before {
  background: var(--blue);
}

:root[data-brand-theme="new"] .foundation-card:nth-child(1) .foundation-icon,
body[data-brand-theme="new"] .foundation-card:nth-child(1) .foundation-icon {
  color: var(--blue);
}

:root[data-brand-theme="new"] .foundation-card:nth-child(2)::before,
body[data-brand-theme="new"] .foundation-card:nth-child(2)::before {
  background: var(--gold);
}

:root[data-brand-theme="new"] .foundation-card:nth-child(2) .foundation-icon,
body[data-brand-theme="new"] .foundation-card:nth-child(2) .foundation-icon {
  color: var(--gold);
}

:root[data-brand-theme="new"] .foundation-card:nth-child(3)::before,
body[data-brand-theme="new"] .foundation-card:nth-child(3)::before {
  background: var(--green);
}

:root[data-brand-theme="new"] .foundation-card:nth-child(3) .foundation-icon,
body[data-brand-theme="new"] .foundation-card:nth-child(3) .foundation-icon {
  color: var(--green);
}

:root[data-brand-theme="new"] .foundation-card:hover,
:root[data-brand-theme="new"] .foundation-card:focus-within,
:root[data-brand-theme="new"] .home-split .article-card:hover,
body[data-brand-theme="new"] .foundation-card:hover,
body[data-brand-theme="new"] .foundation-card:focus-within,
body[data-brand-theme="new"] .home-split .article-card:hover {
  border-color: rgba(199, 163, 74, 0.52);
  box-shadow: 0 24px 54px rgba(13, 37, 64, 0.12);
}

:root[data-brand-theme="new"] .home-split .articles::before,
body[data-brand-theme="new"] .home-split .articles::before {
  background: linear-gradient(90deg, rgba(199, 163, 74, 0.5), transparent 72%);
}

:root[data-brand-theme="new"] .home-split .article-category,
body[data-brand-theme="new"] .home-split .article-category {
  color: var(--blue);
  background: rgba(14, 106, 106, 0.08);
}

:root[data-brand-theme="new"] .home-split .process,
body[data-brand-theme="new"] .home-split .process {
  background:
    linear-gradient(135deg, rgba(13, 37, 64, 0.045), rgba(14, 106, 106, 0.08), rgba(199, 163, 74, 0.08)),
    #f9f7f6;
}

:root[data-brand-theme="new"] .home-split .process-steps::before,
body[data-brand-theme="new"] .home-split .process-steps::before,
:root[data-brand-theme="new"] .contact-form::before,
body[data-brand-theme="new"] .contact-form::before {
  background: linear-gradient(90deg, var(--blue), var(--green), var(--gold));
}

:root[data-brand-theme="new"] .home-split .process-step span,
body[data-brand-theme="new"] .home-split .process-step span,
:root[data-brand-theme="new"] .process-step span,
body[data-brand-theme="new"] .process-step span {
  color: #ffffff;
  background: var(--gold);
  border-color: rgba(199, 163, 74, 0.45);
  box-shadow: 0 16px 28px rgba(199, 163, 74, 0.22);
}

:root[data-brand-theme="new"] .contact,
body[data-brand-theme="new"] .contact {
  background: linear-gradient(180deg, #ffffff 0%, rgba(234, 243, 244, 0.74) 100%);
}

:root[data-brand-theme="new"] .contact-copy,
body[data-brand-theme="new"] .contact-copy {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(13, 37, 64, 0.98), rgba(14, 106, 106, 0.88)),
    var(--blue);
  border: 1px solid rgba(199, 163, 74, 0.18);
  box-shadow: 0 24px 55px rgba(13, 37, 64, 0.18);
}

:root[data-brand-theme="new"] .contact-copy .section-label,
body[data-brand-theme="new"] .contact-copy .section-label {
  color: var(--gold);
}

:root[data-brand-theme="new"] .contact-copy h2,
body[data-brand-theme="new"] .contact-copy h2 {
  color: #ffffff;
}

:root[data-brand-theme="new"] .contact-copy > p,
body[data-brand-theme="new"] .contact-copy > p {
  color: rgba(255, 255, 255, 0.82);
}

:root[data-brand-theme="new"] .contact-copy .contact-list,
body[data-brand-theme="new"] .contact-copy .contact-list {
  background: transparent;
}

:root[data-brand-theme="new"] .contact-copy .contact-list dt,
body[data-brand-theme="new"] .contact-copy .contact-list dt {
  color: rgba(255, 255, 255, 0.68);
}

:root[data-brand-theme="new"] .contact-copy .contact-list dd,
:root[data-brand-theme="new"] .contact-copy .contact-list a,
body[data-brand-theme="new"] .contact-copy .contact-list dd,
body[data-brand-theme="new"] .contact-copy .contact-list a {
  color: #ffffff;
}

:root[data-brand-theme="new"] .contact-copy .contact-list div,
body[data-brand-theme="new"] .contact-copy .contact-list div {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

:root[data-brand-theme="new"] .contact-form,
body[data-brand-theme="new"] .contact-form {
  border-color: rgba(14, 106, 106, 0.16);
  box-shadow: 0 24px 58px rgba(13, 37, 64, 0.12);
}

:root[data-brand-theme="new"] input:focus,
:root[data-brand-theme="new"] textarea:focus,
:root[data-brand-theme="new"] select:focus,
body[data-brand-theme="new"] input:focus,
body[data-brand-theme="new"] textarea:focus,
body[data-brand-theme="new"] select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(14, 106, 106, 0.12);
}

:root[data-brand-theme="new"] .site-footer,
body[data-brand-theme="new"] .site-footer {
  background:
    linear-gradient(90deg, rgba(199, 163, 74, 0.12) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(180deg, var(--blue), #081b30);
}

:root[data-brand-theme="new"] .site-footer::before,
body[data-brand-theme="new"] .site-footer::before {
  background:
    radial-gradient(circle at 70% 20%, rgba(199, 163, 74, 0.18), transparent 30%),
    radial-gradient(circle at 30% 72%, rgba(14, 106, 106, 0.22), transparent 34%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

:root[data-brand-theme="new"] .footer-brand,
body[data-brand-theme="new"] .footer-brand {
  border: 1px solid rgba(199, 163, 74, 0.18);
}

@media (max-width: 760px) {
  :root[data-brand-theme="new"] .brand,
  body[data-brand-theme="new"] .brand {
    width: 108px;
  }

  :root[data-brand-theme="new"] .brand img,
  body[data-brand-theme="new"] .brand img {
    height: auto;
    max-height: 70px;
  }

  :root[data-brand-theme="new"] .nav,
  body[data-brand-theme="new"] .nav {
    min-height: 76px;
  }
}

/* Mobile interface polish: keep the one-page layout compact and stacked. */
@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .site-header {
    --mobile-header-right: max(14px, calc(100vw - 390px + 14px));
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
  }

  body {
    padding-top: 76px;
  }

  html {
    scroll-padding-top: 88px;
  }

  .nav,
  .nav.shell {
    position: relative;
    width: var(--shell);
    max-width: var(--shell);
    min-height: 76px;
    gap: 12px;
  }

  .brand,
  :root[data-brand-theme="new"] .brand,
  body[data-brand-theme="new"] .brand {
    width: 108px;
    min-width: 0;
    align-self: center;
    transform: translateY(5px);
  }

  .brand img,
  :root[data-brand-theme="new"] .brand img,
  body[data-brand-theme="new"] .brand img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: var(--mobile-header-right);
    z-index: 1002;
    display: grid !important;
    width: 44px;
    min-width: 44px;
    height: 44px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(3, 43, 80, 0.28);
    box-shadow: 0 10px 24px rgba(3, 43, 80, 0.1);
    transform: translateY(-50%);
  }

  .nav-menu {
    inset: calc(76px + env(safe-area-inset-top) + 8px) var(--mobile-header-right) auto 14px;
    z-index: 1001;
    width: auto;
    max-height: calc(100svh - 88px);
    overflow-y: auto;
  }

  .nav-menu .language-switch {
    width: 100%;
    margin: 10px 0;
  }

  .nav-menu .language-switch button {
    min-height: 40px;
  }

  .hero {
    min-height: clamp(790px, 96svh, 900px);
    align-items: start;
    padding: 66px 0 56px;
    text-align: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .hero-copy::before {
    inset: -11% -7% -6%;
    background:
      radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.46) 43%, transparent 68%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0.72) 74%, transparent 100%);
  }

  .hero h1 {
    max-width: 11ch;
    margin-inline: auto;
    font-size: clamp(2.22rem, 10vw, 2.72rem);
    line-height: 1.02;
  }

  .hero p {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 284px;
  }

  .hero-proof-row {
    justify-items: center;
    margin-top: 26px;
  }

  .hero-art {
    inset: 302px calc(50% - 50vw) auto;
    height: 230px;
    place-items: start center;
    overflow: hidden;
  }

  .hero-art img {
    justify-self: center;
    width: min(710px, 182vw);
    max-width: none;
    min-width: 0;
    opacity: 1;
    filter: drop-shadow(0 18px 30px rgba(3, 43, 80, 0.08)) saturate(1.72) contrast(1.86) brightness(0.86);
    transform: translateX(calc((100vw - min(710px, 182vw)) / 2)) translateY(-26px);
    mask-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0, #000 6%, #000 94%, rgba(0, 0, 0, 0.86) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0, #000 7%, #000 96%, rgba(0, 0, 0, 0.82) 100%);
  }

  .hero-art .hero-center-calculator-icon {
    position: absolute;
    top: 28.8%;
    left: 50%;
    z-index: 4;
    display: block;
    width: 31px;
    max-width: none;
    min-width: 0;
    height: auto;
    margin: 0;
    opacity: 1;
    mix-blend-mode: normal;
    filter: drop-shadow(0 5px 9px rgba(3, 43, 80, 0.12));
    mask-image: none;
    transform: translate(-50%, -50%);
  }

  .hero-center-icon-cleaner {
    display: none;
  }

  .coverage {
    padding: 44px 0;
  }

  .coverage-inner {
    gap: 24px;
  }

  .coverage-title h2 {
    max-width: min(13ch, 100%);
    margin-inline: auto;
    text-align: center;
  }

  .route-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .route-item {
    grid-template-columns: 48px minmax(0, 1fr);
    width: 100%;
    min-height: auto;
    padding: 16px;
  }

  .route-icon {
    width: 48px;
    height: 48px;
  }

  .route-brand {
    width: 100%;
    margin-bottom: 8px;
  }

  .route-logo {
    width: min(196px, 100%);
    height: 50px;
  }

  .route-logo img {
    max-width: 160px;
    max-height: 32px;
  }

  .route-line {
    width: 2px;
    height: 34px;
    margin: -2px auto;
    background: repeating-linear-gradient(
      180deg,
      var(--green),
      var(--green) 5px,
      transparent 5px,
      transparent 10px
    );
  }

  .route-line::before,
  .route-line::after,
  .route-line span {
    left: 50%;
    transform: translate(-50%, 0);
  }

  .route-line::before {
    top: 0;
  }

  .route-line::after {
    top: auto;
    bottom: 0;
  }

  .route-line span {
    top: calc(50% - 5px);
  }

  .coverage-mini-map {
    min-height: auto;
    padding: 16px;
  }

  .coverage-mini-map svg {
    min-height: 142px;
  }

  .coverage-mini-map-top,
  .coverage-mini-map-legend {
    gap: 10px;
  }

  .home-split {
    gap: 48px;
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .home-split .articles::before,
  .home-split .process-steps::before {
    display: none;
  }

  .articles-heading {
    gap: 12px;
  }

  .article-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .filter-button {
    min-height: 40px;
    padding: 0 10px;
  }

  .home-split .article-card {
    min-height: auto;
    padding: 0;
  }

  .home-split .article-media {
    height: 128px;
    padding: 20px;
  }

  .home-split .article-media img {
    width: min(84%, 230px);
    height: 68px;
  }

  .home-split .article-category,
  .home-split .article-card h3,
  .home-split .article-card p {
    margin-right: 24px;
    margin-left: 24px;
  }

  .home-split .article-open {
    margin: 20px 24px 24px;
  }

  .home-split .process {
    padding: 24px 18px;
  }

  .home-split .process .section-heading {
    margin-bottom: 24px;
  }

  .home-split .process-step {
    display: grid;
    justify-items: center;
    min-height: 0;
    padding: 30px 26px 32px;
    text-align: center;
  }

  .home-split .process-step span {
    margin-right: auto;
    margin-bottom: 18px;
    margin-left: auto;
  }

  .home-split .process-step h3,
  .home-split .process-step p {
    max-width: 26ch;
    margin-right: auto;
    margin-left: auto;
  }

  .contact {
    padding: 48px 0 58px;
  }

  .contact-copy {
    padding: 24px;
  }

  .contact-form {
    padding: 20px 16px 22px;
  }

  .contact-form::before {
    right: 16px;
    left: 16px;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

/* Article layout comparison: three media/text compositions for review. */
@media (min-width: 761px) {
  .home-split .article-grid {
    grid-template-columns: 1.16fr 1fr 0.96fr;
    gap: 22px;
  }

  .home-split .article-card {
    min-height: 320px;
  }

  .home-split .article-card .article-media {
    grid-area: media;
  }

  .home-split .article-card .article-category {
    grid-area: category;
  }

  .home-split .article-card h3 {
    grid-area: title;
  }

  .home-split .article-card p:not(.article-category) {
    grid-area: text;
  }

  .home-split .article-card .article-open {
    grid-area: action;
  }

  .home-split .article-card:nth-child(1) {
    grid-template-columns: minmax(132px, 34%) minmax(0, 1fr);
    grid-template-rows: auto auto 1fr auto;
    grid-template-areas:
      "media category"
      "media title"
      "media text"
      "media action";
  }

  .home-split .article-card:nth-child(1) .article-media {
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 320px;
    padding: 22px;
    background:
      linear-gradient(180deg, rgba(3, 43, 80, 0.06), rgba(107, 178, 63, 0.1)),
      #ffffff;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .home-split .article-card:nth-child(1) .article-media img {
    width: min(118px, 88%);
    height: 92px;
  }

  .home-split .article-card:nth-child(1) .article-category {
    margin: 30px 28px 0 0;
  }

  .home-split .article-card:nth-child(1) h3,
  .home-split .article-card:nth-child(1) p:not(.article-category) {
    margin-right: 28px;
    margin-left: 0;
  }

  .home-split .article-card:nth-child(1) .article-open {
    margin: 22px 28px 28px 0;
  }

  .home-split .article-card:nth-child(2) {
    grid-template-areas:
      "media"
      "category"
      "title"
      "text"
      "action";
    text-align: center;
  }

  .home-split .article-card:nth-child(2) .article-media {
    height: 176px;
    padding: 28px;
    background:
      radial-gradient(circle at 50% 35%, rgba(107, 178, 63, 0.15), transparent 48%),
      linear-gradient(135deg, rgba(3, 43, 80, 0.055), rgba(107, 178, 63, 0.09)),
      #ffffff;
  }

  .home-split .article-card:nth-child(2) .article-media img {
    width: min(86%, 260px);
    height: 90px;
  }

  .home-split .article-card:nth-child(2) .article-category,
  .home-split .article-card:nth-child(2) h3,
  .home-split .article-card:nth-child(2) p:not(.article-category) {
    margin-right: auto;
    margin-left: auto;
  }

  .home-split .article-card:nth-child(2) .article-open {
    justify-self: center;
  }

  .home-split .article-card:nth-child(3) {
    display: block;
    min-height: 320px;
    padding: 32px;
    background:
      linear-gradient(135deg, rgba(3, 43, 80, 0.035), transparent 45%),
      linear-gradient(180deg, #ffffff, rgba(248, 251, 253, 0.96));
  }

  .home-split .article-card:nth-child(3) .article-media {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 144px;
    height: 102px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(3, 43, 80, 0.08);
  }

  .home-split .article-card:nth-child(3) .article-media img {
    width: 100%;
    height: 64px;
  }

  .home-split .article-card:nth-child(3) .article-category {
    margin: 0 166px 18px 0;
  }

  .home-split .article-card:nth-child(3) h3 {
    max-width: 20ch;
    margin: 52px 0 0;
  }

  .home-split .article-card:nth-child(3) p:not(.article-category) {
    margin: 14px 0 0;
  }

  .home-split .article-card:nth-child(3) .article-open {
    margin: 24px 0 0;
  }
}

@media (max-width: 760px) {
  .home-split .article-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-split .article-card,
  .home-split .article-card:nth-child(1),
  .home-split .article-card:nth-child(2),
  .home-split .article-card:nth-child(3) {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto 1fr auto;
    min-height: auto;
    padding: 0;
    text-align: left;
  }

  .home-split .article-card .article-media,
  .home-split .article-card:nth-child(1) .article-media,
  .home-split .article-card:nth-child(2) .article-media,
  .home-split .article-card:nth-child(3) .article-media {
    position: static;
    width: 100%;
    height: 140px;
    min-height: 0;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .home-split .article-card .article-media img,
  .home-split .article-card:nth-child(1) .article-media img,
  .home-split .article-card:nth-child(2) .article-media img,
  .home-split .article-card:nth-child(3) .article-media img {
    width: min(82%, 240px);
    height: 74px;
  }

  .home-split .article-card .article-category,
  .home-split .article-card:nth-child(1) .article-category,
  .home-split .article-card:nth-child(2) .article-category,
  .home-split .article-card:nth-child(3) .article-category,
  .home-split .article-card h3,
  .home-split .article-card:nth-child(1) h3,
  .home-split .article-card:nth-child(2) h3,
  .home-split .article-card:nth-child(3) h3,
  .home-split .article-card p:not(.article-category),
  .home-split .article-card:nth-child(1) p:not(.article-category),
  .home-split .article-card:nth-child(2) p:not(.article-category),
  .home-split .article-card:nth-child(3) p:not(.article-category) {
    max-width: none;
    margin-right: 24px;
    margin-left: 24px;
  }

  .home-split .article-card .article-category,
  .home-split .article-card:nth-child(1) .article-category,
  .home-split .article-card:nth-child(2) .article-category,
  .home-split .article-card:nth-child(3) .article-category {
    margin-top: 24px;
  }

  .home-split .article-card .article-open,
  .home-split .article-card:nth-child(1) .article-open,
  .home-split .article-card:nth-child(2) .article-open,
  .home-split .article-card:nth-child(3) .article-open {
    justify-self: start;
    margin: 20px 24px 24px;
  }
}

@media (min-width: 761px) {
  .home-split .article-card:nth-child(1) {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto auto;
    grid-template-areas:
      "category"
      "title"
      "text"
      "action"
      "media";
  }

  .home-split .article-card:nth-child(1) .article-media {
    align-self: end;
    width: 100%;
    height: 138px;
    min-height: 0;
    padding: 24px 30px;
    background:
      linear-gradient(135deg, rgba(3, 43, 80, 0.055), rgba(107, 178, 63, 0.11)),
      #ffffff;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 0;
  }

  .home-split .article-card:nth-child(1) .article-media img {
    width: min(82%, 280px);
    height: 86px;
  }

  .home-split .article-card:nth-child(1) .article-category {
    margin: 30px 30px 0;
  }

  .home-split .article-card:nth-child(1) h3,
  .home-split .article-card:nth-child(1) p:not(.article-category) {
    margin-right: 30px;
    margin-left: 30px;
  }

  .home-split .article-card:nth-child(1) .article-open {
    margin: 20px 30px 24px;
  }
}

/* Final article review variants. The 01/02/03 controls switch only the card composition. */
.article-layout-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 16px;
}

.home-split .article-layout-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.home-split .articles-heading > .article-layout-controls {
  display: flex;
}

.article-style-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.article-style-button:hover,
.article-style-button:focus-visible,
.article-style-button.is-active {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
}

.home-split .article-grid[data-layout] {
  display: grid;
  gap: clamp(18px, 1.8vw, 26px);
  overflow: visible;
  border: 0;
  border-radius: 0;
}

.home-split .article-grid[data-layout] .article-card,
.home-split .article-grid[data-layout] .article-card:nth-child(1),
.home-split .article-grid[data-layout] .article-card:nth-child(2),
.home-split .article-grid[data-layout] .article-card:nth-child(3) {
  --card-lift: 0px;
  position: relative;
  display: grid;
  min-height: 324px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  background:
    linear-gradient(180deg, #ffffff, rgba(248, 251, 253, 0.96)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(3, 43, 80, 0.075);
  transform: translateY(var(--card-lift)) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.home-split .article-grid[data-layout] .article-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--blue);
}

.home-split .article-grid[data-layout] .article-card:nth-child(2)::before {
  background: var(--green);
}

.home-split .article-grid[data-layout] .article-card:hover,
.home-split .article-grid[data-layout] .article-card:focus-visible,
.home-split .article-grid[data-layout] .article-card:focus-within,
.home-split .article-grid[data-layout] .article-card.is-hovering {
  --card-lift: -8px;
  border-color: rgba(107, 178, 63, 0.55);
  box-shadow: 0 30px 70px rgba(3, 43, 80, 0.15);
}

.home-split .article-grid[data-layout] .article-card:focus-visible {
  outline: 3px solid rgba(107, 178, 63, 0.28);
  outline-offset: 4px;
}

.home-split .article-grid[data-layout] .article-media,
.home-split .article-grid[data-layout] .article-card:nth-child(1) .article-media,
.home-split .article-grid[data-layout] .article-card:nth-child(2) .article-media,
.home-split .article-grid[data-layout] .article-card:nth-child(3) .article-media {
  position: static;
  display: grid;
  grid-area: media;
  place-items: center;
  width: auto;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  margin: 0;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(107, 178, 63, 0.09), rgba(3, 43, 80, 0.055)),
    #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-split .article-grid[data-layout] .article-media img,
.home-split .article-grid[data-layout] .article-card:nth-child(1) .article-media img,
.home-split .article-grid[data-layout] .article-card:nth-child(2) .article-media img,
.home-split .article-grid[data-layout] .article-card:nth-child(3) .article-media img {
  width: min(82%, 280px);
  height: min(92px, 100%);
  object-fit: contain;
}

.home-split .article-grid[data-layout] .article-category,
.home-split .article-grid[data-layout] .article-card:nth-child(1) .article-category,
.home-split .article-grid[data-layout] .article-card:nth-child(2) .article-category,
.home-split .article-grid[data-layout] .article-card:nth-child(3) .article-category {
  display: inline-grid;
  grid-area: category;
  width: fit-content;
  max-width: calc(100% - 56px);
  margin: 26px 28px 0;
  padding: 6px 10px;
  color: var(--blue);
  background: rgba(3, 43, 80, 0.06);
  border-radius: 999px;
  line-height: 1;
}

.home-split .article-grid[data-layout] .article-card h3,
.home-split .article-grid[data-layout] .article-card:nth-child(1) h3,
.home-split .article-grid[data-layout] .article-card:nth-child(2) h3,
.home-split .article-grid[data-layout] .article-card:nth-child(3) h3 {
  grid-area: title;
  max-width: 24ch;
  margin: 14px 28px 0;
  font-size: clamp(1.12rem, 1.22vw, 1.36rem);
  line-height: 1.18;
}

.home-split .article-grid[data-layout] .article-card p:not(.article-category),
.home-split .article-grid[data-layout] .article-card:nth-child(1) p:not(.article-category),
.home-split .article-grid[data-layout] .article-card:nth-child(2) p:not(.article-category),
.home-split .article-grid[data-layout] .article-card:nth-child(3) p:not(.article-category) {
  grid-area: text;
  max-width: 56ch;
  margin: 12px 28px 0;
  font-size: 0.95rem;
}

.home-split .article-grid[data-layout] .article-open,
.home-split .article-grid[data-layout] .article-card:nth-child(1) .article-open,
.home-split .article-grid[data-layout] .article-card:nth-child(2) .article-open,
.home-split .article-grid[data-layout] .article-card:nth-child(3) .article-open {
  grid-area: action;
  justify-self: start;
  margin: 24px 28px 28px;
}

.home-split .article-grid[data-layout="classic"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-split .article-grid[data-layout="classic"] .article-card {
  grid-template-rows: 168px auto auto 1fr auto;
  grid-template-areas:
    "media"
    "category"
    "title"
    "text"
    "action";
}

.home-split .article-grid[data-layout="classic"] .article-media {
  border-bottom: 1px solid var(--line);
}

.home-split .article-grid[data-layout="split"] {
  grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.88fr);
  grid-auto-rows: minmax(198px, auto);
}

.home-split .article-grid[data-layout="split"] .article-card:first-child {
  grid-row: span 2;
  grid-template-columns: minmax(220px, 42%) minmax(0, 1fr);
  grid-template-rows: auto auto 1fr auto;
  grid-template-areas:
    "media category"
    "media title"
    "media text"
    "media action";
  min-height: 426px;
}

.home-split .article-grid[data-layout="split"] .article-card:first-child .article-media {
  align-self: stretch;
  border-right: 1px solid var(--line);
}

.home-split .article-grid[data-layout="split"] .article-card:first-child .article-media img {
  width: min(74%, 220px);
  height: 128px;
}

.home-split .article-grid[data-layout="split"] .article-card:not(:first-child) {
  grid-column: 2;
  grid-template-columns: minmax(0, 1fr) 132px;
  grid-template-rows: auto auto 1fr auto;
  grid-template-areas:
    "category media"
    "title media"
    "text media"
    "action media";
  min-height: 198px;
}

.home-split .article-grid[data-layout="split"] .article-card:not(:first-child) .article-media {
  align-self: stretch;
  padding: 18px;
  border-left: 1px solid var(--line);
}

.home-split .article-grid[data-layout="split"] .article-card:not(:first-child) .article-media img {
  width: 96px;
  height: 76px;
}

.home-split .article-grid[data-layout="split"] .article-card:not(:first-child) .article-category {
  margin-top: 24px;
}

.home-split .article-grid[data-layout="split"] .article-card:not(:first-child) h3 {
  font-size: 1.05rem;
}

.home-split .article-grid[data-layout="split"] .article-card:not(:first-child) p:not(.article-category) {
  font-size: 0.88rem;
}

.home-split .article-grid[data-layout="magazine"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-split .article-grid[data-layout="magazine"] .article-card:first-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 38%);
  grid-template-rows: auto auto 1fr auto;
  grid-template-areas:
    "category media"
    "title media"
    "text media"
    "action media";
  min-height: 292px;
}

.home-split .article-grid[data-layout="magazine"] .article-card:first-child .article-media {
  align-self: stretch;
  border-left: 1px solid var(--line);
}

.home-split .article-grid[data-layout="magazine"] .article-card:first-child h3 {
  max-width: 30ch;
  font-size: clamp(1.42rem, 2vw, 2.08rem);
}

.home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) {
  grid-template-columns: 148px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr auto;
  grid-template-areas:
    "media category"
    "media title"
    "media text"
    "media action";
  min-height: 250px;
}

.home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) .article-media {
  align-self: stretch;
  border-right: 1px solid var(--line);
}

.home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) .article-media img {
  width: 112px;
  height: 86px;
}

.home-split .article-grid[data-layout] .article-card:only-child {
  grid-column: 1 / -1;
}

@media (max-width: 920px) and (min-width: 761px) {
  .home-split .article-grid[data-layout],
  .home-split .article-grid[data-layout="split"],
  .home-split .article-grid[data-layout="magazine"] {
    grid-template-columns: 1fr;
  }

  .home-split .article-grid[data-layout="split"] .article-card,
  .home-split .article-grid[data-layout="split"] .article-card:first-child,
  .home-split .article-grid[data-layout="split"] .article-card:not(:first-child),
  .home-split .article-grid[data-layout="magazine"] .article-card,
  .home-split .article-grid[data-layout="magazine"] .article-card:first-child,
  .home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .article-layout-controls {
    margin-top: 14px;
  }

  .home-split .article-grid[data-layout],
  .home-split .article-grid[data-layout="classic"],
  .home-split .article-grid[data-layout="split"],
  .home-split .article-grid[data-layout="magazine"] {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-split .article-grid[data-layout] .article-card,
  .home-split .article-grid[data-layout] .article-card:nth-child(1),
  .home-split .article-grid[data-layout] .article-card:nth-child(2),
  .home-split .article-grid[data-layout] .article-card:nth-child(3),
  .home-split .article-grid[data-layout="split"] .article-card:first-child,
  .home-split .article-grid[data-layout="split"] .article-card:not(:first-child),
  .home-split .article-grid[data-layout="magazine"] .article-card:first-child,
  .home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 142px auto auto 1fr auto;
    grid-template-areas:
      "media"
      "category"
      "title"
      "text"
      "action";
    min-height: auto;
  }

  .home-split .article-grid[data-layout] .article-media,
  .home-split .article-grid[data-layout] .article-card:nth-child(1) .article-media,
  .home-split .article-grid[data-layout] .article-card:nth-child(2) .article-media,
  .home-split .article-grid[data-layout] .article-card:nth-child(3) .article-media,
  .home-split .article-grid[data-layout="split"] .article-card:first-child .article-media,
  .home-split .article-grid[data-layout="split"] .article-card:not(:first-child) .article-media,
  .home-split .article-grid[data-layout="magazine"] .article-card:first-child .article-media,
  .home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) .article-media {
    align-self: stretch;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .home-split .article-grid[data-layout] .article-media img,
  .home-split .article-grid[data-layout] .article-card:nth-child(1) .article-media img,
  .home-split .article-grid[data-layout] .article-card:nth-child(2) .article-media img,
  .home-split .article-grid[data-layout] .article-card:nth-child(3) .article-media img,
  .home-split .article-grid[data-layout="split"] .article-card:first-child .article-media img,
  .home-split .article-grid[data-layout="split"] .article-card:not(:first-child) .article-media img,
  .home-split .article-grid[data-layout="magazine"] .article-card:first-child .article-media img,
  .home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) .article-media img {
    width: min(82%, 240px);
    height: 78px;
  }

  .home-split .article-grid[data-layout="magazine"] .article-card:first-child h3 {
    font-size: clamp(1.2rem, 6vw, 1.48rem);
  }
}

/* Temporary article media preview: show uploaded screenshots as real thumbnails. */
.home-split .article-grid[data-layout] .article-media,
.home-split .article-grid[data-layout] .article-card:nth-child(1) .article-media,
.home-split .article-grid[data-layout] .article-card:nth-child(2) .article-media,
.home-split .article-grid[data-layout] .article-card:nth-child(3) .article-media,
.home-split .article-grid[data-layout="split"] .article-card:first-child .article-media,
.home-split .article-grid[data-layout="split"] .article-card:not(:first-child) .article-media,
.home-split .article-grid[data-layout="magazine"] .article-card:first-child .article-media,
.home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) .article-media {
  padding: 0;
  overflow: hidden;
  background: #07101b;
}

.home-split .article-grid[data-layout] .article-media img,
.home-split .article-grid[data-layout] .article-card:nth-child(1) .article-media img,
.home-split .article-grid[data-layout] .article-card:nth-child(2) .article-media img,
.home-split .article-grid[data-layout] .article-card:nth-child(3) .article-media img,
.home-split .article-grid[data-layout="split"] .article-card:first-child .article-media img,
.home-split .article-grid[data-layout="split"] .article-card:not(:first-child) .article-media img,
.home-split .article-grid[data-layout="magazine"] .article-card:first-child .article-media img,
.home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) .article-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.home-split .article-grid[data-layout] .article-card:hover .article-media img,
.home-split .article-grid[data-layout] .article-card:focus-visible .article-media img,
.home-split .article-grid[data-layout] .article-card:focus-within .article-media img,
.home-split .article-grid[data-layout] .article-card.is-hovering .article-media img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.home-split .article-grid[data-layout] .article-card:hover .article-open,
.home-split .article-grid[data-layout] .article-card:focus-visible .article-open,
.home-split .article-grid[data-layout] .article-card:focus-within .article-open,
.home-split .article-grid[data-layout] .article-card.is-hovering .article-open {
  color: var(--green);
}

.home-split .article-grid[data-layout] .article-card:hover .article-open svg,
.home-split .article-grid[data-layout] .article-card:focus-visible .article-open svg,
.home-split .article-grid[data-layout] .article-card:focus-within .article-open svg,
.home-split .article-grid[data-layout] .article-card.is-hovering .article-open svg {
  transform: translateX(5px);
}

.home-split .article-grid[data-layout="classic"] .article-card {
  grid-template-rows: clamp(210px, 14vw, 250px) auto auto 1fr auto;
}

/* Article media size lock: all article cards keep the same visual size. */
.home-split .article-grid[data-layout],
.home-split .article-grid[data-layout="classic"],
.home-split .article-grid[data-layout="split"],
.home-split .article-grid[data-layout="magazine"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.home-split .article-grid[data-layout] .article-card,
.home-split .article-grid[data-layout] .article-card:nth-child(1),
.home-split .article-grid[data-layout] .article-card:nth-child(2),
.home-split .article-grid[data-layout] .article-card:nth-child(3),
.home-split .article-grid[data-layout="split"] .article-card:first-child,
.home-split .article-grid[data-layout="split"] .article-card:not(:first-child),
.home-split .article-grid[data-layout="magazine"] .article-card:first-child,
.home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) {
  grid-column: auto;
  grid-row: auto;
  grid-template-columns: 1fr;
  grid-template-rows: clamp(210px, 14vw, 250px) auto auto 1fr auto;
  grid-template-areas:
    "media"
    "category"
    "title"
    "text"
    "action";
  min-height: 496px;
}

.home-split .article-grid[data-layout] .article-media,
.home-split .article-grid[data-layout] .article-card:nth-child(1) .article-media,
.home-split .article-grid[data-layout] .article-card:nth-child(2) .article-media,
.home-split .article-grid[data-layout] .article-card:nth-child(3) .article-media,
.home-split .article-grid[data-layout="split"] .article-card:first-child .article-media,
.home-split .article-grid[data-layout="split"] .article-card:not(:first-child) .article-media,
.home-split .article-grid[data-layout="magazine"] .article-card:first-child .article-media,
.home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) .article-media {
  align-self: stretch;
  width: 100%;
  height: clamp(210px, 14vw, 250px);
  min-height: clamp(210px, 14vw, 250px);
  aspect-ratio: auto;
  border-right: 0;
  border-bottom: 1px solid var(--line);
  border-left: 0;
}

.home-split .article-grid[data-layout] .article-media img,
.home-split .article-grid[data-layout] .article-card:nth-child(1) .article-media img,
.home-split .article-grid[data-layout] .article-card:nth-child(2) .article-media img,
.home-split .article-grid[data-layout] .article-card:nth-child(3) .article-media img,
.home-split .article-grid[data-layout="split"] .article-card:first-child .article-media img,
.home-split .article-grid[data-layout="split"] .article-card:not(:first-child) .article-media img,
.home-split .article-grid[data-layout="magazine"] .article-card:first-child .article-media img,
.home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) .article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 760px) {
  .home-split .article-grid[data-layout] .article-card,
  .home-split .article-grid[data-layout] .article-card:nth-child(1),
  .home-split .article-grid[data-layout] .article-card:nth-child(2),
  .home-split .article-grid[data-layout] .article-card:nth-child(3),
  .home-split .article-grid[data-layout="split"] .article-card:first-child,
  .home-split .article-grid[data-layout="split"] .article-card:not(:first-child),
  .home-split .article-grid[data-layout="magazine"] .article-card:first-child,
  .home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) {
    grid-template-rows: 190px auto auto 1fr auto;
  }

  .article-share {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .dialog-share {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile hero cleanup: keep the white illustration from reading as a gray block. */
@media (max-width: 760px) {
  .hero-art {
    background:
      linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, #ffffff 100%),
      linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, #ffffff 100%);
  }

  .hero-art img {
    mix-blend-mode: normal;
    filter: drop-shadow(0 16px 28px rgba(3, 43, 80, 0.08)) saturate(1.04) contrast(1.04) brightness(1.04);
    mask-image:
      linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%),
      linear-gradient(180deg, transparent 0, #000 10%, #000 88%, transparent 100%);
  }
}

@media (max-width: 760px) {
  .hero-copy,
  .hero p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .hero h1 {
    width: min(100%, 12ch);
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(2.05rem, 8.8vw, 2.42rem);
    overflow-wrap: normal;
  }

  .hero p {
    max-width: 34ch;
    margin-inline: auto;
    padding-inline: 2px;
  }
}

/* Final control polish: keep proof points and article controls cleanly horizontal. */
.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  justify-content: start;
  width: fit-content;
  max-width: min(100%, 680px);
  gap: 10px;
  margin-top: 24px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 224, 236, 0.72);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(3, 43, 80, 0.055);
  backdrop-filter: blur(10px);
}

.hero-proof-row span {
  min-height: 34px;
  padding: 0 12px 0 9px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 224, 236, 0.68);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.hero-proof-row span::before {
  flex-basis: 16px;
  width: 16px;
  height: 16px;
}

.home-split .articles-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.home-split .articles-heading > div:first-child {
  flex: 1 1 360px;
  min-width: 0;
}

.article-control-bar {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
  padding: 6px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 224, 236, 0.92);
  border-radius: 999px;
  box-shadow:
    0 16px 34px rgba(3, 43, 80, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.home-split .article-filters {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  padding: 0;
  gap: 4px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.home-split .filter-button {
  min-width: 86px;
  min-height: 34px;
  padding: 0 16px;
  color: rgba(3, 43, 80, 0.76);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1;
}

.home-split .filter-button:hover,
.home-split .filter-button:focus-visible {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(3, 43, 80, 0.065);
}

.home-split .filter-button.is-active {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 10px 20px rgba(3, 43, 80, 0.16);
}

.home-split .article-layout-controls {
  margin-top: 0;
  padding-left: 10px;
  justify-content: flex-end;
  border-left: 1px solid rgba(184, 196, 216, 0.72);
}

@media (max-width: 1080px) {
  .hero-proof-row {
    grid-template-columns: 1fr;
    width: min(100%, 420px);
    border-radius: 18px;
  }

  .hero-proof-row span {
    justify-content: center;
  }

  .home-split .articles-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-control-bar {
    width: 100%;
    justify-content: space-between;
    border-radius: 18px;
  }

  .home-split .article-filters {
    justify-content: flex-start;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-split .article-filters::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-proof-row {
    width: min(100%, 360px);
    margin-inline: auto;
    padding: 7px;
    gap: 7px;
    background: rgba(255, 255, 255, 0.84);
  }

  .hero-proof-row span {
    min-height: 32px;
    font-size: 0.85rem;
  }

  .home-split .articles-heading {
    gap: 16px;
    margin-bottom: 22px;
  }

  .article-control-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 8px;
  }

  .home-split .article-filters {
    width: 100%;
  }

  .home-split .article-layout-controls {
    padding-top: 8px;
    padding-left: 0;
    justify-content: flex-start;
    border-top: 1px solid rgba(184, 196, 216, 0.72);
    border-left: 0;
  }

  .home-split .filter-button {
    min-width: max-content;
    padding: 0 14px;
  }
}

/* Final article toolbar lock: filters and view buttons stay in one horizontal row. */
.home-split .articles-heading {
  display: grid !important;
  grid-template-columns: minmax(280px, 1fr) auto !important;
  align-items: end !important;
  column-gap: clamp(24px, 4vw, 58px) !important;
  row-gap: 18px !important;
}

.home-split .articles-heading > div:first-child {
  grid-column: 1 !important;
  min-width: 0 !important;
}

.home-split .articles-heading .article-control-bar {
  grid-column: 2 !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  width: auto !important;
  min-width: 0 !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 7px !important;
  border-radius: 999px !important;
}

.home-split .articles-heading .article-filters {
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: none !important;
  gap: 5px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.home-split .articles-heading .filter-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 86px !important;
  height: 34px !important;
  min-height: 34px !important;
  margin: 0 !important;
  padding: 0 15px !important;
  white-space: nowrap !important;
}

.home-split .articles-heading .article-layout-controls {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 0 0 10px !important;
  border-top: 0 !important;
  border-left: 1px solid rgba(184, 196, 216, 0.72) !important;
}

@media (max-width: 900px) {
  .home-split .articles-heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .home-split .articles-heading .article-control-bar {
    grid-column: 1 !important;
    width: 100% !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
  }

  .home-split .articles-heading .article-control-bar::-webkit-scrollbar {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .home-split .articles-heading .article-control-bar {
    gap: 8px !important;
    padding: 6px !important;
    border-radius: 18px !important;
  }

  .home-split .articles-heading .filter-button {
    min-width: max-content !important;
    height: 32px !important;
    min-height: 32px !important;
    padding: 0 13px !important;
  }
}

/* Production article lock: cards stay equal, including filtered one-card views. */
.home-split .article-grid[data-layout],
.home-split .article-grid[data-layout="classic"],
.home-split .article-grid[data-layout="split"],
.home-split .article-grid[data-layout="magazine"] {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

.home-split .article-grid[data-layout] .article-card,
.home-split .article-grid[data-layout] .article-card:nth-child(1),
.home-split .article-grid[data-layout] .article-card:nth-child(2),
.home-split .article-grid[data-layout] .article-card:nth-child(3),
.home-split .article-grid[data-layout] .article-card:only-child,
.home-split .article-grid[data-layout="split"] .article-card:first-child,
.home-split .article-grid[data-layout="split"] .article-card:not(:first-child),
.home-split .article-grid[data-layout="magazine"] .article-card:first-child,
.home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) {
  grid-column: auto !important;
  grid-row: auto !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: clamp(210px, 14vw, 250px) auto auto 1fr auto !important;
  grid-template-areas:
    "media"
    "category"
    "title"
    "text"
    "action" !important;
  min-height: 496px !important;
}

.home-split .article-grid[data-layout] .article-media,
.home-split .article-grid[data-layout] .article-card:nth-child(1) .article-media,
.home-split .article-grid[data-layout] .article-card:nth-child(2) .article-media,
.home-split .article-grid[data-layout] .article-card:nth-child(3) .article-media,
.home-split .article-grid[data-layout] .article-card:only-child .article-media,
.home-split .article-grid[data-layout="split"] .article-card:first-child .article-media,
.home-split .article-grid[data-layout="split"] .article-card:not(:first-child) .article-media,
.home-split .article-grid[data-layout="magazine"] .article-card:first-child .article-media,
.home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) .article-media {
  grid-area: media !important;
  align-self: stretch !important;
  width: 100% !important;
  height: clamp(210px, 14vw, 250px) !important;
  min-height: clamp(210px, 14vw, 250px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-right: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  border-left: 0 !important;
}

.home-split .article-grid[data-layout] .article-media img,
.home-split .article-grid[data-layout] .article-card:nth-child(1) .article-media img,
.home-split .article-grid[data-layout] .article-card:nth-child(2) .article-media img,
.home-split .article-grid[data-layout] .article-card:nth-child(3) .article-media img,
.home-split .article-grid[data-layout] .article-card:only-child .article-media img,
.home-split .article-grid[data-layout="split"] .article-card:first-child .article-media img,
.home-split .article-grid[data-layout="split"] .article-card:not(:first-child) .article-media img,
.home-split .article-grid[data-layout="magazine"] .article-card:first-child .article-media img,
.home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) .article-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.home-split .article-grid[data-layout] .article-card h3,
.home-split .article-grid[data-layout] .article-card:nth-child(1) h3,
.home-split .article-grid[data-layout] .article-card:nth-child(2) h3,
.home-split .article-grid[data-layout] .article-card:nth-child(3) h3,
.home-split .article-grid[data-layout] .article-card:only-child h3 {
  grid-area: title !important;
  min-height: 2.55em !important;
}

.home-split .article-grid[data-layout] .article-card p:not(.article-category),
.home-split .article-grid[data-layout] .article-card:nth-child(1) p:not(.article-category),
.home-split .article-grid[data-layout] .article-card:nth-child(2) p:not(.article-category),
.home-split .article-grid[data-layout] .article-card:nth-child(3) p:not(.article-category),
.home-split .article-grid[data-layout] .article-card:only-child p:not(.article-category) {
  grid-area: text !important;
  min-height: 3.4em !important;
}

.cookie-consent {
  position: fixed;
  right: max(18px, calc((100vw - var(--shell)) / 2));
  bottom: 18px;
  left: max(18px, calc((100vw - var(--shell)) / 2));
  z-index: 1200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(3, 43, 80, 0.96), rgba(3, 43, 80, 0.9)),
    var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(3, 43, 80, 0.24);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent p {
  margin: 0 0 4px;
  font-weight: 850;
}

.cookie-consent span {
  display: block;
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-actions a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 780;
  text-decoration: none;
}

.cookie-actions a:hover,
.cookie-actions a:focus-visible {
  color: #ffffff;
}

.cookie-actions button {
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--green);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(107, 178, 63, 0.24);
  font-weight: 850;
}

@media (max-width: 920px) {
  .home-split .article-grid[data-layout],
  .home-split .article-grid[data-layout="classic"],
  .home-split .article-grid[data-layout="split"],
  .home-split .article-grid[data-layout="magazine"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .home-split .article-grid[data-layout],
  .home-split .article-grid[data-layout="classic"],
  .home-split .article-grid[data-layout="split"],
  .home-split .article-grid[data-layout="magazine"] {
    grid-template-columns: 1fr !important;
  }

  .home-split .article-grid[data-layout] .article-card,
  .home-split .article-grid[data-layout] .article-card:nth-child(1),
  .home-split .article-grid[data-layout] .article-card:nth-child(2),
  .home-split .article-grid[data-layout] .article-card:nth-child(3),
  .home-split .article-grid[data-layout] .article-card:only-child,
  .home-split .article-grid[data-layout="split"] .article-card:first-child,
  .home-split .article-grid[data-layout="split"] .article-card:not(:first-child),
  .home-split .article-grid[data-layout="magazine"] .article-card:first-child,
  .home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) {
    grid-template-rows: 190px auto auto 1fr auto !important;
    min-height: 430px !important;
  }

  .home-split .article-grid[data-layout] .article-media,
  .home-split .article-grid[data-layout] .article-card:nth-child(1) .article-media,
  .home-split .article-grid[data-layout] .article-card:nth-child(2) .article-media,
  .home-split .article-grid[data-layout] .article-card:nth-child(3) .article-media,
  .home-split .article-grid[data-layout] .article-card:only-child .article-media,
  .home-split .article-grid[data-layout="split"] .article-card:first-child .article-media,
  .home-split .article-grid[data-layout="split"] .article-card:not(:first-child) .article-media,
  .home-split .article-grid[data-layout="magazine"] .article-card:first-child .article-media,
  .home-split .article-grid[data-layout="magazine"] .article-card:not(:first-child) .article-media {
    height: 190px !important;
    min-height: 190px !important;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    right: 14px;
    bottom: 14px;
    left: 14px;
    gap: 14px;
  }

  .cookie-actions {
    justify-content: space-between;
  }
}
