:root {
  --bg: #f7f9ff;
  --surface: #fff;
  --ink: #111a35;
  --muted: #66708a;
  --line: #dce3f2;
  --brand: #123cff;
  --brand-dark: #0629b8;
  --dark: #07133f;
  --soft: #edf1ff;
  --shadow: 0 24px 70px rgba(14, 29, 83, 0.12);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
h1,
h2,
h3 {
  font-family: Manrope, sans-serif;
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  max-width: 900px;
}
h2 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}
h3 {
  font-size: 1.25rem;
}
p {
  color: var(--muted);
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 249, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 227, 242, 0.7);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}
.brand-logo-full {
  height: 42px;
  max-width: 190px;
}
.brand-logo-symbol {
  display: none;
  height: 38px;
  width: 38px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
}
.brand-icon {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  color: #56617c;
  font-weight: 600;
}
.desktop-nav a:hover {
  color: var(--brand-dark);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  background: #fff;
  color: var(--ink);
  font: 800 0.78rem "DM Sans";
  cursor: pointer;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  padding: 13px 19px;
  font-weight: 800;
  cursor: pointer;
  transition:
    0.2s transform,
    0.2s box-shadow;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(12, 45, 38, 0.14);
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-outline {
  border: 1px solid #c6d7d3;
  color: var(--ink);
}
.btn-small {
  padding: 10px 14px;
}
.btn-lg {
  padding: 16px 22px;
  font-size: 1rem;
}
.text-link {
  font-weight: 800;
  color: var(--brand-dark);
  align-self: center;
}
.actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.actions.center {
  justify-content: center;
}
.micro {
  font-size: 0.86rem;
  margin-top: 18px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--brand-dark);
  margin-bottom: 12px;
}
.pill,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(16, 163, 127, 0.22);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 800;
  font-size: 0.78rem;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
