@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

[hidden] { display: none !important; }
.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; }

/* Client update: public archives, board biographies and news categories. */
.archive-hero { padding: 64px 0 48px; background: var(--paper); }
.archive-hero h1 { max-width: 22ch; font-size: clamp(2rem,4.2vw,3.6rem); }
.archive-hero .breadcrumbs, .archive-hero .breadcrumbs a { color: var(--ink-soft); }
.archive-hero > div > p { color: var(--ink-soft); }
.archive-content { overflow-wrap: anywhere; }
.archive-content h2 { margin-top: 40px; font-size: clamp(1.4rem,2.5vw,2rem); line-height: 1.3; }
.archive-content p, .archive-content li { color: var(--ink-soft); }
.archive-content li { margin-bottom: 12px; }
.archive-content img { width: auto; max-width: 100%; height: auto; max-height: 1100px; margin: 24px auto; border-radius: 14px; }
.archive-content figure { margin: 30px 0; }
.archive-content a:not(.btn) { color: var(--blue-700); text-decoration: underline; text-underline-offset: 3px; }
.archive-content table { width: 100%; border-collapse: collapse; }
.archive-content td, .archive-content th { padding: 10px 8px; border-bottom: 1px solid var(--line); text-align: left; }
.archive-back { margin-top: 48px; }
.archive-content .article-cover img { max-height: 600px; }
.document-year { display: grid; place-items: center; width: 80px; height: 80px; border-radius: 10px; color: var(--blue-900); background: var(--sky-100); font-size: 1.25rem; font-weight: 800; }
.team-grid.current-board { grid-template-columns: repeat(3,minmax(0,1fr)); align-items: start; }
.team-initials { display: grid; place-items: center; height: 100%; color: var(--blue-700); background: linear-gradient(135deg,var(--sky-100),var(--green-100)); font-family: "Manrope",sans-serif; font-size: 4rem; font-weight: 700; }
.team-bio { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 14px; }
.team-bio summary { cursor: pointer; color: var(--blue-700); font-size: .9rem; font-weight: 700; }
.team-body .team-bio p { margin-top: 14px; font-size: .9rem; font-weight: 400; color: var(--ink-soft); line-height: 1.65; }
.board-history { display: grid; gap: 14px; }
.history-period { padding: 22px 26px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.history-period > summary { cursor: pointer; color: var(--blue-900); font-size: 1.15rem; font-weight: 700; }
.history-period .archive-content { padding-top: 20px; overflow-x: auto; }
.news-filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.news-filter { min-height: 48px; padding: 12px 22px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--blue-900); cursor: pointer; font-weight: 700; }
.news-filter:hover { border-color: var(--blue-700); }
.news-filter[aria-pressed="true"] { background: var(--blue-900); border-color: var(--blue-900); color: white; }
.news-status { color: var(--ink-soft); font-size: .9rem; margin-bottom: 28px; }
.news-results { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.news-result { min-width: 0; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow 180ms ease; scroll-margin-top: 120px; }
.news-result:hover { box-shadow: var(--shadow-sm); }
.news-result > a { display: flex; flex-direction: column; height: 100%; }
.news-result img { width: 100%; height: 230px; object-fit: cover; }
.news-result-body { display: flex; flex-direction: column; align-items: flex-start; padding: 24px; flex: 1; }
.news-category { display: inline-block; padding: 5px 10px; border-radius: 8px; background: var(--green-100); color: var(--blue-900); font-size: .76rem; font-weight: 700; }
.news-result time { margin-top: 12px; color: var(--ink-soft); font-size: .82rem; }
.news-result h3 { margin: 14px 0 22px; font-size: 1.2rem; line-height: 1.4; }
.news-result .text-link { margin-top: auto; }
.news-image-placeholder { display: grid; place-items: center; height: 230px; background: var(--sky-100); color: var(--blue-700); font-size: 2rem; font-weight: 700; }
.news-more { text-align: center; margin-top: 36px; }
@media (max-width: 900px) {
  .team-grid.current-board, .news-results { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .team-grid.current-board, .news-results { grid-template-columns: minmax(0,1fr); }
  .archive-hero { padding: 38px 0; }
  .news-filter { padding: 10px 16px; font-size: .86rem; }
  .history-period { padding: 18px; }
  .document-year { width: 64px; height: 64px; font-size: 1.1rem; }
}

:root {
  --ink: #102c3a;
  --ink-soft: #48616d;
  --blue-900: #063f62;
  --blue-700: #0b668f;
  --blue-500: #26a6cf;
  --green-700: #598f31;
  --green-500: #83b74a;
  --green-100: #e8f3dd;
  --sky-100: #e7f5fa;
  --paper: #f6f8f4;
  --white: #ffffff;
  --line: #dce7e5;
  --warning: #b35f25;
  --shadow-sm: 0 10px 35px rgba(16, 44, 58, 0.08);
  --shadow-lg: 0 24px 80px rgba(6, 63, 98, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --max: 1200px;
  --header-height: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: #063a55;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background: transparent;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.silk-canvas {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.silk-fallback body {
  background:
    radial-gradient(circle at 18% 18%, rgba(38, 166, 207, 0.22), transparent 34%),
    radial-gradient(circle at 82% 74%, rgba(131, 183, 74, 0.12), transparent 38%),
    #063a55;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(38, 166, 207, 0.55);
  outline-offset: 4px;
}

::selection {
  background: var(--green-100);
  color: var(--blue-900);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--blue-900);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.75rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--blue-900);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  padding: 104px 0;
  background: rgba(246, 248, 244, 0.93);
}

.section-sm {
  padding: 72px 0;
  background: rgba(246, 248, 244, 0.93);
}

.section-white {
  background: rgba(255, 255, 255, 0.945);
}

.section-blue {
  overflow: hidden;
  position: relative;
  background: rgba(6, 63, 98, 0.89);
  color: rgba(255, 255, 255, 0.8);
}

.section-blue h2,
.section-blue h3 {
  color: var(--white);
}

.section-blue::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 10px;
  background: var(--green-500);
  content: "";
}

