:root {
  --bg: #fff9f4;
  --surface: #fffdfb;
  --surface-soft: #f5eee7;
  --text: #17202a;
  --muted: #52606a;
  --muted-soft: #788188;
  --line: #e8e1db;
  --orange: #ff6516;
  --orange-soft: #ffdfc8;
  --green: #44a178;
  --green-soft: #dcf4e7;
  --violet-soft: #eee9ff;
  --blue-soft: #dce7fd;
  --pink-soft: #fbdde7;
  --shadow: 0 22px 58px rgba(96, 60, 82, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 101, 22, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 6%, rgba(68, 161, 120, 0.16), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, #fffdfd 52%, #fffaf6 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(23, 32, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 42, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

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

.trust-row,
.footer {
  display: flex;
  align-items: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 48px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
  min-height: 100vh;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 680px;
  font-size: clamp(18px, 2vw, 22px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.whatsapp {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff8952);
  box-shadow: 0 18px 42px rgba(255, 101, 22, 0.22);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #466f8f;
  background: #fffdfb;
  font-size: 13px;
  box-shadow: 0 10px 26px rgba(96, 60, 82, 0.06);
}

.agent-panel {
  border: 1px solid #e5e0dc;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(220, 244, 231, 0.9), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-1deg);
}

.panel-top {
  display: block;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: #fff4ed;
  color: #7e3518;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.agent-status,
.metrics {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.agent-status {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.agent-status strong {
  display: block;
  margin-bottom: 5px;
}

.agent-status small,
.metrics span {
  color: var(--muted);
}

.live-dot {
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.conversation {
  display: grid;
  gap: 12px;
  padding: 0 20px 20px;
}

.message {
  max-width: 88%;
  padding: 14px;
  border-radius: 8px;
  color: var(--text);
  line-height: 1.45;
}

.customer {
  justify-self: start;
  background: var(--violet-soft);
}

.ai {
  justify-self: end;
  color: #123327;
  background: var(--green-soft);
  border: 1px solid rgba(68, 161, 120, 0.22);
}

.metrics {
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: #fffaf6;
}

.metrics b {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 18px;
  text-transform: uppercase;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 32px));
  margin: -22px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(96, 60, 82, 0.08);
  overflow: hidden;
}

.signal-strip span {
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 18px;
  color: var(--text);
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1;
}

.signal-strip span + span {
  border-left: 1px solid var(--line);
}

.signal-strip span:nth-child(1) {
  background: var(--orange-soft);
}

.signal-strip span:nth-child(2) {
  background: var(--green-soft);
}

.signal-strip span:nth-child(3) {
  background: var(--blue-soft);
}

.signal-strip span:nth-child(4) {
  background: var(--violet-soft);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wide-copy {
  max-width: 880px;
}

.wide-copy p,
.section-heading p,
.split p,
.final-cta p {
  max-width: 760px;
  font-size: 18px;
}

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

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

.card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(96, 60, 82, 0.08);
}

.card:nth-child(1) {
  background: linear-gradient(180deg, var(--green-soft), var(--surface));
}

.card:nth-child(2) {
  background: linear-gradient(180deg, var(--orange-soft), var(--surface));
}

.card:nth-child(3) {
  background: linear-gradient(180deg, var(--blue-soft), var(--surface));
}

.card:nth-child(4) {
  background: linear-gradient(180deg, var(--pink-soft), var(--surface));
}

.icon {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
}

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

.learning-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(96, 60, 82, 0.07);
  font-weight: 700;
}

.learning-list span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(68, 161, 120, 0.34);
  flex: 0 0 auto;
}

.community {
  border-top: 1px solid var(--line);
}

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

.timeline div {
  padding: 24px;
  border-left: 2px solid var(--orange);
  background: linear-gradient(90deg, #fff0e7, var(--surface));
  box-shadow: 0 14px 32px rgba(96, 60, 82, 0.06);
}

.timeline b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
}

.manifesto {
  padding: 42px;
  border: 1px solid #e5e0dc;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 223, 200, 0.9), rgba(220, 244, 231, 0.82)),
    var(--surface);
  box-shadow: var(--shadow);
}

.manifesto p {
  max-width: 980px;
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  font-weight: 800;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(1180px, calc(100% - 32px));
  margin: 82px auto 36px;
  padding: 44px;
  border: 1px solid #e5e0dc;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(220, 244, 231, 0.92), rgba(255, 223, 200, 0.75)),
    var(--surface);
  box-shadow: var(--shadow);
}

.final-cta .button {
  width: 260px;
}

.final-cta small {
  grid-column: 1 / -1;
  color: var(--muted-soft);
}

.footer {
  justify-content: center;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .hero,
  .intro,
  .split,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .benefit-grid,
  .timeline,
  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 620px) {
  .hero,
  .signal-strip,
  .section,
  .final-cta,
  .footer {
    width: calc(100% - 24px);
  }

  .hero {
    gap: 28px;
    padding: 44px 0 54px;
  }

  h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .button {
    width: 100%;
  }

  .benefit-grid,
  .timeline,
  .metrics,
  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-strip span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .card {
    min-height: auto;
  }

  .icon {
    margin-bottom: 24px;
  }

  .manifesto,
  .final-cta {
    padding: 26px;
  }

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