:root {
  --navy: #0b1c2d;
  --navy-2: #122a40;
  --navy-3: #183a52;
  --ink: #13283a;
  --muted: #637381;
  --paper: #f5f1e8;
  --paper-2: #ece7dd;
  --white: #ffffff;
  --coral: #ff7452;
  --coral-dark: #e75b3b;
  --coral-soft: #ffe4db;
  --mint: #6ed8c7;
  --mint-dark: #299d8a;
  --mint-soft: #ddf7f1;
  --blue: #4c85ef;
  --line: rgba(19, 40, 58, 0.13);
  --shadow: 0 30px 80px rgba(8, 25, 39, 0.12);
  --radius-lg: 36px;
  --radius-md: 24px;
  --page: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--navy);
  background: var(--mint);
}

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

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

button {
  font: inherit;
}

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

svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.button,
.eyebrow {
  font-family: "Manrope", "DM Sans", sans-serif;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5vw, 4.7rem);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h2 em {
  color: var(--coral);
  font-style: normal;
}

p {
  line-height: 1.7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--coral);
  transition: top 0.2s ease;
}

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

.page-width {
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
}

.section {
  padding: 132px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255, 116, 82, 0.15);
}

.eyebrow.dark {
  color: var(--blue);
}

.eyebrow.light {
  color: var(--mint);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 750;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(255, 116, 82, 0.25);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 18px 36px rgba(255, 116, 82, 0.33);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 18px 0;
}

.site-header.is-scrolled {
  position: fixed;
  padding: 10px 0;
  background: rgba(11, 28, 45, 0.88);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  animation: header-in 0.35s ease both;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 48px), 1320px);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand > span:last-child > span {
  color: var(--mint);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark svg circle {
  fill: var(--coral);
  stroke: var(--coral);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
  transition: color 0.2s ease;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--mint);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--mint);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #8be8d9;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(110, 216, 199, 0.17), transparent 26%),
    radial-gradient(circle at 8% 87%, rgba(255, 116, 82, 0.16), transparent 27%),
    var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48vw;
  height: 54vw;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom left, #000, transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 850px;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 70px;
  padding-top: 105px;
  padding-bottom: 90px;
}

