﻿:root {
  --bg: #f4f7ff;
  --bg-strong: #e6ecff;
  --surface: rgba(248, 250, 255, 0.84);
  --surface-strong: #ffffff;
  --hero-brand-surface: rgba(255, 255, 255, 0.92);
  --ink: #23225f;
  --muted: #586385;
  --accent: #68c240;
  --accent-deep: #51a933;
  --accent-soft: #98dc70;
  --forest: #3d3a94;
  --panel-strong-start: #4c49ab;
  --panel-strong-end: #36338a;
  --line: rgba(61, 58, 148, 0.12);
  --shadow: 0 24px 60px rgba(37, 44, 104, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#product,
#why-now,
#workflow,
#audience,
#pricing,
#contact,
#hero {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(104, 194, 64, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(61, 58, 148, 0.22), transparent 24%),
    linear-gradient(180deg, #fbfcff 0%, var(--bg) 48%, #e8efff 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 78%);
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 64px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(250, 251, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(37, 44, 104, 0.12);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 4px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(61, 58, 148, 0.1);
  box-shadow: 0 10px 24px rgba(37, 44, 104, 0.12);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.topbar-menu {
  display: contents;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(125, 14, 24, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
}

.menu-toggle-label {
  line-height: 1;
}

.menu-toggle-bars {
  display: inline-grid;
  gap: 4px;
}

.menu-toggle-bars span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.nav a,
.button {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}

.button-login {
  background: linear-gradient(135deg, #5ec53b, #4dab2e);
  color: #fefefe;
  box-shadow: 0 12px 24px rgba(104, 194, 64, 0.24);
}

.button-login:hover,
.button-login:focus-visible {
  background: var(--accent-deep);
}

.nav a:hover,
.nav a:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.inline-link-button {
  appearance: none;
  display: inline-flex;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: var(--forest);
  font: inherit;
  font-weight: 700;
  line-height: inherit;
  vertical-align: baseline;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.hero-link-button {
  align-self: center;
  margin-left: 4px;
}

.inline-text-link {
  color: var(--forest);
  font: inherit;
  font-weight: 700;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

.button-primary {
  background: linear-gradient(135deg, var(--forest), var(--panel-strong-start));
  color: #fefaf4;
  box-shadow: 0 16px 30px rgba(61, 58, 148, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #2f2d78;
}

.inline-link-button:hover,
.inline-link-button:focus-visible,
.inline-text-link:hover,
.inline-text-link:focus-visible {
  color: var(--accent-deep);
}

.button-secondary,
.button-ghost {
  border-color: rgba(61, 58, 148, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.96);
}

.button-full {
  width: 100%;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
  padding: 92px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2rem, 3.6vw, 3.65rem);
  max-width: none;
}

h2 {
  font-size: clamp(1.55rem, 2.15vw, 2.25rem);
  max-width: none;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-text,
.body-copy p,
.feature-card p,
.audience-card p,
.contact-panel p,
.contact-form label {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.hero-text {
  max-width: 56ch;
  margin: 22px 0 24px;
}

.hero-ai-note {
  display: inline-flex;
  max-width: 56ch;
  margin: -4px 0 24px;
  padding: 11px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(61, 58, 148, 0.08);
  color: var(--forest);
  font-weight: 600;
  line-height: 1.5;
  box-shadow: 0 10px 24px rgba(37, 44, 104, 0.05);
}




.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
}

.trust-item {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(61, 58, 148, 0.1);
  box-shadow: 0 12px 28px rgba(37, 44, 104, 0.08);
  backdrop-filter: blur(6px);
}

.trust-item strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.proof-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.proof-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.proof-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 0 6px rgba(104, 194, 64, 0.16);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  justify-items: center;
  min-height: 0;
  padding-top: 18px;
}

.dashboard-card {
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.image-card {
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 0;
  background: rgba(248, 250, 255, 0.94);
}

.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.hero-collage-card {
  width: min(100%, 760px);
  border-radius: 34px;
}

.hero-collage-card img {
  height: auto;
  object-fit: contain;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(125, 14, 24, 0.08);
  border: 1px solid rgba(125, 14, 24, 0.12);
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.visual-caption {
  position: relative;
  justify-self: center;
  width: min(100%, 620px);
  display: grid;
  gap: 12px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(247, 249, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(37, 44, 104, 0.12);
}

.visual-caption-polished {
  width: min(100%, 560px);
  padding: 24px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 242, 0.94));
  border: 1px solid rgba(125, 14, 24, 0.08);
  box-shadow: 0 20px 44px rgba(74, 24, 29, 0.12);
}

.visual-caption p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.section {
  padding: 52px 0 56px;
}

.section-accent {
  margin-top: 16px;
  padding: 34px;
  border-radius: 40px;
  background: rgba(244, 247, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 40px rgba(37, 44, 104, 0.1);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 100%;
}

.hero-copy,
.section-heading > * {
  max-width: none;
}

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

.feature-card,
.workflow-card,
.audience-card,
.contact-panel,
.quote-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 14px 34px rgba(37, 44, 104, 0.08);
}

.feature-card,
.workflow-card,
.audience-card {
  padding: 26px;
}



.feature-card::before,
.workflow-card::before,
.audience-card::before {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--forest), var(--accent));
}

.split-layout > div:first-child,
.section-heading {
  position: relative;
}

.split-layout > div:first-child::after,
.section-heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(61, 58, 148, 0.8), rgba(104, 194, 64, 0.5));
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.body-copy {
  display: grid;
  gap: 8px;
}

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

.detail-list article {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.detail-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-list h3 {
  margin-bottom: 8px;
}

.detail-list p,
.workflow-card p {
  color: var(--muted);
  line-height: 1.72;
}

.pricing-panel {
  display: grid;
  grid-template-columns: 0.95fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.pricing-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.pricing-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.pricing-points {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.pricing-points li.pricing-points-inline {
  display: block;
}

.pricing-points li.pricing-points-inline::before {
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

.pricing-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 0 6px rgba(104, 194, 64, 0.14);
}

.pricing-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(61, 58, 148, 0.98), rgba(76, 73, 171, 0.94));
  color: #f7f8ff;
  box-shadow: 0 20px 42px rgba(37, 44, 104, 0.18);
}

.pricing-label {
  margin: 0;
  color: rgba(247, 248, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
}

.pricing-amount {
  display: grid;
  gap: 4px;
}

.pricing-amount strong {
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.pricing-amount span,
.pricing-summary,
.pricing-rule span,
.pricing-example span {
  color: rgba(247, 248, 255, 0.84);
}

.pricing-summary {
  margin: 0;
  line-height: 1.6;
}

.pricing-rule,
.pricing-example {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.audience-card-primary {
  background: linear-gradient(180deg, var(--panel-strong-start), var(--panel-strong-end));
  color: #edf4ee;
}

.audience-card-primary p {
  color: rgba(237, 244, 238, 0.8);
}

.section-dark {
  padding-top: 28px;
}

.quote-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(104, 194, 64, 0.14), rgba(245, 249, 255, 0.9)),
    rgba(255, 255, 255, 0.72);
}

.quote-copy p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.02;
  max-width: 16ch;
}

.quote-images {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
  min-height: 280px;
}

.quote-image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 34px rgba(37, 44, 104, 0.08);
  background: rgba(245, 249, 255, 0.92);
}

.quote-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-image-card-large {
  min-height: 320px;
}

.quote-image-card-small {
  min-height: 320px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding: 28px;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(61, 58, 148, 0.1);
  box-shadow: 0 14px 30px rgba(37, 44, 104, 0.08);
}

.contact-form-placeholder {
  min-height: 100%;
  align-content: stretch;
}

.contact-form-frame {
  width: 100%;
  min-height: 100%;
  height: 760px;
  border: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(61, 58, 148, 0.08);
}

.contact-highlights {
  display: grid;
  gap: 14px;
}

.contact-highlight,
.contact-note {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(61, 58, 148, 0.1);
}

.contact-highlight {
  display: grid;
  gap: 8px;
}

.contact-highlight strong,
.contact-note strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.contact-highlight span,
.contact-note p,
.contact-note p {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 24px;
  align-items: start;
  justify-items: center;
  margin-top: 18px;
  padding: 28px 0 10px;
  border-top: 1px solid rgba(61, 58, 148, 0.12);
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 12px;
  justify-content: center;
}

.footer-brand-copy {
  display: grid;
  gap: 6px;
  text-align: center;
}

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

.footer-brand-copy p,
.footer-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.footer-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-deep);
}

.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

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

.js-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 28, 68, 0.44);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: min(100%, 680px);
  padding: 28px;
  border-radius: 30px;
  background: rgba(252, 253, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 28px 80px rgba(20, 29, 76, 0.28);
}

.modal-dialog h2 {
  max-width: none;
  margin-top: 6px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(61, 58, 148, 0.08);
  color: var(--forest);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.modal-feature-list li {
  min-height: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(244, 247, 255, 0.9);
  border: 1px solid rgba(61, 58, 148, 0.1);
  font-weight: 700;
  line-height: 1.35;
}

.modal-note {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .hero-collage-card {
    width: min(100%, 680px);
  }

  .visual-caption-polished {
    width: min(100%, 520px);
  }
  .topbar {
    border-radius: 28px;
  }

  .hero,
  .split-layout,
  .pricing-panel,
  .contact-panel,
  .site-footer,
  .quote-block {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .quote-copy p {
    max-width: none;
  }

  .hero-visual {
    grid-template-columns: repeat(2, minmax(0, 230px));
    justify-content: center;
    gap: 16px;
    align-items: start;
  }

  .dashboard-card {
    position: relative;
  }

  .hero-shot-desktop {
    width: min(100%, 500px);
    aspect-ratio: 2.15;
  }

  .hero-shot-primary,
  .hero-shot-secondary {
    width: 230px;
    max-width: 100%;
  }

  .visual-caption {
    width: min(100%, 500px);
    margin: 0 auto;
  }
}

@media (max-width: 840px) {
  .hero-collage-card {
    width: min(100%, 520px);
  }

  .visual-caption-polished {
    width: 100%;
    max-width: 520px;
  }
  .topbar {
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .topbar-menu {
    display: block;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding-top 180ms ease;
  }

  .topbar.is-menu-open .topbar-menu {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
    padding-top: 6px;
  }

  .topbar.is-menu-open .topbar-actions {
    margin-top: 10px;
  }

  .topbar.is-menu-open .menu-toggle-bars span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .topbar.is-menu-open .menu-toggle-bars span:nth-child(2) {
    opacity: 0;
  }

  .topbar.is-menu-open .menu-toggle-bars span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

  .topbar {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 16px;
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .topbar-menu .nav,
  .topbar-menu .topbar-actions {
    overflow: hidden;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(125, 14, 24, 0.1);
  }

  .topbar-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-actions {
    display: grid;
    justify-items: start;
    gap: 12px;
  }

  .feature-grid,
  .audience-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .section-accent,
  .quote-block,
  .contact-panel {
    padding: 20px;
  }

  .feature-card,
  .workflow-card,
  .audience-card {
    padding: 22px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-shot-desktop {
    width: min(100%, 460px);
    aspect-ratio: 2.1;
  }

  .hero-shot-primary,
  .hero-shot-secondary {
    width: min(100%, 250px);
    justify-self: center;
  }

  .visual-caption {
    width: 100%;
    max-width: 460px;
  }

  .footer-brand,
  .footer-brand-copy,
  .footer-links,
  .footer-meta {
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  .modal-feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-collage-card {
    width: min(100%, 360px);
  }

  .visual-caption-polished {
    width: 100%;
    padding: 20px 18px;
  }
  #product,
  #why-now,
  #workflow,
  #audience,
  #pricing,
  #contact,
  #hero {
    scroll-margin-top: 24px;
  }

  .topbar {
    position: static;
    top: auto;
    gap: 12px;
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 24px;
  }

  .brand {
    width: auto;
    max-width: calc(100% - 120px);
    justify-content: flex-start;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-copy {
    align-items: flex-start;
    text-align: left;
  }

  .brand-copy span {
    display: none;
  }

  .menu-toggle {
    padding: 11px 14px;
    gap: 10px;
  }

  .menu-toggle-label {
    font-size: 0.92rem;
  }

  .nav {
    width: 100%;
    gap: 10px;
  }

  .nav a {
    font-size: 0.92rem;
  }

  .topbar-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .topbar-actions .button {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.94rem;
    text-align: center;
    justify-content: center;
  }

  .hero {
    padding-top: 28px;
  }

  .section-accent {
    padding: 16px;
  }

  .feature-grid {
    gap: 14px;
  }

  .feature-card,
  .workflow-card,
  .audience-card {
    padding: 18px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .hero-shot-desktop {
    width: min(100%, 360px);
    aspect-ratio: 2.02;
  }

  .hero-shot-primary,
  .hero-shot-secondary {
    width: min(100%, 260px);
    justify-self: center;
  }

  .quote-images {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .quote-image-card-large,
  .quote-image-card-small {
    min-height: 220px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions .inline-link-button {
    width: 100%;
    justify-content: center;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    gap: 18px;
    padding: 14px;
  }

  .contact-form {
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
  }

  .contact-form-frame {
    min-height: 620px;
    height: auto;
    border-radius: 18px;
  }
}



