:root {
  --ga-bg: #f6f5f2;
  --ga-surface: #ffffff;
  --ga-ink: #111319;
  --ga-muted: #595c66;
  --ga-line: #e5e4df;
  --ga-blue: #1f4f7f;
  --ga-blue-deep: #102b46;
  --ga-accent: #f0992a;
  --ga-radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ga-ink);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    linear-gradient(to right, rgba(17, 19, 25, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(to bottom, rgba(17, 19, 25, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--ga-bg);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  padding-top: var(--site-nav-height, 72px);
}

.container-ga {
  width: min(1240px, 92%);
  margin-inline: auto;
  max-width: 100%;
}

.pwa-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: #000;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 260ms ease, visibility 260ms ease;
}

html.pwa-standalone .pwa-preloader {
  display: flex;
}

.pwa-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pwa-preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.pwa-preloader-brand img:first-child {
  height: 110px;
  width: auto;
  object-fit: contain;
}

.pwa-preloader-brand img:last-child {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.assistant-modal[hidden] {
  display: none;
}

.assistant-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: block;
}

.assistant-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 36, 0.32);
  backdrop-filter: blur(2px);
}

.assistant-modal__dialog {
  position: relative;
  width: min(1120px, calc(100vw - 2.5rem));
  height: min(92vh, 920px);
  margin: calc(env(safe-area-inset-top, 0px) + 1.8vh) auto 0;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #cfd6e2;
  box-shadow: 0 26px 90px rgba(3, 8, 18, 0.42);
}

.assistant-modal__header {
  height: 58px;
  border-bottom: 1px solid #e2e7f0;
  background: #f9fbff;
  display: flex;
  align-items: center;
  padding: 0.55rem 1rem;
}

.assistant-modal__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.assistant-modal__brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.assistant-modal__brand span {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f1726;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.assistant-modal__close {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 0.75rem);
  right: calc(env(safe-area-inset-right, 0px) + 0.8rem);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 18, 24, 0.9);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.assistant-modal__content {
  height: calc(100% - 58px);
}

.assistant-modal__chat {
  height: 100%;
  min-height: 0;
  padding: 0;
}

.assistant-modal__chat .guardian-assistant {
  width: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.assistant-fab {
  position: fixed;
  right: 1rem;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem);
  z-index: 3900;
  border: 0;
  border-radius: 999px;
  background: #0f1218;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.86rem 1.12rem;
  box-shadow: 0 12px 28px rgba(7, 12, 24, 0.32);
  cursor: pointer;
}

.assistant-fab:hover {
  background: #1b202a;
}

html.assistant-open .assistant-fab {
  opacity: 0;
  pointer-events: none;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--ga-bg) 86%, #fff 14%);
  border-bottom: 1px solid var(--ga-line);
  backdrop-filter: blur(8px);
}

.site-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-logo {
  width: 154px;
  height: 84px;
  object-fit: contain;
}