.eyebrow-light {
  color: #a9d7e8;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading p {
  max-width: 520px;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease,
    color 180ms ease, border-color 180ms ease;
}

.btn::after {
  display: inline-block;
  content: "→";
  font-size: 1.2em;
  transition: transform 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--green-500);
  color: #102715;
  box-shadow: 0 12px 30px rgba(131, 183, 74, 0.26);
}

.btn-primary:hover {
  background: #94c65c;
  box-shadow: 0 16px 38px rgba(131, 183, 74, 0.34);
}

.btn-dark {
  background: var(--blue-900);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(6, 63, 98, 0.18);
}

.btn-dark:hover {
  background: #0a557d;
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-900);
}

.btn-ghost:hover {
  border-color: #a9c9d3;
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.text-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translate(2px, -2px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(220, 231, 229, 0.85);
  background: rgba(246, 248, 244, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 250px 1fr auto;
  gap: 30px;
  align-items: center;
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  color: var(--blue-900);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  --nav-specular-angle: 0deg;
  --nav-specular-proximity: 0;
  display: inline-flex;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #294854;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: none;
  cursor: pointer;
  transition:
    color 180ms ease,
    box-shadow 220ms ease,
    transform 180ms ease;
}

.main-nav a > span {
  position: relative;
  z-index: 3;
}

.main-nav a::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 220%;
  aspect-ratio: 1;
  background:
    conic-gradient(
      from 0deg,
      transparent 0deg 52deg,
      rgba(255, 255, 255, 0.22) 66deg,
      rgba(255, 255, 255, 0.98) 76deg,
      rgba(65, 188, 221, 0.98) 84deg,
      transparent 98deg 226deg,
      rgba(255, 255, 255, 0.8) 240deg,
      rgba(131, 183, 74, 0.9) 248deg,
      transparent 260deg 360deg
    );
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--nav-specular-angle));
  transition: opacity 220ms ease;
  content: "";
}

