﻿/* =========================================================================
   ENIH, Europska networking inicijativa Hrvatska
   Stylesheet: design tokens, layout primitives, components.
   Plain CSS, no frameworks. System / system-serif typography (no web fonts).
   ========================================================================= */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  /* Palette: institutional navy, soft blue, public-health green, neutrals */
  --navy-900: #0a2540;
  --navy-800: #0b2c4d;
  --navy-700: #143a63;
  --blue-600: #2766a8;
  --blue-500: #2f6fb2;
  --blue-400: #4e8ac9;
  --green-600: #2c8a68;
  --green-500: #36a07c;
  --ink: #16202b;
  --slate: #54626f;
  --slate-light: #76828f;
  --line: #e3e8ed;
  --mist: #eaf1f6;   /* cool light section background */
  --warm: #f5f4f1;   /* warm neutral light background */
  --white: #ffffff;

  --grad-hero: radial-gradient(1200px 600px at 78% -10%, #16467a 0%, rgba(22,70,122,0) 55%),
               radial-gradient(900px 500px at 0% 110%, #0e3a57 0%, rgba(14,58,87,0) 60%),
               linear-gradient(160deg, #0b2c4d 0%, #0a2540 100%);

  --shadow-sm: 0 1px 2px rgba(11, 44, 77, 0.06), 0 2px 6px rgba(11, 44, 77, 0.05);
  --shadow-md: 0 6px 20px rgba(11, 44, 77, 0.09), 0 2px 6px rgba(11, 44, 77, 0.05);
  --shadow-lg: 0 18px 48px rgba(10, 37, 64, 0.16);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --maxw: 1140px;
  --gut: clamp(1.1rem, 4vw, 2rem);

  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "URW Palladio L",
                  "Book Antiqua", Georgia, serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, "Noto Sans", sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-800);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 1.4rem + 2.7vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.6vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.45rem); }
h4 { font-size: 1.08rem; }

p { margin: 0 0 1rem; }

