:root {
  --bg: #ffffff;
  --bg-soft: #f5f7ff;
  --card: #ffffff;
  --line: #d5dfff;
  --text: #212121;
  --muted: #646464;
  --brand: #2f5dff;
  --brand-2: #597dff;
  --danger: #df3131;
  --ok: #0d4f3d;
  --shadow: 0 16px 40px #e0dfdf;
  --radius: 8px;
  --max: 1560px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff, #f5f7ff);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(100% - clamp(32px, 6vw, 100px), var(--max));
  margin-inline: auto;
}

.section { padding: clamp(56px, 7vw, 88px) 0; }

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
      opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  [data-reveal].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.section-head {
  margin-bottom: 30px;
  max-width: 900px;
}
.eyebrow {
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 8px;
}
h1, h2, h3, h4, p { margin: 0; }
h1 { font-size: clamp(2rem, 4.4vw, 4rem); line-height: 1.08; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.8rem); line-height: 1.15; }
h3 { font-size: 1.14rem; line-height: 1.3; margin-bottom: 8px; }
p { line-height: 1.65; }
.lead { color: var(--muted); max-width: 760px; margin-top: 14px; }

.btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btns-center { justify-content: center; }
.btn {
  padding: 13px 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 600;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #ffffff;
  box-shadow: 0 10px 24px #eaefff;
}
.btn-secondary {
  border-color: var(--line);
  background: #f5f7ff;
  color: #2b5672;
}
.btn:hover { transform: translateY(-1px); }

.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: 100%;
  height: auto;
  display: block;
}
.foot .brand {
  max-width: 210px;
}

.hero {
  padding-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "copy visual";
  gap: clamp(20px, 3vh, 32px) clamp(20px, 4vw, 40px);
  align-items: stretch;
  width: 100%;
}

.hero-copy__brand {
  display: inline-flex;
  align-self: start;
  max-width: clamp(168px, 42vw, 236px);
  margin: 0 0 4px;
}