.main-nav a::after {
  position: absolute;
  z-index: 1;
  inset: 1px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(6, 63, 98, 0.05);
  opacity: 0;
  backdrop-filter: blur(10px);
  transition: opacity 180ms ease;
  content: "";
}

.main-nav a.is-specular-near::before {
  opacity: var(--nav-specular-proximity);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--blue-700);
}

.main-nav a:hover {
  box-shadow: 0 8px 20px rgba(6, 63, 98, 0.09);
  transform: translateY(-1px);
}

.main-nav a:hover::before,
.main-nav a[aria-current="page"]::before {
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
}

.main-nav a[aria-current="page"] {
  box-shadow:
    0 10px 26px rgba(6, 63, 98, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.42);
}

.main-nav a[aria-current="page"]::before {
  animation: nav-specular-sweep 3.8s linear infinite;
}

.main-nav a:active {
  transform: scale(0.97);
}

@keyframes nav-specular-sweep {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .btn {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-900);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-open .menu-toggle span {
  background: transparent;
}

.menu-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  overflow: hidden;
  position: relative;
  padding: 62px 0 72px;
  background:
    linear-gradient(
      90deg,
      rgba(246, 248, 244, 0.84) 0%,
      rgba(246, 248, 244, 0.76) 54%,
      rgba(246, 248, 244, 0.68) 100%
    );
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 5%;
  left: -240px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(38, 166, 207, 0.13);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 72px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
}

.hero h1 em {
  color: var(--blue-500);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: #54717d;
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-note::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 6px var(--green-100);
  content: "";
}

.hero-visual {
  min-height: 660px;
  position: relative;
}

.hero-image {
  overflow: hidden;
  position: absolute;
  inset: 10px 0 40px 48px;
  border-radius: 180px 32px 180px 32px;
  background: var(--sky-100);
  box-shadow: var(--shadow-lg);
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 63, 98, 0.22));
  content: "";
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  right: -10px;
  bottom: 32px;
  width: 210px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.hero-badge strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-900);
  font-family: "Manrope", sans-serif;
  font-size: 1.32rem;
}

.hero-badge span {
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.45;
}

.hero-seal {
  display: grid;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 142px;
  height: 142px;
  place-items: center;
  border: 13px solid var(--paper);
  border-radius: 50%;
  background: var(--blue-900);
  color: var(--white);
  text-align: center;
}

.hero-seal strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
}

.hero-seal span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Trust strip */
.trust-strip {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.trust-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  align-items: center;
}