.hero-copy h1 {
  margin-bottom: 30px;
  font-size: clamp(3.4rem, 6.2vw, 6rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.068em;
}

.hero-copy h1 em {
  color: var(--mint);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: #ced9e1;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
}

.hero-note p {
  margin: 0;
  color: #9fb0be;
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-note strong {
  color: #e8eff3;
  font-size: 0.88rem;
}

.avatar-stack {
  display: flex;
  padding-left: 10px;
}

.avatar-stack span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-left: -10px;
  place-items: center;
  border: 3px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  background: var(--mint);
  font-size: 0.65rem;
  font-weight: 800;
}

.avatar-stack span:nth-child(2) {
  color: var(--white);
  background: var(--coral);
}

.avatar-stack span:nth-child(3) {
  color: var(--white);
  background: var(--blue);
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.orbit-one {
  top: 0;
  left: 22px;
  width: 590px;
  height: 590px;
}

.orbit-two {
  top: 80px;
  left: 102px;
  width: 430px;
  height: 430px;
}

.dashboard {
  position: absolute;
  top: 55px;
  right: 10px;
  z-index: 2;
  width: min(100%, 545px);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(18, 42, 64, 0.78);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.dashboard-top,
.message-head,
.metric-row,
.dashboard-bottom,
.crm-sync {
  display: flex;
  align-items: center;
}

.dashboard-top {
  justify-content: space-between;
  margin-bottom: 24px;
}

.dashboard-top small,
.dashboard-top strong {
  display: block;
}

.dashboard-top small {
  margin-bottom: 3px;
  color: #8fa4b3;
  font-size: 0.72rem;
}

.dashboard-top strong {
  font-size: 1.14rem;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(110, 216, 199, 0.22);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(110, 216, 199, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
}

.live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(110, 216, 199, 0.12);
}

.metric-row {
  gap: 13px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.metric-row article {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.metric-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
}

.metric-icon.coral {
  color: var(--coral);
  background: rgba(255, 116, 82, 0.15);
}

.metric-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.metric-row small,
.metric-row strong {
  display: block;
}

.metric-row small {
  margin-bottom: 2px;
  color: #8fa4b3;
  font-size: 0.67rem;
}

.metric-row strong {
  overflow: hidden;
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--coral);
  background: rgba(255, 116, 82, 0.12);
  font-size: 0.63rem;
  font-weight: 700;
}

.message-preview {
  padding: 20px;
  border-radius: 19px;
  color: var(--ink);
  background: #f8faf9;
}

.message-head {
  position: relative;
  gap: 11px;
  margin-bottom: 17px;
}

.ia-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--coral);
  font-size: 0.75rem;
  font-weight: 800;
}

.message-head strong,
.message-head small {
  display: block;
}

.message-head strong {
  font-size: 0.84rem;
}

.message-head small {
  margin-top: 2px;
  color: #87939c;
  font-size: 0.66rem;
}

.sparkle {
  margin-left: auto;
  color: var(--coral);
  font-size: 1.2rem;
}

.message-preview > p {
  margin-bottom: 18px;
  color: #435463;
  font-size: 0.82rem;
  line-height: 1.62;
}

.message-preview mark {
  padding: 1px 3px;
  color: #1d765f;
  background: var(--mint-soft);
}

.message-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.message-actions button {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #d8dfe2;
  border-radius: 9px;
  color: #6c7982;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 700;
}

.message-actions .send {
  color: var(--white);
  border-color: var(--coral);
  background: var(--coral);
}

.dashboard-bottom {
  justify-content: space-between;
  margin-top: 15px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.crm-sync {
  gap: 10px;
}

.crm-sync > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: var(--navy);
  background: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
}

.crm-sync p {
  margin: 0;
  line-height: 1.25;
}

.crm-sync small,
.crm-sync strong {
  display: block;
}

.crm-sync small {
  color: #8fa4b3;
  font-size: 0.62rem;
}

.crm-sync strong {
  font-size: 0.72rem;
}

.channel-tags {
  display: flex;
  gap: 6px;
}

.channel-tags span {
  padding: 6px 8px;
  border-radius: 7px;
  color: #c5d1d9;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.6rem;
  font-weight: 600;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  color: var(--white);
  background: rgba(15, 39, 58, 0.92);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
  animation: float 5s ease-in-out infinite;
}

.float-card > span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 11px;
  color: var(--navy);
  background: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
}

.float-card p {
  margin: 0;
  line-height: 1.25;
}

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

.float-card strong {
  font-size: 0.71rem;
}

.float-card small {
  margin-top: 2px;
  color: #93a7b5;
  font-size: 0.59rem;
}

.float-lead {
  top: 112px;
  left: -24px;
}

.float-chat {
  right: -38px;
  bottom: 74px;
  animation-delay: -2.2s;
}

.float-chat > span {
  color: var(--white);
  background: var(--coral);
}

@keyframes float {
  50% { transform: translateY(-11px); }
}

.platform-bar {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 22, 34, 0.52);
}

