:root {
  --idsa-ink: #0d1b2a;
  --idsa-ink-soft: #1f2f46;
  --idsa-bg: #f2f5fb;
  --idsa-surface: #ffffff;
  --idsa-border: #d8e0ee;
  --idsa-muted: #5f6f86;
  --idsa-link: #0b4fa2;
  --idsa-focus: #4f8cff;
  --idsa-success: #0d9f6e;
  --idsa-warning: #c68008;
  --idsa-danger: #c0342d;
  --idsa-orange: #ff9933;
  --idsa-white: #ffffff;
  --idsa-green: #138808;
  --idsa-blue: #1d4fa3;
  --idsa-navy: #061a3a;
  --idsa-radius-sm: 10px;
  --idsa-radius-md: 14px;
  --idsa-radius-lg: 20px;
  --idsa-shadow: 0 16px 40px rgba(6, 26, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.public-site {
  font-family: "Poppins", "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--idsa-ink);
  background:
    radial-gradient(1200px 800px at 10% -10%, rgba(255, 153, 51, 0.16), transparent 65%),
    radial-gradient(900px 700px at 90% -10%, rgba(19, 136, 8, 0.14), transparent 60%),
    linear-gradient(180deg, #edf2fb 0%, #f7f9fd 55%, #eef3fb 100%);
  min-height: 100vh;
  line-height: 1.6;
  font-weight: 500;
}

a {
  color: var(--idsa-link);
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.site-main img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.site-main picture,
.site-main figure {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.img-auto {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.section-card img,
.card img,
.form-card img,
.price-table-wrap img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

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

.site-main {
  min-height: calc(100vh - 280px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--idsa-border);
  box-shadow: 0 6px 16px rgba(6, 26, 58, 0.06);
  transition: box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-header.is-elevated {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 10px 26px rgba(6, 26, 58, 0.12);
  border-bottom-color: #ccd9ef;
}

.site-header::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--idsa-orange) 0%,
    var(--idsa-orange) 33.33%,
    var(--idsa-white) 33.33%,
    var(--idsa-white) 66.66%,
    var(--idsa-green) 66.66%,
    var(--idsa-green) 100%
  );
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--idsa-ink);
  min-width: 250px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px solid rgba(29, 79, 163, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 153, 51, 0.3) 0%, rgba(255, 153, 51, 0) 40%),
    linear-gradient(180deg, rgba(19, 136, 8, 0) 60%, rgba(19, 136, 8, 0.3) 100%),
    #eef4ff;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.brand-copy small {
  margin-top: 1px;
  font-size: 11px;
  color: var(--idsa-muted);
  max-width: 300px;
  font-weight: 700;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.main-nav > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #1b2f4c;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: all 0.25s ease;
}

.main-nav > a:hover {
  background: linear-gradient(135deg, #f4f8ff, #e9f1ff);
  border-color: #d6e2f7;
  color: var(--idsa-blue);
  box-shadow: 0 4px 10px rgba(15, 75, 162, 0.08);
}

.main-nav > a.is-active {
  background: linear-gradient(135deg, #e7f0ff, #dbe9ff);
  border-color: #bfd5ff;
  color: #0e3f88;
  box-shadow: 0 4px 10px rgba(15, 75, 162, 0.12);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--idsa-focus) 35%, transparent);
  outline-offset: 2px;
}

.btn-sm {
  height: 38px;
  padding: 0 14px;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: linear-gradient(135deg, #0f4ba2, #145bbf);
  color: #fff;
  border-color: rgba(11, 79, 162, 0.2);
  box-shadow: 0 10px 20px rgba(20, 91, 191, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(20, 91, 191, 0.28);
}

.btn-outline {
  background: #fff;
  color: #0f4ba2;
  border-color: #bad0f8;
}

.btn-outline:hover {
  background: #eef4ff;
}

.btn-secondary {
  background: linear-gradient(135deg, #ff9933, #ffb96d);
  color: #231c16;
  border-color: rgba(255, 153, 51, 0.3);
}

.btn-wa {
  background: #20bf64;
  color: #fff;
  border-color: rgba(7, 121, 58, 0.3);
}

.btn-wa:hover {
  background: #17ad58;
}

/* Login dropdown (public header) */
.nav-login {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-login__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 180px;
  background: #ffffff;
  border: 1px solid var(--idsa-border);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(6, 26, 58, 0.12);
  padding: 8px;
  display: none;
  z-index: 50;
}
.nav-login__menu.is-open {
  display: block;
}
.nav-login__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  border: 1px solid transparent;
}
.nav-login__menu a:hover {
  background: linear-gradient(135deg, #f4f8ff, #e9f1ff);
  border-color: #d6e2f7;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #c9d8f0;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 7px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #2d405f;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--idsa-border);
  background: #fff;
}

.mobile-panel-inner {
  padding: 12px 0 16px;
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  display: block;
  text-decoration: none;
  color: #27415f;
  background: #f6f8fc;
  border: 1px solid #dfebff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
}

.mobile-panel a.is-active {
  background: #e8f1ff;
  border-color: #bcd6ff;
  color: #0f4ba2;
}

body.mobile-nav-open .mobile-panel {
  display: block;
}

body.mobile-nav-open {
  overflow: hidden;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.hero-panel {
  background: var(--idsa-surface);
  border-radius: var(--idsa-radius-lg);
  border: 1px solid var(--idsa-border);
  box-shadow: var(--idsa-shadow);
  padding: 30px 28px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d8e7ff;
  background: #f4f8ff;
  color: #0f4ba2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.3px;
  margin: 16px 0 14px;
  font-weight: 900;
  color: #071c3f;
}

.hero-text {
  color: #2a4567;
  font-size: 17px;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-pills span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #dbe7fb;
  background: #f8fbff;
  font-size: 13px;
  font-weight: 800;
  color: #243a5a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-actions .btn {
  height: 44px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  min-width: 146px;
}

.cta-band .hero-actions .btn {
  height: 42px;
  min-width: 138px;
}

.hero-slider {
  background: var(--idsa-navy);
  color: #fff;
  border-radius: var(--idsa-radius-lg);
  border: 1px solid rgba(157, 189, 245, 0.35);
  box-shadow: var(--idsa-shadow);
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  min-height: 360px;
  padding: 30px;
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(79, 140, 255, 0.38), transparent 45%),
    radial-gradient(circle at bottom left, rgba(255, 153, 51, 0.24), transparent 48%),
    linear-gradient(150deg, rgba(9, 30, 67, 0.95), rgba(5, 20, 46, 0.95));
}

.slide.is-active {
  display: block;
}

.slide h3 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.slide p {
  margin: 0 0 16px;
  color: rgba(229, 237, 252, 0.96);
  font-weight: 500;
}

.slide ul {
  margin: 0;
  padding-left: 18px;
  color: #dbe8ff;
  font-weight: 500;
}

.slide ul li + li {
  margin-top: 6px;
}

.slide-tag {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.slider-controls {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-nav {
  display: inline-flex;
  gap: 6px;
}

.slider-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.slider-dots {
  display: inline-flex;
  gap: 6px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.slider-dots button.is-active {
  background: #fff;
}

.section {
  padding: 34px 0;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.section-subtitle {
  margin: -4px 0 20px;
  color: #3a516f;
  font-size: 17px;
  max-width: 900px;
  font-weight: 500;
}

.section-shortlink {
  margin: 12px 0 0;
  font-size: 14px;
  color: #3a516f;
}

.section-shortlink a {
  color: #0b4fa2;
  font-weight: 700;
  text-decoration: none;
}

.section-shortlink a:hover {
  text-decoration: underline;
}

.section-shortlink span {
  display: inline-block;
  margin: 0 6px;
  color: #8ba2bf;
  font-weight: 600;
}

.section-card {
  background: var(--idsa-surface);
  border: 1px solid var(--idsa-border);
  border-radius: var(--idsa-radius-lg);
  box-shadow: var(--idsa-shadow);
  padding: 28px;
  color: var(--idsa-ink);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(79, 140, 255, 0.45), transparent 48%),
    radial-gradient(circle at bottom left, rgba(255, 153, 51, 0.24), transparent 52%),
    linear-gradient(145deg, #071a39 0%, #0b2b59 55%, #0f3a78 100%);
  border: 1px solid rgba(164, 195, 245, 0.4);
  color: #e9f2ff;
}

.page-hero .section-title {
  color: #fff;
  margin-bottom: 12px;
}

.page-hero .section-subtitle {
  color: #caddfb;
  margin-bottom: 16px;
}

.page-hero .hero-pills span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(181, 207, 247, 0.45);
  color: #ecf3ff;
}

.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(203, 220, 247, 0.4);
  color: #fff;
}

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

.metric-card {
  background: #f6faff;
  border: 1px solid #d8e6fb;
  border-radius: 14px;
  padding: 14px;
}

.metric-value {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  color: #0c4da2;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 13px;
  font-weight: 800;
  color: #324765;
}

.metric-copy {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--idsa-muted);
  font-weight: 500;
}

.cta-band {
  background:
    radial-gradient(900px 400px at 15% 10%, rgba(255, 153, 51, 0.22), transparent 58%),
    radial-gradient(900px 450px at 85% 90%, rgba(19, 136, 8, 0.18), transparent 60%),
    linear-gradient(145deg, #071a39 0%, #0b2b59 55%, #0f3a78 100%);
  border: 1px solid rgba(164, 195, 245, 0.4);
  border-radius: var(--idsa-radius-lg);
  box-shadow: var(--idsa-shadow);
  padding: 24px;
  color: #e9f2ff;
}

.cta-band .section-title {
  margin-bottom: 10px;
  color: #fff;
}

.cta-band .section-subtitle {
  margin-bottom: 16px;
  color: #caddfb;
}

.section-tail {
  padding-bottom: 52px;
}

.mt-18 {
  margin-top: 18px;
}

.notice-box {
  border: 1px solid #d7e5fb;
  border-radius: 12px;
  padding: 14px;
  background: #f8fbff;
  color: #2e415f;
}

.card {
  background: var(--idsa-surface);
  border: 1px solid var(--idsa-border);
  border-radius: var(--idsa-radius-md);
  box-shadow: 0 12px 26px rgba(10, 27, 59, 0.08);
  padding: 20px;
}

.card h3 {
  margin-top: 0;
  font-weight: 900;
  color: #0f2f58;
}

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

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

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

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

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--idsa-orange), var(--idsa-blue), var(--idsa-green));
}

.feature-card p {
  color: var(--idsa-muted);
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: #294666;
  font-weight: 500;
}

.feature-list li + li {
  margin-top: 6px;
}

.media-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.media-grid--two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.media-card {
  background: #f7faff;
  border: 1px solid #d9e6fb;
  border-radius: var(--idsa-radius-md);
  box-shadow: 0 10px 24px rgba(10, 27, 59, 0.1);
  overflow: hidden;
}

.media-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 188px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  background: #0b2b59;
  margin: 0 auto;
}

.media-card img[src$=".svg"],
.media-card img[src*=".svg?"] {
  object-fit: contain;
  object-position: center top;
  padding: 10px 14px 4px;
}

.media-card-body {
  padding: 14px;
}

.media-card h3 {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 900;
  color: #0e3f88;
}

.media-card p {
  margin: 0;
  color: #355070;
  font-size: 20px;
  font-weight: 500;
}

.network-map {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.network-node {
  background: #f7faff;
  border: 1px solid #dbe7f7;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.network-node strong {
  display: block;
  font-size: 14px;
}

.network-node span {
  display: block;
  font-size: 12px;
  color: var(--idsa-muted);
  margin-top: 3px;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
}

.timeline li + li {
  margin-top: 10px;
}

.timeline-step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #edf4ff;
  color: #0f4ba2;
  border: 1px solid #bfd6ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.timeline-copy h4 {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 900;
}

.timeline-copy p {
  margin: 0;
  color: var(--idsa-muted);
  font-weight: 500;
}

.pricing-card {
  border: 1px solid #d4e3fc;
}

.pricing-card .plan-price {
  font-size: 34px;
  line-height: 1.1;
  margin: 8px 0;
  font-weight: 900;
  color: #0e3f88;
}

.pricing-card .plan-meta {
  color: var(--idsa-muted);
  font-size: 13px;
}

.price-table-wrap {
  overflow: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.price-table th,
.price-table td {
  border: 1px solid #e2ebfa;
  padding: 12px;
  text-align: left;
}

.price-table th {
  background: #f4f8ff;
}

.testimonial-card p {
  color: #2c3f5e;
  font-weight: 500;
}

.testimonial-author {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 900;
  color: #0f4ba2;
}

.site-footer {
  margin-top: 42px;
  color: #e4ecf8;
  background:
    radial-gradient(900px 350px at 10% 0%, rgba(255, 153, 51, 0.18), transparent 50%),
    radial-gradient(900px 350px at 90% 0%, rgba(19, 136, 8, 0.16), transparent 50%),
    #06142d;
  border-top: 1px solid rgba(170, 196, 234, 0.24);
}

.footer-grid {
  padding: 30px 0 18px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-brand h3 {
  margin: 0 0 8px;
  color: #fff;
}

.footer-brand p {
  margin: 0 0 6px;
  color: #d6e1f4;
}

.footer-col h4 {
  margin: 0 0 8px;
  color: #fff;
}

.footer-col a {
  display: block;
  color: #e0e9f8;
  text-decoration: none;
  margin: 0 0 5px;
  font-size: 14px;
}

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

.footer-copy {
  border-top: 1px solid rgba(193, 212, 242, 0.16);
  padding: 12px 0 18px;
}

.footer-copy p {
  margin: 0;
  font-size: 13px;
  color: #cfddf5;
}

.footer-build-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
  font-size: 11px;
  color: rgba(207,221,245,0.55);
  letter-spacing: 0.01em;
}

.footer-build-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(193, 212, 242, 0.16);
  background: rgba(255,255,255,0.04);
  color: rgba(226, 236, 252, 0.78);
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #19b863;
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  box-shadow: 0 16px 24px rgba(25, 184, 99, 0.3);
  border: 1px solid rgba(13, 121, 67, 0.3);
}

.wa-float .wa-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.form-card {
  background: var(--idsa-surface);
  border: 1px solid var(--idsa-border);
  border-radius: var(--idsa-radius-md);
  box-shadow: 0 10px 26px rgba(10, 27, 59, 0.08);
  padding: 24px;
}

.idsa-input,
.idsa-select,
.idsa-textarea {
  width: 100%;
  border: 1px solid #cfd9eb;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--idsa-ink);
}

.idsa-input:focus,
.idsa-select:focus,
.idsa-textarea:focus {
  border-color: var(--idsa-focus);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.2);
}

.idsa-label {
  display: inline-block;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 800;
  color: #16375f;
}

.listing-intake-shell .section-subtitle {
  max-width: 960px;
}

.listing-intake-grid {
  align-items: start;
}

.listing-intake-info {
  background: #f7fbff;
  border-color: #d8e7fb;
}

.listing-intake-note {
  margin: 12px 0 14px;
  color: #2e4a6b;
  font-size: 14px;
}

.listing-intake-form-card {
  border: 1px solid #d6e6fb;
}

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

.listing-full-row {
  grid-column: 1 / -1;
}

.listing-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.listing-status {
  font-size: 13px;
  font-weight: 700;
}

.listing-status.is-info {
  color: #0f4ba2;
}

.listing-status.is-success {
  color: #0f7d39;
}

.listing-status.is-error {
  color: #b42318;
}

@media (max-width: 1140px) {
  .brand-copy small {
    max-width: 210px;
  }
  .main-nav > a {
    padding: 0 10px;
    font-size: 13px;
  }
}

@media (max-width: 1240px) {
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .header-row {
    min-height: 70px;
  }
}

@media (max-width: 1140px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .network-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .wrap {
    width: min(1240px, calc(100% - 24px));
  }
  .section-card {
    padding: 20px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.mobile-nav-open .mobile-panel {
    display: block;
  }
}

@media (max-width: 760px) {
  body.public-site {
    font-size: 15px;
    line-height: 1.52;
  }
  .wrap {
    width: min(1240px, calc(100% - 16px));
  }
  .section {
    padding: 16px 0;
  }
  .header-row {
    min-height: 60px;
    gap: 10px;
  }
  .brand {
    min-width: 0;
    gap: 10px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .brand-copy strong {
    font-size: 20px;
  }
  .brand-copy small {
    font-size: 9px;
    max-width: 170px;
  }
  .hero-global {
    padding: 12px 0 8px;
  }
  .section-card {
    padding: 14px;
  }
  .hero-panel {
    padding: 16px;
  }
  .hero-title {
    font-size: clamp(26px, 8vw, 34px);
    margin: 12px 0 10px;
  }
  .hero-text {
    font-size: 15px;
    margin-bottom: 14px;
  }
  .hero-pills {
    gap: 6px;
    margin-bottom: 14px;
  }
  .hero-pills span {
    font-size: 12px;
    padding: 5px 10px;
  }
  .hero-actions {
    gap: 7px;
  }
  .hero-actions .btn {
    height: 38px;
    min-width: 126px;
    padding: 0 12px;
    font-size: 12.5px;
    border-width: 1px;
    box-shadow: none;
  }
  .slide {
    min-height: 286px;
    padding: 16px;
  }
  .slide h3 {
    font-size: 21px;
  }
  .slide p,
  .slide ul li {
    font-size: 14px;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .metrics-grid,
  .media-grid,
  .network-map,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .media-card img {
    min-height: 170px;
    aspect-ratio: 16 / 9;
  }
  .media-card h3 {
    font-size: 24px;
  }
  .media-card p {
    font-size: 18px;
  }
  .section-title {
    font-size: clamp(24px, 7.2vw, 31px);
    margin-bottom: 12px;
  }
  .section-subtitle {
    font-size: 15px;
    margin-bottom: 14px;
  }
  .card {
    padding: 14px;
  }
  .footer-grid {
    padding-top: 14px;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-col h4 {
    margin-bottom: 6px;
  }
  .footer-col a {
    font-size: 13px;
    margin-bottom: 3px;
    line-height: 1.35;
  }
  .footer-copy {
    padding: 10px 0 14px;
  }
  .footer-copy p {
    font-size: 12px;
  }
  .wa-float .wa-text {
    display: none;
  }
  .wa-float {
    width: 46px;
    height: 46px;
    justify-content: center;
    padding: 0;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(1240px, calc(100% - 12px));
  }
  .brand-copy small {
    display: none;
  }
  .section {
    padding: 14px 0;
  }
  .section-title {
    font-size: clamp(22px, 7vw, 28px);
    margin-bottom: 10px;
  }
  .section-subtitle {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .hero-actions .btn {
    min-width: 0;
    width: 100%;
  }
  .listing-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