.trust-label {
  color: var(--ink-soft);
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-marquee {
  display: flex;
  overflow: hidden;
  gap: 26px;
  align-items: center;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.logo-marquee span {
  flex: 0 0 auto;
  color: #5b7079;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.logo-marquee i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-500);
}

/* Cards */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.bento-card {
  overflow: hidden;
  position: relative;
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(6, 63, 98, 0.03);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.bento-card:hover {
  border-color: #c3dbdf;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.bento-card h3 {
  max-width: 320px;
  margin-bottom: 14px;
}

.bento-card p {
  max-width: 450px;
  color: var(--ink-soft);
}

.bento-card:nth-child(1) {
  grid-column: span 7;
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.78);
}

.bento-card:nth-child(1) h3,
.bento-card:nth-child(1) .card-number {
  color: var(--white);
}

.bento-card:nth-child(2) {
  grid-column: span 5;
  background: var(--green-100);
}

.bento-card:nth-child(3),
.bento-card:nth-child(4),
.bento-card:nth-child(5) {
  grid-column: span 4;
}

.card-number {
  display: block;
  margin-bottom: 58px;
  color: var(--blue-700);
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.card-orbit {
  position: absolute;
  right: -62px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.card-orbit::before {
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.stat {
  padding: 32px 26px;
  background: var(--white);
}

.stat:first-child {
  border-radius: calc(var(--radius-md) - 1px) 0 0 calc(var(--radius-md) - 1px);
}

.stat:last-child {
  border-radius: 0 calc(var(--radius-md) - 1px) calc(var(--radius-md) - 1px) 0;
}

.stat strong {
  display: block;
  color: var(--blue-900);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
}

.news-card {
  overflow: hidden;
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-md);
  background: var(--blue-900);
  box-shadow: var(--shadow-sm);
  color: var(--white);
}

.news-card:not(.news-card-featured) {
  min-height: 420px;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.news-card:hover img {
  transform: scale(1.035);
}

.news-overlay {
  display: flex;
  position: absolute;
  inset: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: linear-gradient(180deg, rgba(6, 63, 98, 0.02) 24%, rgba(4, 33, 50, 0.94) 100%);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
}

.news-chip {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--green-500);
  color: #112c17;
}

.news-card h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.18rem, 2vw, 1.75rem);
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-row {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 22px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.news-row:hover {
  border-color: #b8d4d9;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.news-row img {
  width: 148px;
  height: 108px;
  border-radius: 11px;
  object-fit: cover;
}

.news-row time {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
}

.news-row h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

/* CTA */
.cta-panel {
  display: grid;
  overflow: hidden;
  position: relative;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 62px;
  border-radius: var(--radius-lg);
  background: var(--green-100);
}

.cta-panel::after {
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(38, 166, 207, 0.14);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  max-width: 760px;
  margin-bottom: 20px;
}

.cta-panel p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.07rem;
}

.cta-side {
  position: relative;
  z-index: 2;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
}

.cta-side strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-900);
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
}

.cta-side ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cta-side li {
  display: flex;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.cta-side li::before {
  color: var(--green-700);
  content: "✓";
  font-weight: 900;
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: var(--blue-900);
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 800;
  text-align: left;
}

.faq-question span:last-child {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.3rem;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-item.is-open .faq-question span:last-child {
  background: var(--green-100);
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 300ms ease, opacity 220ms ease, padding 300ms ease;
}

.faq-answer p {
  max-width: 850px;
  padding: 0 0 26px;
  color: var(--ink-soft);
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  opacity: 1;
}

/* Interior pages */
.page-hero {
  overflow: hidden;
  position: relative;
  padding: 58px 0 62px;
  background:
    linear-gradient(120deg, rgba(4, 50, 76, 0.78), rgba(6, 63, 98, 0.52)),
    rgba(6, 63, 98, 0.18);
  color: rgba(255, 255, 255, 0.76);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent 78%);
  content: "";
}

.page-hero::after {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs span::before {
  margin-right: 9px;
  content: "/";
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.65rem, 5vw, 4.35rem);
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.12rem;
}

.page-hero-panel {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(3, 40, 61, 0.68);
  box-shadow: 0 24px 70px rgba(0, 26, 42, 0.28);
  backdrop-filter: blur(16px);
}

.page-hero-panel::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 215, 232, 0.62), transparent);
  content: "";
}

