/* Zlotworks marketing site — shared stylesheet.
   Neutral foundation with the shared Zlotworks and Prachara product theme
   (violet/amber). */

:root {
  --ink: #0f172a;
  --ink-dim: #475569;
  --ink-faint: #94a3b8;
  --bg: #f8fafc;
  --surface: #ffffff;
  --border: #e2e8f0;
  --brand: #eb934c;
  --brand-dim: #fdf0e2;
  --brand-deep: #9c5015;
  --zlotworks: #6d28d9;
  --zlotworks-dim: #ede9fe;
  --prachara: #6d28d9;
  --prachara-dim: #ede9fe;
  --amber: #d97706;
  --radius: 14px;
  --max: 1080px;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica,
    Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--brand-deep);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.045em;
}
.nav-logo:hover {
  text-decoration: none;
}
.brand-mark {
  width: auto;
  height: 40px;
  border-radius: 0;
  display: block;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--ink-dim);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a:not(.nav-cta) {
  padding-bottom: 4px;
  transition:
    color 300ms ease,
    box-shadow 300ms ease;
}
.nav-links a:hover {
  color: var(--ink);
  text-decoration: none;
}
.nav-links a:not(.nav-cta).active {
  box-shadow: inset 0 -2px 0 var(--brand);
}
.nav-cta {
  background: var(--brand);
  color: var(--ink) !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700 !important;
  transition:
    background-color 300ms ease,
    color 300ms ease;
}
.nav-cta:hover {
  background: var(--brand-deep);
  color: #fff !important;
  text-decoration: none;
}

@media (max-width: 720px) {
  .nav .wrap {
    height: auto;
    min-height: 64px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }
  .nav-logo {
    align-self: flex-start;
  }
  .nav-links {
    width: 100%;
    gap: 9px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .nav-links a {
    font-size: 0.82rem;
  }
  .nav-cta {
    padding: 6px 10px;
  }
}

@media (max-width: 390px) {
  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
  .nav-links {
    gap: 7px;
  }
  .nav-links a {
    font-size: 0.78rem;
  }
  .nav-cta {
    padding: 5px 8px;
  }
}

/* Marketing heroes */
.hero {
  padding: 76px 0 82px;
  background:
    radial-gradient(circle at 82% 18%, rgba(235, 147, 76, 0.2), transparent 30%),
    linear-gradient(135deg, #fff 0%, #fffaf5 52%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
}
.hero-grid,
.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 72px;
}
.hero-copy {
  min-width: 0;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 14px 0 24px;
  max-width: 800px;
}
.hero p.lead {
  font-size: 1.17rem;
  color: var(--ink-dim);
  max-width: 660px;
  margin: 0 0 30px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-dim);
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 750;
  font-size: 0.95rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}
.btn-primary {
  background: var(--brand);
  color: var(--ink) !important;
  box-shadow: 0 10px 24px rgba(235, 147, 76, 0.24);
}
.btn-primary:hover {
  background: var(--brand-deep);
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(156, 80, 21, 0.23);
}
.btn-ghost {
  background-color: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--brand);
  text-decoration: none;
  color: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-product-zlotworks {
  background: var(--zlotworks);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.2);
}
.btn-product-zlotworks:hover {
  background: #5b21b6;
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-2px);
}
.btn-product-prachara {
  background: var(--prachara);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.2);
}
.btn-product-prachara:hover {
  background: #5b21b6;
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Product cards (homepage) */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 18px 0 0;
}
@media (max-width: 720px) {
  .products {
    grid-template-columns: 1fr;
  }
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
}
.product-card-zlotworks::before {
  background: linear-gradient(90deg, var(--zlotworks), var(--amber));
}
.product-card-prachara::before {
  background: linear-gradient(90deg, var(--prachara), var(--amber));
}
.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.product-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-icon svg {
  width: 21px;
  height: 21px;
}
.product-icon.zlotworks {
  background: var(--zlotworks-dim);
  color: var(--zlotworks);
}
.product-icon.prachara {
  background: var(--prachara-dim);
  color: var(--prachara);
}
.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
}
.product-tag.zlotworks {
  background: var(--zlotworks-dim);
  color: var(--zlotworks);
}
.product-tag.prachara {
  background: var(--prachara-dim);
  color: var(--prachara);
}
.product-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.product-card p {
  color: var(--ink-dim);
  margin: 0;
  font-size: 0.96rem;
}
.product-card .learn-more {
  font-weight: 750;
  margin-top: auto;
  padding-top: 6px;
}

