:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --surface-muted: #f2f2f2;
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --primary: #f51e2f;
  --primary-deep: #d31222;
  --accent: #262626;
  --gold: #f51e2f;
  --border: rgba(20, 20, 20, 0.08);
  --shadow: 0 18px 40px rgba(25, 25, 25, 0.08);
  --shadow-strong: 0 30px 70px rgba(25, 25, 25, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(245, 30, 47, 0.1), transparent 20%),
    radial-gradient(circle at 85% 14%, rgba(245, 30, 47, 0.08), transparent 12%),
    radial-gradient(circle at left center, rgba(38, 38, 38, 0.04), transparent 18%),
  var(--bg);
  color: var(--text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(25, 25, 25, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 25, 25, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.16), transparent 80%);
}

::selection {
  background: rgba(255, 31, 45, 0.28);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
}

.site-shell::before {
  width: 360px;
  height: 360px;
  top: 110px;
  right: -110px;
  background: rgba(245, 30, 47, 0.1);
}

.site-shell::after {
  width: 320px;
  height: 320px;
  top: 780px;
  left: -120px;
  background: rgba(38, 38, 38, 0.05);
}

.topbar {
  background: #ffffff;
  color: #262626;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(245, 30, 47, 0.18);
}

.topbar .container,
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.topbar .container {
  padding: 12px 0;
}

.topbar-note,
.topbar-links,
.hero-highlights,
.inline-stats,
.contact-list,
.pill-list,
.logos-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: 0 10px 28px rgba(25, 25, 25, 0.06);
}

.site-header .container {
  padding: 18px 0;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  height: 66px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(245, 30, 47, 0.08));
}

.footer-logo {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.brand-text span,
.card-text,
.muted,
.hero p,
.page-hero p,
.section-heading p,
details p {
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  border-radius: 2px;
  background: #222;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: #111;
  background: rgba(245, 30, 47, 0.08);
  transform: translateY(-1px);
}

.header-cta,
.hero-actions,
.page-hero-actions,
.stack-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.06);
  direction: ltr;
}

.lang-btn {
  min-width: 42px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.lang-btn:hover {
  color: #111;
  background: rgba(245, 30, 47, 0.08);
}

.lang-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 10px 20px rgba(245, 30, 47, 0.22);
}

.btn,
.btn-outline,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 31, 45, 0.22);
}

.btn-outline {
  border-color: rgba(20, 20, 20, 0.12);
  color: #222;
  background: rgba(255, 255, 255, 0.92);
}

.btn-light {
  background: #222;
  color: #fff;
}

.btn:hover,
.btn-outline:hover,
.btn-light:hover {
  transform: translateY(-2px);
}

.btn:hover {
  box-shadow: 0 18px 34px rgba(255, 31, 45, 0.28);
}

.btn-outline:hover {
  background: rgba(245, 30, 47, 0.06);
  border-color: rgba(245, 30, 47, 0.24);
}

.hero,
.page-hero {
  padding: 92px 0 48px;
}

.hero-grid,
.page-hero-grid,
.grid-2,
.grid-3,
.faq-grid,
.footer-grid,
.timeline,
.metrics {
  display: grid;
  gap: 22px;
}

.hero-grid,
.page-hero-grid {
  grid-template-columns: 1.2fr 0.9fr;
  align-items: stretch;
}

.hero-copy,
.page-hero-copy,
.hero-panel,
.page-hero-panel,
.section-card,
.info-card,
.glass-card,
.cta-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-copy,
.page-hero-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.hero-copy,
.page-hero-copy,
.hero-panel,
.page-hero-panel,
.section-card,
.info-card,
.glass-card,
.cta-box,
.timeline-item,
.metric,
details {
  padding: 28px;
}

.hero-copy::before,
.page-hero-copy::before,
.hero-panel::before,
.page-hero-panel::before,
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(245, 30, 47, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(245, 30, 47, 0.03), transparent 34%);
  pointer-events: none;
}