/* ---- Accessibility helpers ------------------------------------------- */
.skip-link {
  position: absolute;
  left: 50%;
  top: -3rem;
  transform: translateX(-50%);
  background: var(--navy-800);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 1000;
  transition: top 0.18s var(--ease);
}
.skip-link:focus { top: 0; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.hidden,
form .hidden,
form p.hidden,
[hidden],
.form-hidden {
  display: none !important;
  visibility: hidden !important;
}

/* ---- Layout primitives ----------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: 820px; }

.section { padding-block: clamp(3rem, 2rem + 5vw, 5.5rem); }
.section--tight { padding-block: clamp(2.2rem, 1.6rem + 3vw, 3.6rem); }
.section--mist { background: var(--mist); }
.section--warm { background: var(--warm); }
.section--navy { background: var(--navy-800); color: #dfe8f1; }
.section--navy h2 { color: #fff; }

.lead {
  font-size: clamp(1.08rem, 1rem + 0.45vw, 1.28rem);
  color: var(--slate);
  max-width: 64ch;
}

/* ---- Eyebrow (network-node signature marker) ------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin: 0 0 0.9rem;
}
.eyebrow svg { flex: none; }
.section--navy .eyebrow { color: #6fd6b1; }

.section-head { max-width: 70ch; margin-bottom: clamp(1.6rem, 1rem + 2vw, 2.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.16s var(--ease), box-shadow 0.16s var(--ease),
              background 0.16s var(--ease), color 0.16s var(--ease), border-color 0.16s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--blue-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:visited { color: #fff; }
.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active { background: var(--blue-500); color: #fff; box-shadow: var(--shadow-md); }

.btn--green { background: var(--green-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn--green:visited { color: #fff; }
.btn--green:hover { background: var(--green-500); box-shadow: var(--shadow-md); }

.btn--outline { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn--outline:hover { border-color: var(--blue-400); color: var(--blue-600); }

.btn--on-dark { background: #fff; color: var(--navy-800); }
.btn--on-dark:hover { background: #eef4fb; }
.btn--ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--ghost-dark:visited { color: #fff; }
.btn--ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---- Header / navigation --------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand:hover { text-decoration: none; }
.brand__logo {
  width: clamp(126px, 12vw, 168px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}
.brand__logo--footer {
  width: clamp(132px, 13vw, 176px);
  max-height: 64px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  display: inline-block;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.nav__links a:hover { background: var(--mist); color: var(--navy-800); text-decoration: none; }
.nav__links a[aria-current="page"] { color: var(--blue-600); font-weight: 600; }
.nav__cta { margin-left: 0.4rem; }
.nav__links .nav__cta .btn,
.nav__links .nav__cta .btn[aria-current="page"] {
  background: var(--blue-600);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.nav__links .nav__cta .btn:visited,
.nav__links .nav__cta .btn:active { color: #fff; }
.nav__links .nav__cta .btn:hover,
.nav__links .nav__cta .btn[aria-current="page"]:hover {
  background: var(--blue-500);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.nav__links .nav__cta .btn:focus-visible {
  color: #fff;
  outline: 3px solid var(--green-500);
  outline-offset: 3px;
}

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 0.8rem var(--gut) 1.4rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s var(--ease), opacity 0.22s var(--ease), visibility 0.22s;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__links a { padding: 0.8rem 0.6rem; font-size: 1.02rem; }
  .nav__cta { margin: 0.5rem 0 0; }
  .nav__cta .btn { width: 100%; }
}

/* ---- Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: #e7eef6;
  overflow: hidden;
}
.hero__net { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.9; pointer-events: none; }
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.4rem, 2.2rem + 6vw, 6.5rem);
  max-width: 44rem;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero__sub {
  font-size: clamp(1.08rem, 1rem + 0.6vw, 1.35rem);
  color: #c7d6e6;
  margin-bottom: 1.9rem;
  max-width: 40ch;
}
.hero .btn-row { margin-top: 0.5rem; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #d8e6f3;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem; border-radius: var(--radius-pill);
  margin-bottom: 1.4rem;
}
.hero__tag b { color: #fff; font-weight: 700; }

/* page hero (interior pages) */
.page-hero {
  background: var(--grad-hero);
  color: #d9e6f2;
}
.page-hero__inner { padding-block: clamp(2.6rem, 1.8rem + 4vw, 4.2rem); max-width: 52rem; }
.page-hero h1 { color: #fff; margin-bottom: 0.6rem; }
.page-hero p { color: #c4d4e4; max-width: 60ch; margin: 0; }
.breadcrumb {
  font-size: 0.84rem;
  color: #93acc6;
  margin-bottom: 1rem;
}
.breadcrumb a { color: #bcd0e5; }
.breadcrumb span { opacity: 0.6; padding: 0 0.4rem; }

/* ---- Cards ------------------------------------------------------------ */
.grid { display: grid; gap: clamp(1rem, 0.6rem + 1.4vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 1rem + 1vw, 1.7rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
  height: 100%;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d3deea; }
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--slate); margin-bottom: 0; }

.card__icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--mist);
  color: var(--blue-600);
  margin-bottom: 0.95rem;
}
.card__icon--green { background: #e4f3ec; color: var(--green-600); }
.card__num {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: var(--blue-500);
  display: inline-block; margin-bottom: 0.5rem;
}

/* pillar / list cards */
.listcard ul { list-style: none; margin: 0.6rem 0 0; padding: 0; }
.listcard li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.5rem;
  color: var(--slate);
  border-top: 1px solid var(--line);
}
.listcard li:first-child { border-top: 0; }
.listcard li::before {
  content: "";
  position: absolute; left: 0; top: 0.95rem;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-500);
}
.listcard__head { display: flex; align-items: center; gap: 0.7rem; }

/* ---- Highlight band (Pelješac) --------------------------------------- */
.highlight {
  background: linear-gradient(150deg, #103a2e 0%, #0e3a57 100%);
  color: #e7f2ec;
}
.highlight .eyebrow { color: #79e0bb; }
.highlight h2 { color: #fff; }
.highlight__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.6rem, 1rem + 3vw, 3rem);
  align-items: start;
}
@media (max-width: 880px) { .highlight__grid { grid-template-columns: 1fr; } }
.highlight__body p { color: #cfe2d8; }
.ref-note {
  font-size: 0.86rem;
  color: #a9c6ba;
  border-left: 3px solid #3a8f6c;
  padding: 0.3rem 0 0.3rem 0.9rem;
  margin: 1.1rem 0 1.4rem;
}
.service-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.3rem 0 1.5rem;
}
.service-pill {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
}
@media (max-width: 560px) { .service-highlights { grid-template-columns: 1fr; } }

/* ---- Forms ------------------------------------------------------------ */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 1rem + 1.4vw, 2rem);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.form-card h3 { margin-bottom: 0.3rem; }
.form-card .form-intro { color: var(--slate); font-size: 0.95rem; margin-bottom: 1.2rem; }
.service-form-card label,
.service-form-card .field-label,
.service-form-card .form-intro,
.service-form-card .consent {
  color: var(--navy-800);
}
.service-form-card .field .opt { color: var(--slate); }
.service-form-card .consent a { color: var(--blue-600); }

