﻿:root {
  --page: #f5f7f3;
  --ink: #101820;
  --muted: #61707d;
  --surface: #ffffff;
  --line: #dce4e8;
  --navy: #06284a;
  --blue: #0876c9;
  --cyan: #19b5df;
  --green: #30b56f;
  --amber: #f1b646;
  --shadow: 0 22px 70px rgba(20, 39, 56, .12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 247, 243, .9);
  border-bottom: 1px solid rgba(16, 24, 32, .08);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
  font-size: 25px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong { color: var(--cyan); }

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

nav a {
  color: #263746;
  text-decoration: none;
  padding: 9px 11px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

nav a:not(.btn):hover { background: rgba(8, 118, 201, .08); }

.lang-switcher {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.lang-switcher a {
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
}

.lang-switcher a.active {
  color: #fff;
  background: var(--blue);
}

main.wrap { padding-top: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary,
.btn:not(.secondary):not(.ghost) {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(8, 118, 201, .24);
}

.btn.alt {
  color: #09253f;
  background: var(--cyan);
}

.btn.secondary,
.btn.ghost {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero-shell {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .78fr);
  align-items: center;
  gap: 42px;
  padding: 58px 0 44px;
}

.hero-content h1 {
  max-width: 820px;
  margin: 18px 0 18px;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.brand-lockup-large {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
}

.brand-lockup-large img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-lockup-large strong { color: var(--cyan); }

.brand-lockup-large.small {
  font-size: 28px;
}

.brand-lockup-large.small img {
  width: 52px;
  height: 52px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.platform-note strong {
  color: var(--navy);
}

.dashboard-preview {
  background: #0d1b2a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.preview-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #b8c7d5;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding-bottom: 16px;
}

.preview-top strong { color: #fff; }

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.metric-row div {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 8px;
  padding: 14px;
}

.metric-row span,
.alert-list span {
  display: block;
  color: #9fb0bf;
  font-size: 13px;
}

.metric-row strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
}

.pulse-line {
  position: relative;
  height: 72px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(25, 181, 223, .10), rgba(48, 181, 111, .10)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 42px);
}

.pulse-line span {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 33px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent);
  box-shadow: 0 0 24px rgba(25, 181, 223, .75);
}

.alert-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.alert-list p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.section-band,
.pricing-strip,
.audience-panel,
.service-row,
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(20, 39, 56, .08);
}

.faq-section {
  margin-top: 24px;
  background:
    radial-gradient(1200px 280px at 20% -10%, rgba(25, 181, 223, .12), transparent 70%),
    radial-gradient(900px 240px at 90% -20%, rgba(8, 118, 201, .12), transparent 70%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-hero {
  margin-bottom: 14px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(8, 118, 201, .25);
  color: var(--blue);
  background: rgba(8, 118, 201, .08);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.faq-hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  color: var(--navy);
}

.faq-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 880px;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(6, 40, 74, .06);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  padding-right: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.faq-num {
  min-width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 118, 201, .1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "â’";
}

.faq-item[open] {
  border-color: rgba(8, 118, 201, .4);
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px 58px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-premium {
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(1200px 380px at 0% -10%, rgba(8, 118, 201, .12), transparent 70%),
    radial-gradient(900px 320px at 100% -20%, rgba(25, 181, 223, .12), transparent 72%),
    #fff;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.faq-premium::before,
.faq-premium::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}

.faq-premium::before {
  width: 280px;
  height: 280px;
  right: -90px;
  top: -70px;
  background: radial-gradient(circle, rgba(25, 181, 223, .24), rgba(25, 181, 223, 0));
}

.faq-premium::after {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(8, 118, 201, .20), rgba(8, 118, 201, 0));
}

.faq-premium-head h1 {
  margin: 10px 0 10px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.06;
  color: var(--navy);
}

.faq-premium-head p {
  margin: 0;
  max-width: 900px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-kicker {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #0a5da1, #179bc9);
}

.faq-premium-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.faq-group {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(6, 40, 74, .08);
  padding: 14px;
}

.faq-group h2 {
  margin: 6px 6px 10px;
  color: var(--navy);
  font-size: 18px;
}

.faq-item-premium {
  border: 1px solid #dce7f0;
  border-radius: 18px;
  margin: 10px 4px;
  background:
    radial-gradient(120px 120px at 92% -20%, rgba(8,118,201,.12), transparent 70%),
    radial-gradient(90px 90px at -10% 120%, rgba(25,181,223,.12), transparent 70%),
    #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  box-shadow: 0 8px 24px rgba(11, 47, 78, .06);
}

.faq-item-premium summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  color: #10263c;
}

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

.faq-bullet {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #14a3d3, #0a6fb8);
  box-shadow: 0 0 0 6px rgba(20,163,211,.14), 0 8px 16px rgba(10,111,184,.24);
  flex: 0 0 auto;
}

.faq-item-premium p {
  margin: 4px 14px 14px 34px;
  padding: 12px 14px;
  color: #3f556a;
  line-height: 1.68;
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(12, 48, 78, .08);
  position: relative;
}

.faq-item-premium p::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 14px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid #e6edf4;
  border-bottom: 1px solid #e6edf4;
  transform: rotate(45deg);
}

.faq-item-premium:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(11, 47, 78, .12);
  border-color: rgba(8,118,201,.36);
}

.faq-item-premium[open] {
  border-color: rgba(8,118,201,.45);
  box-shadow: 0 18px 34px rgba(11, 47, 78, .16);
}

.faq-item-premium[open] summary {
  color: #0a3f66;
}

.faq-item-premium[open] .faq-bullet {
  transform: scale(1.08);
  box-shadow: 0 0 0 7px rgba(20,163,211,.16), 0 10px 18px rgba(10,111,184,.28);
}

.faq-page {
  padding: 44px 0 58px;
}

.faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
  padding: 10px 0 4px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.faq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #0876c9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.faq-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(20, 163, 211, .14);
}

.faq-hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 64px);
  line-height: .96;
  letter-spacing: -.045em;
}