.brand-name {
  display: none;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.header-brand img:first-child {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.header-brand img:last-child {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-links a {
  color: #2c2f37;
  text-decoration: none;
  font-size: 1.06rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2rem;
}

.nav-links a.active,
.nav-links a:hover {
  border-color: #2c2f37;
}

.nav-cta {
  border: 0;
  border-radius: 14px;
  background: #0f1218;
  color: #fff;
  padding: 0.85rem 1.22rem;
  font-size: 1rem;
  font-weight: 700;
}

.hero {
  padding: 1.2rem 0 0.9rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  align-items: stretch;
}

.hero-copy {
  padding-right: 0.2rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.83rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #575a64;
  font-weight: 700;
}

.hero-title {
  margin: 0.7rem 0 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 13vw, 4.2rem);
  
  line-height: 1.07;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.hero-title .muted {
  color: #87847d;
}

.hero-title .blue {
  color: var(--ga-blue);
}

.hero-lead {
  margin-top: 0.62rem;
  font-size: clamp(0.97rem, 1.25vw, 1.12rem);
  line-height: 1.45;
  color: #383b44;
  max-width: 42ch;
}

.hero-actions {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.72rem;
}

.hero-allies {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
}

.hero-allies img {
  display: block;
  height: 46px;
  width: auto;
  object-fit: contain;
}

.btn-primary-ga,
.btn-secondary-ga {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 14px;
  padding: 0.72rem 1rem;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary-ga {
  background: #0f1218;
  color: #fff;
}

.btn-secondary-ga {
  background: #fff;
  color: #151821;
  border: 1px solid #d7d8dc;
}

.hero-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 0.42rem;
}

.hero-main-photo,
.hero-mini-photo {
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--ga-line);
  min-height: 0;
}

.hero-main-photo img,
.hero-mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-main-photo {
  height: 620px;
}

.hero-side-column {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
  height: 620px;
}

.hero-side-column .hero-mini-photo {
  height: 100%;
}

.hero-overlay {
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.6rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 0.82rem;
  border: 1px solid #ddd;
}

.hero-actions .btn-primary-ga {
  padding: 0.95rem 1.35rem;
  font-size: 1.12rem;
  border-radius: 15px;
}

.hero-overlay p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-overlay small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #5d6067;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.section {
  padding: 2.1rem 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.impact-card {
  background: #fff;
  border: 1px solid #d8dbe2;
  border-radius: 16px;
  padding: 1rem;
}

.risk-monitor {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid #d9dde4;
  border-radius: 18px;
  padding: 0.95rem;
}

.risk-monitor-head {
  margin-bottom: 0.7rem;
}

.risk-monitor-head h3 {
  margin: 0;
  font-size: clamp(1.02rem, 1.65vw, 1.3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.risk-monitor-head p {
  margin: 0.32rem 0 0;
  color: #596070;
  font-size: 0.9rem;
}

.risk-table-wrap {
  max-height: 560px;
  overflow-y: auto;
  border: 1px solid #e3e7ee;
  border-radius: 14px;
}

.risk-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.risk-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f4f7fc;
  border-bottom: 1px solid #d9deea;
  color: #364157;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.72rem 0.56rem;
  text-align: left;
  font-weight: 800;
}

.risk-table th:nth-child(1),
.risk-table td:nth-child(1) {
  width: 6%;
}

.risk-table th:nth-child(2),
.risk-table td:nth-child(2) {
  width: 22%;
}

.risk-table th:nth-child(3),
.risk-table td:nth-child(3) {
  width: 13%;
}

.risk-table th:nth-child(4),
.risk-table td:nth-child(4) {
  width: 9%;
}

.risk-table th:nth-child(5),
.risk-table td:nth-child(5),
.risk-table th:nth-child(6),
.risk-table td:nth-child(6) {
  width: 10%;
}

.risk-table th:nth-child(7),
.risk-table td:nth-child(7),
.risk-table th:nth-child(8),
.risk-table td:nth-child(8) {
  width: 15%;
}

.risk-table tbody tr:nth-child(odd) {
  background: #fcfdff;
}

.risk-table tbody tr:hover {
  background: #f4f8ff;
}

.risk-table tbody td {
  border-top: 1px solid #edf0f6;
  padding: 0.6rem 0.56rem;
  font-size: 0.9rem;
  color: #1f2533;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.risk-table td:nth-child(1),
.risk-table td:nth-child(4),
.risk-table td:nth-child(5),
.risk-table td:nth-child(6) {
  font-weight: 700;
}

.risk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
}

.risk-critical {
  background: #ffe5e8;
  border-color: #f4bcc3;
  color: #8f1e2f;
}

.risk-high {
  background: #fff2dc;
  border-color: #f4d7a5;
  color: #8b5a07;
}

.risk-medium {
  background: #e5efff;
  border-color: #bfd5ff;
  color: #1a4f9e;
}

.risk-low {
  background: #e6f7ee;
  border-color: #bbe8cd;
  color: #0f6b43;
}

.impact-num {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ga-blue);
}

.impact-live-sub {
  margin: 0.18rem 0 0;
  font-size: 0.84rem;
  color: #2f5f97;
  font-weight: 700;
}

.impact-txt {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  color: #4e525a;
}

.demo-panel {
  background: #fff;
  border: 1px solid #d9dce4;
  border-radius: 20px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.demo-copy h3 {
  margin: 0.4rem 0;
  font-size: 1.35rem;
}

.demo-copy p {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  color: #4d5159;
}

.demo-screen {
  border-radius: 16px;
  border: 1px solid #dbe0ea;
  background: linear-gradient(145deg, #f6f9ff, #eef3fa);
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
  align-content: center;
}

.demo-screen p {
  margin: 0;
  font-weight: 700;
}

.demo-screen small {
  color: #4b5060;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e53935;
  box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.5);
  animation: gaPulse 1.6s infinite;
}

@keyframes gaPulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(229, 57, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

.flow-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.flow-step {
  background: #fff;
  border: 1px solid #d9dde4;
  border-radius: 16px;
  padding: 0.95rem;
}

.flow-step span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0f1218;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.flow-step h3 {
  margin: 0.65rem 0 0.35rem;
  font-size: 1rem;
}

.flow-step p {
  margin: 0;
  color: #4f535d;
  font-size: 0.9rem;
}

.allies {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--ga-line);
  border-radius: 24px;
  padding: 1rem;
}

.allies p {
  margin: 0 0 0.8rem;
  color: #4b4e56;
  font-size: 1rem;
}

.logo-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.logo-rail span {
  background: #fff;
  border: 1px solid #dbdde3;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #383b44;
}

.partner-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #e0e3ea;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 253, 0.95));
  padding: 0.62rem 0;
}

.partner-marquee::before,
.partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 58px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(to right, #faf9f6 0%, rgba(250, 249, 246, 0) 100%);
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(to left, #faf9f6 0%, rgba(250, 249, 246, 0) 100%);
}

.partner-track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  animation: partnerScroll 90s linear infinite;
}

.partner-chip {
  flex: 0 0 auto;
  height: 52px;
  padding: 0 0.2rem;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.partner-chip-logo img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  opacity: 0.95;
}

.partner-chip-label span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #50545e;
  white-space: nowrap;
}

@keyframes partnerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track {
    animation: none;
  }
}

