:root {
  --ink: #14213D;
  --ink-2: #243F78;
  --muted: #71809A;
  --soft: #f4f7fb;
  --surface: #ffffff;
  --line: #E3E9F2;
  --accent: #007EA8;
  --accent-dark: #006789;
  --accent-bright: #00A9E0;
  --blue: #243F78;
  --green: #10B981;
  --amber: #f59e0b;
  --red: #EF4444;
  --soft-accent: #E8F8FD;
  --soft-blue: #F4F7FB;
  --soft-green: #ecfdf5;
  --soft-amber: #FFFBEB;
  --soft-red: #FEF2F2;
  --shadow: 0 18px 45px rgba(17, 34, 66, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--soft);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(0, 126, 168, 0.30);
  outline-offset: 2px;
}

button:disabled,
.button[aria-disabled="true"] {
  color: var(--muted);
  background: var(--line);
  border-color: var(--line);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(17, 34, 66, 0.08);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

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

.brand-name {
  font-size: 1.3rem;
}

.brand-name span {
  color: inherit;
}

.brand-light {
  color: #ffffff;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  margin: 3px 0;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a,
.text-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(20, 33, 61, 0.20);
}

.button-primary:hover {
  background: var(--ink-2);
}

.button-secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.button-secondary:hover {
  color: var(--accent);
  border-color: #9BD9EB;
}

.button-light {
  color: var(--ink);
  background: #ffffff;
}

.button-small {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

.button-block {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.section {
  padding: 72px 0;
}

.hero {
  padding: 64px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 1.04fr);
  align-items: center;
  gap: 56px;
}

.hero-copy h1,
.centered-heading h2,
.connect-intro h2,
.faq-heading h2,
.final-cta h2,
.legal-card h1 {
  margin: 0;
  font-weight: 800;
  line-height: 1.06;
}

.hero-copy h1 {
  max-width: 620px;
  margin-top: 20px;
  font-size: clamp(3.25rem, 4.5vw, 4rem);
  letter-spacing: -0.045em;
}

.hero-copy h1 span {
  color: var(--accent);
  display: block;
  margin-top: 4px;
}

.section-label,
.section-label-light {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: var(--accent);
  background: var(--soft-accent);
  border: 1px solid #BCE8F3;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-label-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-requirements {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 700;
  list-style: none;
}

.hero-requirements li::before {
  content: "✓";
  margin-right: 8px;
  color: #0b8f4a;
}

.product-visual {
  padding: 26px;
  color: #ffffff;
  background: linear-gradient(145deg, #14213D 0%, #1C315B 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(20, 33, 61, 0.18);
}

.visual-header,
.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.visual-kicker {
  display: block;
  color: #b8c6dc;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-header strong {
  display: block;
  margin-top: 6px;
  max-width: 300px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.live-indicator,
.online-badge,
.flow-state,
.flow-state-done {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  color: #0b7d45;
  background: #d9fbe9;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.live-indicator i {
  width: 8px;
  height: 8px;
  margin-right: 6px;
  background: var(--green);
  border-radius: 50%;
}

.visual-flow {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.visual-flow li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
}

.visual-flow b {
  display: block;
  font-size: 0.98rem;
}

.visual-flow small {
  color: #c9d4e6;
  line-height: 1.45;
}

.visual-icon,
.feature-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--soft-accent);
  border-radius: 12px;
}

.visual-icon svg,
.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-icon-phone {
  color: var(--blue);
  background: var(--soft-blue);
}

.visual-icon-order {
  color: var(--accent);
  background: var(--soft-accent);
}

.visual-icon-approve {
  color: var(--amber);
  background: #fff7e6;
}

.visual-icon-connect {
  color: var(--blue);
  background: var(--soft-blue);
}

.visual-icon-print {
  color: var(--green);
  background: var(--soft-green);
}

.audience-strip {
  padding: 28px 0 30px;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-strip .container {
  display: grid;
  gap: 18px;
}

.audience-strip p {
  margin: 0;
  color: var(--muted);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.audience-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.audience-strip li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: var(--ink-2);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(20, 33, 61, 0.04);
  font-size: 0.88rem;
  font-weight: 700;
}

.audience-strip li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--accent-bright);
  border-radius: 50%;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.split-heading h2,
.centered-heading h2,
.connect-grid h2,
.faq-heading h2,
.final-cta h2 {
  margin: 14px 0 0;
  font-size: 3rem;
  line-height: 1.08;
}

.split-heading p,
.centered-heading p,
.connect-intro,
.faq-heading p,
.final-cta p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.comparison-grid,
.steps-grid,
.feature-grid,
.pricing-grid,
.setup-grid,
.use-case-grid {
  display: grid;
  gap: 18px;
}

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

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

.setup-grid {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

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

.comparison-card,
.steps-grid li,
.feature-grid article,
.price-card,
.use-case-grid article,
.faq-item,
.legal-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(17, 34, 66, 0.06);
}

.comparison-card,
.steps-grid li,
.feature-grid article,
.price-card,
.use-case-grid article {
  padding: 24px;
}

.problem-card {
  background: #F2FBFE;
}

.solution-card {
  background: #f7fbff;
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-heading h3,
.steps-grid h3,
.feature-grid h3,
.price-card h3,
.use-case-grid h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
}

.card-marker {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #ffffff;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 950;
}

.issue-list,
.setup-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.solution-card .issue-list li::before,
.setup-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 950;
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.steps-grid {
  padding-left: 0;
  list-style: none;
}

.steps-grid li > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 950;
}

.steps-grid p,
.feature-grid p,
.price-card p,
.use-case-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.connect-section {
  padding: 72px 0;
  color: #ffffff;
  background: var(--ink);
}

.connect-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 36px;
  align-items: center;
}