.faq-hero p {
  max-width: 790px;
  margin: 0;
  color: #53697a;
  font-size: 18px;
  line-height: 1.68;
}

.faq-summary-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(20, 39, 56, .08);
}

.faq-summary-card strong {
  color: var(--navy);
  font-size: 19px;
}

.faq-summary-card span {
  color: #4f6576;
  line-height: 1.6;
}

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

.faq-index {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(20, 39, 56, .08);
}

.faq-index a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border-radius: 15px;
  color: #28465d;
  font-weight: 900;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.faq-index a:hover {
  background: #f1f7fb;
  color: var(--blue);
  transform: translateX(2px);
}

.faq-index-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
}

.faq-index-dot-green { background: var(--green); }
.faq-index-dot-amber { background: var(--amber); }

.faq-thread {
  display: grid;
  gap: 18px;
}

.faq-topic {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(20, 39, 56, .08);
  scroll-margin-top: 110px;
}

.faq-topic-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e6eef3;
}

.faq-topic-title span {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(8, 118, 201, .10);
}

.faq-topic-green .faq-topic-title span {
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(48, 181, 111, .12);
}

.faq-topic-amber .faq-topic-title span {
  background: var(--amber);
  box-shadow: 0 0 0 7px rgba(241, 182, 70, .15);
}

.faq-topic-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -.02em;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-bubble {
  border: 1px solid #e3ebf1;
  border-radius: 18px;
  background: #fbfdfe;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.faq-bubble[open] {
  border-color: rgba(8, 118, 201, .24);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(20, 39, 56, .08);
}

.faq-bubble summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  padding: 17px 18px;
  color: #143b58;
  font-weight: 900;
  line-height: 1.35;
}

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

.faq-bubble summary i {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #eef6fb;
}

.faq-bubble summary i::before,
.faq-bubble summary i::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 13px;
  height: 2px;
  border-radius: 99px;
  background: #0876c9;
}

.faq-bubble summary i::after {
  transform: rotate(90deg);
  transition: transform .15s ease;
}

.faq-bubble[open] summary i::after {
  transform: rotate(0deg);
}

.faq-answer {
  margin: 0 18px 18px;
  padding: 17px 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e7eef3;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}

.faq-answer p {
  margin: 0;
  color: #4b6173;
  line-height: 1.72;
}

.faq-topic-green .faq-bubble[open] {
  border-color: rgba(48, 181, 111, .28);
}

.faq-topic-green .faq-bubble summary i {
  background: #eef9f2;
}

.faq-topic-green .faq-bubble summary i::before,
.faq-topic-green .faq-bubble summary i::after {
  background: #1c8c53;
}

.faq-topic-amber .faq-bubble[open] {
  border-color: rgba(241, 182, 70, .34);
}

.faq-topic-amber .faq-bubble summary i {
  background: #fff6df;
}

.faq-topic-amber .faq-bubble summary i::before,
.faq-topic-amber .faq-bubble summary i::after {
  background: #b5740c;
}
.section-band {
  padding: 34px;
}

.section-head {
  max-width: 690px;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.section-head h2,
.pricing-strip h2,
.service-row h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.14;
}

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

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

.feature-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.feature-icon {
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 28px;
}