.hero {
  padding: 80px 0 110px;
  overflow: hidden;
}
.hero-a {
  background:
    radial-gradient(circle at 85% 30%, #d9e2ff, transparent 35%),
    linear-gradient(135deg, #f8faff, #edf2ff);
}
.hero-b {
  background:
    radial-gradient(circle at 15% 20%, #e1e8ff, transparent 32%),
    linear-gradient(135deg, #f8faff, #eff3ff);
}
.hero-c {
  background:
    radial-gradient(circle at 80% 20%, #e0e7ff, transparent 30%),
    linear-gradient(135deg, #f9faff, #edf2ff);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
}
.hero h1 span,
.hero-centered h1 span {
  color: var(--brand-dark);
}
.lead {
  font-size: 1.16rem;
  max-width: 760px;
}
.hero-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-centered .lead {
  max-width: 780px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.price-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
}
.badge {
  background: var(--soft);
  color: var(--brand-dark);
  border: 0;
}
.price {
  font: 800 3.2rem Manrope;
  margin: 25px 0 4px;
}
.price small {
  font: 600 1rem "DM Sans";
  color: var(--muted);
}
.price-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
  color: #35534c;
  font-size: 0.9rem;
}
.standalone-price {
  width: min(100%, 440px);
  margin-top: 35px;
  text-align: left;
}
.section {
  padding: 100px 0;
}
.section.soft {
  background: var(--soft);
}
.section.dark {
  background: var(--dark);
  color: #fff;
}
.section-heading {
  max-width: 780px;
  margin-bottom: 45px;
}
.section-heading p {
  font-size: 1.05rem;
}
.section-heading.light .eyebrow {
  color: #72d9bf;
}
.section-heading.light p {
  color: #b9ccc7;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pain,
.pain-card,
.simple-grid > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.pain .icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--brand-dark);
  font-weight: 900;
  margin-bottom: 26px;
}
.pain p,
.pain-card li {
  font-size: 0.95rem;
}
.economy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.saving {
  margin-top: 28px;
  border-left: 4px solid var(--brand);
  padding-left: 18px;
}
.saving span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}
.saving strong {
  font: 800 2.4rem Manrope;
}
.compare {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(12, 45, 38, 0.07);
}
.compare-row {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-radius: 14px;
}
.compare-row.head {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}
.compare-row.clinora {
  background: var(--soft);
  color: var(--brand-dark);
  font-size: 1.05rem;
}
.arrow {
  text-align: center;
  color: var(--brand);
  font-size: 1.5rem;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.module-grid > div {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
}
.module-grid span {
  color: var(--brand);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border-top: 1px solid #29463f;
  padding-top: 28px;
}
.timeline > div {
  position: relative;
  text-align: center;
}
.timeline b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: -50px auto 15px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
}
.timeline span {
  display: block;
  color: #d6e3e0;
  font-size: 0.8rem;
}
.routine-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.routine-points > div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(145, 168, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}
.routine-points strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 12px;
}
.routine-points span {
  display: block;
  color: #d6def3;
  font-size: 0.86rem;
  line-height: 1.5;
}
.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.badges span {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pain-card h2 {
  font-size: 1.8rem;
}
.pain-card ul {
  padding-left: 20px;
  color: var(--muted);
}
.pain-card li {
  margin: 10px 0;
}
.lgpd {
  padding-top: 50px;
}
.lgpd-box {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #e8edff;
  border: 1px solid #c5d1ff;
  border-radius: 28px;
  padding: 32px;
}
.shield {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.5rem;
  flex: 0 0 auto;
}
.automation {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 70px;
  align-items: center;
}
.mock-phone {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.phone-top {
  font-weight: 900;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.msg {
  background: #eef2ff;
  padding: 12px;
  border-radius: 14px;
  margin-top: 14px;
  font-size: 0.85rem;
}
.msg.right {
  background: #dce5ff;
  margin-left: 35px;
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote-grid blockquote {
  margin: 0;
  border: 1px solid #29463f;
  border-radius: 22px;
  padding: 25px;
  color: #e2eeeb;
}
.quote-grid small {
  display: block;
  color: #8eaaa3;
  margin-top: 20px;
}
.simple-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.simple-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--brand);
  font-size: 1.2rem;
}
.simple-grid strong {
  color: var(--ink);
  font-size: 1rem;
}
.simple-grid span {
  color: var(--muted);
  font-size: 0.85rem;
}
.base-card {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.base-card div {
  background: #fff;
  border: 1px solid var(--line);
  padding: 25px 10px;
  border-radius: 18px;
  text-align: center;
  font-weight: 800;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.form-mock {
  border: 1px solid var(--line);
  border-radius: 25px;
  padding: 25px;
  background: #fff;
  box-shadow: var(--shadow);
}
.bar {
  height: 32px;
  background: var(--soft);
  border-radius: 9px;
  margin-bottom: 25px;
}
.line {
  height: 10px;
  width: 65%;
  background: #e6eeec;
  border-radius: 10px;
  margin: 15px 0;
}
.line.wide {
  width: 90%;
}
.input {
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 14px 0;
}
.btn-mock {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 11px 16px;
  border-radius: 10px;
  font-weight: 800;
}
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.days > div {
  border: 1px solid #29463f;
  border-radius: 18px;
  padding: 17px;
}
.days b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--brand);
  border-radius: 9px;
  margin-bottom: 14px;
}
.days span {
  display: block;
  font-weight: 800;
}
.days small {
  display: block;
  color: #8eaaa3;
  font-size: 0.72rem;
  margin-top: 8px;
}
.lead-section {
  padding-top: 60px;
}
.lead-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  box-shadow: var(--shadow);
}
form {
  display: grid;
  gap: 12px;
}
.form-success {
  grid-column: 2;
  align-self: center;
  padding: 28px;
  border: 1px solid #cbd7f5;
  border-radius: 18px;
  background: #f5f7ff;
}
.form-success h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}
.form-success p {
  margin: 0 0 20px;
}
.form-step {
  display: grid;
  gap: 12px;
}
.form-step[hidden] {
  display: none !important;
}
.form-step h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 1.15rem;
}
.form-progress {
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
}
.form-status {
  display: none;
  margin: 0;
  padding: 11px 13px;
  border-radius: 10px;
  background: #fff3e8;
  color: #8b4d16;
  font-size: 0.86rem;
  font-weight: 700;
}
.form-status.visible {
  display: block;
}
.form-status.success {
  background: #e8f8f1;
  color: #16775c;
}
.form-back[hidden],
.form-next[hidden],
form button[hidden] {
  display: none;
}
label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #48615b;
}
input {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}
input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(16, 163, 127, 0.1);
}
select {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  resize: vertical;
  font: inherit;
}
.other-interest[hidden] {
  display: none;
}
.privacy-note {
  margin: 18px 0 0;
  padding: 15px 18px;
  border-left: 4px solid var(--brand);
  border-radius: 10px;
  background: #eef3ff;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
.privacy-consent {
  display: block;
  padding: 12px 14px;
  border: 1px solid #cbd7f5;
  border-radius: 10px;
  background: #f5f7ff;
  color: #34446b;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
}
.pain-checklist {
  display: grid;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px;
}
.interest-question {
  display: grid;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px;
}
.interest-question legend {
  padding: 0 5px;
  color: #48615b;
  font-size: 0.82rem;
  font-weight: 800;
}
.interest-question label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.interest-question input {
  width: auto;
  margin: 0;
}
.pain-checklist legend {
  padding: 0 5px;
  color: #48615b;
  font-size: 0.82rem;
  font-weight: 800;
}
.pain-checklist label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.pain-checklist input {
  width: auto;
  margin: 0;
}
form small {
  color: var(--muted);
  font-size: 0.72rem;
}
.final-cta {
  padding: 70px 0;
}
.final-inner {
  background: var(--dark);
  color: #fff;
  border-radius: 30px;
  padding: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.section-logo {
  display: block;
  width: 170px;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}
.section-logo-light {
  order: 2;
}
.final-inner > div {
  order: 1;
}
.final-inner > .actions {
  order: 3;
}
.final-inner p {
  color: #b9ccc7;
}
.final-inner .btn-outline {
  color: #fff;
  border-color: #47645d;
}
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: #123cff;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(14, 29, 83, 0.2);
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 28, 24, 0.58);
  display: none;
  place-items: center;
  padding: 20px;
  z-index: 100;
}
.modal.open {
  display: grid;
}
.modal-card {
  background: #fff;
  border-radius: 25px;
  padding: 35px;
  max-width: 520px;
  position: relative;
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute;
  right: 15px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}
