:root {
  color-scheme: light;
  --ink: #13201b;
  --muted: #65746d;
  --line: #dbe5df;
  --white: #ffffff;
  --green: #1e7d56;
  --green-dark: #10583b;
  --mint: #d8f4dc;
  --yellow: #f6c95b;
  --blue: #315c96;
  --shadow: 0 24px 70px rgba(23, 43, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 10%, rgba(246, 201, 91, 0.28), transparent 28rem),
    linear-gradient(180deg, #f4fbef 0%, #ffffff 44%, #f6faf7 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(219, 229, 223, 0.8);
  background: rgba(248, 251, 245, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.hero-stats,
.product-visual,
.slot-list,
.contact-actions,
.trust-strip {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.65rem;
  font-size: 1.05rem;
  font-weight: 850;
}

.brand small {
  display: block;
  max-width: 15rem;
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.65rem;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 22px rgba(30, 125, 86, 0.25);
}

.nav-links {
  gap: clamp(0.8rem, 2.2vw, 1.6rem);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  border-radius: 0.55rem;
  font-weight: 850;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-cta,
.primary-action {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(30, 125, 86, 0.24);
}

.nav-cta:hover,
.primary-action:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 30px rgba(30, 125, 86, 0.3);
  transform: translateY(-2px);
}

.nav-cta {
  padding: 0 1.05rem;
  font-size: 0.92rem;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(21rem, 0.98fr);
  gap: clamp(2rem, 7vw, 6rem);
  min-height: calc(100vh - 4.5rem);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem) 3.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.35rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 42rem;
  color: #40514a;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.62;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0;
}

.primary-action,
.secondary-action {
  min-width: 13rem;
  padding: 0 1.25rem;
}

.secondary-action {
  border: 1px solid rgba(30, 125, 86, 0.22);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.78);
}

.secondary-action:hover {
  border-color: rgba(30, 125, 86, 0.42);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(23, 43, 34, 0.1);
  transform: translateY(-2px);
}

.hero-stats {
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 2.4rem 0 0;
}

.hero-stats div {
  min-width: 9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.72);
}

.hero-stats dt {
  font-size: 1.2rem;
  font-weight: 950;
}

.hero-stats dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.product-visual {
  position: relative;
  justify-content: center;
  min-height: 34rem;
}

.whatsapp-accent {
  position: absolute;
  top: 1rem;
  left: 0;
  z-index: 1;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(30, 125, 86, 0.18);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(216, 244, 220, 0.94);
  box-shadow: 0 14px 28px rgba(30, 125, 86, 0.16);
  font-size: 0.9rem;
  font-weight: 950;
}