.hero-copy::after,
.page-hero-copy::after {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), rgba(255, 31, 45, 0.06));
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .topbar .container,
html[dir="rtl"] .site-header .container {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-copy::after,
html[dir="rtl"] .page-hero-copy::after {
  left: auto;
  right: 0;
}

.hero-copy p,
.page-hero-copy p {
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 31, 45, 0.14);
  color: #fff;
  font-weight: 700;
  font-size: 0.94rem;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.cta-box h2 {
  margin: 18px 0 14px;
  font-family: "Sora", "IBM Plex Sans Arabic", sans-serif;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  max-width: 11.5ch;
  text-wrap: balance;
}

.hero-panel,
.page-hero-panel,
.cta-box {
  background: linear-gradient(145deg, #222222, #3b3b3b);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.hero-panel p,
.page-hero-panel p,
.cta-box p {
  color: rgba(255, 255, 255, 0.82);
}

.panel-head h3,
.cta-box h2 {
  margin: 10px 0 8px;
  font-size: 1.7rem;
}

.hero-actions,
.page-hero-actions,
.stack-actions {
  margin-top: 8px;
}

.panel-block,
.quote-list li {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.panel-block strong,
.metric strong {
  display: block;
  font-family: "Sora", "IBM Plex Sans Arabic", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.section {
  padding: 48px 0 28px;
}

.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
}

.section-heading {
  margin-bottom: 22px;
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  position: relative;
  padding-bottom: 12px;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 84px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), rgba(245, 30, 47, 0.18));
}

html[dir="rtl"] .section-heading h2::after {
  left: auto;
  right: 0;
}

html[dir="rtl"] .table-row,
html[dir="rtl"] .footer-list,
html[dir="rtl"] .topbar-links,
html[dir="rtl"] .site-nav {
  direction: rtl;
}

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

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

.card-icon,
.timeline-item strong {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
}

.section-card h3,
.info-card h3,
.glass-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.stat-strip {
  padding: 18px 0 10px;
}

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

.metric span {
  color: var(--muted);
}

.metric {
  border-top: 4px solid rgba(245, 30, 47, 0.8);
  background: linear-gradient(180deg, rgba(245, 30, 47, 0.03), rgba(255, 255, 255, 0.98));
}

.metric strong {
  color: var(--primary-deep);
}

.metric,
.section-card,
.info-card,
.glass-card,
.timeline-item,
.iso-card,
details,
.logo-chip {
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.metric:hover,
.section-card:hover,
.info-card:hover,
.glass-card:hover,
.timeline-item:hover,
.iso-card:hover,
details:hover,
.logo-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 30, 47, 0.24);
  box-shadow: var(--shadow-strong);
}

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

.iso-frame {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    radial-gradient(circle at top right, rgba(245, 30, 47, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(245, 30, 47, 0.03), transparent 26%),
    rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-strong);
  padding: 30px;
}

.iso-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.iso-heading {
  max-width: 720px;
}

.iso-heading h2 {
  margin: 16px 0 12px;
  font-family: "Sora", "IBM Plex Sans Arabic", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.18;
}

.iso-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
}

.iso-status {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.iso-status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(245, 30, 47, 0.06);
  border: 1px solid rgba(245, 30, 47, 0.12);
  color: #222;
  font-weight: 700;
}

.iso-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
  align-items: start;
}

.iso-summary {
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(245, 245, 245, 0.9);
  padding: 24px;
}

.iso-points {
  display: grid;
  gap: 16px;
}

.iso-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.iso-point:last-child {
  border-bottom: 0;
}

.iso-point strong {
  color: #222;
}

.iso-point-mark {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(255, 31, 45, 0.18);
}

.iso-credentials {
  display: grid;
  gap: 18px;
}