.partner-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.partner-rail span {
  background: #fff;
  border: 1px solid #d7dbe3;
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.section-label {
  margin: 0;
  color: #5b5e66;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.83rem;
  font-weight: 700;
}

.section-title {
  margin: 0.45rem 0 0.9rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2.25rem);
  line-height: 1.18;
  font-weight: 800;
}

.projects-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ddd;
  min-height: 300px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.7) 100%);
}

.project-card .txt {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: #fff;
}

.project-card h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1;
}

.project-card p {
  margin: 0.3rem 0 0;
  font-size: clamp(0.78rem, 1.3vw, 0.92rem);
  line-height: 1.35;
}

.team-block {
  background: #fff;
  border: 1px solid #d9dde4;
  border-radius: 24px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1rem;
  align-items: stretch;
}

.team-copy p {
  margin: 0.5rem 0 0;
  color: #4b4f59;
  font-size: 0.96rem;
  line-height: 1.55;
}

.team-logo-inline {
  margin: 0.95rem 0 0.2rem;
  text-align: center;
}

.team-logo-inline img {
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.team-media {
  display: block;
  max-width: 560px;
  width: 100%;
}

.team-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f8fc;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}

.team-photo-main {
  min-height: 380px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1rem;
  align-items: stretch;
}

.faq-visual {
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
  min-height: 100%;
}

.faq-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-item {
  border: 1px solid #e0e1e6;
  border-radius: 14px;
  background: #fff;
  padding: 0.95rem 1rem;
}

.faq-item summary {
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: #4a4d55;
  font-size: 1rem;
}

.contact-wrap {
  background: #fff;
  border: 1px solid var(--ga-line);
  border-radius: 26px;
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-copy h3 {
  margin: 0.4rem 0 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3.1vw, 2.6rem);
  line-height: 1.1;
  font-weight: 800;
}

