/* OBRAX landing aligned with app colors */

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1d4ed8;
  --primary-light: #2563eb;
  --primary-dark: #1e3a8a;
  --accent: #d97706;
  --success: #059669;
  --warning: #d97706;
  --error: #dc2626;
  --background: #f1f5f9;
  --bg-deep: #e2e8f0;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --border: rgba(15, 23, 42, .10);
  --border-light: rgba(15, 23, 42, .06);
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --dark: #0b1324;
  --dark-surface: #141e33;
  --dark-surface-alt: #1a2540;
  --shadow: 0 24px 70px rgba(15, 23, 42, .12);
  --shadow-soft: 0 14px 38px rgba(15, 23, 42, .08);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0, rgba(37, 99, 235, .16), transparent 26rem),
    radial-gradient(circle at 88% 10%, rgba(5, 150, 105, .11), transparent 24rem),
    linear-gradient(180deg, #e2e8f0 0, var(--background) 18rem, #ffffff 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: min(100% - 32px, 1220px);
  margin: 72px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--border);
  box-shadow: 0 32px 100px rgba(15, 23, 42, .10);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 clamp(18px, 3vw, 34px);
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img,
.footer img {
  width: 138px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-links a,
.nav-mobile > a:not(.btn),
.footer-links a {
  color: var(--text-secondary);
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-mobile > a:hover,
.footer-links a:hover {
  color: var(--primary-light);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .84rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  box-shadow: 0 16px 34px rgba(37, 99, 235, .28);
}

.btn-download {
  color: #fff;
  background: linear-gradient(135deg, var(--dark-surface-alt), var(--dark));
  box-shadow: 0 16px 34px rgba(11, 19, 36, .24);
}

.btn-soft {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
}

.btn-large {
  min-height: 54px;
  padding: 0 28px;
  font-size: .92rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.nav-mobile {
  display: none;
  position: sticky;
  top: 68px;
  z-index: 39;
  padding: 16px 18px 18px;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--border-light);
}

.nav-mobile.open {
  display: grid;
  gap: 12px;
}

.nav-mobile .btn {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding: clamp(54px, 7vw, 88px) clamp(18px, 4vw, 54px) 62px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 69% 18%, rgba(37, 99, 235, .16), transparent 23rem),
    linear-gradient(180deg, rgba(248, 250, 252, .95), rgba(255, 255, 255, .65));
}

.hero-copy {
  min-width: 0;
}

.hero-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  border-radius: 15px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(37, 99, 235, .26);
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 13px;
  color: var(--primary-dark);
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, .20);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(5, 150, 105, .12);
}

.hero h1,
.section-head h2,
.split-cta h2,
.final-cta h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -.055em;
  color: var(--text);
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  font-size: clamp(2.65rem, 5.6vw, 5.3rem);
  line-height: .94;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.status-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 10px;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--text-muted);
}

.dot.active {
  background: var(--success);
}

.dot.paused {
  background: var(--warning);
}

.dot.overdue {
  background: var(--error);
}

.hero-preview {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.phone {
  position: absolute;
  width: 238px;
  filter: drop-shadow(0 24px 30px rgba(15, 23, 42, .18));
}

.phone-main {
  position: relative;
  z-index: 4;
  width: 292px;
}

.phone-left {
  left: 0;
  bottom: 34px;
  z-index: 2;
  transform: rotate(-7deg);
}

.phone-right {
  right: 0;
  bottom: 34px;
  z-index: 2;
  transform: rotate(7deg);
}

.phone-frame {
  position: relative;
  aspect-ratio: 9 / 19.15;
  padding: 10px;
  background: #0b1324;
  border: 5px solid #0b1324;
  border-radius: 40px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .16),
    0 0 0 1px rgba(255, 255, 255, .88);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  z-index: 5;
  top: 13px;
  left: 50%;
  width: 96px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 0 0 17px 17px;
  background: #05070b;
}

.app-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 29px;
  padding: 52px 15px 16px;
}

.screen-dashboard {
  color: var(--text);
  background: var(--background);
}

.screen-calendar {
  color: #fff;
  background:
    radial-gradient(circle at 18% 8%, rgba(245, 158, 11, .42), transparent 7rem),
    linear-gradient(180deg, var(--dark-surface-alt), var(--dark));
}