.page-hero-panel-heading {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.page-hero-panel-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(169, 215, 232, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #b8dff0;
}

.page-hero-panel-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.page-hero-panel-heading small,
.page-hero-panel-heading strong {
  display: block;
}

.page-hero-panel-heading small {
  margin-bottom: 4px;
  color: #a9d7e8;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero-panel-heading strong {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  line-height: 1.35;
}

.page-hero-stats {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  list-style: none;
}

.page-hero-stats li {
  min-width: 0;
  padding: 17px 18px;
}

.page-hero-stats li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero-stats li:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero-stats strong,
.page-hero-stats span {
  display: block;
}

.page-hero-stats strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.page-hero-stats span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.page-hero-panel-note {
  position: relative;
  margin: 20px 0 0;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.55;
}

.page-hero-panel-note::before {
  position: absolute;
  top: 0.45em;
  bottom: 0.45em;
  left: 0;
  width: 3px;
  border-radius: 10px;
  background: var(--green-500);
  content: "";
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 80px;
  align-items: start;
}

.sticky-aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.aside-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.aside-card h3 {
  margin-bottom: 18px;
}

.aside-nav {
  display: grid;
  gap: 6px;
}

.aside-nav a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 13px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.aside-nav a::after {
  content: "→";
}

.aside-nav a:hover,
.aside-nav a.is-active {
  background: var(--sky-100);
  color: var(--blue-900);
}

.prose {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.prose h2 {
  margin-top: 64px;
  margin-bottom: 22px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 42px;
  margin-bottom: 14px;
}

.prose p {
  margin-bottom: 20px;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
  padding-left: 22px;
}

.quote-card {
  position: relative;
  margin: 40px 0;
  padding: 34px;
  border-left: 4px solid var(--green-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--white);
  color: var(--blue-900);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}

.quote-card cite {
  display: block;
  margin-top: 20px;
  color: var(--ink-soft);
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 700;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.value-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.value-card .card-number {
  margin-bottom: 40px;
}

.value-card p {
  color: var(--ink-soft);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.team-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.team-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sky-100);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--portrait-position, center top);
  filter: saturate(0.82);
  transform: scale(var(--portrait-scale, 1));
  transform-origin: var(--portrait-origin, center);
  transition: filter 220ms ease, transform 350ms ease;
}

.team-photo--sezgin {
  --portrait-position: center 28%;
}

.team-photo--yasemin {
  --portrait-position: center 55%;
}

.team-photo--aysun {
  --portrait-scale: 2.1;
  --portrait-position: center;
  --portrait-origin: 40% 28%;
}

.team-card:hover img {
  filter: saturate(1);
  transform: scale(calc(var(--portrait-scale, 1) * 1.025));
}

.team-body {
  padding: 22px;
}

.team-body h3 {
  margin-bottom: 7px;
  font-size: 1.1rem;
}

.team-body p {
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.name-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.name-cloud span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

/* Membership */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.benefit-mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 16px;
  background: var(--green-100);
  color: var(--green-700);
  font-family: "Manrope", sans-serif;
  font-weight: 900;
}

.benefit-card p {
  color: var(--ink-soft);
}

.steps {
  display: grid;
  gap: 0;
  counter-reset: steps;
}

.step {
  display: grid;
  position: relative;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding-bottom: 38px;
  counter-increment: steps;
}

.step::before {
  display: grid;
  z-index: 2;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-900);
  color: var(--white);
  content: counter(steps, decimal-leading-zero);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.step::after {
  position: absolute;
  top: 54px;
  bottom: 0;
  left: 26px;
  width: 1px;
  background: var(--line);
  content: "";
}

.step:last-child::after {
  display: none;
}

.step h3 {
  margin: 6px 0 10px;
}

.step p {
  color: var(--ink-soft);
}

/* Forms */
.form-shell {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 22px;
}

.contact-panel {
  overflow: hidden;
  position: relative;
  padding: 38px;
  border-radius: var(--radius-md);
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--white);
}

.contact-panel::after {
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  border: 44px solid rgba(38, 166, 207, 0.14);
  border-radius: 50%;
  content: "";
}

.contact-list {
  display: grid;
  position: relative;
  z-index: 2;
  gap: 24px;
  margin-top: 42px;
}

.contact-item small {
  display: block;
  margin-bottom: 6px;
  color: #a9d7e8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item address {
  color: var(--white);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
}

.form-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label,
.form-label {
  color: var(--blue-900);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #ccdcd9;
  border-radius: 11px;
  background: #fbfcfa;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-500);
  outline: 0;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(38, 166, 207, 0.12);
}