.iso-feature {
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 20, 20, 0.08);
  background:
    linear-gradient(135deg, rgba(245, 30, 47, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.iso-feature-copy h3 {
  margin: 6px 0 8px;
  font-size: 1.3rem;
}

.iso-feature-copy p {
  margin: 0;
  color: var(--muted);
}

.iso-kicker {
  color: var(--primary-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
}

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

.iso-card {
  padding: 20px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 20, 20, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.iso-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 30, 47, 0.03), transparent 42%);
  pointer-events: none;
}

.iso-badge {
  width: 126px;
  height: 126px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 5px solid #1e5ea8;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #0d4f94 0 48%, transparent 49% 100%),
    #f8fbff;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.iso-badge::before {
  content: attr(data-top);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #1e5ea8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.iso-badge::after {
  content: attr(data-bottom);
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  color: #1e5ea8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.iso-core {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

.iso-core strong {
  display: block;
  font-size: 1.55rem;
}

.iso-core span {
  display: block;
  font-size: 0.74rem;
  margin-top: 4px;
}

.iso-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.iso-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.years-badge {
  background:
    radial-gradient(circle at center, rgba(46, 67, 148, 0.95) 0 54%, transparent 55% 100%),
    rgba(46, 67, 148, 0.18);
  border-color: rgba(46, 67, 148, 0.85);
}

.years-badge::before,
.years-badge::after {
  display: none;
}

.years-badge .iso-core strong {
  color: #ff1f2d;
  font-size: 2.6rem;
}

.years-badge .iso-core span {
  color: #d7deff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.info-card,
.glass-card {
  background: rgba(255, 255, 255, 0.98);
}

.section-card,
.info-card,
.glass-card,
.timeline-item,
details {
  border-top: 4px solid rgba(245, 30, 47, 0.7);
}

.logo-chip,
.hero-highlights span,
.pill-list span,
.mini-chip,
.contact-list a,
.contact-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(245, 30, 47, 0.06);
  color: #222;
  font-weight: 600;
}

.hero-highlights {
  margin-top: 10px;
}

.hero-highlights span {
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: 0 8px 18px rgba(25, 25, 25, 0.05);
}

.logos-row {
  justify-content: center;
}

.logo-chip {
  min-width: 118px;
  text-align: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 1px 0 rgba(245, 30, 47, 0.04);
}

.faq-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.faq-list,
.quote-panel,
.quote-list,
.table-like,
.footer-list {
  display: grid;
  gap: 14px;
}

.quote-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

details {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

details[open] {
  border-color: rgba(245, 30, 47, 0.22);
  box-shadow: 0 18px 36px rgba(245, 30, 47, 0.08);
}

summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

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

.timeline-item {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.table-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.table-row strong {
  color: #222;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.footer {
  padding: 42px 0 26px;
  color: #e9e9e9;
  background: #222;
  margin-top: 42px;
  border-top: 1px solid rgba(245, 30, 47, 0.22);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 30, 47, 0.5), transparent);
}

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

.footer h3,
.footer h4 {
  color: #fff;
  margin: 0 0 12px;
}

.footer p,
.footer a,
.footer li {
  color: rgba(220, 230, 239, 0.84);
}

.footer a {
  transition: color 0.22s ease, opacity 0.22s ease;
}

.footer a:hover {
  color: #fff;
}

.footer .contact-list a,
.footer .contact-list span {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.copyright {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(220, 230, 239, 0.72);
  font-size: 0.94rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.hero-copy,
.hero-panel,
.metric,
.iso-frame,
.iso-summary,
.iso-feature,
.iso-card,
.section-card,
.info-card,
.glass-card,
.timeline-item,
.cta-box,
details {
  animation: rise-in 0.7s ease both;
}

.hero-panel { animation-delay: 0.08s; }
.metric:nth-child(2) { animation-delay: 0.05s; }
.metric:nth-child(3) { animation-delay: 0.1s; }
.metric:nth-child(4) { animation-delay: 0.15s; }
.iso-feature { animation-delay: 0.06s; }
.iso-card:nth-child(2) { animation-delay: 0.1s; }
.iso-card:nth-child(3) { animation-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .page-hero-grid,
  .faq-grid,
  .footer-grid,
  .grid-3,
  .timeline,
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .iso-head {
    flex-direction: column;
    align-items: start;
  }

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

  .iso-status {
    justify-content: flex-start;
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-strong);
    flex-direction: column;
    align-items: stretch;
  }

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

  .header-cta {
    display: inline-flex;
    margin-inline-start: auto;
  }

  .header-cta .btn,
  .header-cta .btn-outline {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 36px;
  }

  .hero-grid,
  .page-hero-grid,
  .iso-layout,
  .grid-3,
  .timeline,
  .metrics,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .iso-feature,
  .iso-cert-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel,
  .page-hero-copy,
  .page-hero-panel,
  .cta-box,
  .section-card,
  .info-card,
  .glass-card,
  .timeline-item,
  .metric,
  details {
    padding: 22px;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .topbar {
    display: none;
  }

  .brand-logo {
    height: 50px;
  }

  .lang-switcher {
    padding: 4px;
  }

  .lang-btn {
    min-width: 38px;
    height: 34px;
  }

  .footer-logo {
    height: 58px;
  }

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

  .btn,
  .btn-outline,
  .btn-light {
    width: 100%;
  }
}