.feature-card h3,
.audience-panel h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.feature-card p,
.pricing-strip p,
.service-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-strip {
  margin-top: 18px;
  padding: 28px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-left: 6px solid var(--green);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.audience-panel {
  padding: 28px;
}

.audience-panel.accent {
  background: #0d1b2a;
  color: #fff;
  border-color: #0d1b2a;
}

.audience-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.audience-panel.accent ul { color: #c6d2dd; }

.service-row {
  margin-top: 18px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.hourly-price {
  min-width: 220px;
  padding: 20px;
  border-radius: 8px;
  background: #eef8fb;
  text-align: center;
}

.hourly-price span {
  display: block;
  font-size: 34px;
  font-weight: 900;
  color: var(--navy);
}

.hourly-price small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.auth-shell {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px 0;
}

.auth-shell.wide {
  grid-template-columns: minmax(320px, .75fr) minmax(0, 1.15fr);
}

.auth-copy,
.auth-panel,
.table-panel,
.content-hero,
.info-panel,
.legal-stack article {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(20, 39, 56, .08);
}

.auth-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(13, 27, 42, .96), rgba(6, 40, 74, .96)),
    url("../img/comppulse-shield.png") right 36px bottom 28px / 170px no-repeat;
}

.auth-copy .brand-lockup-large {
  color: #fff;
}

.auth-copy h1 {
  margin: 30px 0 14px;
  font-size: 44px;
  line-height: 1.08;
}

.auth-copy p {
  max-width: 520px;
  margin: 0;
  color: #c7d4df;
  line-height: 1.65;
}

.auth-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.auth-points span {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #e9f3fb;
  font-weight: 700;
}

.auth-panel {
  padding: 34px;
  background: #fff;
}

.auth-panel h2 {
  margin: 0 0 22px;
  font-size: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}

.span-2 { grid-column: span 2; }

.form-help,
.form-note {
  margin: 4px 0 16px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.form-note a {
  color: var(--blue);
  font-weight: 800;
}

.btn.full {
  width: 100%;
}

.portal-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 28px;
  color: #fff;
  background: #0d1b2a;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portal-hero h1 {
  margin: 0 0 8px;
  font-size: 38px;
}

.portal-hero p {
  margin: 0;
  color: #c6d2dd;
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.stat-card strong {
  display: block;
  margin: 12px 0;
  font-size: 52px;
  line-height: 1;
  color: var(--blue);
}

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

.small {
  font-size: 12px;
}

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

.signal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfcfd;
}

.signal-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.signal-card p {
  margin: 6px 0;
}

.admin-hero {
  margin-bottom: 16px;
}

.table-panel {
  background: #fff;
  overflow: hidden;
}

.table-scroll {
  overflow-x: auto;
}

.status-tag {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 8px;
  color: #0b3f67;
  background: #e7f4fc;
  font-size: 12px;
  font-weight: 900;
}

.admin-form {
  min-width: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.admin-form input,
.admin-form select {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  font: inherit;
}

.admin-form input[name="notes"],
.admin-form button {
  grid-column: span 2;
}

.content-hero {
  padding: 42px;
  margin-bottom: 18px;
  color: #fff;
  background: #0d1b2a;
}

.content-hero h1 {
  max-width: 780px;
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.1;
}

.content-hero p {
  max-width: 760px;
  margin: 0;
  color: #c7d4df;
  line-height: 1.6;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-story {
  display: grid;
  grid-template-columns: .85fr 1fr 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 18px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(20, 39, 56, .08);
}

.about-story h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.16;
}

.about-story p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

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

.capability-grid article {
  min-height: 220px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(20, 39, 56, .06);
}

.capability-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.capability-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.info-panel {
  padding: 28px;
  background: #fff;
}

.info-panel.accent-light {
  background: #eef8fb;
}

.info-panel h2 {
  margin: 0 0 18px;
}

dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px 18px;
  margin: 0;
}

dt {
  color: var(--muted);
  font-weight: 800;
}

dd {
  margin: 0;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.legal-index {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(20, 39, 56, .08);
}

.legal-index a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  padding: 9px 10px;
  border-radius: 8px;
}

.legal-index a:hover {
  background: #eef8ff;
}

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

.legal-stack article {
  padding: 24px;
  background: #fff;
}

.legal-stack h2 {
  margin: 0 0 8px;
}

.legal-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-stack p + p {
  margin-top: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.muted-pill {
  color: #c6d2dd;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

.card {
  padding: 22px;
  margin: 16px 0;
}

.form label {
  display: block;
  margin-bottom: 12px;
  font-weight: 800;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  background: #fff;
}

.form textarea { min-height: 96px; }

.narrow {
  max-width: 720px;
  margin: 24px auto;
}

.flash {
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-weight: 700;
}

.flash.success {
  background: #e9f8ef;
  border: 1px solid #b9e7c9;
}

.flash.error {
  background: #fff0ef;
  border: 1px solid #f0b9b3;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 11px;
  text-align: left;
  vertical-align: top;
}

.inline-form {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer {
  margin-top: 42px;
  border-top: 1px solid rgba(16, 24, 32, .10);
  background: #101820;
  color: #d8e1e8;
}

.footer .wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.shop-panel,
.cart-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(20, 39, 56, .08);
}

.shop-panel { padding: 28px; }

.shop-head {
  max-width: 740px;
  margin-bottom: 22px;
}

.shop-head h2,
.cart-panel h2 {
  margin: 0 0 10px;
  font-size: 32px;
}

.shop-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.package-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.package-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  cursor: pointer;
}

.package-card:has(input:checked) {
  border-color: var(--blue);
  background: #eef8ff;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.package-card input {
  margin-top: 5px;
  accent-color: var(--blue);
}

.package-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.package-card small {
  color: var(--muted);
  line-height: 1.5;
}

.checkout-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkout-controls label { font-weight: 800; }

.checkout-controls input,
.checkout-controls select {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 46px minmax(90px, 1fr) 46px;
  gap: 8px;
  margin-top: 7px;
}

.quantity-stepper button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1b2a;
  color: #fff;
  font: inherit;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}

.quantity-stepper input {
  margin-top: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
}

.field-hint {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.cart-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.cart-line,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line span,
.cart-total span {
  color: var(--muted);
  font-weight: 800;
}

.cart-total {
  display: block;
  border-bottom: 0;
  padding: 20px 0 14px;
}

.cart-total strong {
  display: block;
  margin-top: 8px;
  font-size: 36px;
  color: var(--navy);
}

.cart-note {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

@media (max-width: 980px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .nav { align-items: center; flex-direction: row; flex-wrap: wrap; padding: 14px 0; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  nav {
    display: none;
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    justify-content: flex-start;
    background: transparent;
  }
  nav.open { display: flex; }
  nav a,
  nav .btn { width: 100%; justify-content: flex-start; }
  .lang-switcher { width: 100%; justify-content: flex-start; }
  .hero-shell,
  .feature-grid,
  .feature-grid.four,
  .audience-grid,
  .service-row,
  .portal-hero,
  .auth-shell,
  .auth-shell.wide,
  .info-grid,
  .about-story,
  .capability-grid,
  .legal-layout,
  .checkout-grid,
  .package-options,
  .checkout-controls,
  .faq-hero,
  .faq-layout,
  .grid.two {
    grid-template-columns: 1fr;
  }
  .portal-hero {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-shell { min-height: auto; padding: 34px 0 28px; }
  .hero-content h1 { font-size: 42px; }
  .lead { font-size: 18px; }
  .pricing-strip { align-items: flex-start; flex-direction: column; }
  .cart-panel { position: static; }
  .legal-index { position: static; }
  .faq-index {
    position: static;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cookie-banner {
    grid-template-columns: 1fr;
  }
  .footer .wrap { flex-direction: column; justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .hero-content h1 { font-size: 34px; }
  .brand-lockup-large { font-size: 27px; }
  .brand-lockup-large img { width: 50px; height: 50px; }
  .platform-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .metric-row { grid-template-columns: 1fr; }
  .section-band,
  .pricing-strip,
  .audience-panel,
  .service-row,
  .faq-hero,
  .faq-summary-card,
  .faq-topic,
  .auth-copy,
  .auth-panel,
  .content-hero,
  .info-panel,
  .card {
    padding: 20px;
  }
  .auth-copy h1,
  .content-hero h1 {
    font-size: 34px;
  }
  .form-grid,
  dl {
    grid-template-columns: 1fr;
  }
  .span-2,
  .admin-form input[name="notes"],
  .admin-form button {
    grid-column: auto;
  }
  .admin-form {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-actions .btn {
    width: 100%;
  }
  .faq-page {
    padding-top: 16px;
  }
  .faq-hero h1 {
    font-size: 36px;
  }
  .faq-index {
    grid-template-columns: 1fr;
  }
  .faq-answer {
    margin: 0 12px 12px;
  }
  .alert-list p { flex-direction: column; gap: 4px; }
}

.license-state{display:inline-flex;align-items:center;gap:6px;width:max-content;padding:4px 10px;border-radius:999px;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}.license-state-active{background:rgba(48,181,111,.14);color:#157a43;border:1px solid rgba(48,181,111,.35)}.license-state-grace{background:rgba(241,182,70,.16);color:#8a5a00;border:1px solid rgba(241,182,70,.4)}.license-state-expired,.license-state-inactive{background:rgba(220,64,64,.14);color:#8b1f1f;border:1px solid rgba(220,64,64,.35)}

.is-active-filter{background:var(--blue)!important;color:#fff!important;border-color:var(--blue)!important;box-shadow:0 10px 20px rgba(8,118,201,.22)!important}


