:root {
  --bg: #06111d;
  --bg-soft: #0a1728;
  --bg-panel: rgba(10, 23, 40, 0.76);
  --bg-panel-strong: rgba(10, 23, 40, 0.92);
  --line: rgba(138, 210, 255, 0.18);
  --line-strong: rgba(138, 210, 255, 0.34);
  --text: #eff6ff;
  --text-muted: #95abc4;
  --text-soft: #c7d8ea;
  --primary: #78d3ff;
  --primary-strong: #26b6ff;
  --accent: #6effd8;
  --accent-warm: #ffb870;
  --danger: #ff7e7e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --hero-shadow: 0 40px 120px rgba(6, 17, 29, 0.7);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-pill: 999px;
  --max-width: 1240px;
  --section-space: clamp(72px, 10vw, 128px);
  --grid-gap: clamp(20px, 2vw, 28px);
  --font-heading: 'Orbitron', 'Microsoft YaHei', sans-serif;
  --font-body: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(38, 182, 255, 0.2), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(110, 255, 216, 0.14), transparent 18%),
    linear-gradient(180deg, #07111d 0%, #040b14 50%, #071521 100%);
  font-family: var(--font-body);
  min-width: 320px;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    linear-gradient(rgba(120, 211, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 211, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), #000 28%, rgba(0, 0, 0, 0.7));
  opacity: 0.38;
}

body::after {
  background: linear-gradient(180deg, rgba(6, 17, 29, 0.04) 0%, rgba(6, 17, 29, 0.16) 100%);
  mix-blend-mode: screen;
  opacity: 0.45;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: var(--section-space) 0;
  position: relative;
}

.section-header {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(120, 211, 255, 0.24);
  background: rgba(7, 20, 34, 0.72);
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 16px rgba(110, 255, 216, 0.8);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.05;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(46px, 8vw, 86px);
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: clamp(20px, 2.8vw, 28px);
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.78;
}

.lead {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 720px;
}

.highlight {
  color: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(4, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  border-color: rgba(138, 210, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-mark__glyph {
  width: 48px;
  height: 48px;
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(120, 211, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(110, 255, 216, 0.16), rgba(38, 182, 255, 0.16)),
    rgba(7, 20, 34, 0.9);
  box-shadow: inset 0 0 18px rgba(120, 211, 255, 0.08), 0 0 22px rgba(38, 182, 255, 0.22);
}

.brand-mark__glyph::before,
.brand-mark__glyph::after {
  content: '';
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(120, 211, 255, 0.56);
}

.brand-mark__glyph::after {
  inset: 17px;
  border-color: rgba(110, 255, 216, 0.72);
}

.brand-mark__text strong,
.brand-mark__text span {
  display: block;
}

.brand-mark__text strong {
  font-family: var(--font-heading);
  letter-spacing: 0.14em;
  font-size: 15px;
}

.brand-mark__text span {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 4px;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(120, 211, 255, 0.18);
  background: rgba(7, 20, 34, 0.84);
  color: var(--text);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle span {
  margin: 6px auto;
}

.nav-toggle[aria-expanded='true'] span {
  opacity: 0;
}

.nav-toggle[aria-expanded='true']::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded='true']::after {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  position: relative;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 14px;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(120, 211, 255, 0.1);
}

.site-nav a.is-active::after,
.anchor-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.btn {
  background: linear-gradient(120deg, rgba(120, 211, 255, 0.9), rgba(110, 255, 216, 0.9));
  color: #021018;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(49, 197, 255, 0.24);
}

.ghost-btn {
  border: 1px solid rgba(120, 211, 255, 0.22);
  background: rgba(10, 23, 40, 0.64);
  color: var(--text);
}

.btn:hover,
.ghost-btn:hover,
.card:hover,
.metric-card:hover,
.timeline-step:hover,
.contact-card:hover,
.brand-panel:hover,
.series-card:hover,
.solution-card:hover,
.capability-card:hover,
.info-card:hover,
.trust-card:hover {
  transform: translateY(-4px);
}

.btn:hover {
  box-shadow: 0 22px 44px rgba(49, 197, 255, 0.35);
}

.ghost-btn:hover {
  border-color: rgba(120, 211, 255, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.hero {
  position: relative;
  padding: clamp(72px, 8vw, 112px) 0 clamp(60px, 10vw, 108px);
}

.hero-grid,
.page-hero {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-copy p {
  max-width: 680px;
}

.hero-panel,
.page-hero__visual {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--hero-shadow);
  background:
    linear-gradient(180deg, rgba(6, 17, 29, 0.2), rgba(6, 17, 29, 0.58)),
    var(--page-image) center/cover no-repeat;
}

.hero-panel::before,
.page-hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 10, 18, 0.16), rgba(2, 10, 18, 0.72)),
    radial-gradient(circle at 20% 20%, rgba(110, 255, 216, 0.14), transparent 20%),
    radial-gradient(circle at 75% 25%, rgba(120, 211, 255, 0.22), transparent 24%);
}

.hero-panel__hud {
  position: absolute;
  inset: auto 24px 24px 24px;
  display: grid;
  gap: 16px;
  z-index: 1;
}

.hud-row,
.metric-grid,
.cards-grid,
.series-grid,
.brand-grid,
.solution-grid,
.capability-grid,
.trust-grid,
.contact-grid,
.footer-grid,
.info-grid,
.stat-grid,
.process-grid,
.product-overview,
.contact-highlights,
.spec-grid {
  display: grid;
  gap: var(--grid-gap);
}

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

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

.cards-grid,
.capability-grid,
.trust-grid,
.contact-grid,
.process-grid,
.info-grid,
.product-overview,
.contact-highlights,
.spec-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.metric-card,
.card,
.series-card,
.brand-panel,
.solution-card,
.capability-card,
.trust-card,
.contact-card,
.timeline-step,
.info-card,
.stat-card,
.spec-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(10, 23, 40, 0.88), rgba(8, 17, 29, 0.9)),
    rgba(10, 23, 40, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.metric-card::before,
.card::before,
.series-card::before,
.brand-panel::before,
.solution-card::before,
.capability-card::before,
.trust-card::before,
.contact-card::before,
.timeline-step::before,
.info-card::before,
.stat-card::before,
.spec-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(120, 211, 255, 0.12), transparent 40%, transparent 60%, rgba(110, 255, 216, 0.08));
  opacity: 0;
  transition: opacity 180ms ease;
}

.metric-card:hover,
.card:hover,
.series-card:hover,
.brand-panel:hover,
.solution-card:hover,
.capability-card:hover,
.trust-card:hover,
.contact-card:hover,
.timeline-step:hover,
.info-card:hover,
.stat-card:hover,
.spec-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4);
}

