
:root {
  --bg: #f5f7fb;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-muted: #eef3f8;
  --surface-soft: #f7faff;
  --surface-container: #ffffff;
  --surface-tint: rgba(31, 122, 224, 0.08);
  --text: #162236;
  --text-soft: #54657d;
  --text-faint: #73839a;
  --line: rgba(125, 146, 171, 0.22);
  --line-strong: rgba(90, 114, 143, 0.28);
  --primary: #0f2d52;
  --primary-soft: #e5effd;
  --primary-strong: #091b33;
  --accent: #1f7ae0;
  --accent-strong: #0059c7;
  --success: #13795b;
  --warning: #9a6700;
  --danger: #b42318;
  --shadow: 0 20px 48px rgba(15, 45, 82, 0.08);
  --shadow-soft: 0 8px 24px rgba(15, 45, 82, 0.06);
  --focus-ring: 0 0 0 4px rgba(31, 122, 224, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  font-family: "Roboto Flex", Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(31, 122, 224, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 52%, #eef3f9 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

main {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

code {
  font-family: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.92em;
  background: rgba(15, 45, 82, 0.06);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 999px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 80;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.section {
  padding: 84px 0;
}

.section.compact {
  padding: 56px 0;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.section-lead {
  max-width: 760px;
  color: var(--text-soft);
  font-size: 18px;
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(125, 146, 171, 0.18);
  box-shadow: 0 10px 30px rgba(15, 45, 82, 0.04);
}

.site-header .container {
  width: min(calc(100% - 32px), 1440px);
}

.header-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 0 1 auto;
}

.brand img {
  width: 74px;
  height: 74px;
  padding: 8px;
  border-radius: 22px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(125, 146, 171, 0.2);
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
}

.brand.has-wordmark {
  gap: 18px;
}

.brand.has-wordmark img {
  width: clamp(190px, 21vw, 320px);
  height: auto;
  max-height: 82px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-copy {
  min-width: 0;
}

.brand-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand.has-wordmark .brand-title {
  display: none;
}

.brand-subtitle {
  margin: 4px 0 0;
  color: var(--text-faint);
  font-size: 15px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 1 auto;
  min-width: 0;
}

.nav-links a {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  background: var(--primary-soft);
  color: var(--text);
}

.portal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}

body.enhanced-login .portal-links {
  display: none;
}

.portal-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
  flex: 0 0 auto;
}

.portal-chip:hover,
.portal-chip:focus-visible {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.login-menu {
  position: relative;
}

.login-menu-toggle {
  gap: 10px;
}

.login-menu-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.login-menu.is-open .login-menu-caret {
  transform: rotate(225deg) translateY(-1px);
}

.login-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  padding: 10px;
  display: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.login-menu.is-open .login-dropdown {
  display: grid;
  gap: 6px;
}

.login-dropdown a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--text-soft);
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.login-dropdown a:hover,
.login-dropdown a:focus-visible {
  background: var(--primary-soft);
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  min-height: 48px;
  padding: 0 14px;
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.button,
.button-secondary,
.button-quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}

.button:hover,
.button-secondary:hover,
.button-quiet:hover {
  transform: translateY(-1px);
}

.button {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 45, 82, 0.16);
}

.button-secondary {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.button-quiet {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-soft);
  border-color: var(--line);
}

.button-block {
  width: 100%;
}

.button-top-gap {
  margin-top: 18px;
}

.hero {
  padding: 62px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 44px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin: 18px 0 20px;
}

.hero-copy p {
  margin: 0 0 30px;
  color: var(--text-soft);
  font-size: 18px;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-faint);
  font-size: 14px;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-note span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
}

.hero-visual {
  position: relative;
  min-width: 0;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(125, 146, 171, 0.18);
  border-radius: 32px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero-dashboard {
  backdrop-filter: blur(14px);
}

.dashboard-shell {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(31, 122, 224, 0.16), transparent 30%),
    linear-gradient(180deg, #f9fbff 0%, #eef4fd 100%);
}

.dashboard-topbar,
.dashboard-brand,
.dashboard-panel-header,
.dashboard-row {
  display: flex;
  align-items: center;
}

.dashboard-topbar,
.dashboard-panel-header,
.dashboard-row {
  justify-content: space-between;
  gap: 12px;
}

.dashboard-brand {
  gap: 10px;
  color: var(--primary);
  font-size: 15px;
}

.dashboard-brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f7ae0 0%, #0f2d52 100%);
  box-shadow: 0 0 0 6px rgba(31, 122, 224, 0.12);
}

.dashboard-status,
.dashboard-panel-header span,
.dashboard-row em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
}

.dashboard-status {
  background: rgba(19, 121, 91, 0.12);
  color: var(--success);
}

.dashboard-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(125, 146, 171, 0.18);
}

