:root {
  --bg: #f5f4ee;
  --surface: #fffdf8;
  --surface-alt: #e9f4f1;
  --ink: #182229;
  --muted: #5d6a72;
  --brand: #0f766e;
  --brand-strong: #0b5d57;
  --accent: #f59e0b;
  --line: rgba(24, 34, 41, 0.08);
  --shadow: 0 20px 50px rgba(18, 39, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 30%),
    linear-gradient(180deg, #f4efe5 0%, #f5f4ee 38%, #fbfaf7 100%);
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

p {
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-nav {
  background: rgba(24, 34, 41, 0.68);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-badge {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-badge-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 600;
  margin-left: 0.25rem;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff !important;
}

.nav-toggle {
  border-color: rgba(255, 255, 255, 0.16);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.85rem 1.45rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand), #159a8f);
  color: #fff;
  border: 0;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.25);
}

.btn-brand:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  margin-top: -1px;
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.18), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(21, 154, 143, 0.22), transparent 26%),
    linear-gradient(135deg, #132128 0%, #18363a 45%, #225a56 100%);
  color: #fff;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
}

.hero-orb-a {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35), rgba(245, 158, 11, 0));
  top: -100px;
  right: -80px;
}

.hero-orb-b {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(73, 221, 211, 0.25), rgba(73, 221, 211, 0));
  bottom: -120px;
  left: -80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f7d48e;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  opacity: 0.8;
}

.eyebrow-dark {
  color: var(--brand);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.95;
  max-width: 12ch;
}

.hero-copy,
.section-copy {
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 62ch;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 1.4rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.metric-card {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
}

.metric-card span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin-top: 0.3rem;
}

.hero-panel {
  background: rgba(248, 248, 243, 0.96);
  color: var(--ink);
  border-radius: 28px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.hero-panel-head {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.hero-panel-head span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d5d9dd;
}

.hero-panel-body {
  display: grid;
  gap: 1rem;
}

.stack-card {
  border-radius: 24px;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid rgba(24, 34, 41, 0.07);
}

.stack-card-primary {
  background: linear-gradient(135deg, #15353a, #225a56);
  color: #fff;
}

.stack-card small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin-bottom: 0.35rem;
  opacity: 0.8;
}

.stack-card h3,
.stack-card h4 {
  margin-bottom: 0.45rem;
}

.stack-card p {
  margin-bottom: 0;
}

.stack-card-primary p {
  color: rgba(255, 255, 255, 0.78);
}

.flow-list {
  display: grid;
  gap: 0.75rem;
}

.flow-list div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: #eff4f3;
  border-radius: 18px;
  font-weight: 700;
}

.flow-list i {
  color: var(--brand);
  font-size: 1.1rem;
}

.section-block {
  padding: 5.5rem 0;
  scroll-margin-top: 98px;
}

.surface-light {
  background: rgba(255, 255, 255, 0.56);
}

.section-dark {
  background: linear-gradient(180deg, #102025 0%, #162f35 100%);
  color: #fff;
}

.section-dark .section-copy,
.section-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.section-heading.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-top: 0.35rem;
  margin-bottom: 0.8rem;
}