.modal-close-action {
  margin-top: 12px;
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .hero-grid,
  .economy,
  .trust,
  .lead-box,
  .feature,
  .automation {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 55px 0 70px;
  }
  .price-card {
    max-width: 520px;
  }
  .pain-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .module-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 38px;
  }
  .routine-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .routine-points > div {
    min-height: 0;
    padding: 18px;
  }
  .simple-grid {
    grid-template-columns: 1fr 1fr;
  }
  .base-card {
    grid-template-columns: repeat(3, 1fr);
  }
  .days {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1160px);
  }
  .nav {
    height: 68px;
    gap: 12px;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .desktop-nav {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .desktop-nav.open {
    display: flex;
  }
  .desktop-nav a {
    padding: 12px;
  }
  .brand-logo-full {
    display: none;
  }
  .brand-logo-symbol {
    display: block;
  }
  .nav .btn {
    font-size: 0.75rem;
    padding: 10px 12px;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero {
    padding: 48px 0 62px;
  }
  .hero-centered .actions,
  .hero-centered > .btn {
    width: 100%;
  }
  .actions .btn {
    width: 100%;
  }
  .price-card {
    width: 100%;
    padding: 22px;
  }
  .standalone-price {
    margin-top: 28px;
  }
  .section {
    padding: 70px 0;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading h2,
  .pain-card h2 {
    font-size: 2rem;
  }
  .module-grid,
  .split,
  .simple-grid,
  .base-card,
  .badges {
    grid-template-columns: 1fr;
  }
  .days {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .days > div {
    padding: 14px 10px;
  }
  .lgpd-box {
    align-items: flex-start;
    padding: 24px;
  }
  .automation {
    gap: 30px;
  }
  .mock-phone {
    width: 100%;
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    border-top: 0;
    padding-top: 0;
  }
  .timeline > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    min-height: 104px;
    padding: 13px 8px 10px;
    border: 1px solid rgba(145, 168, 255, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
  }
  .timeline b {
    flex: 0 0 auto;
    margin: 0;
    width: 40px;
    height: 40px;
  }
  .timeline span {
    min-height: 2.6em;
    text-align: center;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .days span {
    line-height: 1.35;
  }
  .lead-box,
  .final-inner {
    padding: 25px;
  }
  .lead-box {
    gap: 30px;
  }
  .form-success {
    grid-column: 1;
    padding: 22px;
  }
  .final-inner {
    display: block;
  }
  .section-logo-light {
    width: 150px;
    margin: 0 0 24px;
  }
  .final-inner .actions {
    margin-top: 25px;
  }
  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 11px 14px;
    font-size: 0.82rem;
  }
  .price {
    font-size: 2.6rem;
  }
}

/* Blue palette for remaining component-specific accents. */
.btn:hover {
  box-shadow: 0 10px 24px rgba(14, 29, 83, 0.14);
}
.btn-outline {
  border-color: #c8d2e8;
}
.pill,
.badge {
  border-color: rgba(18, 60, 255, 0.22);
}
.hero-a {
  background:
    radial-gradient(circle at 85% 30%, #d9e2ff, transparent 35%),
    linear-gradient(135deg, #f8faff, #edf2ff);
}
.hero-b {
  background:
    radial-gradient(circle at 15% 20%, #e1e8ff, transparent 32%),
    linear-gradient(135deg, #f8faff, #eff3ff);
}
.hero-c {
  background:
    radial-gradient(circle at 80% 20%, #e0e7ff, transparent 30%),
    linear-gradient(135deg, #f9faff, #edf2ff);
}
.section-heading.light .eyebrow {
  color: #91a8ff;
}
.section-heading.light p {
  color: #bdc7e3;
}
.compare {
  box-shadow: 0 16px 40px rgba(14, 29, 83, 0.07);
}
.timeline {
  border-top-color: #304276;
}
.timeline span {
  color: #d6def3;
}
.lgpd-box {
  background: #e8edff;
  border-color: #c5d1ff;
}
.msg {
  background: #eef2ff;
}
.msg.right {
  background: #dce5ff;
}
.quote-grid blockquote {
  border-color: #304276;
  color: #e2e8fb;
}
.quote-grid small,
.days small {
  color: #94a3ca;
}
.days > div {
  border-color: #304276;
}

/* Homepage */
.home-main {
  overflow: hidden;
  background: #f7f9ff;
}
.home-header-note {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}
.home-hero {
  position: relative;
  padding: 92px 0 104px;
  background:
    radial-gradient(
      circle at 76% 22%,
      rgba(126, 155, 255, 0.28),
      transparent 27%
    ),
    radial-gradient(
      circle at 96% 86%,
      rgba(48, 204, 177, 0.16),
      transparent 25%
    ),
    linear-gradient(135deg, #f8faff 0%, #eaf0ff 100%);
}
.home-hero::after {
  position: absolute;
  right: -8%;
  bottom: -160px;
  width: 480px;
  height: 300px;
  border: 1px solid rgba(18, 60, 255, 0.12);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}
.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 80px;
  align-items: center;
}
.home-hero-copy {
  max-width: 620px;
}
.home-hero h1 {
  max-width: 600px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
}
.home-hero h1 span {
  display: block;
  color: var(--brand);
}
.home-lead {
  max-width: 520px;
  margin: 0 0 30px;
  color: #4e5d7f;
  font-size: 1.2rem;
}
.home-proof {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: #687593;
  font-size: 0.77rem;
  font-weight: 700;
}
.home-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.home-proof b {
  color: var(--brand);
  font-size: 0.68rem;
}
.home-dashboard {
  max-width: 500px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 80px rgba(26, 54, 135, 0.18);
  backdrop-filter: blur(18px);
  transform: rotate(2deg);
}
.home-price-card {
  width: min(100%, 470px);
  justify-self: end;
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 30px 80px rgba(26, 54, 135, 0.18);
  transform: rotate(2deg);
}
.home-dashboard-top,
.home-calendar-head,
.home-dashboard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.home-dashboard-top {
  padding: 0 2px 22px;
}
.home-kicker,
.home-card-tag {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.home-dashboard-top strong {
  font:
    800 1.08rem Manrope,
    sans-serif;
}
.home-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e6f8f1;
  color: #16775c;
  font-size: 0.7rem;
  font-weight: 800;
}
.home-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #24b987;
}
.home-calendar {
  padding: 18px;
  border-radius: 18px;
  background: #f4f6fc;
}
.home-calendar-head {
  padding-bottom: 13px;
  color: #64708e;
  font-size: 0.75rem;
  font-weight: 800;
}
.home-calendar-head b {
  color: var(--brand-dark);
}
.home-appointment {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid #e2e6f1;
}
.home-appointment.active {
  margin: 0 -8px;
  padding-right: 8px;
  padding-left: 8px;
  border-radius: 10px;
  background: #e5ebff;
}
.home-time {
  color: #7a86a1;
  font-size: 0.76rem;
  font-weight: 800;
}
.home-appointment strong,
.home-appointment small {
  display: block;
}
.home-appointment strong {
  font-size: 0.82rem;
}
.home-appointment small {
  color: #7b86a1;
  font-size: 0.68rem;
}
.home-appointment em {
  color: #4775d8;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 800;
}
.home-dashboard-foot {
  padding: 20px 2px 0;
  color: #697694;
  font-size: 0.76rem;
  font-weight: 700;
}
.home-dashboard-foot strong {
  color: var(--ink);
  font:
    800 1.1rem Manrope,
    sans-serif;
}
.home-dashboard-foot small {
  color: #1b9c76;
  font:
    700 0.68rem "DM Sans",
    sans-serif;
}
.home-solutions {
  padding-top: 105px;
}
.home-section-heading {
  max-width: 630px;
}
.home-section-heading h2 {
  margin-bottom: 12px;
}
.home-section-heading p {
  margin: 0;
  font-size: 1.05rem;
}
.home-solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.home-solution {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(14, 29, 83, 0.06);
  transition:
    0.25s transform,
    0.25s box-shadow;
}
.home-solution::before {
  position: absolute;
  top: -50px;
  right: -35px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(18, 60, 255, 0.08);
  content: "";
}
.home-solution:hover {
  box-shadow: 0 24px 50px rgba(14, 29, 83, 0.13);
  transform: translateY(-6px);
}
.home-solution-b::before {
  background: rgba(38, 177, 145, 0.12);
}
.home-solution-c::before {
  background: rgba(241, 168, 65, 0.14);
}
.home-solution-d::before {
  background: rgba(231, 92, 125, 0.12);
}
.home-card-number {
  position: relative;
  z-index: 1;
  color: var(--brand);
  font:
    800 1.9rem Manrope,
    sans-serif;
}
.home-card-tag {
  margin-top: 34px;
  color: #7180a2;
}
.home-solution h3 {
  max-width: 240px;
  margin-bottom: 10px;
}
.home-solution p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}
.home-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
}
.home-card-link b {
  font-size: 1.2rem;
}
.home-strip {
  padding: 55px 0 85px;
}
.home-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 44px 50px;
  border-radius: 24px;
  background: var(--dark);
  color: #fff;
}
.home-strip .eyebrow {
  margin-bottom: 8px;
  color: #91a8ff;
}
.home-strip h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

@media (max-width: 900px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .home-hero-copy {
    max-width: 720px;
  }
  .home-price-card {
    justify-self: center;
  }
  .home-solution-grid {
    grid-template-columns: 1fr;
  }
  .home-solution {
    min-height: 260px;
  }
}
@media (max-width: 600px) {
  .home-header-note {
    display: none;
  }
  .home-hero {
    padding: 65px 0 75px;
  }
  .home-hero h1 {
    font-size: 3.7rem;
  }
  .home-lead {
    font-size: 1.05rem;
  }
  .home-proof {
    display: grid;
    gap: 10px;
  }
  .home-price-card {
    padding: 16px;
    transform: none;
  }
  .home-calendar {
    padding: 12px;
  }
  .home-appointment {
    grid-template-columns: 43px 1fr;
  }
  .home-appointment em {
    grid-column: 2;
  }
  .home-strip-inner {
    display: block;
    padding: 30px 25px;
  }
  .home-strip .btn {
    margin-top: 25px;
  }
}
.floating-whatsapp {
  background: #123cff;
  box-shadow: 0 14px 30px rgba(14, 29, 83, 0.2);
}
.modal {
  background: rgba(7, 19, 63, 0.58);
}