.platform-inner {
  display: flex;
  min-height: 105px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.platform-inner > span {
  color: #849aa9;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.platforms {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 40px);
  flex-wrap: wrap;
}

.platforms strong {
  color: rgba(255, 255, 255, 0.64);
  font-family: "Manrope", sans-serif;
  font-size: 0.93rem;
}

.intro-section {
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 70px;
  left: -150px;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(76, 133, 239, 0.045);
  border-radius: 50%;
}

.section-heading {
  max-width: 770px;
}

.section-heading.centered {
  margin: 0 auto 65px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading > p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.solution-pair {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.solution-pair::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 8px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 1.45rem;
  transform: translate(-50%, -50%);
}

.solution-card {
  position: relative;
  overflow: hidden;
  min-height: 550px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 55px rgba(19, 40, 58, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.solution-card:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.solution-card::after {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -95px;
  width: 240px;
  height: 240px;
  border: 45px solid rgba(255, 116, 82, 0.06);
  border-radius: 50%;
}

.attention-card::after {
  border-color: rgba(110, 216, 199, 0.11);
}

.card-index {
  position: absolute;
  top: 38px;
  right: 42px;
  color: rgba(19, 40, 58, 0.13);
  font-family: "Manrope", sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.solution-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 52px;
  place-items: center;
  border-radius: 19px;
  color: var(--coral);
  background: var(--coral-soft);
}

.attention-card .solution-icon {
  color: var(--mint-dark);
  background: var(--mint-soft);
}

.solution-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.attention-card .card-kicker {
  color: var(--mint-dark);
}

.solution-card h3 {
  max-width: 440px;
  margin-bottom: 17px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.solution-card > p {
  max-width: 470px;
  margin-bottom: 27px;
  color: var(--muted);
}

.feature-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin-bottom: 30px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: #4f6270;
  font-size: 0.9rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px var(--coral-soft);
}

.attention-card .feature-list li::before {
  background: var(--mint-dark);
  box-shadow: 0 0 0 5px var(--mint-soft);
}

.solution-card > a {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 800;
}

.solution-card > a span {
  color: var(--coral);
  transition: transform 0.2s ease;
}

.solution-card > a:hover span {
  transform: translateX(5px);
}

.capture-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 45%, rgba(76, 133, 239, 0.12), transparent 30%),
    var(--navy);
}

.capture-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 50%;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom left, #000, transparent 80%);
}

.split-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 75px;
}

.capture-section h2 {
  color: var(--white);
}

.capture-section h2 em {
  color: var(--mint);
}

.side-copy {
  margin-bottom: 10px;
  color: #96a9b7;
  font-size: 1.04rem;
}

.steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 120px;
}

.process-step {
  position: relative;
  padding-right: 28px;
}

.step-number {
  display: grid;
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  margin-bottom: 35px;
  place-items: center;
  border: 7px solid var(--navy);
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 0 0 1px rgba(255, 116, 82, 0.28);
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
}

.step-line {
  position: absolute;
  top: 26px;
  left: 53px;
  width: calc(100% - 25px);
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.process-step:last-child .step-line {
  display: none;
}

.process-step h3 {
  margin-bottom: 13px;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.process-step p {
  max-width: 245px;
  margin: 0;
  color: #9eb0bd;
  font-size: 0.9rem;
  line-height: 1.65;
}

.personalization-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.personalization-copy h3 {
  max-width: 470px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.personalization-copy > p {
  max-width: 510px;
  margin-bottom: 32px;
  color: #a5b6c1;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #d8e2e8;
  font-size: 0.9rem;
}

.check-list li span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--mint);
  font-size: 0.66rem;
  font-weight: 900;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 690px;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 216, 199, 0.19), transparent 67%);
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: 350px;
  min-height: 620px;
  padding: 25px 18px 18px;
  overflow: hidden;
  border: 7px solid #263d50;
  border-radius: 48px;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.5), transparent 25%),
    #e8efea;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: radial-gradient(#8eb8a8 1px, transparent 1px);
  background-size: 22px 22px;
}

.phone-speaker {
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 5;
  width: 86px;
  height: 20px;
  border-radius: 99px;
  background: #263d50;
  transform: translateX(-50%);
}

.phone-contact {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: -25px -18px 27px;
  padding: 40px 20px 14px;
  color: var(--white);
  background: #1f6e5d;
}

.contact-avatar {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
}

.phone-contact strong,
.phone-contact small {
  display: block;
}

.phone-contact strong {
  font-size: 0.82rem;
}

.phone-contact small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.64rem;
}