.connect-grid p {
  color: #c9d4e6;
}

.connect-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.connect-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  color: #dce6f5;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.connect-list span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #ffffff;
  border-radius: 8px;
  font-weight: 950;
}

.connect-list b {
  display: block;
  color: #ffffff;
}

.connect-list small {
  color: #c9d4e6;
}

.support-note {
  margin-top: 18px;
  color: #dce6f5;
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.app-copy {
  padding: 32px;
  color: var(--ink);
}

.app-copy h2 {
  margin: 14px 0 0;
  font-size: 2.6rem;
  line-height: 1.08;
}

.app-copy > p {
  color: var(--muted);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.check-grid li {
  padding: 12px;
  color: var(--ink-2);
  background: var(--soft);
  border-radius: 8px;
  font-weight: 800;
}

.app-capability-panel {
  padding: 32px;
  color: var(--ink);
  background: #f9fbff;
  border-left: 1px solid var(--line);
}

.panel-summary {
  padding: 20px;
  margin: 20px 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.panel-summary small {
  color: var(--muted);
  font-weight: 800;
}

.panel-summary strong {
  display: block;
  margin-top: 6px;
  font-size: 1.5rem;
}

.panel-summary p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.panel-actions div {
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.panel-actions b {
  display: block;
}

.panel-actions small {
  color: var(--muted);
}

.section-navy {
  color: #ffffff;
  background: var(--ink);
}

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

.trial-banner,
.enterprise-banner {
  display: grid;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(17, 34, 66, 0.06);
}

.trial-banner {
  grid-template-columns: minmax(0, 1fr) auto;
  background: var(--soft);
}

.trial-banner div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.trial-banner strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.trial-banner small {
  width: 100%;
  color: var(--muted);
}

.trial-badge {
  padding: 5px 9px;
  color: var(--accent);
  background: var(--soft-accent);
  border: 1px solid rgba(0, 126, 168, 0.18);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.billing-switch {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  margin-top: 24px;
  padding: 4px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.billing-switch button {
  padding: 9px 16px;
  color: var(--muted);
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
}

.billing-switch button.is-active {
  color: #ffffff;
  background: var(--ink);
}

.billing-switch span {
  margin-left: 4px;
  color: var(--green);
  font-size: 0.72rem;
}

.billing-switch .is-active span {
  color: #bff4d6;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card-featured {
  border-color: var(--accent);
  box-shadow: 0 18px 46px rgba(0, 126, 168, 0.14);
}

.recommended-label {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 10px;
  color: #ffffff;
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.plan-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 2.4rem;
}

.price-card h3 small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.plan-period {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 8px;
  list-style: none;
  color: var(--muted);
}

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 950;
}

.enterprise-banner {
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.85fr) auto;
  background: linear-gradient(135deg, #F2FBFE 0%, #ffffff 70%);
  border-color: rgba(0, 126, 168, 0.24);
}

.enterprise-banner h3 {
  margin: 2px 0 6px;
  color: var(--ink);
  font-size: 1.45rem;
}

.enterprise-banner p,
.enterprise-banner ul {
  color: var(--muted);
}

.enterprise-banner ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.enterprise-banner li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 950;
}

.enterprise-action {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.enterprise-action > a:last-child {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.pricing-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.setup-section {
  background: #ffffff;
}

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

.setup-list li {
  padding: 18px;
  background: var(--soft);
  border-radius: 8px;
}

.setup-list b {
  color: var(--ink);
}

.setup-list small {
  display: block;
  color: var(--muted);
}

.use-case-grid article > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 950;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
}

.faq-heading a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button span {
  color: var(--accent);
  font-size: 1.25rem;
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  padding: 64px 0;
  background: #ffffff;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
}

.final-cta p {
  color: #c9d4e6;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  color: #dce6f5;
}

.contact-lines a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer {
  color: #dce6f5;
  background: #0b1830;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(130px, 0.45fr));
  gap: 30px;
  padding: 48px 0 34px;
}

.footer-about p,
.site-footer a {
  color: #aebbd1;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  color: #95a4bc;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

.legal-body {
  background: var(--soft);
}

.legal-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.legal-header .header-inner {
  justify-content: space-between;
}

.legal-main {
  padding: 52px 0 76px;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px;
}

.legal-card h1 {
  font-size: 2.6rem;
}

.legal-card h2 {
  margin: 30px 0 10px;
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card a {
  color: var(--accent);
  font-weight: 800;
}

.legal-footer {
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 0 20px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.legal-meta {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.legal-list {
  padding-left: 22px;
}

@media (max-width: 1080px) {
  .hero-copy h1 {
    font-size: 3.6rem;
  }

  .hero-grid,
  .connect-grid,
  .faq-layout,
  .split-heading,
  .app-showcase,
  .setup-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid,
  .steps-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .enterprise-action {
    grid-column: 1 / -1;
  }

  .app-capability-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
    flex-direction: column;
  }

  .nav-panel {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .nav-links,
  .header-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links a,
  .header-actions a {
    width: 100%;
  }

  .hero {
    padding-top: 58px;
  }
}

@media (max-width: 680px) {
  .container,
  .header-inner {
    width: min(100% - 30px, 1120px);
  }

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

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .nav-panel {
    top: 68px;
    left: 15px;
    right: 15px;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .split-heading h2,
  .centered-heading h2,
  .connect-grid h2,
  .faq-heading h2,
  .final-cta h2,
  .app-copy h2 {
    font-size: 2rem;
  }

  .section {
    padding: 54px 0;
  }

  .button-row,
  .final-cta-actions {
    flex-direction: column;
  }

  .button-row .button,
  .final-cta-actions .button {
    width: 100%;
  }

  .comparison-grid,
  .steps-grid,
  .feature-grid,
  .pricing-grid,
  .setup-list,
  .use-case-grid,
  .check-grid,
  .panel-actions {
    grid-template-columns: 1fr;
  }

  .trial-banner,
  .enterprise-banner {
    grid-template-columns: 1fr;
  }

  .trial-banner .button {
    width: 100%;
  }

  .enterprise-action {
    grid-column: auto;
    justify-items: stretch;
  }

  .enterprise-action > a:last-child {
    text-align: center;
  }

  .billing-switch {
    width: min(100% - 30px, 360px);
  }

  .billing-switch button {
    flex: 1;
    padding-inline: 10px;
  }

  .product-visual {
    padding: 18px;
  }

  .visual-flow li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .visual-flow .flow-state,
  .visual-flow .flow-state-done {
    grid-column: 2;
    justify-self: start;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    padding: 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-card {
    padding: 24px;
  }

  .legal-card h1 {
    font-size: 2rem;
  }
}