.dashboard-stat span {
  display: block;
  color: var(--text-faint);
  font-size: 12px;
  margin-bottom: 6px;
}

.dashboard-stat strong {
  font-size: 24px;
  line-height: 1;
  color: var(--primary);
}

.dashboard-panel {
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(125, 146, 171, 0.18);
  box-shadow: var(--shadow-soft);
}

.dashboard-panel-header {
  margin-bottom: 12px;
}

.dashboard-panel-header strong {
  font-size: 16px;
}

.dashboard-panel-header span {
  background: var(--primary-soft);
  color: var(--primary);
}

.dashboard-row {
  padding: 12px 0;
  border-top: 1px solid rgba(125, 146, 171, 0.16);
}

.dashboard-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.dashboard-row:last-of-type {
  padding-bottom: 0;
}

.dashboard-row span {
  min-width: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.dashboard-row strong {
  color: var(--text);
  font-size: 14px;
  text-align: right;
}

.dashboard-row em {
  min-width: 68px;
  background: rgba(31, 122, 224, 0.1);
  color: var(--accent-strong);
}

.dashboard-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(125, 146, 171, 0.18);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
}

.dashboard-highlights span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.floating-card {
  position: absolute;
  right: -22px;
  bottom: 28px;
  width: min(300px, 78%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.floating-card h3,
.floating-card p {
  margin: 0;
}

.floating-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.floating-card p {
  font-size: 14px;
  color: var(--text-soft);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.metric strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 8px;
}

.metric span {
  color: var(--text-soft);
  font-size: 15px;
}

.feature-grid,
.role-grid,
.legal-grid,
.portal-grid,
.faq-grid,
.stats-grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

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

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

.card,
.role-card,
.legal-card,
.portal-card,
.stat-card,
.cta-panel,
.content-card,
.faq-item,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card,
.role-card,
.legal-card,
.portal-card,
.stat-card,
.content-card,
.faq-item,
.contact-card {
  padding: 28px;
}

.card h3,
.role-card h3,
.legal-card h3,
.portal-card h3,
.stat-card h3,
.content-card h3,
.faq-item h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.card p,
.role-card p,
.legal-card p,
.portal-card p,
.stat-card p,
.content-card p,
.faq-item p {
  margin: 0;
  color: var(--text-soft);
}

.card ul,
.role-card ul,
.legal-card ul,
.portal-card ul,
.content-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.card li,
.role-card li,
.legal-card li,
.portal-card li,
.content-card li {
  margin-bottom: 10px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
}

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

.timeline-step {
  position: relative;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.timeline-step strong {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  margin-bottom: 16px;
}

.timeline-step h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.timeline-step p {
  margin: 0;
  color: var(--text-soft);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: stretch;
}

.image-panel {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.check-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--text-soft);
}

.check-list li::before {
  content: "•";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  margin-top: -2px;
}

.cta-panel {
  padding: 36px;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0f2d52 0%, #153b6e 100%);
  color: #fff;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0 0;
}

.cta-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.subtle-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 16px 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-weight: 600;
}

.trust-badge {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
}

.page-hero {
  padding: 56px 0 34px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-faint);
  font-size: 14px;
  align-items: center;
  padding: 10px 14px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  max-width: 100%;
}

.breadcrumb a {
  color: var(--text-faint);
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0;
  font-size: 18px;
  color: var(--text-soft);
  max-width: 780px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.aside-card {
  position: sticky;
  top: 112px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.aside-card h3 {
  margin-top: 0;
  font-size: 20px;
}

.aside-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.content-card h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.content-card h3 {
  font-size: 20px;
  margin: 28px 0 10px;
}

.content-card p + p {
  margin-top: 12px;
}

.content-card ol {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.content-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

.content-card th,
.content-card td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 12px 16px 12px 0;
  vertical-align: top;
}

.content-card th:last-child,
.content-card td:last-child {
  padding-right: 0;
}

.content-card th {
  color: var(--text);
  font-size: 14px;
}

.content-card td {
  color: var(--text-soft);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: #fff;
  padding: 12px 14px;
  color: var(--text);
  box-shadow: inset 0 1px 2px rgba(15, 45, 82, 0.03);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(31, 122, 224, 0.45);
}

.form-help {
  margin-top: 12px;
  color: var(--text-faint);
  font-size: 14px;
}

.callout,
.notice {
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 18px;
}

.callout {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--text-soft);
}

.notice {
  background: #fff7e8;
  border: 1px solid #f0d7a8;
  color: #744c00;
}

.portal-card .button,
.portal-card .button-secondary {
  width: 100%;
  margin-top: 18px;
}

.dual-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 108px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-soft);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
}