.phone-menu {
  margin-left: auto;
  letter-spacing: 2px;
}

.chat-date {
  position: relative;
  z-index: 2;
  width: max-content;
  margin: 0 auto 25px;
  padding: 5px 10px;
  border-radius: 8px;
  color: #6b7d78;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
}

.chat-bubble {
  position: relative;
  z-index: 2;
  margin-left: 28px;
  padding: 17px;
  border-radius: 15px 3px 15px 15px;
  background: #d9f7cd;
  box-shadow: 0 7px 18px rgba(29, 67, 53, 0.09);
  font-size: 0.81rem;
  line-height: 1.62;
}

.chat-bubble mark {
  padding: 1px 2px;
  color: #177561;
  background: rgba(110, 216, 199, 0.3);
  font-weight: 700;
}

.chat-bubble small {
  display: block;
  margin-top: 8px;
  color: #678078;
  font-size: 0.61rem;
  text-align: right;
}

.typing-bar {
  position: absolute;
  right: 15px;
  bottom: 17px;
  left: 15px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.typing-bar > span,
.typing-bar > b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
}

.typing-bar > span {
  color: #72847e;
  background: var(--white);
}

.typing-bar > b {
  color: var(--white);
  background: #1f8a72;
  font-size: 0.72rem;
}

.typing-bar > div {
  height: 38px;
  padding: 11px 13px;
  border-radius: 20px;
  color: #93a09c;
  background: var(--white);
  font-size: 0.67rem;
}

.context-chip {
  position: absolute;
  z-index: 4;
  min-width: 145px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  color: #8fa5b4;
  background: rgba(18, 42, 64, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  font-size: 0.66rem;
  backdrop-filter: blur(12px);
}

.context-chip strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 0.76rem;
}

.chip-one {
  top: 155px;
  left: 5px;
  transform: rotate(-4deg);
}

.chip-two {
  right: -8px;
  bottom: 150px;
  transform: rotate(4deg);
}

.agent-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
    var(--paper);
}

.agent-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 65px;
}

.agent-intro > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 1.03rem;
}

.channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 24px;
}

.channel-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 42px;
  border-radius: var(--radius-lg);
}

.whatsapp-card {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(110, 216, 199, 0.22), transparent 36%),
    var(--navy);
}

.web-card {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0, rgba(76, 133, 239, 0.11), transparent 35%),
    var(--white);
}

.channel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.channel-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--navy);
  background: var(--mint);
}

.web-card .channel-icon {
  color: var(--white);
  background: var(--coral);
}

.channel-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.channel-label {
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: #8ea5b5;
  font-size: 0.64rem;
  font-weight: 700;
}

.web-card .channel-label {
  color: #80909b;
}

.channel-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.channel-card > p {
  max-width: 520px;
  color: #9db0bd;
}

.web-card > p {
  color: var(--muted);
}

.mini-chat {
  display: grid;
  gap: 8px;
  margin-top: 32px;
}

.client-msg,
.agent-msg {
  max-width: 78%;
  padding: 13px 15px;
  border-radius: 13px;
  font-size: 0.72rem;
  line-height: 1.5;
}

.client-msg {
  margin-left: auto;
  border-radius: 13px 3px 13px 13px;
  color: var(--navy);
  background: var(--mint);
}

.agent-msg {
  border-radius: 3px 13px 13px 13px;
  color: #d3dfe6;
  background: rgba(255, 255, 255, 0.08);
}

.agent-msg span {
  margin-right: 5px;
  color: var(--coral);
}

.search-widget {
  margin-top: 32px;
  padding: 18px;
  border: 1px solid #e1e7e9;
  border-radius: 17px;
  background: #f7f9f8;
  box-shadow: 0 15px 35px rgba(19, 40, 58, 0.07);
}

.widget-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.78rem;
}

.widget-head span {
  color: var(--coral);
}