.metric-card:hover::before,
.card:hover::before,
.series-card:hover::before,
.brand-panel:hover::before,
.solution-card:hover::before,
.capability-card:hover::before,
.trust-card:hover::before,
.contact-card:hover::before,
.timeline-step:hover::before,
.info-card:hover::before,
.stat-card:hover::before,
.spec-card:hover::before {
  opacity: 1;
}

.metric-card strong,
.stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--primary);
}

.metric-card span,
.stat-card span,
.mini-label,
.tag,
.inline-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 13px;
}

.metric-card span::before,
.inline-tag::before,
.mini-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(110, 255, 216, 0.9);
}

.metric-card p,
.card p,
.series-card p,
.brand-panel p,
.solution-card p,
.capability-card p,
.trust-card p,
.contact-card p,
.timeline-step p,
.info-card p,
.stat-card p,
.spec-card p {
  margin-top: 14px;
}

.card-number {
  font-family: var(--font-heading);
  color: rgba(120, 211, 255, 0.45);
  font-size: 14px;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}

.list,
.mini-list,
.spec-list,
.contact-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.list li,
.mini-list li,
.spec-list li,
.contact-list li {
  display: flex;
  gap: 12px;
  color: var(--text-soft);
  line-height: 1.7;
}

.list li::before,
.mini-list li::before,
.spec-list li::before,
.contact-list li::before {
  content: '';
  flex: 0 0 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.hero-tags,
.tag-row,
.filter-row,
.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag,
.inline-tag,
.anchor-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(120, 211, 255, 0.16);
  background: rgba(7, 20, 34, 0.58);
}

.anchor-nav {
  margin-top: 28px;
  position: sticky;
  top: 88px;
  z-index: 10;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(120, 211, 255, 0.12);
  background: rgba(5, 14, 24, 0.78);
  backdrop-filter: blur(16px);
}