.field { margin-bottom: 1rem; }
.field label, .field-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.35rem;
}
.field .opt { font-weight: 400; color: var(--slate-light); }
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fcfdfe;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.85rem;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(78, 138, 201, 0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:user-invalid,
.field textarea:user-invalid { border-color: #c2453c; }

.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--slate);
  margin: 0.4rem 0 1.2rem;
  line-height: 1.5;
}
.consent input { margin-top: 0.25rem; width: 18px; height: 18px; flex: none; accent-color: var(--blue-600); }
.consent a { font-weight: 600; }

.form-card .btn--green,
.form-card .btn--primary { width: 100%; }

/* ---- Detail / article layout ----------------------------------------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.8rem; color: var(--navy-700); }
.prose p, .prose li { color: var(--ink); }
.prose strong { color: var(--navy-800); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 0 0 2rem;
}
.meta-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}
.meta-item .k {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--green-600); font-weight: 700;
}
.meta-item .v { color: var(--navy-800); font-weight: 600; }
.notice-card {
  margin: 1.6rem 0;
  padding: 1rem 1.1rem;
  background: #f6faf8;
  border: 1px solid #cfe6dc;
  border-left: 4px solid var(--green-600);
  border-radius: var(--radius-sm);
}
.notice-card p { margin: 0; color: var(--ink); }

.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: #fff5e8; color: #9a6a17;
  border: 1px solid #f0dcb8;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 0.35rem 0.8rem; border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

/* program / timeline */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  position: relative;
  padding: 0 0 1.3rem 1.7rem;
  border-left: 2px solid var(--line);
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute; left: -7px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue-500); border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}
.timeline .t-time { font-weight: 700; color: var(--navy-800); font-family: var(--font-body); }
.timeline .t-body { color: var(--slate); margin-top: 0.15rem; }
.timeline .t-body strong { color: var(--ink); }

.speaker-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.speaker-list li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.7rem 0.95rem; color: var(--ink);
}
.speaker-list .s-org { color: var(--slate); font-size: 0.92rem; }

/* ---- Logo wall -------------------------------------------------------- */
.logo-group { margin-bottom: 2.6rem; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.logo-cell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  min-height: 150px;
  display: flex; align-items: center; justify-content: center;
  padding: 1.45rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.16s var(--ease), transform 0.16s var(--ease);
}
.logo-cell:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.logo-cell--link {
  color: inherit;
  text-decoration: none;
}
.logo-cell--link:hover {
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(11, 44, 77, 0.12), 0 2px 6px rgba(11, 44, 77, 0.06);
  transform: translateY(-3px);
}
.logo-cell--link:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 3px;
}
.logo-cell img {
  max-width: 190px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---- Steps / process -------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 1rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step__n {
  counter-increment: step;
  flex: none; width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--navy-800); color: #fff;
  border-radius: 50%; font-weight: 700; font-family: var(--font-display);
}
.step__n::before { content: counter(step); }

/* ---- CTA strip -------------------------------------------------------- */
.cta-strip { text-align: center; }
.cta-strip h2 { color: #fff; }
.cta-strip p { color: #c4d4e4; max-width: 52ch; margin-inline: auto; }

/* ---- Footer ----------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: #aebfd0;
  padding-block: clamp(2.6rem, 2rem + 3vw, 3.6rem);
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.footer-about { max-width: 38ch; margin-top: 1rem; color: #9fb2c6; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #b9c8d8; }
.footer-col a:hover { color: #fff; }
.footer-addr { font-style: normal; color: #9fb2c6; line-height: 1.7; }
.footer-bottom {
  margin-top: 2.2rem; padding-top: 1.3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between;
  font-size: 0.86rem; color: #8499ae;
}

/* ---- Misc ------------------------------------------------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.success-icon {
  width: 76px; height: 76px; margin: 0 auto 1.4rem;
  display: grid; place-items: center;
  background: #e4f3ec; color: var(--green-600);
  border-radius: 50%;
}
.related a { font-weight: 600; }
.tag-inline {
  display:inline-block; background: var(--mist); color: var(--navy-700);
  border-radius: var(--radius-pill); padding: 0.2rem 0.7rem;
  font-size: 0.8rem; font-weight: 600; margin: 0 0.3rem 0.3rem 0;
}

/* Final form readability fix */
form label,
form .form-label,
form .form-help,
form .privacy-text,
form small,
form span {
  color: #0b2f4a;
}

form input,
form textarea,
form select {
  color: #0b2f4a;
}

form input::placeholder,
form textarea::placeholder {
  color: #6b7a8a;
}