.search-line {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 13px;
  border: 1px solid #d9e1e4;
  border-radius: 10px;
  color: #5b6d79;
  background: var(--white);
  font-size: 0.7rem;
}

.search-line b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--coral);
}

.search-widget > small {
  display: block;
  margin-top: 10px;
  color: #8a989f;
  font-size: 0.62rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.capability {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.capability > span {
  display: block;
  margin-bottom: 30px;
  color: var(--coral);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.capability h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.3;
}

.capability p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.websites-section {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}

.websites-section::before {
  content: "";
  position: absolute;
  right: -160px;
  top: 80px;
  width: 400px;
  height: 400px;
  border: 70px solid rgba(255, 116, 82, 0.055);
  border-radius: 50%;
}

.web-heading {
  margin-bottom: 65px;
}

.web-heading .side-copy {
  color: var(--muted);
}

.portfolio-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 44px;
}

.project-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 54px;
}

.project-card:nth-child(even) {
  grid-template-columns: 0.8fr 1.2fr;
}

.project-card:nth-child(even) .browser-frame {
  order: 2;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(19, 40, 58, 0.13);
  border-radius: 20px;
  background: #e4e7e6;
  box-shadow: 0 28px 70px rgba(19, 40, 58, 0.14);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover .browser-frame {
  box-shadow: 0 35px 85px rgba(19, 40, 58, 0.2);
  transform: translateY(-7px) rotate(-0.4deg);
}

.project-card:nth-child(even):hover .browser-frame {
  transform: translateY(-7px) rotate(0.4deg);
}

.browser-bar {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid #d5dbdc;
  background: #f5f6f5;
}

.browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d2d9da;
}

.browser-bar i:first-child {
  background: #ff8570;
}

.browser-bar i:nth-child(2) {
  background: #f2c45f;
}

.browser-bar i:nth-child(3) {
  background: #77cf9d;
}

.browser-bar span {
  margin-left: 10px;
  overflow: hidden;
  color: #8a969b;
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-frame img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  object-position: top;
}

.project-copy > div > span {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-card:nth-child(even) .project-copy > div > span {
  color: var(--mint-dark);
}

.project-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.project-copy p {
  margin-bottom: 25px;
  color: var(--muted);
}

.project-copy b {
  display: inline-flex;
  gap: 8px;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.project-card:hover .project-copy b {
  color: var(--coral);
}

.web-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 95px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.web-services > div {
  min-height: 190px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.66);
}

.web-services span,
.web-services strong,
.web-services small {
  display: block;
}

.web-services span {
  margin-bottom: 32px;
  color: var(--coral);
  font-family: "Manrope", sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
}

.web-services strong {
  margin-bottom: 9px;
  font-size: 0.95rem;
}

.web-services small {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.integrations-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 18%, rgba(110, 216, 199, 0.15), transparent 27%),
    var(--navy);
}

.integrations-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 90px;
}

.integration-copy h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.5vw, 4.25rem);
}

.integration-copy > p {
  margin-bottom: 35px;
  color: #9fb1bd;
}

.integration-list {
  display: grid;
  gap: 20px;
}

.integration-list > div {
  display: flex;
  gap: 14px;
}

.integration-list > div > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 9px;
  color: var(--navy);
  background: var(--mint);
  font-size: 0.66rem;
  font-weight: 900;
}

.integration-list p {
  margin: 0;
  line-height: 1.4;
}

.integration-list strong,
.integration-list small {
  display: block;
}

.integration-list strong {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.integration-list small {
  color: #899eac;
  font-size: 0.75rem;
  line-height: 1.5;
}

.integration-visual {
  position: relative;
  min-height: 500px;
}

.connector-lines {
  position: absolute;
  inset: 30px 0;
}

.connector-lines svg {
  width: 100%;
  height: 100%;
}

.connector-lines path {
  fill: none;
  stroke: rgba(110, 216, 199, 0.23);
  stroke-width: 1.5;
  stroke-dasharray: 6 7;
}

.crm-node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 145px;
  min-height: 108px;
  padding: 16px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
  text-align: center;
  backdrop-filter: blur(12px);
}