.screen-docs {
  color: #fff;
  background:
    radial-gradient(circle at 80% 12%, rgba(5, 150, 105, .44), transparent 7rem),
    linear-gradient(180deg, #123028, var(--dark));
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.mobile-header span {
  font-size: 1.1rem;
}

.view-toggle {
  display: flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.view-toggle i {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: #dbeafe;
}

.mobile-stats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 13px;
}

.mobile-stats span {
  display: inline-flex;
  gap: 4px;
  padding: 5px 8px;
  color: var(--success);
  background: rgba(5, 150, 105, .10);
  border: 1px solid rgba(5, 150, 105, .22);
  border-radius: 99px;
  font-size: .62rem;
  font-weight: 800;
}

.mobile-stats span:nth-child(2) {
  color: var(--warning);
  background: rgba(217, 119, 6, .10);
  border-color: rgba(217, 119, 6, .22);
}

.mobile-stats span:nth-child(3) {
  color: var(--error);
  background: rgba(220, 38, 38, .09);
  border-color: rgba(220, 38, 38, .18);
}

.search-bar {
  margin-top: 12px;
  padding: 12px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  font-size: .7rem;
  font-weight: 700;
}

.filter-row {
  display: flex;
  gap: 6px;
  margin: 10px -2px 13px;
  overflow: hidden;
}

.filter-row span {
  flex: 0 0 auto;
  padding: 7px 9px;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: .62rem;
  font-weight: 900;
}

.filter-row .is-active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.work-card {
  display: grid;
  grid-template-columns: 5px minmax(0, 1fr);
  gap: 10px;
  margin-top: 10px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 15px;
}

.work-card > b {
  display: block;
  border-radius: 99px;
  background: var(--success);
}

.work-card.warning > b {
  background: var(--warning);
}

.work-card strong,
.work-card small,
.work-card p {
  display: block;
}

.work-card strong {
  overflow: hidden;
  font-size: .78rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-card small {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: .62rem;
}

.work-card p {
  margin-top: 9px;
  color: var(--text-secondary);
  font-size: .66rem;
  font-weight: 800;
}

.progress {
  height: 7px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--bg-deep);
}

.progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--success);
}

.warning .progress i {
  background: var(--warning);
}

.screen-pill {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 99px;
  background: rgba(255, 255, 255, .08);
  font-size: .68rem;
  font-weight: 900;
}

.app-screen h2 {
  margin-top: 54px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.46rem;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.app-screen > p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .76);
  font-size: .72rem;
  line-height: 1.52;
}

.note-list {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.note-list span,
.doc-grid span {
  display: block;
  padding: 10px;
  color: #fff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 13px;
  font-size: .68rem;
  font-weight: 800;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.doc-grid span {
  min-height: 50px;
  display: grid;
  place-items: center;
}

.product,
.features {
  padding: 88px clamp(18px, 4vw, 48px);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head.compact {
  max-width: 680px;
}

.section-head h2,
.split-cta h2,
.final-cta h2 {
  margin-top: 15px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
}

.section-head p,
.split-cta p,
.final-cta p {
  max-width: 640px;
  margin: 15px auto 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}

.flow-card {
  min-width: 0;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.flow-index {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  color: #fff;
  background: var(--primary);
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 900;
}

.flow-card.accent .flow-index {
  background: var(--accent);
}

.flow-card.success .flow-index {
  background: var(--success);
}

.flow-card.warning .flow-index {
  background: var(--warning);
}

.flow-card h3,
.feature-list h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.flow-card p,
.feature-list p {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.58;
}

.flow-card ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  list-style: none;
}

.flow-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: .82rem;
  line-height: 1.35;
}

.flow-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--primary-light);
}

.flow-card.accent li::before,
.flow-card.warning li::before {
  background: var(--warning);
}

.flow-card.success li::before {
  background: var(--success);
}

.features {
  background: linear-gradient(180deg, var(--surface-alt), #fff);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.features-layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.crm-card {
  min-width: 0;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.crm-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.crm-top span {
  display: block;
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.crm-top strong {
  display: block;
  margin-top: 3px;
  font-size: 1.15rem;
  font-weight: 900;
}

.crm-top em {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: var(--success);
  background: rgba(5, 150, 105, .10);
  border: 1px solid rgba(5, 150, 105, .22);
  border-radius: 99px;
  font-size: .72rem;
  font-style: normal;
  font-weight: 900;
}

.crm-map {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(5, 150, 105, .12)),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(15, 23, 42, .07) 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(15, 23, 42, .07) 32px),
    #e8eff7;
}

.crm-map span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--text);
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--border);
  border-radius: 11px;
  font-size: .78rem;
  font-weight: 900;
}