/* Generic section */
section {
  padding: 40px 0;
}
section.alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-spacious {
  padding: 82px 0;
}
.section-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-kicker.zlotworks-text,
.zlotworks-text {
  color: var(--zlotworks);
}
.section-kicker.prachara-text,
.prachara-text {
  color: var(--prachara);
}
h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}
h2 + p.section-lead {
  color: var(--ink-dim);
  margin: 0 0 30px;
  max-width: 680px;
  font-size: 1.04rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
.feature {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--brand-deep);
  background: var(--brand-dim);
}
.feature-icon svg {
  width: 21px;
  height: 21px;
}
.feature-icon.zlotworks-icon {
  color: var(--zlotworks);
  background: var(--zlotworks-dim);
}
.feature-icon.prachara-icon {
  color: var(--prachara);
  background: var(--prachara-dim);
}
.feature h3,
.reason-grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-dim);
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.audience-list span {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.audience-list svg {
  width: 16px;
  height: 16px;
  color: var(--brand-deep);
  stroke-width: 2;
}

/* Product page hero variants */
.product-hero {
  text-align: left;
  padding: 72px 0 78px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 85% 10%, rgba(235, 147, 76, 0.16), transparent 28%),
    linear-gradient(135deg, #fff 0%, #fafafa 100%);
}
.product-hero .eyebrow.zlotworks {
  color: var(--zlotworks);
  background: var(--zlotworks-dim);
}
.product-hero .eyebrow.prachara {
  color: var(--prachara);
  background: var(--prachara-dim);
}
.product-hero h1 {
  font-size: clamp(2.8rem, 5.7vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.052em;
  margin: 14px 0 24px;
  max-width: 780px;
}
.product-hero p.lead {
  color: var(--ink-dim);
  font-size: 1.16rem;
  max-width: 700px;
  margin: 0 0 30px;
}
.product-hero .btn-row {
  justify-content: flex-start;
}

/* Marketing visuals and proof */
.hero-visual,
.product-flow-card {
  min-width: 0;
}
.conversation-card,
.product-flow-card {
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}
.conversation-card {
  padding: 20px;
  transform: rotate(1deg);
}
.conversation-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--ink-dim);
}
.conversation-head strong {
  color: var(--ink);
  font-size: 0.9rem;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--zlotworks);
  box-shadow: 0 0 0 4px var(--zlotworks-dim);
}
.chat-bubble {
  max-width: 86%;
  padding: 10px 12px;
  margin: 9px 0;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
}
.chat-in {
  background: #f1f5f9;
  border-bottom-left-radius: 3px;
}
.chat-out {
  background: #d9fdd3;
  border-bottom-right-radius: 3px;
  margin-left: auto;
}
.conversation-note {
  color: var(--ink-faint);
  font-size: 0.76rem;
  line-height: 1.45;
  margin: 16px 2px 0;
}
.proof-strip {
  padding: 0;
  border: 0;
  background: var(--ink);
  color: #fff;
}
.proof-strip.proof-zlotworks {
  background: linear-gradient(110deg, #2e1065, #5b21b6);
}
.proof-strip.proof-prachara {
  background: linear-gradient(110deg, #2e1065, #5b21b6);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.proof-item {
  min-height: 118px;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.proof-item:last-child {
  border-right: 0;
}
.proof-item > svg {
  width: 25px;
  height: 25px;
  color: var(--brand);
  flex: 0 0 auto;
}
.proof-item strong,
.proof-item span {
  display: block;
}
.proof-item strong {
  font-size: 0.92rem;
  margin-bottom: 3px;
}
.proof-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.4;
}
.product-flow-card {
  padding: 26px;
}
.flow-label {
  display: block;
  color: var(--ink-dim);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.flow-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 13px;
}
.flow-step > span {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.zlotworks-flow .flow-step > span {
  background: var(--zlotworks-dim);
  color: var(--zlotworks);
}
.prachara-flow .flow-step > span {
  background: var(--prachara-dim);
  color: var(--prachara);
}
.flow-step strong,
.flow-step small {
  display: block;
}
.flow-step strong {
  font-size: 0.9rem;
}
.flow-step small {
  color: var(--ink-dim);
  font-size: 0.77rem;
}
.flow-line {
  width: 1px;
  height: 22px;
  margin: 5px 0 5px 18px;
  background: var(--border);
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.reason-grid article {
  padding: 24px 0 4px;
  border-top: 2px solid var(--zlotworks);
}
.reason-grid svg {
  width: 22px;
  height: 22px;
  color: var(--zlotworks);
  margin-bottom: 16px;
}
.reason-grid p {
  color: var(--ink-dim);
  font-size: 0.9rem;
  margin: 0;
}
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
  gap: 72px;
}
.benefit-list {
  display: grid;
  gap: 14px;
}
.benefit-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.benefit-list svg {
  width: 21px;
  height: 21px;
  color: var(--prachara);
  margin-top: 2px;
}
.benefit-list p,
.benefit-list strong,
.benefit-list span {
  display: block;
  margin: 0;
}
.benefit-list strong {
  color: var(--ink);
  font-size: 0.92rem;
  margin-bottom: 3px;
}
.benefit-list span {
  color: var(--ink-dim);
  font-size: 0.84rem;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  align-items: start;
  gap: 72px;
}
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 750;
  list-style-position: outside;
  padding-left: 4px;
}
.faq-list details p {
  color: var(--ink-dim);
  font-size: 0.9rem;
  margin: 10px 0 0 21px;
}
.cta-band {
  padding: 68px 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 30%, rgba(235, 147, 76, 0.24), transparent 30%),
    var(--ink);
}
.cta-band.cta-zlotworks {
  background:
    radial-gradient(circle at 85% 30%, rgba(235, 147, 76, 0.3), transparent 32%),
    #2e1065;
}
.cta-band.cta-prachara {
  background:
    radial-gradient(circle at 85% 30%, rgba(235, 147, 76, 0.3), transparent 32%),
    #2e1065;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 8px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.cta-band .section-kicker {
  color: var(--brand);
}

/* Legal pages */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 24px 30px;
}
.legal h1 {
  font-size: 1.9rem;
  margin-bottom: 4px;
}
.legal .updated {
  color: var(--ink-faint);
  font-size: 0.85rem;
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 1.15rem;
  margin-top: 40px;
}
.legal p,
.legal li {
  color: var(--ink-dim);
  font-size: 0.96rem;
}
.legal ul {
  padding-left: 20px;
}
.legal a {
  font-weight: 600;
}
.callout {
  background: var(--brand-dim);
  border: 1px solid #f3d3ad;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--brand-deep);
  margin: 24px 0;
}
.warn-box {
  background: #fff8f0;
  border-left: 3px solid var(--amber);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  margin: 20px 0;
  font-size: 0.9rem;
}
.step-grid {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px 16px;
  margin: 20px 0 28px;
}
.step-num {
  width: 32px;
  height: 32px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-text {
  padding-top: 4px;
  font-size: 0.96rem;
  color: var(--ink-dim);
}
.step-text strong {
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
}
.contact-card .label {
  font-size: 0.72rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.contact-card .value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
}
.contact-card .value:last-child {
  margin-bottom: 0;
}

/* Contact form */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  padding: 56px 0 80px;
}
.contact-form h1 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}
.contact-form p.lead {
  color: var(--ink-dim);
  margin: 0 0 32px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--surface);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.form-note {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-top: 14px;
}
.form-success {
  background: #dcfce7;
  border: 1px solid #bbf0cf;
  color: #166534;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 28px 0;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
footer .foot-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  margin-bottom: 6px;
}
footer .brand-mark {
  width: auto;
  height: 30px;
  border-radius: 0;
}
footer .foot-tagline {
  color: var(--ink-faint);
  font-size: 0.85rem;
  max-width: 320px;
  margin: 8px 0 0;
}
footer .platform-note {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-dim);
  font-size: 0.78rem;
  margin: 13px 0 0;
}
footer .platform-note svg {
  width: 15px;
  height: 15px;
  color: var(--brand-deep);
}
footer .foot-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 480px;
  justify-content: flex-end;
}
footer .foot-links a {
  color: var(--ink-dim);
  font-size: 0.88rem;
}
footer .foot-address {
  color: var(--ink-faint);
  font-size: 0.8rem;
  margin: 10px 0 0;
}
footer .foot-copy {
  color: var(--ink-faint);
  font-size: 0.8rem;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .hero-grid,
  .product-hero-grid,
  .split-section,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-copy {
    max-width: 760px;
  }
  .hero-visual,
  .product-flow-card {
    max-width: 560px;
  }
  .proof-item {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 720px) {
  .hero,
  .product-hero {
    padding: 54px 0 58px;
  }
  .hero h1,
  .product-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }
  .hero p.lead,
  .product-hero p.lead {
    font-size: 1.02rem;
  }
  .hero-grid,
  .product-hero-grid {
    gap: 34px;
  }
  .conversation-card {
    transform: none;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .proof-item {
    min-height: auto;
    padding: 19px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .proof-item:last-child {
    border-bottom: 0;
  }
  .section-spacious {
    padding: 58px 0;
  }
  .reason-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .split-section,
  .faq-layout {
    gap: 28px;
  }
  .cta-band {
    padding: 54px 0;
  }
  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }
  .cta-band .btn {
    width: 100%;
  }
  footer {
    padding: 36px 0;
  }
  footer .wrap {
    flex-direction: column;
  }
  footer .foot-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .btn-row {
    flex-direction: column;
  }
  .btn-row .btn {
    width: 100%;
  }
  .product-card,
  .feature,
  .product-flow-card {
    padding: 20px;
  }
  .conversation-card {
    padding: 15px;
  }
  .chat-bubble {
    max-width: 92%;
  }
  .audience-list {
    display: grid;
    grid-template-columns: 1fr;
  }
  .audience-list span {
    width: 100%;
  }
}