.crm-node > span {
  display: grid;
  width: 35px;
  height: 35px;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 10px;
  color: var(--navy);
  background: var(--mint);
  font-size: 0.65rem;
  font-weight: 900;
}

.crm-node strong,
.crm-node small {
  display: block;
}

.crm-node strong {
  font-size: 0.78rem;
}

.crm-node small {
  margin-top: 4px;
  color: #8ca1af;
  font-size: 0.59rem;
}

.node-one {
  top: 18px;
  left: 0;
}

.node-two {
  top: 196px;
  left: 0;
}

.node-three {
  bottom: 18px;
  left: 0;
}

.node-two > span {
  color: var(--white);
  background: var(--coral);
}

.node-three > span {
  color: var(--white);
  background: var(--blue);
}

.core-node {
  top: 50%;
  left: 55%;
  width: 165px;
  min-height: 135px;
  border-color: rgba(110, 216, 199, 0.34);
  background: rgba(110, 216, 199, 0.1);
  transform: translate(-50%, -50%);
}

.core-node > span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.output-node {
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}

.output-node > span {
  color: var(--white);
  background: var(--coral);
}

.launch-section {
  background: var(--paper);
}

.launch-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.launch-steps article {
  display: flex;
  min-height: 170px;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
}

.launch-steps article > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--coral);
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.launch-steps article:nth-child(2) > span {
  color: var(--navy);
  background: var(--mint);
}

.launch-steps article:nth-child(3) > span {
  background: var(--blue);
}

.launch-steps strong {
  display: block;
  margin: 6px 0 10px;
  font-size: 1.1rem;
}

.launch-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  color: var(--white);
  background: var(--coral);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 33px 33px;
  mask-image: radial-gradient(circle at center, #000, transparent 75%);
}

.cta-orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.04), 0 0 0 110px rgba(255, 255, 255, 0.025);
}

.orb-left {
  bottom: -140px;
  left: -100px;
  width: 330px;
  height: 330px;
}

.orb-right {
  top: -150px;
  right: -80px;
  width: 320px;
  height: 320px;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.cta-content .eyebrow span {
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15);
}

