:root {
  --ink: #102d29;
  --ink-soft: #31514c;
  --green: #19b881;
  --green-dark: #087b5b;
  --lime: #dffc73;
  --cream: #f6f4ec;
  --paper: #fffdf8;
  --line: rgba(16, 45, 41, .13);
  --shadow: 0 24px 70px rgba(16, 45, 41, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 84px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.03em; font-size: 20px; }
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px 11px 11px 3px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 950;
}
.desktop-nav { display: flex; align-items: center; gap: 36px; margin-left: auto; }
.desktop-nav a { color: var(--ink-soft); font-size: 14px; font-weight: 650; }
.desktop-nav a:hover { color: var(--green-dark); }
.button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 43px; padding: 0 18px; border-radius: 11px; font-size: 14px; }
.button-dark { color: white; background: var(--ink); }
.button-primary { background: var(--lime); color: var(--ink); box-shadow: 0 12px 30px rgba(180, 221, 52, .22); }
.button-light { background: white; color: var(--ink); }
.hero {
  position: relative;
  min-height: 690px;
  padding: 74px max(32px, calc((100vw - 1180px) / 2)) 86px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 70px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 100%, rgba(223, 252, 115, .28), transparent 28%),
    linear-gradient(135deg, #f8f7f1 0%, #eeeee5 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  background-image: radial-gradient(rgba(16, 45, 41, .18) .7px, transparent .7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to right, black, transparent 55%);
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 900;
}
.eyebrow span { width: 7px; height: 7px; display: inline-block; margin-right: 7px; border-radius: 50%; background: var(--green); }
.hero h1 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(54px, 6vw, 82px);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 900;
}
.hero h1 em { position: relative; color: var(--green-dark); font-family: Georgia, serif; font-weight: 500; }
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 1%;
  right: -4%;
  bottom: -4px;
  height: 10px;
  border-radius: 50%;
  border-top: 3px solid var(--green);
  transform: rotate(-2deg);
}
.hero-lead { max-width: 590px; margin: 28px 0; color: var(--ink-soft); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.whatsapp-icon {
  width: 25px; height: 25px; display: grid; place-items: center;
  border-radius: 50%; background: var(--ink); color: white; font-size: 14px;
}
.text-link { font-weight: 800; }
.text-link span { color: var(--green-dark); margin-left: 5px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: var(--ink-soft); font-size: 12px; font-weight: 750; }
.hero-notes span::before { content: "✓"; margin-right: 6px; color: var(--green-dark); }
.business-requirement-link {
  width: fit-content;
  margin-top: 20px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(8, 123, 91, .2);
  border-radius: 11px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, .58);
  font-size: 12px;
}
.business-requirement-link b { color: var(--green-dark); }
.business-requirement-link span { margin-left: 5px; color: var(--green-dark); font-weight: 800; }
.hero-visual { min-height: 540px; display: grid; place-items: center; }
.glow { position: absolute; border-radius: 50%; filter: blur(4px); }
.glow-one { width: 430px; height: 430px; background: var(--lime); opacity: .55; }
.glow-two { width: 310px; height: 310px; right: -50px; bottom: 0; background: #b5e9d3; opacity: .8; }
.phone {
  position: relative;
  z-index: 2;
  width: min(370px, 82vw);
  height: 520px;
  overflow: hidden;
  border: 8px solid var(--ink);
  border-radius: 37px;
  background: #e7e4db;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.phone-top { height: 72px; padding: 13px 17px; display: flex; align-items: center; gap: 11px; color: white; background: var(--ink); }
.avatar { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--lime); font-weight: 900; }
.phone-top div:nth-child(2) { display: flex; flex-direction: column; }
.phone-top small { margin-top: 2px; color: #b9d4cd; font-size: 10px; }
.phone-menu { margin-left: auto; letter-spacing: 2px; }
.chat {
  height: 390px;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #ece9e1;
  background-image: radial-gradient(rgba(16,45,41,.07) .8px, transparent .8px);
  background-size: 14px 14px;
}
.message {
  max-width: 82%;
  padding: 11px 13px;
  border-radius: 13px;
  font-size: 12px;
  line-height: 1.45;
  box-shadow: 0 3px 10px rgba(16,45,41,.08);
}
.incoming { align-self: flex-start; border-top-left-radius: 3px; background: white; }
.outgoing { align-self: flex-end; border-top-right-radius: 3px; background: #d9f7c6; }
.message.short { padding-right: 30px; }
.slots { display: flex; gap: 5px; margin-top: 9px; }
.slots span { padding: 5px 7px; border: 1px solid rgba(8,123,91,.3); border-radius: 6px; color: var(--green-dark); font-weight: 800; }
.confirmation { display: flex; flex-direction: column; border-left: 3px solid var(--green); }
.chat-input { height: 51px; margin: 0 10px; padding: 0 8px 0 17px; display: flex; align-items: center; border-radius: 25px; color: #81908d; background: white; font-size: 11px; }
.chat-input b { width: 34px; height: 34px; margin-left: auto; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green-dark); }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; background: white; box-shadow: 0 15px 35px rgba(16,45,41,.16); }
.card-booking { left: -8px; bottom: 95px; gap: 10px; padding: 15px 18px; border-radius: 14px; transform: rotate(-3deg); }
.status-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(25,184,129,.15); }
.card-booking div { display: flex; flex-direction: column; }
.floating-card small { margin-top: 3px; color: #70817d; font-size: 10px; }
.card-time { right: -2px; top: 65px; padding: 14px 18px; border-radius: 14px; flex-direction: column; transform: rotate(5deg); }
.card-time b { font-size: 23px; }
.card-time span { color: var(--ink-soft); font-size: 10px; }
.proof-bar {
  min-height: 82px;
  padding: 20px max(28px, calc((100vw - 1080px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: var(--ink);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 850;
}
.proof-bar i { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); }
.business-requirement {
  padding: 70px max(32px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 72px 1.05fr .95fr;
  gap: 35px;
  align-items: start;
  color: white;
  background: var(--green-dark);
}
.requirement-badge {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px 20px 20px 5px;
  color: var(--ink);
  background: var(--lime);
  font-size: 30px;
  font-weight: 950;
}
.requirement-copy .eyebrow { margin-bottom: 13px; color: var(--lime); }
.requirement-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(30px, 3.1vw, 45px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.requirement-copy > p:last-child { max-width: 670px; margin: 22px 0 0; color: #d1e5e0; line-height: 1.65; }
.requirement-steps { display: grid; gap: 10px; }
.requirement-steps > div {
  padding: 15px 17px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  background: rgba(255,255,255,.07);
}
.requirement-steps span { color: var(--lime); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.requirement-steps strong { font-size: 14px; }
.requirement-steps > p { margin: 5px 0 0; color: #d1e5e0; font-size: 12px; line-height: 1.55; }
.section { padding: 110px max(32px, calc((100vw - 1180px) / 2)); }
.section-heading { max-width: 770px; margin-bottom: 58px; }
.section h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 57px);
  line-height: 1.06;
  letter-spacing: -.05em;
}
.section-heading > p:last-child, .benefit-intro > p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.steps article { position: relative; padding: 35px 45px 18px 0; border-right: 1px solid var(--line); }
.steps article + article { padding-left: 38px; }
.steps article:last-child { border-right: 0; }
.step-number { position: absolute; right: 18px; top: 35px; color: #a7b2ae; font-size: 12px; font-weight: 800; }
.step-icon, .feature-icon {
  width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; color: var(--ink); background: var(--lime); font-size: 20px; font-weight: 900;
}
.steps h3, .feature h3 { margin: 24px 0 10px; font-size: 20px; letter-spacing: -.025em; }
.steps p, .feature p { margin: 0; color: var(--ink-soft); line-height: 1.65; }
.benefits { display: grid; grid-template-columns: .76fr 1.24fr; gap: 75px; color: white; background: var(--ink); }
.eyebrow.light { color: var(--lime); }
.benefit-intro { position: sticky; top: 45px; align-self: start; }
.benefit-intro > p { color: #bcd0cb; margin: 25px 0 32px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.feature { min-height: 270px; padding: 28px; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: #173a35; }
.feature-large { grid-column: span 2; min-height: 330px; background: linear-gradient(135deg, #173a35, #1b453e); }
.feature .feature-icon { background: rgba(223,252,115,.12); color: var(--lime); }
.feature p { color: #bcd0cb; }
.mini-calendar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 25px; }
.mini-calendar div { padding: 12px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(255,255,255,.04); }
.mini-calendar .selected { color: var(--ink); border-color: var(--lime); background: var(--lime); }
.mini-calendar small { opacity: .68; }
.mini-calendar b { margin-top: 4px; font-size: 11px; }
.professions { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; background: var(--cream); }
.profession-list { display: flex; flex-wrap: wrap; gap: 10px; }
.profession-list span { padding: 14px 19px; border: 1px solid var(--line); border-radius: 50px; background: var(--paper); font-size: 14px; font-weight: 750; }
.profession-list span:nth-child(3n+1) { background: var(--lime); }
.final-cta {
  position: relative;
  min-height: 520px;
  padding: 100px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: white;
  background: var(--green-dark);
}
.final-cta h2 { position: relative; z-index: 1; }
.final-cta > p:not(.eyebrow) { position: relative; z-index: 1; color: #d1e5e0; font-size: 18px; }
.final-cta .button { position: relative; z-index: 1; margin-top: 18px; }
.phone-number { position: relative; z-index: 1; margin-top: 15px; color: white; font-weight: 700; opacity: .85; }
.cta-orbit { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.orbit-one { width: 550px; height: 550px; }
.orbit-two { width: 820px; height: 820px; }
footer {
  padding: 60px max(32px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px 45px;
  align-items: center;
  background: #0a211e;
  color: white;
}
footer p { margin: 0; color: #aac1bc; text-align: right; }
footer small { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); color: #78928c; }
.floating-whatsapp {
  position: fixed;
  z-index: 10;
  right: 22px;
  bottom: 22px;
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  border: 4px solid white;
  border-radius: 50%;
  color: white;
  background: var(--green);
  box-shadow: 0 10px 25px rgba(16,45,41,.25);
  font-size: 22px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 35px; padding-top: 55px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { min-height: 560px; }
  .business-requirement { grid-template-columns: 72px 1fr; }
  .requirement-steps { grid-column: 2; }
  .benefits, .professions { grid-template-columns: 1fr; }
  .benefit-intro { position: static; }
}

@media (max-width: 640px) {
  .site-header { width: calc(100% - 28px); height: 72px; }
  .site-header .button { padding: 0 13px; }
  .hero { padding: 48px 18px 65px; }
  .hero h1 { font-size: 50px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { width: 100%; flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .hero-notes { justify-content: center; gap: 11px 17px; }
  .business-requirement-link { flex-wrap: wrap; justify-content: center; }
  .hero-visual { min-height: 510px; }
  .phone { width: 315px; height: 490px; }
  .chat { height: 360px; }
  .card-booking { left: 0; bottom: 55px; }
  .card-time { right: 0; top: 42px; }
  .proof-bar { justify-content: center; gap: 14px; overflow: hidden; }
  .proof-bar span:nth-of-type(n+4), .proof-bar i:nth-of-type(n+4) { display: none; }
  .business-requirement { padding: 58px 20px; grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .requirement-badge { margin: auto; }
  .requirement-steps { grid-column: auto; text-align: left; }
  .section { padding: 78px 20px; }
  .section-heading { margin-bottom: 38px; }
  .steps { grid-template-columns: 1fr; }
  .steps article, .steps article + article { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; }
  .mini-calendar { grid-template-columns: 1fr; }
  .professions { gap: 35px; }
  .final-cta { min-height: 500px; padding-inline: 20px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer p { text-align: center; }
  .footer-brand { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
