:root {
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: #0b1736;
  background: #f8fbff;
  --blue: #0f62fe;
  --line: #e2e8f0;
  --muted: #64748b;
  --shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 50% 0%, #eef6ff 0, #ffffff 36%, #f7fbff 100%);
  scroll-behavior: smooth;
}

button,
select {
  font: inherit;
}

button,
.button-link {
  min-height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 7px;
  padding: 0 22px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

button.ghost,
.button-link.ghost {
  color: var(--blue);
  background: white;
}

.site-header {
  min-height: 88px;
  display: grid;
  grid-template-columns: 245px minmax(360px, 1fr) minmax(440px, auto);
  gap: 34px;
  align-items: start;
  padding: 18px 42px 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
}

.brand img ~ * {
  display: none;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.brand strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

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

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  align-items: center;
}

.main-nav a {
  position: relative;
  padding: 22px 0 18px;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-pill {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
}

.nav-pill::after {
  display: none;
}

.logistics-pill {
  color: #064e3b !important;
  border: 1px solid rgba(16, 185, 129, 0.45);
  background: #dffaf0;
}

.consultation-pill {
  color: #fff !important;
  border: 1px solid #0f62fe;
  background: #0f62fe;
}

.main-nav a,
.feature-strip a,
.sidebar a {
  color: inherit;
  text-decoration: none;
}

.feature-strip article[data-link],
.dashboard-link {
  cursor: pointer;
}

.feature-strip article[data-link]:hover,
.dashboard-link:hover {
  border-color: rgba(15, 98, 254, 0.35);
  box-shadow: 0 18px 42px rgba(15, 98, 254, 0.12);
}

.header-actions {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.account-badge {
  min-height: 32px;
  max-width: 340px;
  padding: 7px 12px;
  border: 1px solid #bfd5ff;
  border-radius: 999px;
  color: #0b1736;
  background: #f6f9ff;
  font-size: 11px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-badge.paid {
  color: #047857;
  border-color: #a7f3d0;
  background: #ecfdf5;
}

.account-badge.guest {
  color: #64748b;
}

.floating-account-badge {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 30;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.header-actions button {
  min-height: 38px;
  padding: 0 16px;
  font-weight: 700;
}

main {
  padding: 0 40px 44px;
}

.hero {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(480px, 0.85fr) minmax(520px, 1.15fr);
  align-items: center;
  gap: 20px;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: #25324d;
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 22px;
  margin-top: 28px;
}

.paid-session .hero-actions,
.paid-session .pricing-section [data-auth-open="signup"],
.paid-session .pricing-section [data-auth-open="pricing"] {
  display: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
  color: #1c2a44;
}

.trust-row span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 10px;
}

.hero-photo {
  position: absolute;
  inset: 88px 18px 16px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 10px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  background:
    linear-gradient(90deg, rgba(4, 20, 43, 0.45), rgba(4, 20, 43, 0.08) 48%, rgba(255, 255, 255, 0.1)),
    url("https://cdn.pixabay.com/photo/2021/11/09/21/19/port-6782391_1280.jpg");
  background-size: cover;
  background-position: center 52%;
}

.hero-news {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 32px;
  display: grid;
  gap: 9px;
  width: min(330px, calc(100% - 68px));
  padding: 13px 15px;
  color: #031633;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 7px;
  box-shadow: 0 12px 30px rgba(8, 27, 61, 0.2);
  backdrop-filter: blur(4px);
}

.hero-news > span {
  color: #0755db;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-news a {
  display: grid;
  gap: 2px;
  padding-top: 8px;
  color: #031633;
  border-top: 1px solid rgba(8, 27, 61, 0.18);
  text-decoration: none;
}

.hero-news strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
}

.hero-news small {
  color: #0755db;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-news a:hover strong {
  color: var(--blue);
}

.hero-card {
  position: absolute;
  z-index: 2;
  min-width: 190px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 18px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "◎";
  grid-row: span 2;
  color: var(--blue);
  font-size: 34px;
}

.hero-card strong {
  font-size: 25px;
}

.hero-card span {
  color: #26344f;
  font-size: 13px;
}

.countries {
  left: 72px;
  top: 28px;
}

.records {
  left: 315px;
  top: 28px;
}

.products {
  right: 60px;
  top: 28px;
}

.ship,
.truck,
.crane {
  position: absolute;
  bottom: 28px;
  z-index: 3;
  display: none;
}

.ship {
  left: 80px;
  width: 340px;
  height: 72px;
  background: linear-gradient(#12365d 0 58%, #94222b 58%);
  clip-path: polygon(0 28%, 88% 28%, 100% 50%, 82% 100%, 8% 100%);
}

.ship::before {
  content: "";
  position: absolute;
  left: 55px;
  bottom: 70px;
  width: 92px;
  height: 64px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
}

.truck {
  right: 195px;
  width: 180px;
  height: 58px;
  background: #0b62d6;
  border-radius: 7px 2px 2px 7px;
}

.truck::after,
.ship::after {
  content: "";
  position: absolute;
  background: #f97316;
}

.truck::after {
  right: -90px;
  bottom: 0;
  width: 76px;
  height: 42px;
}

.crane {
  right: 24px;
  width: 110px;
  height: 118px;
  border-left: 6px solid #475569;
  border-right: 6px solid #475569;
}

.crane::before {
  content: "";
  position: absolute;
  top: 14px;
  left: -35px;
  width: 170px;
  height: 8px;
  background: #475569;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  margin-top: 2px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-strip article {
  min-height: 210px;
  padding: 24px 24px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}

.blue { background: #0f62fe; }
.green { background: #16a34a; }
.orange { background: #f59e0b; }
.purple { background: #7c3aed; }
.teal { background: #0891b2; }
.red { background: #e11d48; }

.feature-strip h2 {
  margin: 0;
  font-size: 18px;
}

.feature-strip p {
  min-height: 54px;
  margin: 13px 0 10px;
  color: #334155;
  line-height: 1.45;
  font-size: 14px;
}

.feature-strip a {
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}

.dashboard-stack {
  display: grid;
  gap: 28px;
  margin-top: 12px;
}

.content-section {
  margin-top: 28px;
  padding: 38px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

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

.section-heading span,
.pricing-grid article > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-heading h2 {
  margin: 8px 0 10px;
  font-size: 32px;
  line-height: 1.15;
}

.section-heading p {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.6;
}

.industry-grid,
.pricing-grid,
.about-band {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.industry-grid {
  grid-template-columns: repeat(4, minmax(160px, 1fr));
}

.industry-grid article,
.about-band article,
.pricing-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.industry-grid strong,
.about-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.industry-grid span,
.about-band span {
  color: #475569;
  line-height: 1.5;
}

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

.pricing-grid article {
  background: white;
}

.pricing-grid h3 {
  margin: 8px 0;
  font-size: 24px;
}

.pricing-grid strong {
  display: block;
  margin: 12px 0;
  font-size: 30px;
}

.pricing-grid p {
  min-height: 52px;
  color: #475569;
  line-height: 1.5;
}

.featured-plan {
  border-color: rgba(15, 98, 254, 0.45) !important;
  box-shadow: 0 18px 45px rgba(15, 98, 254, 0.1);
}

.plan-features {
  display: grid;
  gap: 9px;
  min-height: 150px;
  margin: 16px 0 20px;
  padding: 0;
  color: #334155;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 22px;
  line-height: 1.4;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.plan-actions {
  display: grid;
  gap: 10px;
}

.plan-actions .button-link {
  justify-content: center;
  width: 100%;
}

.pricing-note {
  margin: 18px 0 0;
  color: #64748b;
  line-height: 1.5;
}

.payment-page {
  max-width: 1120px;
}

.payment-summary {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 18px 0;
  padding: 22px;
  border: 1px solid #cfe0f6;
  border-radius: 8px;
  background: #f8fbff;
}

.payment-summary span,
.payment-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-summary h2,
.payment-card h2,
.payment-note h2 {
  margin: 8px 0;
}

.payment-summary strong {
  display: block;
  margin: 8px 0;
  font-size: 24px;
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

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

.payment-card,
.payment-note {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.payment-card dl {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.payment-card dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
}

.payment-card dt {
  color: #64748b;
  font-weight: 800;
}

.payment-card dd {
  margin: 0;
  color: #0b1736;
  font-weight: 800;
}

.payment-card p,
.payment-note p {
  color: #475569;
  line-height: 1.55;
}

.payment-note {
  margin-top: 16px;
}

.report-limits article strong {
  font-size: 18px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
  padding: 18px 20px 22px;
}

.report-grid article {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #dce9ff;
  border-radius: 8px;
  background: #f8fbff;
}

.report-grid strong {
  font-size: 17px;
}

.report-grid span {
  color: #475569;
  line-height: 1.45;
}

.report-grid a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.resource-list,
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.resource-list a {
  padding: 18px 20px;
  color: #0b1736;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  font-weight: 850;
}

.resource-list a:hover {
  color: var(--blue);
  border-color: rgba(15, 98, 254, 0.35);
}

.about-band {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.consulting-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: 28px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(15, 98, 254, 0.08), rgba(22, 163, 74, 0.08)),
    #ffffff;
}

.consulting-copy span {
  color: #0f9f9c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.consulting-copy h2 {
  margin: 8px 0 12px;
  font-size: 34px;
  line-height: 1.12;
}

.consulting-copy p {
  margin: 0 0 14px;
  color: #334155;
  font-size: 17px;
  line-height: 1.65;
}

.consulting-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.logistics-cta {
  color: #064e3b;
  border-color: rgba(16, 185, 129, 0.75);
  background: #dffaf0;
}

.service-grid {
  margin-top: 0;
}

.service-grid article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(15, 98, 254, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.service-grid strong {
  display: block;
  margin-bottom: 7px;
  color: #082f49;
  font-size: 16px;
}

.service-grid span {
  color: #475569;
  line-height: 1.48;
  font-size: 14px;
}

.sidebar {
  min-height: 360px;
  padding: 16px 0;
  background: #071b3a;
  color: white;
  border-radius: 8px;
}

.side-brand {
  padding: 0 18px 16px;
  font-weight: 900;
}

.sidebar a {
  display: block;
  padding: 11px 18px;
  color: #dbeafe;
  font-size: 14px;
}

.sidebar a.active,
.sidebar a:hover {
  color: #fff;
  background: var(--blue);
}

.dashboard {
  min-width: 0;
}

.dashboard-block + .dashboard-block {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 12px;
}

.dashboard-head h2 {
  margin: 0;
  font-size: 18px;
}

.dashboard-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

select {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 14px;
  background: white;
  color: #334155;
}

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

.stats article,
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.stats article {
  min-height: 94px;
  padding: 16px 18px;
}

.stats span,
.stats small {
  color: var(--muted);
  font-size: 13px;
}

.stats strong {
  display: block;
  margin: 7px 0 4px;
  font-size: 25px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.panel {
  padding: 18px;
}

.panel-subtext {
  margin: 5px 0 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 12px;
}

.panel h3 {
  margin: 0;
  font-size: 17px;
}

.panel-head p {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.4;
}

.panel-head > span {
  min-width: 70px;
  padding: 6px 9px;
  color: #0f62fe;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.line-chart {
  height: 240px;
  display: flex;
  align-items: end;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.volume-bar-item {
  flex: 1;
  min-width: 36px;
  height: 100%;
  display: grid;
  grid-template-rows: 24px 1fr 32px;
  align-items: end;
  justify-items: center;
  gap: 5px;
}

.volume-bar-item strong {
  color: #334155;
  font-size: 11px;
  white-space: nowrap;
}

.volume-bar-item span {
  width: 100%;
  max-width: 34px;
  min-height: 10px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #0f62fe, #7db8ff);
}

.volume-bar-item small {
  color: #64748b;
  font-size: 10px;
  line-height: 1.15;
  text-align: center;
}

.chart-note {
  margin-top: 10px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}

.rank-row,
.product-row {
  display: grid;
  grid-template-columns: minmax(92px, 1fr) 1.5fr 50px;
  gap: 12px;
  align-items: center;
  margin: 13px 0;
  font-size: 13px;
}

.bar {
  height: 8px;
  overflow: hidden;
  background: #e5e7eb;
  border-radius: 999px;
}

.bar span {
  display: block;
  height: 100%;
  background: var(--blue);
  border-radius: inherit;
}

.product-row {
  grid-template-columns: 13px minmax(140px, 1fr) 58px;
}

.auth-dialog {
  width: min(780px, calc(100vw - 32px));
  border: 0;
  border-radius: 10px;
  padding: 0;
  color: #0b1736;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.25);
}

.auth-dialog::backdrop {
  background: rgba(11, 23, 54, 0.42);
}

.auth-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.auth-head span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-head h2,
.auth-card h3 {
  margin: 4px 0 0;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px 24px;
}

.auth-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.paid-card {
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.auth-card p,
.auth-status {
  color: var(--muted);
  line-height: 1.55;
}

.auth-card label {
  display: grid;
  gap: 7px;
  margin: 12px 0;
  color: #334155;
  font-weight: 800;
  font-size: 13px;
}

.auth-card input {
  min-height: 44px;
  border: 1px solid #cfe0f6;
  border-radius: 7px;
  padding: 0 12px;
  font: inherit;
}

.auth-card button {
  width: 100%;
  margin-top: 8px;
}

.paid-request {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #cfe0f6;
  border-radius: 8px;
  background: #f6f9ff;
}

.paid-request strong {
  font-size: 14px;
}

.paid-request span {
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.paid-request a {
  color: #0f62fe;
  font-weight: 900;
  text-decoration: none;
}

.account-password {
  display: grid;
  gap: 2px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #cfe0f6;
  border-radius: 8px;
  background: #fff;
}

.account-password[hidden] {
  display: none;
}

.account-password strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.account-password label {
  margin: 6px 0;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  gap: 2px;
  padding: 11px 17px 11px 48px;
  color: #fff;
  background: #128c51;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(18, 140, 81, 0.28);
  text-decoration: none;
}

.whatsapp-float[hidden] {
  display: none;
}

.whatsapp-float::before {
  content: "WA";
  position: absolute;
  left: 12px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: #128c51;
  background: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  transform: translateY(-50%);
}

.whatsapp-float span {
  font-size: 10px;
  line-height: 1;
}

.whatsapp-float strong {
  font-size: 13px;
  font-weight: 600;
}

.auth-status {
  padding: 0 24px 22px;
  font-weight: 800;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.compact-header {
  gap: 28px;
}

.compact-header .brand img {
  max-width: 240px;
}

.seo-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.seo-hero {
  display: grid;
  gap: 18px;
  min-height: 360px;
  align-content: center;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(110deg, #ffffff, #eef7ff);
  box-shadow: var(--shadow);
}

.seo-hero span,
.seo-content h2,
.seo-grid h2 {
  color: var(--blue);
}

.seo-hero span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.seo-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
}

.seo-hero p,
.seo-content p,
.seo-content li,
.seo-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.seo-hero p {
  max-width: 820px;
  margin: 0;
}

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

.seo-grid article,
.seo-content {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow);
}

.seo-grid article {
  padding: 24px;
}

.seo-grid h2,
.seo-content h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.seo-grid p {
  margin: 0;
}

.seo-content {
  margin-top: 24px;
  padding: 30px;
}

.seo-content p {
  margin: 0 0 16px;
}

.seo-content ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 1180px) {
  .site-header,
  .hero,
  .consulting-section,
  .dashboard-stack,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .feature-strip,
  .stats,
  .seo-grid,
  .industry-grid,
  .pricing-grid,
  .payment-grid,
  .report-grid,
  .resource-list,
  .service-grid,
  .about-band {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 640px) {
  main,
  .site-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .hero-actions,
  .header-actions,
  .payment-summary {
    display: grid;
  }

  .feature-strip,
  .stats,
  .seo-grid,
  .industry-grid,
  .pricing-grid,
  .payment-grid,
  .report-grid,
  .resource-list,
  .service-grid,
  .about-band {
    grid-template-columns: 1fr;
  }

  .payment-card dl div {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 24px 18px;
  }

  .seo-page {
    padding: 24px 18px 56px;
  }

  .seo-hero {
    padding: 30px 22px;
  }
}