.anchor-nav a {
  position: relative;
  color: var(--text-muted);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.anchor-nav a:hover,
.anchor-nav a.is-active {
  color: var(--text);
  border-color: rgba(120, 211, 255, 0.32);
  background: rgba(120, 211, 255, 0.1);
}

.page-hero {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.page-hero__copy {
  display: grid;
  gap: 18px;
}

.page-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(8, 17, 29, 0.72);
  border: 1px solid rgba(120, 211, 255, 0.16);
  color: var(--text-muted);
  font-size: 13px;
}

.page-hero__visual {
  min-height: 420px;
}

.page-hero__badge {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 1;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(7, 20, 34, 0.72);
  border: 1px solid rgba(120, 211, 255, 0.22);
  color: var(--text);
}

.page-hero__badge small,
.section-note,
.label {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero__badge strong,
.price-like,
.kpi {
  display: block;
  margin-top: 6px;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 26px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, rgba(120, 211, 255, 0.5), rgba(120, 211, 255, 0.08));
}

.timeline-step {
  padding-left: 82px;
}

.timeline-step__index {
  position: absolute;
  left: 0;
  top: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(120, 211, 255, 0.24);
  background: rgba(7, 20, 34, 0.94);
  color: var(--primary);
  font-family: var(--font-heading);
}

.dual-panel,
.about-grid,
.contact-layout {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.glow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120, 211, 255, 0.5), transparent);
  margin: 28px 0;
}

.surface {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(120, 211, 255, 0.16);
  background: linear-gradient(180deg, rgba(10, 23, 40, 0.9), rgba(5, 14, 24, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.surface::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(120, 211, 255, 0.08));
}

.footer {
  padding: 40px 0 28px;
  border-top: 1px solid rgba(120, 211, 255, 0.1);
  background: rgba(2, 8, 14, 0.64);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.7fr));
}

.footer small,
.footer p,
.footer a {
  color: var(--text-muted);
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(120, 211, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.centered {
  text-align: center;
}

.centered .section-header,
.section-header.centered {
  margin-left: auto;
  margin-right: auto;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(120, 211, 255, 0.08);
  border: 1px solid rgba(120, 211, 255, 0.16);
  color: var(--text);
}

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

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

.contact-section .contact-layout {
  grid-template-columns: 1fr;
}

.contact-section .contact-panel {
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
}

.contact-section .contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.contact-section .contact-card {
  min-height: 100%;
}

.contact-section .notice {
  max-width: none;
}

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

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

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

.field label {
  color: var(--text-muted);
  font-size: 14px;
}

.field input,
.field textarea {
  border-radius: 16px;
  border: 1px solid rgba(120, 211, 255, 0.16);
  background: rgba(7, 20, 34, 0.78);
  color: var(--text);
  padding: 14px 16px;
  min-height: 56px;
}

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

.notice {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 184, 112, 0.24);
  background: rgba(255, 184, 112, 0.08);
  color: #ffd4a8;
  line-height: 1.7;
}

.hero-signal {
  display: grid;
  gap: 12px;
}

.signal-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(120, 211, 255, 0.18);
  background: rgba(7, 20, 34, 0.72);
}

.signal-card strong {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 18px;
}

@media (max-width: 1199px) {
  .hero-grid,
  .page-hero,
  .dual-panel,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .page-hero__visual {
    min-height: 420px;
  }

  .cards-grid,
  .capability-grid,
  .trust-grid,
  .contact-grid,
  .process-grid,
  .info-grid,
  .product-overview,
  .contact-highlights,
  .spec-grid,
  .metric-grid,
  .series-grid,
  .brand-grid,
  .solution-grid,
  .footer-grid,
  .hud-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(120, 211, 255, 0.16);
    background: rgba(5, 14, 24, 0.95);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    flex-direction: column;
    align-items: stretch;
  }

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

  .site-nav a {
    padding: 14px 16px;
  }

  .anchor-nav {
    top: 76px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-space: 64px;
  }

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

  h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .cards-grid,
  .capability-grid,
  .trust-grid,
  .contact-grid,
  .process-grid,
  .info-grid,
  .product-overview,
  .contact-highlights,
  .spec-grid,
  .metric-grid,
  .series-grid,
  .brand-grid,
  .solution-grid,
  .footer-grid,
  .hud-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .card,
  .series-card,
  .brand-panel,
  .solution-card,
  .capability-card,
  .trust-card,
  .contact-card,
  .timeline-step,
  .info-card,
  .stat-card,
  .spec-card,
  .surface {
    padding: 22px;
  }

  .hero-panel,
  .page-hero__visual {
    min-height: 360px;
  }

  .timeline-step {
    padding-left: 64px;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn,
  .ghost-btn {
    width: 100%;
  }

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