.phone-shell {
  width: min(22rem, 78vw);
  padding: 0.8rem;
  border: 1px solid rgba(19, 32, 27, 0.12);
  border-radius: 2.2rem;
  background: #16231d;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 5.5rem;
  height: 0.45rem;
  margin: 0.45rem auto 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.chat-screen {
  display: grid;
  gap: 0.85rem;
  min-height: 30rem;
  padding: 1.15rem;
  border-radius: 1.55rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
    repeating-linear-gradient(135deg, #e4f0e6 0 8px, #eef7ef 8px 16px);
}

.message {
  max-width: 86%;
  padding: 0.8rem 0.9rem;
  border-radius: 0.8rem;
  font-size: 0.94rem;
  line-height: 1.4;
  box-shadow: 0 8px 18px rgba(21, 45, 35, 0.09);
}

.incoming {
  justify-self: start;
  background: var(--white);
}

.outgoing {
  justify-self: end;
  color: #082f1e;
  background: var(--mint);
}

.selected {
  border: 2px solid rgba(30, 125, 86, 0.28);
}

.slot-list {
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.slot-list button {
  min-height: 2.35rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(30, 125, 86, 0.25);
  border-radius: 0.45rem;
  color: var(--green-dark);
  background: var(--white);
  font: inherit;
  font-weight: 850;
}

.calendar-card {
  position: absolute;
  right: 0;
  bottom: 2.5rem;
  width: min(16rem, 54vw);
  padding: 1.1rem;
  border: 1px solid rgba(49, 92, 150, 0.16);
  border-left: 0.45rem solid var(--blue);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(28, 48, 40, 0.18);
}

.calendar-card h2 {
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.calendar-card p {
  margin-bottom: 0.65rem;
  color: var(--muted);
}

.calendar-card span,
.plan-badge {
  display: inline-flex;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.calendar-card span {
  padding: 0.25rem 0.55rem;
  color: #21450e;
  background: #dff0c4;
}

.calendar-label {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section,
.process-section,
.contact-section,
.site-footer {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.contact-section h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.contact-section p,
.process-list p,
.benefit-list p,
.pricing-grid p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.benefits-section {
  background: rgba(255, 255, 255, 0.55);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  min-height: 10rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 43, 34, 0.06);
}

.benefit-icon {
  display: inline-grid;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.45rem;
  place-items: center;
  border-radius: 0.55rem;
  color: var(--white);
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
}

.benefit-list h3,
.pricing-grid h3 {
  margin-bottom: 0.55rem;
  font-size: 1.22rem;
}

.process-section {
  background: #16231d;
}

.process-section .eyebrow,
.process-section h2,
.process-list h3 {
  color: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 13rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
}

.process-list span {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 2rem;
  place-items: center;
  border-radius: 50%;
  color: #16231d;
  background: var(--yellow);
  font-weight: 950;
}

.process-list p {
  color: rgba(255, 255, 255, 0.76);
}

.testimonial-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-grid figure,
.pricing-grid article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 43, 34, 0.06);
}

.testimonial-avatar {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.2rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 0.86rem;
  font-weight: 950;
}

.testimonial-grid blockquote {
  margin-bottom: 1.4rem;
  color: #273a32;
  font-size: 1.02rem;
  line-height: 1.62;
}

.testimonial-grid figcaption {
  display: grid;
  gap: 0.15rem;
}

.testimonial-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-strip {
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.trust-strip span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(49, 92, 150, 0.16);
  border-radius: 999px;
  color: #23436d;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.pricing-section {
  background: #f7faf8;
}

.pricing-grid article {
  min-height: 13rem;
}

.featured-plan {
  border-color: rgba(30, 125, 86, 0.45);
  box-shadow: 0 18px 44px rgba(30, 125, 86, 0.16);
}

.plan-badge {
  margin-bottom: 1.4rem;
  padding: 0.3rem 0.65rem;
  color: var(--green-dark);
  background: var(--mint);
}

.pricing-grid strong {
  display: block;
  margin-top: 1.2rem;
  font-size: 1.04rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 60rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 850;
}

.faq-list p {
  padding: 0 1.1rem 1rem;
  margin-bottom: 0;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(22, 35, 29, 0.9), rgba(22, 35, 29, 0.9)),
    linear-gradient(135deg, var(--green), var(--blue));
}

.contact-section .eyebrow,
.contact-section h2 {
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-section div {
  max-width: 48rem;
}

.contact-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.contact-section .secondary-action {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer > div {
  max-width: 36rem;
}

.site-footer p {
  margin: 1rem 0 0;
}

.site-footer nav {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  color: var(--muted);
  font-weight: 750;
}

.site-footer nav a:hover {
  color: var(--green-dark);
}

.legal-page {
  max-width: 58rem;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 5vw, 5rem);
}

.legal-page h1 {
  max-width: 10ch;
}

.legal-page article {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.legal-page article h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.legal-page article p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-page article a {
  color: var(--green-dark);
  font-weight: 850;
}

@media (max-width: 1040px) {
  .brand small {
    display: none;
  }
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-visual {
    min-height: 32rem;
  }

  .benefit-list,
  .process-list,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    gap: 1.75rem;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    padding: 2rem 1rem 2.75rem;
  }

  .hero-copy,
  .product-visual {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.85rem, 13.5vw, 3.65rem);
    line-height: 0.96;
  }

  .hero-lede {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .hero-actions,
  .primary-action,
  .secondary-action,
  .contact-actions {
    width: 100%;
  }

  .hero-actions {
    margin: 1.5rem 0;
  }

  .primary-action,
  .secondary-action {
    min-width: 0;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1.55rem;
  }

  .hero-stats div {
    min-width: 0;
    padding: 0.75rem 0.55rem;
  }

  .hero-stats div:last-child {
    grid-column: 1 / -1;
  }

  .hero-stats dt {
    font-size: 1rem;
  }

  .hero-stats dd {
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .product-visual {
    display: grid;
    gap: 0.9rem;
    justify-items: center;
    min-height: auto;
    padding-top: 2.4rem;
  }

  .phone-shell {
    width: min(19.25rem, 92vw);
    padding: 0.65rem;
    border-radius: 1.8rem;
  }

  .phone-top {
    margin-bottom: 0.7rem;
  }

  .chat-screen {
    gap: 0.65rem;
    min-height: 24.5rem;
    padding: 0.85rem;
    border-radius: 1.25rem;
  }

  .message {
    max-width: 92%;
    padding: 0.7rem 0.78rem;
    font-size: 0.84rem;
  }

  .slot-list button {
    min-height: 2.15rem;
    padding: 0 0.56rem;
    font-size: 0.78rem;
  }

  .whatsapp-accent {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .calendar-card {
    position: static;
    width: min(19.25rem, 92vw);
    padding: 0.95rem 1rem;
    justify-self: center;
  }

  .benefit-list,
  .process-list,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .benefit-list li,
  .process-list li,
  .pricing-grid article {
    min-height: auto;
  }

  .benefit-list li {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    flex: 1 1 100%;
  }
}