.footer-brand p,
.footer-grid li,
.footer-meta,
.footer-grid a {
  color: var(--text-soft);
}

.footer-grid ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  color: var(--text-faint);
  font-size: 14px;
}

.footer-bottom-compact {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.stack-top {
  margin-top: 28px;
}

.cta-title-reset {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
}

.dual-actions-fixed {
  min-width: min(100%, 360px);
  margin-top: 0;
}

.seo-note {
  background: #eff6ff;
  border: 1px solid #bfd8ff;
  color: #1d4d8f;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14px;
  margin-top: 16px;
}

@media (max-width: 1280px) {
  .hero-grid {
    gap: 32px;
  }

  .metric-strip,
  .timeline,
  .feature-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-card {
    right: 12px;
    bottom: 16px;
    width: min(280px, 72%);
  }
}

@media (max-width: 1460px) {
  .header-wrap {
    gap: 18px;
  }

  .brand img {
    width: 68px;
    height: 68px;
  }

  .brand.has-wordmark img {
    width: clamp(180px, 20vw, 260px);
    max-height: 72px;
  }

  .brand-title {
    font-size: 25px;
  }

  .brand-subtitle {
    max-width: 280px;
    font-size: 14px;
  }

  .nav {
    gap: 14px;
  }

  .nav-links {
    gap: 14px;
  }

  .portal-links {
    gap: 6px;
  }

  .portal-chip {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .button,
  .button-secondary,
  .button-quiet {
    min-height: 44px;
    padding: 0 16px;
  }
}

@media (max-width: 1320px) {
  .brand-subtitle {
    display: none;
  }

  .nav-links a {
    font-size: 14px;
  }

  .portal-chip {
    font-size: 11px;
    padding: 0 10px;
  }

  .button-quiet {
    padding: 0 12px;
  }
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-subtitle {
    display: block;
  }
}

@media (max-width: 1180px) {
  .header-wrap {
    min-height: 74px;
    align-items: center;
  }

  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 18px 16px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    box-shadow: 0 18px 40px rgba(15, 45, 82, 0.08);
  }

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

  body.menu-open {
    overflow: hidden;
  }

  .nav-links,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .portal-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-content: stretch;
  }

  .login-menu {
    width: 100%;
  }

  .login-dropdown {
    position: static;
    min-width: 0;
    margin-top: 8px;
    width: 100%;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 12px;
  }

  .portal-chip,
  .button,
  .button-secondary,
  .button-quiet,
  .login-menu-toggle {
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand {
    max-width: calc(100% - 72px);
  }

  .brand-subtitle {
    display: block;
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

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

  .page-hero {
    padding: 42px 0 24px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .hero-copy p,
  .page-hero p,
  .section-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .button-secondary,
  .hero-actions .button-quiet,
  .cta-panel .button,
  .cta-panel .button-secondary {
    width: 100%;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-grid,
  .dual-actions {
    grid-template-columns: 1fr;
  }

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

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand.has-wordmark img {
    width: min(200px, 52vw);
    max-height: 58px;
  }

  .brand-title {
    font-size: 22px;
  }

  .brand-subtitle {
    font-size: 13px;
  }

  .card,
  .role-card,
  .legal-card,
  .portal-card,
  .stat-card,
  .content-card,
  .faq-item,
  .contact-card,
  .aside-card,
  .timeline-step {
    padding: 20px;
  }

  .image-panel img {
    min-height: 240px;
  }

  .hero-note,
  .trust-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .portal-links {
    grid-template-columns: 1fr;
  }

  .logos {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .logo-badge {
    width: 100%;
    min-width: 0;
  }

  .breadcrumb {
    padding: 8px 12px;
    font-size: 12px;
  }

  .responsive-table thead {
    display: none;
  }

  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }

  .responsive-table tr {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .responsive-table tr:last-child {
    border-bottom: 0;
  }

  .responsive-table td {
    border-bottom: 0;
    padding: 0;
    white-space: normal;
  }

  .responsive-table td + td {
    margin-top: 12px;
  }

  .responsive-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
  }

  .responsive-table td[data-label="Alan"] {
    font-weight: 700;
    color: var(--text);
  }

  .responsive-table td[data-label="Beklenen işlev"] {
    color: var(--text-soft);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .content-layout,
  .footer-grid,
  .timeline,
  .feature-grid,
  .role-grid,
  .stats-grid,
  .legal-grid,
  .portal-grid,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .floating-card,
  .aside-card {
    position: static;
    width: auto;
  }

  .hero-visual {
    margin: 0 auto;
  }

  .floating-card {
    margin-top: 16px;
  }

  .cta-panel {
    padding: 28px;
  }

  .dual-actions-fixed {
    min-width: 0;
    width: 100%;
  }
}

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

  .hero-copy h1 {
    font-size: clamp(30px, 11vw, 44px);
  }

  .brand.has-wordmark img {
    width: min(176px, 56vw);
    max-height: 54px;
  }

  .menu-toggle {
    min-height: 44px;
    padding: 0 12px;
  }

  .hero-card {
    padding: 12px;
    border-radius: 24px;
  }

  .dashboard-shell {
    padding: 16px;
  }

  .dashboard-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .section {
    padding: 52px 0;
  }

  .hero {
    padding: 22px 0 36px;
  }

  .header-wrap {
    min-height: 68px;
    gap: 12px;
  }

  .brand {
    max-width: calc(100% - 56px);
  }
}

/* Reference-inspired redesign */
:root {
  --bg: #f7f9ff;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-muted: #e7edf8;
  --surface-soft: #f2f6fc;
  --surface-container: #ffffff;
  --surface-tint: rgba(0, 90, 179, 0.08);
  --text: #182336;
  --text-soft: #607089;
  --text-faint: #7c879b;
  --line: rgba(123, 139, 167, 0.22);
  --line-strong: rgba(75, 102, 148, 0.34);
  --primary: #005ab3;
  --primary-soft: #d9e8ff;
  --primary-strong: #08254a;
  --accent: #4c8fff;
  --accent-strong: #2d74dc;
  --success: #16956d;
  --warning: #b86a00;
  --danger: #c43e33;
  --shadow: 0 32px 64px rgba(10, 22, 43, 0.12);
  --shadow-soft: 0 16px 36px rgba(10, 22, 43, 0.08);
  --focus-ring: 0 0 0 4px rgba(76, 143, 255, 0.18);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1240px;
}

body {
  font-family: Inter, "Roboto Flex", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(76, 143, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #f9fbff 0%, #eef3fb 56%, #f8faff 100%);
}

.section-title,
.page-hero h1,
.hero-copy h1,
.brand-title,
.nav-links a,
.button,
.button-secondary,
.button-quiet,
.logo-badge,
.card h3,
.role-card h3,
.legal-card h3,
.portal-card h3,
.stat-card h3,
.content-card h2,
.content-card h3,
.faq-item h3,
.timeline-step h3,
.metric strong,
.footer-grid h3,
.footer-grid h4,
.cta-title-reset {
  font-family: Manrope, Inter, Arial, sans-serif;
}

.eyebrow {
  gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  border-color: rgba(0, 90, 179, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(249, 251, 255, 0.76);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(123, 139, 167, 0.16);
  box-shadow: 0 10px 28px rgba(10, 22, 43, 0.05);
}

.site-header .container {
  width: min(calc(100% - 32px), 1480px);
}

.header-wrap {
  min-height: 88px;
  gap: 28px;
}

.brand.has-wordmark {
  gap: 14px;
}

.brand.has-wordmark img {
  width: clamp(188px, 20vw, 280px);
}

.brand-subtitle {
  color: var(--text-soft);
  font-size: 13px;
  max-width: 260px;
}

.nav {
  gap: 16px;
}

.nav-links a {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  background: rgba(0, 90, 179, 0.08);
  color: var(--primary);
}

.portal-chip {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 14px;
  border-color: rgba(123, 139, 167, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.portal-chip:hover,
.portal-chip:focus-visible {
  border-color: rgba(0, 90, 179, 0.24);
  background: rgba(217, 232, 255, 0.78);
  color: var(--primary);
  transform: translateY(-1px);
}

.menu-toggle,
.button,
.button-secondary,
.button-quiet {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.button {
  background: linear-gradient(135deg, var(--primary-strong) 0%, var(--primary) 100%);
  box-shadow: 0 18px 30px rgba(0, 90, 179, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(123, 139, 167, 0.2);
  color: var(--text);
}

.button-quiet,
.menu-toggle {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(123, 139, 167, 0.2);
  color: var(--text);
}

.button:hover,
.button-secondary:hover,
.button-quiet:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 124px;
  background: #07172d;
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.36);
}

.hero-overlay {
  background:
    radial-gradient(circle at top left, rgba(76, 143, 255, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(7, 23, 45, 0.92) 0%, rgba(7, 23, 45, 0.72) 46%, rgba(7, 23, 45, 0.52) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 56px;
  align-items: center;
  min-height: 720px;
}

.hero-copy {
  max-width: 700px;
}

.hero-eyebrow {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(236, 242, 255, 0.96);
}

.hero-kicker {
  margin: 18px 0 0;
  color: rgba(170, 193, 231, 0.92);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 10ch;
  margin: 18px 0 20px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: #f7fbff;
}

.hero-copy p {
  margin: 0 0 30px;
  max-width: 620px;
  color: rgba(226, 234, 248, 0.82);
  font-size: 19px;
}

.hero-note {
  gap: 18px;
}

.hero-note span {
  color: rgba(232, 239, 251, 0.82);
}

.hero-note span::before {
  background: linear-gradient(135deg, #3fd5a4, #22a07c);
}

.hero-visual {
  display: grid;
  gap: 18px;
  max-width: none;
  margin-left: 0;
}

.hero-card {
  padding: 22px;
  border-radius: 32px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px);
}

.dashboard-shell {
  gap: 18px;
  padding: 22px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(76, 143, 255, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(252, 254, 255, 0.95) 0%, rgba(234, 241, 252, 0.88) 100%);
}

.dashboard-topbar,
.dashboard-panel-header,
.dashboard-row {
  gap: 14px;
}

.dashboard-brand {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.dashboard-brand-mark {
  box-shadow: 0 0 0 8px rgba(76, 143, 255, 0.12);
}

.dashboard-status,
.dashboard-panel-header span,
.dashboard-row em {
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.dashboard-status {
  background: rgba(22, 149, 109, 0.12);
}

.dashboard-stat-grid {
  gap: 14px;
}

.dashboard-stat {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.dashboard-stat strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 34px;
}

.dashboard-panel {
  padding: 18px;
  border-radius: 24px;
}

.dashboard-panel-header strong,
.dashboard-row strong {
  font-family: Manrope, Inter, Arial, sans-serif;
}

.dashboard-highlights {
  gap: 12px;
}

.dashboard-highlights span {
  min-height: 38px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
}

.hero-signal-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-signal-item {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-signal-item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(200, 215, 239, 0.78);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-signal-item strong {
  display: block;
  color: #f7fbff;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.floating-card {
  position: static;
  width: 100%;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(7, 23, 45, 0.56);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.floating-card h3 {
  color: #f7fbff;
  font-size: 18px;
}

.floating-card p {
  color: rgba(221, 230, 246, 0.78);
}

.subtle-strip {
  margin-top: -58px;
  position: relative;
  z-index: 3;
  border: 0;
  background: transparent;
}

.trust-list {
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-item {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.trust-badge {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.metrics-section {
  padding-top: 46px;
}

.metric-strip {
  gap: 20px;
}

.metric {
  padding: 28px 24px;
  border-radius: 26px;
  border-color: rgba(123, 139, 167, 0.16);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.metric strong {
  font-size: 40px;
  letter-spacing: -0.05em;
  color: var(--primary-strong);
}

.metric span {
  color: var(--text-soft);
  font-size: 15px;
}

.section {
  position: relative;
}

.section-alt,
.faq-section {
  background: linear-gradient(180deg, rgba(240, 245, 253, 0.72) 0%, rgba(247, 250, 255, 0.94) 100%);
}

.capabilities-section {
  background: rgba(242, 246, 252, 0.84);
}

.story-section,
.legal-section,
.cta-showcase {
  background: transparent;
}

.section-title {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--primary-strong);
}

.section-lead {
  max-width: 800px;
  color: var(--text-soft);
  font-size: 19px;
}

.feature-grid,
.role-grid,
.legal-grid,
.portal-grid,
.faq-grid,
.stats-grid,
.metric-strip,
.timeline {
  gap: 24px;
}

.feature-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.card,
.role-card,
.legal-card,
.portal-card,
.stat-card,
.content-card,
.faq-item,
.contact-card,
.aside-card,
.timeline-step,
.metric {
  border: 1px solid rgba(123, 139, 167, 0.16);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.card,
.role-card,
.legal-card,
.portal-card,
.stat-card,
.content-card,
.faq-item,
.contact-card {
  padding: 30px;
  border-radius: 30px;
}

.card h3,
.role-card h3,
.legal-card h3,
.portal-card h3,
.stat-card h3,
.content-card h3,
.faq-item h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--primary-strong);
}

.card p,
.role-card p,
.legal-card p,
.portal-card p,
.stat-card p,
.content-card p,
.faq-item p,
.timeline-step p {
  color: var(--text-soft);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(0, 90, 179, 0.08);
  color: var(--primary);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-weight: 800;
}

.role-card {
  position: relative;
  overflow: hidden;
}

.role-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.role-label {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.role-card ul,
.card ul,
.content-card ul {
  color: var(--text-soft);
}

.role-card:hover,
.card:hover,
.legal-card:hover,
.faq-item:hover,
.timeline-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(10, 22, 43, 0.1);
}

.feature-grid .card:first-child {
  background: linear-gradient(145deg, #092149 0%, #0d3569 100%);
  border-color: transparent;
  box-shadow: 0 28px 52px rgba(7, 24, 50, 0.18);
}

.feature-grid .card:first-child h3,
.feature-grid .card:first-child p {
  color: #ffffff;
}

.feature-grid .card:first-child p {
  color: rgba(232, 239, 251, 0.8);
}

.feature-grid .card:first-child .card-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 52px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 90, 179, 0.24), transparent);
}

.timeline-step {
  position: relative;
  padding: 30px 28px;
  border-radius: 28px;
}

.timeline-step strong {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--primary) 0%, var(--accent-strong) 100%);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 18px;
}

.timeline-step h3 {
  color: var(--primary-strong);
  font-family: Manrope, Inter, Arial, sans-serif;
}

.split {
  gap: 28px;
}

.image-panel {
  border-radius: 34px;
  border-color: rgba(123, 139, 167, 0.16);
  background: rgba(255, 255, 255, 0.8);
}

.image-panel img {
  min-height: 440px;
}

.check-list li {
  margin-bottom: 16px;
}

.check-list li::before {
  color: var(--accent);
}

.legal-grid .legal-card:first-child {
  background: linear-gradient(145deg, #081f46 0%, #0d4179 100%);
  border-color: transparent;
}

.legal-grid .legal-card:first-child h3,
.legal-grid .legal-card:first-child p {
  color: #ffffff;
}

.legal-grid .legal-card:first-child p {
  color: rgba(230, 238, 250, 0.8);
}

.legal-grid .legal-card:first-child .logo-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.faq-grid {
  gap: 18px;
}

.faq-item {
  border-radius: 26px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, #082149 0%, #0b5dae 58%, #0a2a56 100%);
  box-shadow: 0 30px 56px rgba(7, 24, 50, 0.18);
}

.cta-panel::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(8px);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel p {
  color: rgba(232, 239, 251, 0.82);
}

.cta-panel .section-title,
.cta-panel .cta-title-reset {
  color: #ffffff;
}

.cta-panel .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 42px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88) 0%, rgba(236, 242, 252, 0.96) 100%);
  border-bottom: 1px solid rgba(123, 139, 167, 0.12);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(76, 143, 255, 0.14), transparent 34%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 20px 0 14px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--primary-strong);
}

.page-hero p {
  max-width: 780px;
  color: var(--text-soft);
}

.breadcrumb {
  padding: 10px 16px;
  border-radius: 999px;
  border-color: rgba(123, 139, 167, 0.16);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.aside-card,
.contact-card,
.content-card {
  border-radius: 30px;
}

.field input,
.field textarea,
.field select {
  border-radius: 18px;
  border-color: rgba(123, 139, 167, 0.22);
  background: rgba(248, 250, 255, 0.92);
}

.notice,
.callout,
.seo-note {
  border-radius: 18px;
}

.logo-badge {
  min-height: 44px;
  border-radius: 14px;
  border-color: rgba(123, 139, 167, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 13px;
}

.site-footer {
  padding: 72px 0 30px;
  background: linear-gradient(180deg, #eef3fb 0%, #f8fbff 100%);
}

.footer-grid {
  gap: 32px;
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--primary-strong);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.footer-brand p,
.footer-grid li,
.footer-meta,
.footer-grid a,
.footer-bottom {
  color: var(--text-soft);
}

.footer-meta strong {
  color: var(--text);
}

@media (max-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 40px;
  }

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

@media (max-width: 1180px) {
  .site-header {
    background: rgba(249, 251, 255, 0.9);
  }

  .nav {
    background: rgba(249, 251, 255, 0.98);
    border-bottom-color: rgba(123, 139, 167, 0.16);
  }
}

@media (max-width: 960px) {
  .hero {
    padding: 26px 0 78px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(40px, 10vw, 62px);
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .subtle-strip {
    margin-top: 0;
    padding-top: 0;
    background: transparent;
  }

  .trust-list {
    border-radius: 20px;
  }

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

  .timeline::before {
    display: none;
  }

  .image-panel img {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .site-header .container {
    width: min(calc(100% - 24px), 1480px);
  }

  .header-wrap {
    min-height: 78px;
  }

  .hero {
    padding: 18px 0 54px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 12vw, 50px);
  }

  .hero-kicker {
    font-size: 13px;
  }

  .hero-copy p,
  .section-lead,
  .page-hero p {
    font-size: 16px;
  }

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

  .dashboard-shell,
  .cta-panel,
  .card,
  .role-card,
  .legal-card,
  .portal-card,
  .stat-card,
  .content-card,
  .faq-item,
  .contact-card,
  .timeline-step,
  .aside-card {
    border-radius: 24px;
  }

  .card h3,
  .role-card h3,
  .legal-card h3,
  .portal-card h3,
  .stat-card h3,
  .content-card h3,
  .faq-item h3 {
    font-size: 24px;
  }

  .section-title,
  .page-hero h1 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .metric strong {
    font-size: 34px;
  }

  .trust-list,
  .dashboard-shell {
    padding: 18px;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(34px, 12vw, 44px);
  }

  .dashboard-panel-header,
  .dashboard-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .dashboard-stat strong {
    font-size: 30px;
  }

  .dashboard-highlights {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Type scale normalization */
:root {
  --fs-label: 0.6875rem;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-body: 1rem;
  --fs-body-lg: clamp(1rem, 0.97rem + 0.18vw, 1.125rem);
  --fs-title-xs: clamp(1.25rem, 1.14rem + 0.45vw, 1.5rem);
  --fs-title-sm: clamp(1.5rem, 1.36rem + 0.55vw, 1.75rem);
  --fs-title-md: clamp(2rem, 1.6rem + 1.45vw, 3.25rem);
  --fs-display: clamp(2.75rem, 1.9rem + 3.4vw, 4.75rem);
  --fs-stat: clamp(2rem, 1.62rem + 1vw, 2.75rem);
}

body {
  font-size: var(--fs-body);
}

.eyebrow,
.role-label,
.hero-kicker,
.dashboard-status,
.dashboard-panel-header span,
.dashboard-row em {
  font-size: var(--fs-label);
}

.brand-subtitle,
.nav-links a,
.portal-chip,
.trust-item,
.hero-signal-item span,
.dashboard-stat span,
.dashboard-highlights span,
.floating-card p,
.breadcrumb,
.field label,
.form-help,
.content-card th,
.logo-badge,
.notice,
.callout,
.seo-note,
.footer-bottom {
  font-size: var(--fs-sm);
}

.button,
.button-secondary,
.button-quiet,
.menu-toggle,
.login-dropdown a,
.card p,
.role-card p:not(.role-label),
.legal-card p,
.portal-card p,
.stat-card p,
.content-card p,
.faq-item p,
.timeline-step p,
.content-card li,
.role-card li,
.card li,
.legal-card li,
.portal-card li,
.hero-copy p,
.section-lead,
.page-hero p,
.footer-brand p,
.footer-grid a,
.footer-grid li,
.footer-meta,
.content-card td,
.dashboard-row span,
.dashboard-row strong {
  font-size: var(--fs-body);
}

.hero-copy p,
.section-lead,
.page-hero p {
  font-size: var(--fs-body-lg);
}

.hero-copy h1 {
  font-size: var(--fs-display);
}

.section-title,
.page-hero h1,
.cta-title-reset {
  font-size: var(--fs-title-md);
}

.card h3,
.role-card h3,
.legal-card h3,
.portal-card h3,
.stat-card h3,
.content-card h2,
.faq-item h3 {
  font-size: var(--fs-title-sm);
}

.content-card h3,
.timeline-step h3,
.footer-grid h3,
.footer-grid h4,
.floating-card h3,
.dashboard-panel-header strong,
.hero-signal-item strong {
  font-size: var(--fs-title-xs);
}

.metric strong,
.dashboard-stat strong {
  font-size: var(--fs-stat);
}

/* Dark footer panel */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 78px 0 34px;
  border-top: 0;
  background:
    radial-gradient(circle at top left, rgba(76, 143, 255, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(22, 149, 109, 0.12), transparent 24%),
    linear-gradient(180deg, #071528 0%, #081a31 48%, #06111f 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(76, 143, 255, 0.12);
  filter: blur(18px);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-grid > div {
  min-width: 0;
  padding: 28px 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(12, 29, 55, 0.88) 0%, rgba(7, 20, 39, 0.84) 100%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.footer-grid > div:first-child {
  background:
    radial-gradient(circle at top left, rgba(76, 143, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(17, 41, 78, 0.95) 0%, rgba(9, 23, 44, 0.92) 100%);
}

.site-footer .brand.has-wordmark {
  align-items: center;
}

.site-footer .brand.has-wordmark img {
  width: min(240px, 100%);
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 32px rgba(5, 14, 28, 0.18);
}

.site-footer .brand.has-wordmark .brand-copy {
  display: none;
}

.footer-grid h3,
.footer-grid h4 {
  color: #f5f8ff;
}

.footer-brand p,
.footer-grid li,
.footer-meta,
.footer-grid a,
.footer-bottom {
  color: rgba(218, 229, 247, 0.82);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #ffffff;
}

.footer-grid ul {
  margin-top: 18px;
}

.footer-grid li {
  margin-bottom: 12px;
}

.footer-meta strong {
  color: #ffffff;
}

.site-footer .logo-badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  margin-top: 24px;
  padding: 18px 22px;
  border-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(7, 18, 37, 0.88);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.footer-bottom a {
  color: #ffffff;
}

.footer-bottom-compact {
  margin-top: 0;
  padding-top: 18px;
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding: 56px 0 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid > div {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .site-footer .brand.has-wordmark img {
    width: min(220px, 100%);
  }

  .footer-bottom {
    padding: 16px 18px;
    border-radius: 18px;
  }
}

/* Hero image replacement for the live parent app preview */
.hero-dashboard {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2vw, 22px);
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at top right, rgba(63, 120, 245, 0.28), transparent 36%);
}

.hero-dashboard .dashboard-shell {
  display: none;
}

.hero-dashboard::before {
  content: "";
  display: block;
  width: min(100%, 342px);
  aspect-ratio: 603 / 893;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    url("../images/dendra_veli.png") center / cover no-repeat;
  box-shadow:
    0 28px 42px rgba(3, 10, 24, 0.28),
    0 0 0 10px rgba(255, 255, 255, 0.03);
}

@media (max-width: 720px) {
  .hero-dashboard {
    padding: 14px;
  }

  .hero-dashboard::before {
    width: min(100%, 310px);
    border-radius: 24px;
  }
}

/* Header brand copy cleanup */
.site-header .brand.has-wordmark {
  gap: 0;
}

.site-header .header-wrap {
  min-height: 108px;
}

.site-header .brand.has-wordmark img {
  width: auto;
  height: clamp(82px, 7vw, 112px);
  max-width: min(240px, 24vw);
  max-height: none;
}

.site-header .brand.has-wordmark .brand-copy {
  display: none;
}

@media (max-width: 900px) {
  .site-header .header-wrap {
    min-height: 92px;
  }

  .site-header .brand.has-wordmark img {
    height: clamp(64px, 12vw, 82px);
    max-width: min(180px, 42vw);
  }
}

/* Access pause and WhatsApp contact state */
.header-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.button-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border-color: rgba(18, 140, 126, 0.22);
  box-shadow: 0 18px 30px rgba(18, 140, 126, 0.26);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  color: #ffffff;
}

.button-passive,
.is-passive-link {
  background: rgba(123, 139, 167, 0.14) !important;
  color: rgba(84, 101, 125, 0.88) !important;
  border-color: rgba(123, 139, 167, 0.18) !important;
  box-shadow: none !important;
}

.button-passive {
  cursor: not-allowed;
  opacity: 1;
}

.button-passive:hover,
.button-passive:focus-visible,
.is-passive-link:hover,
.is-passive-link:focus-visible {
  transform: none !important;
  background: rgba(123, 139, 167, 0.14) !important;
  color: rgba(84, 101, 125, 0.88) !important;
}

a.is-passive-link {
  pointer-events: none;
}

.nav-links a.is-passive-link,
.footer-grid a.is-passive-link,
.footer-bottom a.is-passive-link,
.cta-panel a.is-passive-link,
.dual-actions a.is-passive-link {
  box-shadow: none;
}

.contact-whatsapp {
  margin-top: 18px;
}

/* Hashless section navigation */
.nav-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-link-button:hover,
.nav-link-button:focus-visible {
  background: var(--primary-soft);
  color: var(--text);
}

/* Mobile hamburger menu */
.menu-toggle.is-hamburger {
  position: relative;
  width: 56px;
  min-width: 56px;
  padding: 0;
  justify-content: center;
  gap: 0;
}

.menu-toggle.is-hamburger .menu-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-toggle.is-hamburger .menu-toggle-icon {
  display: inline-grid;
  gap: 5px;
}

.menu-toggle.is-hamburger .menu-toggle-bar {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-hamburger.is-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-hamburger.is-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-hamburger.is-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1180px) {
  .nav {
    inset: 86px 16px auto 16px;
    border: 1px solid rgba(123, 139, 167, 0.18);
    border-radius: 28px;
    background: rgba(249, 251, 255, 0.995);
    backdrop-filter: blur(22px);
    z-index: 60;
  }

  .nav-links a,
  .nav-link-button {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 16px;
  }
}