.contact-copy p,
.contact-copy li {
  color: #454850;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-copy ul {
  margin: 1rem 0;
  padding-left: 1.1rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-grid label {
  font-size: 0.9rem;
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #d6d8de;
  border-radius: 12px;
  padding: 0.68rem 0.82rem;
  font: inherit;
  background: #fdfdff;
}

.form-grid [data-form-feedback] {
  margin: 0.2rem 0 0;
  color: #0f6b43;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  color: #5f626a;
  font-size: 0.95rem;
}

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

.footer-main {
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.footer-brand img:first-child {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.footer-brand img:last-child {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-links a {
  color: #545963;
  font-size: 0.9rem;
}

.footer-partners {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  min-height: 72px;
}

.footer-partners img {
  display: block;
  height: 68px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .demo-panel,
  .contact-wrap,
  .team-block {
    grid-template-columns: 1fr;
  }

  .hero-main-photo {
    min-height: 500px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .footer-partners {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .projects-row,
  .faq-grid,
  .flow-row,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .team-photo-main {
    min-height: 300px;
  }

  .risk-table th:nth-child(3),
  .risk-table td:nth-child(3),
  .risk-table th:nth-child(4),
  .risk-table td:nth-child(4) {
    display: none;
  }

  .risk-table th:nth-child(2),
  .risk-table td:nth-child(2) {
    width: 34%;
  }

  .risk-table th:nth-child(7),
  .risk-table td:nth-child(7),
  .risk-table th:nth-child(8),
  .risk-table td:nth-child(8) {
    width: 18%;
  }

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

  .hero-title {
    font-size: clamp(2.3rem, 13vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-media-grid {
    grid-template-columns: 1fr;
  }

  .hero-side-column {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-template-columns: 1fr 1fr;
    gap: 0.42rem;
    height: auto;
  }

  .hero-main-photo {
    height: 430px;
  }
}

@media (max-width: 640px) {
  .assistant-modal__dialog {
    width: calc(100vw - 1.1rem);
    height: calc(100dvh - 1.2rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    margin: calc(env(safe-area-inset-top, 0px) + 0.5rem) auto 0;
    border-radius: 14px;
  }

  .assistant-modal__header {
    height: 54px;
    padding: 0.45rem 0.8rem;
  }

  .assistant-modal__brand span {
    font-size: 0.88rem;
  }

  .assistant-modal__content {
    height: calc(100% - 54px);
  }

  .site-nav-row {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .header-brand {
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2.3rem, 13vw, 4.2rem);
    line-height: 1.08;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
    gap: 1.15rem;
    margin-top: 0.9rem;
    margin-bottom: 1.4rem;
  }

  .hero-actions .btn-primary-ga,
  .hero-actions .btn-secondary-ga,
  .section .btn-primary-ga,
  .section .btn-secondary-ga,
  .section .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .site-footer,
  .footer-main,
  .site-footer p {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
    width: 100%;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-partners {
    justify-content: center;
    width: 100%;
  }

  .nav-cta {
    width: 100%;
  }

  .header-brand img:first-child {
    height: 30px;
  }

  .header-brand img:last-child {
    height: 22px;
  }

  .footer-brand img:first-child {
    height: 30px;
  }

  .footer-brand img:last-child {
    height: 22px;
  }

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

  .hero-allies img {
    height: 78px;
  }

  .hero-allies {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    margin-top: 0.25rem;
    margin-bottom: 0.35rem;
  }

  .assistant-fab {
    left: 1rem;
    right: 1rem;
    width: auto;
    text-align: center;
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }

  .risk-monitor {
    padding: 0.75rem;
  }

  .risk-monitor-head h3 {
    font-size: 1rem;
  }

  .risk-monitor-head p {
    font-size: 0.84rem;
  }

  .risk-table-wrap {
    max-height: 430px;
  }

  .risk-table th:nth-child(1),
  .risk-table td:nth-child(1) {
    width: 9%;
  }

  .risk-table th:nth-child(5),
  .risk-table td:nth-child(5) {
    display: none;
  }

  .risk-table th:nth-child(2),
  .risk-table td:nth-child(2) {
    width: 40%;
  }

  .risk-table th:nth-child(6),
  .risk-table td:nth-child(6),
  .risk-table th:nth-child(7),
  .risk-table td:nth-child(7),
  .risk-table th:nth-child(8),
  .risk-table td:nth-child(8) {
    width: 17%;
  }

  .risk-table tbody td {
    font-size: 0.84rem;
    padding: 0.55rem 0.45rem;
  }

  .risk-badge {
    min-width: 70px;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
}