.pin {
  position: absolute;
  width: 19px;
  height: 19px;
  border-radius: 50% 50% 50% 0;
  background: var(--success);
  transform: rotate(-45deg);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .18);
}

.pin::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #fff;
}

.pin-a {
  left: 24%;
  top: 56%;
}

.pin-b {
  left: 58%;
  top: 32%;
  background: var(--warning);
}

.pin-c {
  left: 76%;
  top: 64%;
  background: var(--error);
}

.crm-rows {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.crm-rows span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  color: var(--text-secondary);
  background: var(--surface-alt);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 800;
}

.crm-rows b {
  color: var(--success);
}

.crm-rows b.warn {
  color: var(--warning);
}

.crm-rows b.risk {
  color: var(--error);
}

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

.feature-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

.feature-list article > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--primary);
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 13px;
  font-size: .76rem;
  font-weight: 900;
}

.split-cta {
  width: min(100% - 48px, 1080px);
  margin: 76px auto;
  padding: clamp(30px, 5vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 0, rgba(37, 99, 235, .52), transparent 20rem),
    linear-gradient(135deg, var(--dark-surface), var(--dark));
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.split-cta h2 {
  color: #fff;
  max-width: 680px;
}

.split-cta p {
  margin-left: 0;
  color: rgba(244, 246, 251, .76);
}

.split-cta strong {
  color: #fff;
}

.dark-pill {
  color: #dbeafe;
  background: rgba(37, 99, 235, .12);
  border-color: rgba(255, 255, 255, .14);
}

.final-cta {
  padding: 90px clamp(18px, 4vw, 48px) 104px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(37, 99, 235, .14), transparent 28rem),
    #fff;
}

.final-cta h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 34px clamp(18px, 3vw, 34px);
  background: #fff;
  border-top: 1px solid var(--border-light);
}

.footer p {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: .86rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}

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

@media (max-width: 1100px) {
  .page-shell {
    width: min(100% - 20px, 1220px);
    margin-top: 34px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .hero-mark,
  .hero-copy > p:not(.eyebrow),
  .hero h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .status-strip {
    justify-content: center;
  }

  .hero-preview {
    min-height: 520px;
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .phone-left {
    left: 46px;
  }

  .phone-right {
    right: 46px;
  }

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

@media (max-width: 820px) {
  .hero {
    padding-bottom: 44px;
  }

  .hero-preview {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .phone,
  .phone-main,
  .phone-left,
  .phone-right {
    position: relative;
    inset: auto;
    width: min(292px, 86vw);
    margin: 0 auto;
    transform: none;
  }

  .phone-side {
    width: min(265px, 84vw);
  }

  .features-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .split-cta {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .split-cta p {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: 100%;
    margin-top: 0;
    border-left: 0;
    border-right: 0;
  }

  .nav {
    height: 64px;
    padding: 0 16px;
  }

  .nav-mobile {
    top: 64px;
  }

  .brand img {
    width: 118px;
    height: 34px;
  }

  .hero {
    padding: 42px 16px 40px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.45rem);
    letter-spacing: -.05em;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .btn,
  .final-actions .btn,
  .split-cta .btn {
    width: 100%;
  }

  .status-strip {
    justify-content: flex-start;
  }

  .phone,
  .phone-main,
  .phone-side {
    width: min(286px, 92vw);
  }

  .product,
  .features {
    padding: 70px 16px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2,
  .split-cta h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10.5vw, 2.8rem);
  }

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

  .flow-card {
    padding: 20px;
  }

  .flow-index {
    margin-bottom: 24px;
  }

  .crm-map {
    min-height: 200px;
  }

  .crm-rows span {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .split-cta {
    width: calc(100% - 32px);
    margin: 58px auto;
    border-radius: 20px;
  }

  .final-cta {
    padding: 74px 16px 84px;
  }

  .footer {
    display: grid;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .btn {
    padding-left: 14px;
    padding-right: 14px;
    font-size: .78rem;
  }

  .app-screen h2 {
    font-size: 1.32rem;
  }

  .phone,
  .phone-main,
  .phone-side {
    width: min(264px, 94vw);
  }
}