.check-field {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.check-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--blue-700);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  display: none;
  margin-bottom: 24px;
  padding: 14px 17px;
  border-radius: 12px;
  font-weight: 700;
}

.form-status.is-success {
  display: block;
  background: var(--green-100);
  color: #315d24;
}

.form-status.is-error {
  display: block;
  background: #fff0e7;
  color: #8b411e;
}

/* Resources and documents */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.resource-card:hover {
  border-color: #b8d5da;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.resource-card small {
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin: 26px 0 8px;
}

.resource-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.document-list {
  display: grid;
  gap: 12px;
}

.document-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.document-card:hover {
  border-color: #b8d5da;
  box-shadow: var(--shadow-sm);
}

.document-card img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.document-card h3 {
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.document-card p {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.document-card .text-link {
  white-space: nowrap;
}

.legal-article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-article h2 {
  margin: 0 0 16px;
  font-size: 1.45rem;
}

.legal-article p,
.legal-article li {
  color: var(--ink-soft);
}

.notice {
  padding: 20px 22px;
  border: 1px solid #efcfb9;
  border-radius: var(--radius-sm);
  background: #fff8f2;
  color: #73482b;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  padding: 72px 0 28px;
  background: #052f49;
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 54px;
}

.footer-brand {
  display: flex;
  max-width: 390px;
  gap: 16px;
  align-items: flex-start;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  border: 5px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  margin: 6px 0 9px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
}

.footer-brand p {
  font-size: 0.88rem;
}

.footer-column h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  font-size: 0.86rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.76rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-credit {
  color: rgba(255, 255, 255, 0.72);
}

.footer-credit a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(131, 183, 74, 0.55);
  text-underline-offset: 4px;
}

.footer-credit a:hover {
  color: #b9df8d;
}

.footer-heart {
  margin-inline: 3px;
  color: #f06a72;
  font-size: 1.08em;
}

/* Floating WhatsApp contact */
.whatsapp-float {
  display: inline-flex;
  position: fixed;
  z-index: 60;
  right: 22px;
  right: max(22px, env(safe-area-inset-right));
  bottom: 22px;
  bottom: max(22px, env(safe-area-inset-bottom));
  min-height: 58px;
  align-items: center;
  gap: 11px;
  padding: 8px 9px 8px 17px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  box-shadow:
    0 18px 46px rgba(8, 72, 59, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  isolation: isolate;
  cursor: pointer;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.whatsapp-float::before {
  position: absolute;
  z-index: -1;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, 0.48);
  border-radius: inherit;
  animation: whatsapp-pulse 2.8s ease-out infinite;
  content: "";
  pointer-events: none;
}

.whatsapp-float-label {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.whatsapp-float-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.whatsapp-float-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #20c55e 0%, #0e7b6e 100%);
  box-shadow:
    0 22px 52px rgba(8, 72, 59, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transform: translateY(-3px);
}

.whatsapp-float:active {
  transform: scale(0.97);
}

.menu-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.68;
    transform: scale(0.92);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 520ms cubic-bezier(0.2, 0.7, 0.3, 1);
}


[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1080px) {
  :root {
    --header-height: 82px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    overflow-y: auto;
    position: absolute;
    z-index: 49;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 22px 20px 32px;
    padding-bottom: max(32px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: #f6f8f4;
    box-shadow: 0 24px 60px rgba(6, 63, 98, 0.12);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .menu-open .main-nav {
    display: flex;
  }

  .menu-open .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }

  .main-nav a {
    width: 100%;
    min-height: 58px;
    flex: 0 0 auto;
    justify-content: flex-start;
    padding: 15px 18px;
    border-radius: 14px;
    font-size: 1.05rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 32px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .page-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 34px;
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 5vw, 3.75rem);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-card-featured {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 820px) {
  .section,
  .section-sm {
    padding: 72px 0;
  }

  .hero {
    padding: 48px 0 60px;
  }

  .page-hero {
    padding: 44px 0 48px;
  }

  .hero-grid,
  .page-hero-layout,
  .section-heading,
  .split-content,
  .cta-panel,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .page-hero-layout {
    gap: 32px;
  }

  .page-hero-copy {
    max-width: 700px;
  }

  .page-hero-panel {
    max-width: 640px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-image {
    inset: 15px 18px 35px 25px;
  }

  .section-heading {
    gap: 18px;
  }

  .sticky-aside {
    position: static;
  }

  .bento-card:nth-child(n) {
    grid-column: span 6;
  }

  .stat-grid,
  .benefit-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(1) {
    border-radius: calc(var(--radius-md) - 1px) 0 0 0;
  }

  .stat:nth-child(2) {
    border-radius: 0 calc(var(--radius-md) - 1px) 0 0;
  }

  .stat:nth-child(3) {
    border-radius: 0 0 0 calc(var(--radius-md) - 1px);
  }

  .stat:nth-child(4) {
    border-radius: 0 0 calc(var(--radius-md) - 1px) 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-panel {
    padding: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 580px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand-copy span {
    display: none;
  }

  .brand img {
    width: 55px;
    height: 55px;
  }

  .whatsapp-float {
    right: 14px;
    right: max(14px, env(safe-area-inset-right));
    bottom: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  .whatsapp-float-label {
    display: none;
  }

  .whatsapp-float-icon {
    width: 42px;
    height: 42px;
  }

  .page-hero {
    padding: 32px 0 38px;
  }

  .breadcrumbs {
    margin-bottom: 22px;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .page-hero p {
    font-size: 1rem;
  }

  .page-hero-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .page-hero-panel-heading {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    margin-bottom: 18px;
  }

  .page-hero-panel-icon {
    width: 42px;
    height: 42px;
  }

  .page-hero-stats li {
    padding: 14px;
  }

  .page-hero-stats strong {
    font-size: 1.06rem;
  }

  .page-hero-panel-note {
    margin-top: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 445px;
  }

  .hero-image {
    inset: 25px 0 30px 15px;
    border-radius: 110px 25px 110px 25px;
  }

  .hero-seal {
    width: 104px;
    height: 104px;
    border-width: 9px;
  }

  .hero-seal strong {
    font-size: 1.15rem;
  }

  .hero-seal span {
    font-size: 0.52rem;
  }

  .hero-badge {
    right: 8px;
    bottom: 0;
    width: 184px;
    padding: 17px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .logo-marquee {
    flex-wrap: wrap;
    mask-image: none;
  }

  .bento-grid,
  .stat-grid,
  .news-grid,
  .benefit-grid,
  .resource-grid,
  .value-grid,
  .team-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bento-card:nth-child(n) {
    width: 100%;
    min-height: 0;
    grid-column: 1 / -1;
  }

  .stat:nth-child(n) {
    border-radius: 0;
  }

  .stat:first-child {
    border-radius: calc(var(--radius-md) - 1px) calc(var(--radius-md) - 1px) 0 0;
  }

  .stat:last-child {
    border-radius: 0 0 calc(var(--radius-md) - 1px) calc(var(--radius-md) - 1px);
  }

  .news-card,
  .news-card:not(.news-card-featured) {
    min-height: 390px;
  }

  .news-card-featured {
    grid-column: auto;
  }

  .news-row {
    grid-template-columns: 108px 1fr;
    gap: 14px;
  }

  .news-row img {
    width: 108px;
    height: 96px;
  }

  .cta-panel,
  .form-card,
  .contact-panel {
    padding: 28px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .document-card {
    grid-template-columns: 64px 1fr;
  }

  .document-card img {
    width: 64px;
    height: 64px;
  }

  .document-card .text-link {
    grid-column: 2;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .main-nav a[aria-current="page"]::before {
    animation: none;
    transform: translate(-50%, -50%) rotate(38deg);
  }

  .whatsapp-float::before {
    animation: none;
    opacity: 0.42;
    transform: none;
  }
}