.cta-content h2 {
  margin-bottom: 25px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.cta-content > p {
  max-width: 650px;
  margin: 0 auto 36px;
  color: #fff0ec;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.button-white {
  color: var(--coral);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(133, 44, 24, 0.2);
}

.button-white:hover {
  box-shadow: 0 21px 46px rgba(133, 44, 24, 0.26);
}

.cta-actions > span {
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.76rem;
}

.compliance {
  padding: 28px 0;
  color: #6b7c88;
  background: #ece7de;
}

.compliance .page-width {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 35px;
}

.compliance span {
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compliance p {
  margin: 0;
  font-size: 0.69rem;
  line-height: 1.55;
}

.site-footer {
  padding: 80px 0 24px;
  color: var(--white);
  background: #071724;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  padding-bottom: 65px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-grid > div:first-child > p {
  max-width: 330px;
  color: #8296a4;
  font-size: 0.85rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: #dce5ea;
  font-size: 0.73rem;
}

.footer-links a {
  width: max-content;
  color: #8296a4;
  font-size: 0.78rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #667d8b;
  font-size: 0.68rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1120px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
  }

  .float-lead {
    left: 0;
  }

  .float-chat {
    right: 0;
  }

  .solution-card {
    padding: 40px;
  }

  .personalization-grid {
    gap: 30px;
  }

  .chip-one {
    left: 0;
  }

  .chip-two {
    right: 0;
  }

  .integrations-grid {
    gap: 45px;
  }

  .crm-node {
    width: 125px;
  }

  .core-node {
    left: 52%;
    width: 145px;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 95px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 2px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background: rgba(11, 28, 45, 0.98);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 12px !important;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 160px;
    padding-bottom: 75px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin: 20px auto 0;
  }

  .platform-inner {
    padding: 26px 0;
    flex-direction: column;
    gap: 20px;
  }

  .platforms {
    justify-content: center;
  }

  .solution-pair,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .solution-pair::before {
    display: none;
  }

  .solution-card {
    min-height: auto;
  }

  .split-heading,
  .agent-intro {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 20px;
  }

  .process-step:nth-child(2) .step-line {
    display: none;
  }

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

  .personalization-copy {
    text-align: center;
  }

  .personalization-copy h3,
  .personalization-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .personalization-copy .eyebrow,
  .check-list {
    justify-content: center;
  }

  .check-list li {
    justify-content: center;
  }

  .capability-grid,
  .web-services {
    grid-template-columns: 1fr 1fr;
  }

  .project-card,
  .project-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .project-card:nth-child(even) .browser-frame {
    order: initial;
  }

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

  .integration-copy {
    text-align: center;
  }

  .integration-copy .eyebrow {
    justify-content: center;
  }

  .integration-copy > p {
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
  }

  .integration-list {
    width: min(100%, 600px);
    margin-inline: auto;
    text-align: left;
  }

  .integration-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .launch-steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .page-width,
  .nav-shell {
    width: min(calc(100% - 30px), var(--page));
  }

  .section {
    padding: 78px 0;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.05rem, 15vw, 4.4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
    text-align: left;
  }

  .hero-visual {
    min-height: 540px;
  }

  .dashboard {
    top: 30px;
    right: 0;
    padding: 16px;
    border-radius: 22px;
    transform: none;
  }

  .dashboard-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .float-lead {
    top: 8px;
    left: -4px;
  }

  .float-chat {
    right: -3px;
    bottom: 20px;
  }

  .float-card {
    padding: 10px 12px;
  }

  .float-card > span {
    width: 31px;
    height: 31px;
  }

  .platforms {
    gap: 16px 23px;
  }

  .platforms strong {
    font-size: 0.8rem;
  }

  .section-heading.centered {
    margin-bottom: 45px;
  }

  .solution-card,
  .channel-card {
    padding: 30px 24px;
    border-radius: 26px;
  }

  .card-index {
    top: 26px;
    right: 28px;
    font-size: 2.5rem;
  }

  .solution-icon {
    margin-bottom: 38px;
  }

  .split-heading {
    margin-bottom: 52px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    margin-bottom: 75px;
  }

  .process-step .step-line {
    top: 53px;
    bottom: -45px;
    left: 26px;
    width: 1px;
    height: auto;
  }

  .process-step:nth-child(2) .step-line {
    display: block;
  }

  .process-step:last-child .step-line {
    display: none;
  }

  .process-step {
    padding: 0 0 0 75px;
  }

  .step-number {
    position: absolute;
    top: -10px;
    left: 0;
    margin: 0;
  }

  .process-step p {
    max-width: none;
  }

  .phone-stage {
    min-height: 620px;
    margin: 0 -15px;
    transform: scale(0.9);
  }

  .context-chip {
    min-width: 128px;
  }

  .channel-top {
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 35px;
  }

  .channel-label {
    text-align: center;
  }

  .capability-grid,
  .web-services {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    gap: 68px;
  }

  .web-services {
    margin-top: 65px;
  }

  .web-services > div {
    min-height: auto;
  }

  .integration-visual {
    min-height: 590px;
    transform: scale(0.88);
    transform-origin: center;
  }

  .node-one,
  .node-two,
  .node-three {
    left: -12px;
  }

  .core-node {
    top: 49%;
    left: 62%;
  }

  .output-node {
    top: auto;
    right: 16%;
    bottom: -5px;
    transform: none;
  }

  .connector-lines {
    display: none;
  }

  .cta-section {
    padding: 90px 0;
  }

  .cta-content h2 {
    font-size: 3.2rem;
  }

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

  .compliance .page-width {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
