@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --brand-50: #eff6ff;
  --brand-100: #dbeafe;
  --brand-500: #3b82f6;
  --brand-600: #2563eb;
  --brand-700: #1d4ed8;
  --brand-800: #1e293b;
  --brand-900: #0f172a;
  --accent: #f59e0b;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-muted: #e2e8f0;
  --text: #334155;
  --text-strong: #0f172a;
  --text-soft: #64748b;
  --success: #16a34a;
  --border: rgba(148, 163, 184, 0.22);
  --shadow-soft: 0 22px 50px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-floating: 0 30px 80px rgba(15, 23, 42, 0.14);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1180px;
  --font-base: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-heading: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.06), transparent 28%),
    radial-gradient(circle at right 20%, rgba(15, 23, 42, 0.04), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

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

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

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

.topbar {
  background: var(--brand-900);
  color: #cbd5e1;
  font-size: 0.9rem;
}

.topbar-inner,
.header-inner,
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-inner {
  min-height: 46px;
}

.topbar-links,
.topbar-meta,
.header-nav,
.footer-links,
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-link:hover,
.footer-link:hover,
.social-link:hover {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.header-inner {
  min-height: 88px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--text-strong);
  min-width: 0;
}

.brand-badge {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-900));
  color: white;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.header-nav {
  gap: 28px;
}

.nav-link {
  position: relative;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-500), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--brand-600);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--brand-900);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 0 0 20px;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
}

.mobile-link:hover {
  background: var(--brand-50);
  color: var(--brand-600);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.22);
}

.button-secondary {
  background: var(--surface);
  color: var(--brand-900);
  border-color: rgba(148, 163, 184, 0.28);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.button-success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 16px 30px rgba(22, 163, 74, 0.2);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.22), transparent 26%),
    linear-gradient(135deg, var(--brand-900), #132238 58%, #1d4ed8 120%);
  color: #fff;
}

.hero::before,
.page-hero::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.12;
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -140px;
  top: -120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.28) 0%, rgba(147, 197, 253, 0.06) 42%, transparent 70%);
  filter: blur(16px);
  pointer-events: none;
}

.hero-layout,
.page-hero-layout,
.content-layout,
.contact-layout,
.quote-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero-layout,
.page-hero-layout,
.contact-layout,
.quote-layout {
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #dbeafe;
}

.eyebrow {
  background: var(--brand-50);
  color: var(--brand-700);
}

.hero-title,
.page-title,
.section-title {
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.hero-title,
.page-title {
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.hero-title span,
.page-title span {
  color: #93c5fd;
}

.hero-copy,
.page-copy {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-copy {
  max-width: 640px;
  color: #cbd5e1;
}

.page-copy {
  color: #cbd5e1;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel,
.glass-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-floating);
}

.hero-panel::after,
.glass-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-panel h2,
.glass-panel h2 {
  margin: 0 0 16px;
  font-size: 1.2rem;
  color: #fff;
}

.hero-panel p,
.glass-panel p,
.hero-panel li,
.glass-panel li {
  color: #dbeafe;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.metric-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.metric-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.metric-label {
  display: block;
  margin-top: 6px;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--surface-soft);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 28%),
    linear-gradient(135deg, var(--brand-900), #16253b);
  color: #fff;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.section-head-text {
  max-width: 720px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.section-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-dark .section-title,
.section-dark .section-copy,
.section-dark .eyebrow {
  color: #fff;
}

.section-dark .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.card-grid,
.product-grid,
.feature-grid,
.steps-grid,
.values-grid,
.news-grid {
  display: grid;
  gap: 22px;
}

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

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

.card-grid.two-col,
.content-layout,
.contact-grid,
.quote-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.card,
.product-card,
.feature-card,
.step-card,
.info-card,
.contact-card,
.detail-card,
.faq-card,
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.card,
.feature-card,
.step-card,
.contact-card,
.info-card,
.detail-card,
.faq-card,
.quote-card {
  padding: 28px;
}

.card,
.feature-card,
.step-card,
.info-card,
.contact-card,
.detail-card {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.card:hover,
.feature-card:hover,
.step-card:hover,
.info-card:hover,
.contact-card:hover,
.detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-soft);
}

.product-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-500), var(--accent));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: var(--shadow-soft);
}

.product-card:hover::before {
  opacity: 1;
}

.product-media {
  min-height: 190px;
  padding: 24px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 30%),
    linear-gradient(180deg, #f8fafc, #eff6ff);
}