.info-card,
.mini-feature,
.persona-card,
.contact-card,
.cta-band {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.demo-shell,
.pricing-card,
.quote-card,
.result-strip {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-card {
  height: 100%;
  background: var(--surface);
  border-radius: 24px;
  padding: 1.5rem;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #ecf7f5;
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 1rem;
}

.info-card h3,
.persona-card h3,
.mini-feature h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.persona-card {
  border-radius: 30px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.persona-partner {
  background: linear-gradient(135deg, #fff8eb, #fffdf6);
}

.persona-business {
  background: linear-gradient(135deg, #eef8f5, #f9fffd);
}

.persona-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #159a8f);
}

.persona-list {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.persona-list li + li {
  margin-top: 0.7rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mini-feature {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.4rem;
}

.mini-feature i {
  font-size: 1.4rem;
  color: #f5c76b;
}

.mini-feature p {
  margin: 0.7rem 0 0;
}

.demo-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.demo-points div {
  display: grid;
  gap: 0.2rem;
}

.demo-points strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
}

.demo-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: #fffdf9;
  border-radius: 28px;
  overflow: hidden;
}

.demo-sidebar {
  padding: 1.5rem;
  background: linear-gradient(180deg, #173138 0%, #1f4b4d 100%);
  color: #fff;
}

.demo-badge {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.demo-sidebar h3 {
  margin: 1rem 0;
}

.demo-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.demo-sidebar li {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.demo-sidebar li.is-on {
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.demo-stage {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.demo-window {
  padding: 1.25rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff7e3, #ffffff);
}

.demo-window small {
  display: block;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.demo-grid article {
  padding: 1rem;
  border-radius: 20px;
  background: #f6f4ed;
}

.demo-grid span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
}

.demo-grid p,
.demo-chat p {
  margin: 0.35rem 0 0;
}

.demo-chat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: #e9f8f1;
}

.demo-chat i {
  font-size: 1.55rem;
  color: #16a34a;
}

.pricing-card {
  height: 100%;
  background: #fffdf9;
  border-radius: 28px;
  padding: 2rem;
}

.pricing-group {
  margin-top: 2.5rem;
}

.pricing-group + .pricing-group {
  margin-top: 3.5rem;
}

.pricing-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-group-head h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.35rem 0 0.45rem;
}

.pricing-group-head p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.pricing-group-kicker {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #edf6f4;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-group-partner .pricing-group-kicker {
  background: #fff3db;
  color: #b7791f;
}

.pricing-card-featured {
  background: linear-gradient(180deg, #173138 0%, #1c4246 100%);
  color: #fff;
  transform: translateY(-10px);
}

.pricing-card-featured p,
.pricing-card-featured li,
.pricing-card-featured h3 span {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-label {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #edf6f4;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-card-featured .pricing-label {
  background: rgba(255, 255, 255, 0.12);
  color: #f7d48e;
}

.pricing-card h3 {
  font-size: 2.6rem;
  margin: 1rem 0 0.8rem;
}

.pricing-card h3 span {
  font-size: 1rem;
  color: var(--muted);
  margin-left: 0.3rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.7rem;
  display: grid;
  gap: 0.8rem;
}

.pricing-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.btn-outline-brand {
  border: 1px solid rgba(15, 118, 110, 0.28);
  color: var(--brand);
  background: transparent;
}

.btn-outline-brand:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.quote-card {
  height: 100%;
  background: #fffefb;
  border-radius: 24px;
  padding: 1.6rem;
}

.quote-card p {
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card span {
  color: var(--muted);
  margin-top: 0.15rem;
}

.result-strip {
  margin-top: 2rem;
  background: linear-gradient(135deg, #fff6dc, #ffffff);
  border-radius: 28px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.result-strip div {
  display: grid;
  gap: 0.25rem;
}

.result-strip strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
}

.cta-band {
  background: linear-gradient(135deg, #fff5da, #ffffff);
  border-radius: 30px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-card {
  background: #fffdf9;
  border-radius: 28px;
  padding: 2rem;
}

.form-label {
  font-weight: 700;
  color: var(--ink);
}

.form-control {
  border-radius: 18px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(24, 34, 41, 0.12);
  background: #fff;
}

.form-control:focus {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.12);
}

.contact-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.contact-points a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  font-weight: 700;
}

.contact-points i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: #e8f5f3;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 1.9rem;
  box-shadow: 0 18px 30px rgba(34, 197, 94, 0.28);
  z-index: 1030;
}

.site-footer {
  padding: 1.6rem 0;
  background: #162026;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-admin-link {
  color: #f9c86b;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
  font-weight: 700;
}

.footer-admin-link:hover {
  color: #ffd98a;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 78px;
  }

  .hero-panel {
    transform: none;
  }

  .hero-metrics,
  .feature-grid,
  .demo-grid,
  .result-strip {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .demo-shell {
    grid-template-columns: 1fr;
  }

  .pricing-group-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-card-featured {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .section-block {
    padding: 4.2rem 0;
  }

  .hero-title {
    max-width: none;
  }

  .hero-actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 1.65rem;
    right: 16px;
    bottom: 16px;
  }
}