.hero-copy__brand img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-banner {
  position: relative;
  background: linear-gradient(160deg, #e4ebff 0%, #eef2ff 42%, #f7f9ff 100%);
  overflow: hidden;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #e4ebff;
  background-image: url("images/soccenter.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  filter: saturate(0.82) brightness(1.06);
}
.hero-banner.section {
  padding-block: clamp(28px, 4vh, 52px);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.hero-banner > .container {
  width: min(100% - clamp(40px, 9vw, 140px), var(--max));
  position: relative;
  z-index: 1;
}

.floating-lang-switch {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.floating-lang-switch__icon {
  width: 0.95rem;
  height: 0.95rem;
  color: #334155;
}

.floating-lang-switch__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.floating-lang-switch__link:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(59, 130, 246, 0.09);
}

.floating-lang-switch__link.is-active {
  background: rgba(37, 99, 235, 0.14);
  border-color: rgba(37, 99, 235, 0.45);
}

.floating-lang-switch__link:focus-visible {
  outline: 2px solid rgba(29, 78, 216, 0.5);
  outline-offset: 2px;
}
.hero-copy {
  grid-area: copy;
  color: #212121;
  display: grid;
  gap: 16px;
  align-content: start;
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px);
  background: linear-gradient(165deg, #faf9f6 0%, #f3f1ec 42%, #faf8f5 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 44px rgba(43, 86, 114, 0.08);
}

.hero-copy .hero-definition {
  max-width: 36rem;
  margin: 0;
  color: #2c3340;
  font-size: clamp(0.94rem, 1.2vw, 1.02rem);
  line-height: 1.55;
  font-weight: 500;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.88),
    0 1px 0 rgba(255, 255, 255, 0.92),
    0 1px 2px rgba(0, 0, 0, 0.06);
}

.hero-copy .hero-definition strong {
  font-weight: 600;
  color: #141820;
}

.hero-copy h1 {
  color: #141820;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow:
    0 0 28px rgba(255, 255, 255, 0.85),
    0 0 12px rgba(255, 255, 255, 0.65),
    0 1px 2px rgba(255, 255, 255, 0.9),
    0 1px 3px rgba(0, 0, 0, 0.06);
}

.hero-copy .eyebrow {
  color: #1e4a8f;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.8),
    0 1px 2px rgba(255, 255, 255, 0.85);
}

.hero-copy .lead {
  max-width: 36rem;
  margin-top: 10px;
  color: #2c3340;
  font-weight: 500;
  font-size: clamp(1.02rem, 1.35vw, 1.12rem);
  line-height: 1.68;
  text-shadow:
    0 0 22px rgba(255, 255, 255, 0.92),
    0 0 10px rgba(255, 255, 255, 0.75),
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 1px 2px rgba(0, 0, 0, 0.07);
}

.hero-copy .btns {
  text-shadow: none;
}

.hero-copy .btn-secondary {
  color: #1a3550;
  border-color: rgba(43, 86, 114, 0.35);
  background: #f1f5f9;
}

.hero-lead--mobile {
  display: none;
}

@media (min-width: 1081px) {
  .hero-copy,
  .hero-product-visual {
    min-height: clamp(280px, 38vh, 440px);
  }
}

.hero-product-visual {
  grid-area: visual;
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-product-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 42%;
  display: block;
}

/* Sağ üstten alta: siyah kaynak etiketleri (#000 zemin; çerçeve ~%10 daha açık #1a1a1a) */
.visual-source-rail {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.visual-source-pill {
  /* Kare kutular; önceki boyutun ~½’si */
  box-sizing: border-box;
  width: min(7.25rem, 19vw);
  max-width: calc(100% - 8px);
  aspect-ratio: 1 / 1;
  height: auto;
  padding: 4px 3px 3px;
  border-radius: 4px;
  background: #000000;
  border: 1px solid #1a1a1a;
  color: #f0f0f0;
  font-size: clamp(0.45rem, 1.25vmin, 0.65rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.visual-source-pill__icon {
  flex-shrink: 0;
  width: clamp(17px, 32%, 26px);
  height: clamp(17px, 32%, 26px);
  opacity: 0.95;
}

.visual-source-pill__label {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-monitor {
  padding-top: 26px;
}

.monitor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.monitor-visual {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.monitor-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.monitor-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 14px;
}

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

.monitor-kpi {
  border: 1px solid #d5dfff;
  background: #f5f7ff;
  border-radius: 8px;
  padding: 10px 12px;
}

.monitor-kpi small {
  display: block;
  color: #4b535d;
  font-size: 0.76rem;
  margin-bottom: 4px;
}

.monitor-kpi strong {
  color: #2b5672;
  font-size: 1.06rem;
}

.monitor-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.monitor-bullets li {
  border-left: 3px solid #acbeff;
  background: #ffffff;
  padding: 8px 10px;
  color: #383838;
  line-height: 1.55;
}

.section-ai-reporting {
  padding-top: 10px;
}

.ai-reporting-stack {
  display: grid;
  gap: 14px;
}

.ai-reporting-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 14px;
}

.ai-reporting-main {
  gap: 12px;
}

.ai-reporting-main__visual {
  margin: 4px 0 4px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(43, 86, 114, 0.08);
}

.ai-reporting-main__visual img {
  width: 100%;
  height: clamp(160px, 28vw, 240px);
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.ai-reporting-formats {
  gap: 12px;
}

.format-intro {
  margin: 0;
  font-size: 0.88rem;
  color: #4b535d;
  line-height: 1.5;
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.format-preview {
  border: 1px solid #acbeff;
  background: #ffffff;
  border-radius: 6px;
  min-height: 92px;
  padding: 10px;
  overflow: hidden;
}

.format-preview--text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.fp-line {
  display: block;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(90deg, #d5dfff, #eaefff);
}

.fp-line--long { width: 94%; }
.fp-line--med { width: 78%; }
.fp-line--short { width: 52%; }

.format-preview--chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
  padding-bottom: 4px;
  box-sizing: border-box;
  height: 92px;
}

.fp-bar {
  flex: 1;
  max-width: 18%;
  min-height: 12px;
  border-radius: 2px;
  background: linear-gradient(180deg, #597dff, #2f5dff);
}

/* Bar heights (no inline styles; strict style-src 'self') */
.format-preview--chart .fp-bar:nth-child(1) { height: 40%; }
.format-preview--chart .fp-bar:nth-child(2) { height: 75%; }
.format-preview--chart .fp-bar:nth-child(3) { height: 55%; }
.format-preview--chart .fp-bar:nth-child(4) { height: 90%; }
.format-preview--chart .fp-bar:nth-child(5) { height: 35%; }
.format-preview--chart .fp-bar:nth-child(6) { height: 65%; }

.format-preview--json code {
  display: block;
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
  line-height: 1.45;
  color: #2b5672;
  word-break: break-word;
}

.format-preview--table {
  padding: 6px;
}

.fp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.68rem;
  color: #383838;
}

.fp-table th,
.fp-table td {
  border: 1px solid #d5dfff;
  padding: 4px 6px;
  text-align: left;
}

.fp-table th {
  background: #f5f7ff;
  color: #2b5672;
  font-weight: 600;
}

.format-item {
  border: 1px solid #d5dfff;
  background: #f5f7ff;
  border-radius: 8px;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.format-item strong {
  color: #2b5672;
  font-size: 0.95rem;
}

.format-item p {
  color: #4b535d;
  font-size: 0.88rem;
  line-height: 1.5;
}

.section-insight-monitor {
  padding-top: 18px;
}

.insight-monitor-stack {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.insight-monitor-hero {
  text-align: center;
  max-width: 1120px;
  margin-inline: auto;
}

.insight-monitor-hero .eyebrow {
  margin-bottom: 10px;
}

.insight-monitor-hero__heading {
  font-size: clamp(1.65rem, 3.5vw, 2.65rem);
  line-height: 1.18;
  color: #2b5672;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.insight-monitor-hero__deck {
  margin: 0 auto clamp(22px, 3.5vw, 36px);
  max-width: 38rem;
  font-size: clamp(0.92rem, 1.65vw, 1.03rem);
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
  font-weight: 400;
}

.insight-monitor-hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 24px);
  text-align: center;
}

.insight-monitor-hero__stat {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 24px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
}

.insight-monitor-hero__stat-cue {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.insight-monitor-hero__stat-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: #2b5672;
}

.insight-monitor-hero__stat-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.insight-monitor-hero__stat-cue .insight-monitor-hero__label {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: clamp(0.78rem, 1.35vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: #5a6570;
}

.insight-monitor-hero__value {
  font-size: clamp(2.35rem, 7vw, 3.85rem);
  font-weight: 700;
  color: #2b5672;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.insight-gallery-stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #eef2ff 0%, #f8fafc 45%, #e8eefc 100%);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3.5vw, 36px);
}

.insight-gallery-hint {
  margin: 0 0 14px;
  font-size: 0.82rem;
  color: #5a6570;
  text-align: center;
  letter-spacing: 0.02em;
}

.insight-gallery.insight-gallery--mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(10, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: clamp(300px, 36vw, 440px);
  isolation: isolate;
}

.insight-gallery__item {
  margin: 0;
  padding: 0;
  list-style: none;
  min-height: 0;
}

.insight-gallery__item--a {
  grid-column: 1 / 7;
  grid-row: 1 / 6;
  z-index: 2;
  transform: translate(1%, 5%) rotate(-2deg);
}

.insight-gallery__item--b {
  grid-column: 6 / 13;
  grid-row: 1 / 5;
  z-index: 4;
  transform: translate(-2%, -1%) rotate(1.8deg);
}

.insight-gallery__item--c {
  grid-column: 1 / 6;
  grid-row: 5 / 11;
  z-index: 3;
  transform: translate(4%, -10%) rotate(1.2deg);
}

.insight-gallery__item--d {
  grid-column: 6 / 13;
  grid-row: 5 / 11;
  z-index: 2;
  transform: translate(-3%, -6%) rotate(-1.4deg);
}

.insight-gallery__trigger {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 8px;
  align-content: stretch;
  text-align: left;
  font: inherit;
  color: inherit;
  border-radius: 12px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.insight-gallery__item:has(.insight-gallery__trigger:hover) {
  z-index: 8;
}

.insight-gallery__trigger:hover {
  transform: scale(1.02);
}

.insight-gallery__trigger:focus {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.insight-gallery__trigger:focus:not(:focus-visible) {
  outline: none;
}

.insight-gallery__trigger:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.insight-gallery__frame {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(89, 125, 255, 0.35);
  background: #ffffff;
  box-shadow:
    0 12px 32px rgba(43, 86, 114, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
  min-height: 0;
}

.insight-gallery__frame img {
  width: 100%;
  height: 100%;
  min-height: clamp(120px, 16vw, 200px);
  max-height: clamp(160px, 22vw, 240px);
  object-fit: contain;
  object-position: center;
  display: block;
}

.insight-gallery__cap {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2b5672;
  padding: 0 4px 2px;
  letter-spacing: 0.02em;
}

.insight-lightbox {
  max-width: min(96vw, 1280px);
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 14px;
  background: #0f172a;
  color: #f1f5f9;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.insight-lightbox::backdrop {
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.insight-lightbox__inner {
  position: relative;
  padding: clamp(16px, 3vw, 28px);
  display: grid;
  gap: 14px;
}

.insight-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.insight-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.insight-lightbox__img {
  width: 100%;
  max-height: min(82vh, 880px);
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  background: #1e293b;
}

.insight-lightbox__caption {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: #e2e8f0;
}

@media (prefers-reduced-motion: reduce) {
  .insight-gallery__item--a,
  .insight-gallery__item--b,
  .insight-gallery__item--c,
  .insight-gallery__item--d {
    transform: none;
  }

  .insight-gallery__trigger:hover {
    transform: none;
  }

  .insight-gallery__item:has(.insight-gallery__trigger:hover) {
    z-index: auto;
  }
}

.section-incidents {
  padding-top: 18px;
}

.incident-blocks,
.insight-blocks,
.info-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.incident-block,
.insight-block,
.info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.info-block .card {
  min-width: 0;
}

.info-block-figure {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.info-block-figure img {
  width: 100%;
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: block;
  box-sizing: border-box;
}

.incident-block__cards,
.insight-block__cards {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.incident-figure,
.insight-figure {
  margin: 0;
  display: grid;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.incident-figure img,
.insight-figure img {
  width: 100%;
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: block;
  box-sizing: border-box;
}

.incident-figure figcaption,
.insight-figure figcaption {
  font-size: 0.84rem;
  color: #4b535d;
  line-height: 1.45;
}

.incident-card {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.incident-card small {
  color: #4b535d;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.incident-card strong {
  color: #2b5672;
  font-size: 1.02rem;
}

.incident-card p {
  color: #383838;
  font-size: 0.92rem;
  line-height: 1.58;
}

.section-insights {
  padding-top: 18px;
}

.insight-card {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.insight-card small {
  color: #4b535d;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.insight-card strong {
  color: #2b5672;
  font-size: 1.08rem;
}

.insight-card p {
  color: #383838;
  font-size: 0.94rem;
  line-height: 1.58;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  align-content: start;
}
.card p { color: var(--muted); }

.security {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.s-path {
  position: relative;
  margin-top: 18px;
  padding: 6px 2px 10px;
  min-height: clamp(280px, 36vh, 400px);
  overflow: visible;
}

.s-path--5 {
  min-height: clamp(300px, 40vh, 420px);
}

.s-path--3 {
  min-height: clamp(220px, 30vh, 300px);
}

.s-path__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
  filter: drop-shadow(0 2px 6px rgba(47, 93, 255, 0.35));
}

.s-path__curve {
  stroke-width: 4.5px;
  paint-order: stroke fill;
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .s-path__curve {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: sPathDraw 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  @keyframes sPathDraw {
    to {
      stroke-dashoffset: 0;
    }
  }
}

.s-path__list {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

.s-path__item {
  position: absolute;
  margin: 0;
  padding: 12px 14px 12px 16px;
  color: #1f2937;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.45;
  background: linear-gradient(145deg, #ffffff 0%, #f3f6ff 100%);
  border: 1px solid rgba(89, 125, 255, 0.45);
  border-radius: 12px;
  box-shadow:
    0 12px 32px rgba(43, 86, 114, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.s-path__item:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 16px 40px rgba(47, 93, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.75) inset;
}

.s-path__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #a8bcff, #2f5dff 55%, #1a3d99);
  box-shadow: 0 0 0 3px rgba(47, 93, 255, 0.2);
}

.s-path--5 .s-path__list .s-path__item:nth-child(1) {
  top: 0;
  left: 0;
  width: 46%;
}

.s-path--5 .s-path__list .s-path__item:nth-child(2) {
  top: 20%;
  right: 0;
  left: auto;
  width: 46%;
}

.s-path--5 .s-path__list .s-path__item:nth-child(3) {
  top: 42%;
  left: 0;
  width: 46%;
}

.s-path--5 .s-path__list .s-path__item:nth-child(4) {
  top: 62%;
  right: 0;
  left: auto;
  width: 46%;
}

.s-path--5 .s-path__list .s-path__item:nth-child(5) {
  top: 80%;
  left: 0;
  width: 54%;
}

.s-path--3 .s-path__list .s-path__item:nth-child(1) {
  top: 4%;
  left: 0;
  width: 48%;
}

.s-path--3 .s-path__list .s-path__item:nth-child(2) {
  top: 40%;
  right: 0;
  left: auto;
  width: 48%;
}

.s-path--3 .s-path__list .s-path__item:nth-child(3) {
  top: 72%;
  left: 0;
  width: 55%;
}

@media (min-width: 1081px) {
  .security .s-path--5 {
    min-height: 360px;
  }

  .security .s-path--3 {
    min-height: 300px;
  }

  .security .s-path__item {
    font-size: 0.88rem;
    line-height: 1.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  .s-path__curve {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    animation: none;
  }

  .s-path__item:hover {
    transform: none;
  }
}

@media (max-width: 760px) {
  .s-path,
  .s-path--5,
  .s-path--3 {
    min-height: 0;
    padding-bottom: 4px;
  }

  .s-path__svg {
    display: none;
  }

  .s-path__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .s-path__item {
    position: relative;
    width: 100% !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    border-left: 4px solid var(--brand);
    padding-left: 14px;
  }

  .s-path__dot {
    display: none;
  }
}

.inline-image {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  min-height: 220px;
  background: #f5f7ff;
}

.inline-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.step {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 1px 0 rgba(47, 93, 255, 0.06), 0 12px 40px -24px rgba(33, 33, 33, 0.12);
  overflow: hidden;
}

.step__head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 22px 18px;
  background: linear-gradient(165deg, #f8f9ff 0%, #eef2ff 100%);
  border-bottom: 1px solid var(--line);
}

.step .num {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 4px 14px -4px rgba(47, 93, 255, 0.55);
  line-height: 1;
}

.step__titles {
  min-width: 0;
}

.step__titles h3 {
  margin-bottom: 6px;
}

.step-intro {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.step-flow {
  list-style: none;
  margin: 0;
  padding: 4px 0 0;
}

.step-flow__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 14px;
  align-items: start;
  padding: 14px 20px 14px 22px;
  margin: 0;
  border-bottom: 1px solid rgba(213, 223, 255, 0.65);
}

.step-flow__item:last-child {
  border-bottom: none;
  padding-bottom: 18px;
}

.step-flow__index {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand);
  background: #eef2ff;
  border: 1px solid #d5dfff;
  line-height: 1;
}

.step-flow__body {
  min-width: 0;
  padding-top: 1px;
}

.step-flow__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a2744;
  margin-bottom: 4px;
}

.step-flow__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.58;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}
.contact-visual {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
}
.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.83;
}
form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.full { grid-column: 1 / -1; }
input, textarea, select {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #acbeff;
  background: #ffffff;
  color: #212121;
  padding: 12px 13px;
  font: inherit;
}
textarea { min-height: 110px; resize: vertical; }
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #525150;
  font-size: 0.9rem;
}
.consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.5;
}

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

.contact-form__status {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-form__status--success {
  color: var(--ok);
}

.contact-form__status--error {
  color: var(--danger);
}

.contact-form button[type="submit"][aria-busy="true"] {
  opacity: 0.85;
  pointer-events: none;
}

.cta {
  margin: 80px auto;
  background: linear-gradient(140deg, #acbeff 0%, #597dff 100%);
  border: 1px solid #2f5dff;
  border-radius: 8px;
  padding: 44px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta h2,
.cta .lead {
  color: #212121;
}

footer {
  padding: 54px 0 26px;
  border-top: 1px solid #e0dfdf;
  background: #f1f0ef;
}
.foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.foot h4 { margin-bottom: 10px; font-size: 1rem; }
.foot p, .foot a { color: var(--muted); font-size: 0.95rem; display: block; margin-bottom: 9px; line-height: 1.55; }
.foot .footer-lang__menu a.footer-lang__option {
  margin-bottom: 0;
}
.footer-intro { margin-top: 12px; }

/* Footer language: compact dropdown (opens upward above footer) */
.footer-lang {
  margin-top: 14px;
  max-width: 220px;
}
.footer-lang__dropdown {
  position: relative;
}
.footer-lang__dropdown summary {
  list-style: none;
  cursor: pointer;
}
.footer-lang__dropdown summary::-webkit-details-marker {
  display: none;
}
.footer-lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid #d8d6d4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.footer-lang__toggle:hover {
  border-color: #c4c2bf;
  background: #fafaf9;
}
.footer-lang__toggle:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.footer-lang__dropdown[open] .footer-lang__toggle {
  border-color: rgba(29, 78, 216, 0.45);
  box-shadow: 0 0 0 3px rgba(59, 92, 255, 0.14);
}
.footer-lang__current {
  letter-spacing: 0.01em;
}
.footer-lang__chev {
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #6b6a68;
  border-bottom: 2px solid #6b6a68;
  transform: rotate(45deg);
  margin-top: -0.15em;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.footer-lang__dropdown[open] .footer-lang__chev {
  transform: rotate(225deg);
  margin-top: 0.08em;
}
.footer-lang__menu {
  position: absolute;
  z-index: 30;
  left: 0;
  bottom: calc(100% + 8px);
  min-width: 100%;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid #e2e0de;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
}
.footer-lang__menu li {
  margin: 0;
}
.footer-lang__option {
  display: block;
  padding: 10px 12px;
  margin: 0;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  line-height: 1.35;
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-lang__option:hover {
  background: #f4f4f3;
  color: var(--text);
}
.footer-lang__option.is-active {
  background: rgba(59, 92, 255, 0.1);
  color: var(--brand);
  font-weight: 600;
  cursor: default;
  pointer-events: none;
}
.footer-lang__option:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 0;
}
.copy { color: #767574; font-size: 0.86rem; }

/* Homepage locale hint — compact type, flat 2D (see main.js + CSP free.freeipapi.com) */
dialog.locale-suggest {
  z-index: 100002;
  max-width: min(400px, calc(100vw - 24px));
  width: 100%;
  margin: auto;
  padding: 0;
  border: 1px solid #c4c2c0;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  color: var(--text);
}
dialog.locale-suggest::backdrop {
  background: rgba(15, 23, 42, 0.22);
}
.locale-suggest__inner {
  position: relative;
  padding: 1.25rem 0.85rem 0.75rem;
  padding-top: 2.25rem;
}
.locale-suggest__close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: #5c5b59;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.locale-suggest__close:hover {
  background: #ecebea;
  border-color: #d8d6d4;
  color: var(--text);
}
.locale-suggest__close:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}
.locale-suggest__title {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0 1.75rem 0.45rem 0;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.locale-suggest__headline {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}
.locale-suggest__stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 0.5rem;
}
.locale-suggest__lang {
  display: inline-block;
  min-width: 1.35rem;
  margin-right: 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6b7280;
}
.locale-suggest__text {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
}
.locale-suggest__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.locale-suggest__actions .btn {
  flex: 1 1 120px;
  min-height: 0;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 5px 8px;
  font-size: 0.68rem;
  line-height: 1.15;
  border-radius: 4px;
  box-shadow: none;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.locale-suggest__actions .btn:hover {
  transform: none;
}
.locale-suggest__actions .btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: none;
}
.locale-suggest__actions .btn-primary:hover {
  opacity: 0.92;
}
.locale-suggest__actions .btn-secondary {
  background: #fff;
  border-color: #c4c2c0;
  color: #3d3c3b;
}
.locale-suggest__actions .btn-secondary:hover {
  background: #f5f4f3;
  border-color: #b0aeac;
}
.locale-suggest__btn-line {
  display: block;
  font-weight: 600;
  font-size: 0.68rem;
  opacity: 0.95;
}
.locale-suggest__btn-line--strong {
  font-size: 0.74rem;
  font-weight: 700;
  opacity: 1;
}
.locale-suggest__actions .btn-secondary .locale-suggest__btn-line:not(.locale-suggest__btn-line--strong) {
  font-weight: 500;
  opacity: 0.85;
}
.locale-suggest__cta {
  text-decoration: none;
}
@media (max-width: 380px) {
  .locale-suggest__actions .btn {
    flex: 1 1 100%;
  }
}
@media (max-width: 1080px) {
  .hero, .security, .contact { grid-template-columns: 1fr; }
  .hero {
    grid-template-areas:
      "copy"
      "visual";
    gap: 20px;
    align-items: stretch;
  }
  .hero-copy {
    max-width: none;
    margin-right: 0;
    padding: clamp(18px, 4vw, 24px);
  }
  .hero-product-visual {
    width: 100%;
    height: auto;
    min-height: clamp(240px, 42vh, 380px);
  }

  .hero-product-visual img {
    min-height: clamp(240px, 42vh, 380px);
    height: auto;
  }

  .monitor-layout {
    grid-template-columns: 1fr;
  }
  .ai-reporting-layout {
    grid-template-columns: 1fr;
  }
  .incident-blocks,
  .insight-blocks,
  .info-blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards-3, .how { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .foot .brand { max-width: 180px; }
  .cards-3, .how, .faq-grid, form, .foot {
    grid-template-columns: minmax(0, 1fr);
  }
  .info-block-figure img {
    height: 210px;
  }

  /* Hero: yalnızca metin kutusu; ürün görseli kutusu gizli */
  .hero {
    grid-template-areas: "copy";
  }
  .hero-product-visual {
    display: none;
  }
  .hero-lead--desktop {
    display: none;
  }
  .hero-lead--mobile {
    display: block;
    max-width: none;
    margin-top: 8px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .monitor-summary {
    padding: 16px;
  }
  .monitor-kpis {
    grid-template-columns: 1fr;
  }
  .format-grid {
    grid-template-columns: 1fr;
  }
  .incident-blocks,
  .insight-blocks,
  .info-blocks {
    grid-template-columns: minmax(0, 1fr);
  }
  .incident-figure img,
  .insight-figure img {
    height: 200px;
  }
  .insight-monitor-hero__stats {
    grid-template-columns: 1fr;
  }
  .insight-gallery.insight-gallery--mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(14, minmax(12px, auto));
    min-height: 520px;
  }

  .insight-gallery__item--a {
    grid-column: 1 / 5;
    grid-row: 1 / 6;
    transform: translate(2%, 4%) rotate(-1.5deg);
  }

  .insight-gallery__item--b {
    grid-column: 3 / 7;
    grid-row: 1 / 5;
    transform: translate(-2%, 0) rotate(1.5deg);
  }

  .insight-gallery__item--c {
    grid-column: 1 / 4;
    grid-row: 5 / 11;
    transform: translate(3%, -6%) rotate(1deg);
  }

  .insight-gallery__item--d {
    grid-column: 4 / 7;
    grid-row: 6 / 12;
    transform: translate(-2%, -4%) rotate(-1.2deg);
  }

  .insight-gallery__frame img {
    min-height: 100px;
    max-height: 200px;
  }

  .cta { padding: 28px 18px; }
}

/* Policy / legal documents — tek sütun: üst metin ve kartlar aynı genişlikte hizalı */
.legal-page-header {
  padding-bottom: clamp(24px, 4vw, 40px);
}
.legal-page-header .container {
  max-width: min(100%, 56rem);
}
.legal-hero-head {
  max-width: none;
}
.legal-page-header .section-head {
  max-width: none;
  margin-bottom: clamp(20px, 3vw, 28px);
}
.legal-page-header .lead {
  max-width: none;
}
.legal-hero-lead + .legal-hero-lead {
  margin-top: 0.75rem;
}
.legal-page-body {
  padding-top: 0;
}
.legal-breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.legal-breadcrumb a {
  color: var(--brand);
  text-decoration: underline;
}
.legal-doc-stack {
  max-width: min(100%, 56rem);
  margin-inline: auto;
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.legal-doc-stack .card h2 {
  color: var(--text);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  margin-bottom: 0.35rem;
}
.legal-toc {
  padding: clamp(22px, 3vw, 28px);
}
.legal-toc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.legal-toc-list {
  margin: 0;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-toc-list a {
  color: var(--brand);
  text-decoration: underline;
  font-weight: 500;
}
.legal-toc-list li {
  margin-bottom: 0.35rem;
}
.legal-prose p {
  font-size: 1.02rem;
  line-height: 1.72;
  max-width: 100%;
}
.legal-prose p + p {
  margin-top: 0.65rem;
}
.legal-prose .eyebrow {
  margin-bottom: 0.35rem;
}
.legal-list-spaced li + li {
  margin-top: 0.5rem;
}
.legal-doc-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.75rem;
  line-height: 1.65;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.legal-inline-link {
  color: var(--brand);
  text-decoration: underline;
  font-weight: 600;
}
.legal-inline-link--quiet {
  font-weight: inherit;
  color: var(--brand);
  text-decoration: underline;
}