.product-icon {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-900));
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover .product-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.32);
}

.product-body {
  padding: 28px;
}

.product-title,
.card-title,
.info-title,
.contact-title {
  font-family: var(--font-heading);
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.3;
  color: var(--text-strong);
}

.product-copy,
.card-copy,
.info-copy,
.contact-copy,
.muted-text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--brand-600);
  font-weight: 700;
}

.icon-list,
.check-list,
.contact-list,
.bullet-list,
.partner-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.icon-list li,
.check-list li,
.contact-list li,
.bullet-list li {
  display: flex;
  align-items: start;
  gap: 12px;
}

.check-list i,
.contact-list i,
.icon-list i,
.bullet-list i {
  color: var(--brand-600);
  margin-top: 4px;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.partner-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-weight: 700;
  color: #dbeafe;
}

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

.stats-section {
  position: relative;
  z-index: 2;
  margin-top: -68px;
  padding-top: 0;
}

.stats-item {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-floating);
}

.stats-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--accent));
}

.stats-item strong {
  display: block;
  color: var(--brand-900);
  font-size: 2rem;
  line-height: 1;
}

.stats-item span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 66px;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 28%),
    linear-gradient(135deg, var(--brand-900), #16253b 64%, #1d4ed8 140%);
  color: #fff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #cbd5e1;
  font-size: 0.92rem;
}

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

.content-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.content-main {
  display: grid;
  gap: 24px;
}

.content-side {
  display: grid;
  gap: 24px;
}

.panel-list {
  display: grid;
  gap: 18px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.22), transparent 28%),
    linear-gradient(135deg, var(--brand-900), #15253a 60%, #1d4ed8 140%);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.feature-card,
.step-card,
.info-card,
.quote-card,
.contact-card,
.card {
  position: relative;
}

.feature-card::before,
.step-card::before,
.info-card::before,
.quote-card::before,
.contact-card::before,
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(245, 158, 11, 0.14), transparent);
}

.card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(15, 23, 42, 0.08));
  color: var(--brand-700);
  font-size: 1.28rem;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.card:hover .card-icon,
.feature-card:hover .card-icon,
.step-card:hover .card-icon,
.info-card:hover .card-icon,
.contact-card:hover .card-icon,
.detail-card:hover .card-icon,
.link-card:hover .card-icon {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(37, 99, 235, 0.14),
    0 14px 30px rgba(37, 99, 235, 0.14);
}

.step-number {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-900));
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
}

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

.link-card {
  display: block;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(37, 99, 235, 0.24);
}

.link-card-title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-strong);
}

.link-card-copy {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.link-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--brand-600);
  font-weight: 700;
}

.cta-band h2,
.cta-band p {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.cta-band p {
  max-width: 740px;
  margin: 0;
  color: #dbeafe;
  line-height: 1.75;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  color: var(--text-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-soft);
  line-height: 1.75;
}

.quote-form,
.contact-form {
  display: grid;
  gap: 18px;
}

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

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

.field label {
  font-weight: 700;
  color: var(--text-strong);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  color: var(--text-strong);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.48);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.page-links,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag,
.link-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.tag:hover,
.link-chip:hover {
  border-color: rgba(37, 99, 235, 0.28);
  color: var(--brand-600);
}

.footer {
  margin-top: 0;
  padding: 56px 0 22px;
  background: var(--brand-900);
  color: #94a3b8;
}

.footer-top {
  align-items: start;
  padding-bottom: 26px;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
}

.footer-brand span {
  display: block;
  margin-top: 6px;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: end;
}

.footer-meta {
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .feature-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 980px) {
  .header-nav,
  .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-layout,
  .page-hero-layout,
  .content-layout,
  .contact-layout,
  .quote-layout,
  .card-grid.two-col,
  .contact-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: none;
  }
}

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

  .hero,
  .page-hero {
    padding: 68px 0 52px;
  }

  .stats-section {
    margin-top: -34px;
  }

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

  .feature-grid,
  .product-grid,
  .quick-grid,
  .partner-strip,
  .stats-bar,
  .metric-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .topbar-inner,
  .footer-top,
  .footer-meta {
    flex-direction: column;
    align-items: start;
  }

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

  .header-inner {
    min-height: 76px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .brand-mark {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy span {
    display: none;
  }

  .menu-toggle {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    padding-top: 8px;
  }

  .footer-links {
    justify-content: start;
  }

  .hero-title,
  .page-title {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .button {
    width: 100%;
  }
}
