:root {
  --bg: #fdfbf6;
  --text: #1c1b2e;
  --muted: #5c5a72;
  --line: rgba(28, 27, 46, 0.1);

  /* paleta vibrante e alegre — não fica só no verde da marca */
  --green: #16a34a;
  --green-strong: #0e7c39;
  --purple: #7c3aed;
  --purple-strong: #6224c9;
  --orange: #f97316;
  --orange-strong: #e2610a;
  --blue: #2563eb;
  --blue-strong: #1d4ed8;
  --pink: #ec4899;
  --pink-strong: #db2777;
  --yellow: #eab308;
  --yellow-strong: #ca8a04;
  --whatsapp: #25d366;
  --whatsapp-strong: #1da851;

  --shadow: 0 24px 60px rgba(28, 27, 46, 0.12);
  --shadow-lg: 0 30px 80px rgba(28, 27, 46, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

/* Material Symbols — configuração padrão dos ícones */
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
  font-size: 1.2em;
  line-height: 1;
  vertical-align: middle;
}

/* blobs coloridos de fundo, dão vida e alegria ao layout */
.blob {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}

.blob--1 {
  top: -180px;
  left: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--orange), transparent 70%);
}

.blob--2 {
  top: 420px;
  right: -220px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  opacity: 0.35;
}

.blob--3 {
  bottom: -200px;
  left: 10%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, var(--blue), transparent 70%);
  opacity: 0.3;
}

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  position: relative;
}

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 40px rgba(28, 27, 46, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__logo {
  height: 34px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

.nav a:hover,
.footer__links a:hover,
.contact-list a:hover {
  color: var(--purple);
}

.nav a.is-active {
  color: var(--purple-strong);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: var(--purple);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--green), #22c55e);
  color: #fff;
  box-shadow: 0 18px 30px rgba(22, 163, 74, 0.24);
}

.button--primary:hover {
  box-shadow: 0 22px 36px rgba(22, 163, 74, 0.3);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.button--secondary {
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-strong);
}

.button--whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), #128c7e);
  color: #fff;
  box-shadow: 0 18px 30px rgba(37, 211, 102, 0.28);
}

.button--whatsapp:hover {
  box-shadow: 0 22px 36px rgba(37, 211, 102, 0.35);
}

.button--whatsapp-light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.button--white {
  background: #fff;
  color: var(--purple-strong);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
}

.button--large {
  min-height: 58px;
  padding: 0 30px;
  font-size: 1.02rem;
}

.button--full {
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  padding: 72px 0 40px;
  align-items: center;
}

.hero__content {
  display: grid;
  gap: 24px;
}

.eyebrow,
.section-tag,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.eyebrow,
.section-tag {
  border: 1px solid rgba(124, 58, 237, 0.18);
  background: rgba(124, 58, 237, 0.08);
  color: var(--purple-strong);
}

.section-tag--purple {
  border-color: rgba(124, 58, 237, 0.2);
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple-strong);
}

.section-tag--blue {
  border-color: rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-strong);
}

.section-tag--orange {
  border-color: rgba(249, 115, 22, 0.22);
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange-strong);
}

.section-tag--green {
  border-color: rgba(22, 163, 74, 0.2);
  background: rgba(22, 163, 74, 0.1);
  color: var(--green-strong);
}

.eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.16);
}

.hero h1,
.section-heading h2,
.cta-banner h2,
.contact-copy h2,
.mobile-section__content h2 {
  margin: 0;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.highlight {
  background: rgba(16, 122, 74, 0.14);
  color: var(--green-strong);
  padding: 0 8px;
  border-radius: 10px;
}

.hero__lead,
.section-heading p,
.cta-banner p,
.contact-copy p,
.mobile-section__content p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-strip__item,
.feature-card,
.timeline-card,
.pricing-card,
.contact-panel,
.hero-frame,
.showcase-photo,
.mobile-frame {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: rgba(28, 27, 46, 0.05);
  font-size: 1.4rem;
}

.trust-strip__item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.trust-strip__item span {
  color: var(--muted);
  line-height: 1.6;
}

.hero__visual {
  position: relative;
  min-height: 460px;
}

.hero-frame {
  position: absolute;
  inset: 20px 0 20px 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0f172a;
}

.hero-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.hero-card--metric {
  top: 0;
  left: 0;
  display: grid;
  gap: 6px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--green), #22c55e);
  color: #fff;
}

.hero-card--metric strong {
  font-family: "Baloo 2", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.hero-card--metric .hero-card__label {
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
}

.hero-card--metric span:last-child {
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-size: 0.9rem;
}

.hero-card--phone {
  right: -20px;
  bottom: -30px;
  width: 150px;
  padding: 8px;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.hero-card--phone img {
  border-radius: 14px;
}

.hero-card--phone:hover {
  transform: translateY(-4px);
}

/* ---------- Affordability highlight ---------- */
.affordability-highlight {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 32px 0 0;
  padding: 28px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(135deg, var(--green) 0%, var(--blue) 58%, var(--purple) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.affordability-highlight::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border: 36px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.affordability-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.affordability-highlight__icon .material-symbols-outlined {
  font-size: 2rem;
}

.affordability-highlight__copy {
  position: relative;
  z-index: 1;
}

.affordability-highlight__copy > span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.affordability-highlight h2 {
  margin: 0;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.1;
}

.affordability-highlight p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.affordability-highlight__price {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 210px;
  padding: 17px 22px;
  border-radius: 22px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 18px 38px rgba(28, 27, 46, 0.2);
}

.affordability-highlight__price span,
.affordability-highlight__price small {
  color: var(--muted);
  font-weight: 700;
}

.affordability-highlight__price strong {
  font-family: "Baloo 2", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  color: var(--green-strong);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 0;
}

.trust-strip__item {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border-top: 4px solid transparent;
}

.trust-strip__item--pink {
  border-top-color: var(--pink);
}

.trust-strip__item--blue {
  border-top-color: var(--blue);
}

.trust-strip__item--yellow {
  border-top-color: var(--yellow);
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0 0;
}

.section-heading {
  max-width: 820px;
  display: grid;
  gap: 18px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2,
.cta-banner h2,
.contact-copy h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
}

.section-heading p {
  margin: 0 auto;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border-top: 5px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card--green {
  border-top-color: var(--green);
}

.feature-card--blue {
  border-top-color: var(--blue);
}

.feature-card--purple {
  border-top-color: var(--purple);
}

.feature-card--orange {
  border-top-color: var(--orange);
}

.feature-card--pink {
  border-top-color: var(--pink);
}

.feature-card--yellow {
  border-top-color: var(--yellow);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(28, 27, 46, 0.05);
  font-size: 1.6rem;
}

.feature-card h3,
.timeline-card h3,
.pricing-card h3 {
  margin: 18px 0 12px;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.32rem;
}

.feature-card p,
.timeline-card p,
.pricing-card p,
.pricing-card strong {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Showcase (fotos) ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.showcase-photo {
  position: relative;
  height: 360px;
  border-radius: 26px;
  overflow: hidden;
  background: #0f172a;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase-photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.showcase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-photo:hover img {
  transform: scale(1.06);
}

.showcase-photo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(15, 23, 42, 0.86);
  color: #fff;
}

.showcase-photo figcaption > .material-symbols-outlined {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.3rem;
}

.showcase-photo figcaption strong {
  display: block;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.02rem;
}

.showcase-photo figcaption small {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ---------- Dark / how it works ---------- */
.section--dark {
  margin-top: 96px;
  padding: 88px 32px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.3), transparent 32%),
    radial-gradient(circle at bottom right, rgba(6, 95, 70, 0.4), transparent 32%),
    linear-gradient(160deg, #0b3d2e, #146c43);
  color: #fff;
}

.section-heading--light h2,
.section-heading--light p,
.section-heading--light .section-tag,
.section-heading--light {
  color: #fff;
}

.section-tag--light {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

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

.timeline-card {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  transition: transform 0.22s ease, background 0.22s ease;
}

.timeline-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
}

.timeline-card h3 {
  color: #fff;
}

.timeline-card p {
  color: rgba(255, 255, 255, 0.8);
}

.timeline-card__step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #22c55e);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
}

/* ---------- Mobile section ---------- */
.mobile-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
  margin-top: 96px;
}

.mobile-section__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
}

.mobile-frame {
  width: 240px;
  border-radius: 34px;
  overflow: hidden;
  background: #0f172a;
}

.mobile-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mobile-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(22, 163, 74, 0.2);
}

.mobile-chip .material-symbols-outlined {
  font-size: 1.15rem;
}

.mobile-chip--1 {
  top: 20px;
  left: 0;
  color: var(--blue-strong);
}

.mobile-chip--2 {
  top: 50%;
  right: -10px;
  color: var(--purple-strong);
}

.mobile-chip--3 {
  bottom: 30px;
  left: 10px;
  color: var(--green-strong);
}

.mobile-section__content {
  display: grid;
  gap: 20px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

.check-list li .material-symbols-outlined {
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.3rem;
}

.mobile-section__content .button {
  width: fit-content;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.pricing-grid--five {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-grid--five .pricing-card {
  flex: 1 1 300px;
  max-width: 340px;
}

.pricing-card {
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr auto;
  align-content: stretch;
  gap: 12px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
}

.pricing-card__pill .material-symbols-outlined {
  font-size: 1rem;
}

.pricing-card__pill--green {
  background: linear-gradient(135deg, var(--green), #22c55e);
}

.pricing-card__pill--purple {
  background: linear-gradient(135deg, var(--purple), #a855f7);
}

.pricing-card__pill--orange {
  background: linear-gradient(135deg, var(--orange), #fb923c);
}

.pricing-card__pill--pink {
  background: linear-gradient(135deg, var(--pink), #f472b6);
}

.pricing-card__pill--blue {
  background: linear-gradient(135deg, var(--blue), #60a5fa);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-card__price strong {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.9rem;
  color: var(--text);
}

.pricing-card__price span {
  color: var(--muted);
  font-weight: 700;
}

.pricing-card__employee-cost {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.07));
}

.pricing-card__employee-cost > span {
  color: var(--blue-strong);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-card__employee-cost strong {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.55rem;
  line-height: 1.15;
  color: var(--text);
}

.pricing-card__employee-cost strong small {
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.76rem;
  color: var(--muted);
}

.pricing-card__employee-cost > small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.pricing-card__employee-cost--best {
  border-color: rgba(22, 163, 74, 0.2);
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.11), rgba(234, 179, 8, 0.1));
}

.pricing-card__employee-cost--best > span {
  color: var(--green-strong);
}

.pricing-card p {
  min-height: 3.4em;
}

.pricing-card__list {
  display: grid;
  gap: 10px;
  margin: 4px 0 8px;
  padding: 0;
  list-style: none;
}

.pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.4;
}

.pricing-card__list .material-symbols-outlined {
  flex-shrink: 0;
  margin-top: 0.08em;
  color: var(--green);
  font-size: 1.2rem;
}

.pricing-card--highlight {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.06), #fff 60%);
  transform: translateY(-12px);
  border: 2px solid rgba(124, 58, 237, 0.24);
}

.pricing-card--highlight:hover {
  transform: translateY(-18px);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  padding: 48px;
  margin-top: 96px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(135deg, var(--green) 0%, var(--blue) 55%, var(--purple) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Contact ---------- */
.section--contact {
  padding-bottom: 96px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
}

.contact-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 48px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.contact-list a {
  font-weight: 700;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  padding: 16px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--whatsapp), #128c7e);
  color: #fff;
  box-shadow: 0 20px 34px rgba(37, 211, 102, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 42px rgba(37, 211, 102, 0.38);
}

.whatsapp-cta__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.whatsapp-cta strong {
  display: block;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.1rem;
}

.whatsapp-cta small {
  color: rgba(255, 255, 255, 0.85);
}

.contact-photo {
  margin: 0;
  min-height: 100%;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- FAQ page ---------- */
.faq-page {
  padding-top: 72px;
  padding-bottom: 110px;
}

.faq-page .section-heading {
  text-align: left;
  margin: 0 0 24px;
}

.faq-page .section-heading p {
  margin: 0;
}

.faq-page .section-heading h1 {
  margin: 0;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2.1rem, 4.8vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.faq-highlight {
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-highlight p,
.faq-item__content p,
.faq-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
}

.faq-item summary::marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  color: var(--purple-strong);
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__content {
  padding: 0 22px 22px;
  display: grid;
  gap: 12px;
}

.faq-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-cta h2 {
  margin: 0 0 10px;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.1;
}

/* ---------- Footer ---------- */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 100px;
  color: var(--muted);
}

.footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-family: "Baloo 2", sans-serif;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}

.footer__links a,
.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-panel {
  transition: box-shadow 0.25s ease;
}

.contact-panel:hover {
  box-shadow: var(--shadow-lg);
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--whatsapp), #128c7e);
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.4);
  animation: pulse 2.4s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@keyframes pulse {
  0% {
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--right {
  transform: translateY(28px) translateX(0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .whatsapp-float {
    animation: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero,
  .contact-panel,
  .cta-banner,
  .mobile-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 26px;
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero-frame {
    inset: 20px 0 20px 0;
  }

  .hero-card--phone {
    right: 4px;
  }

  .feature-grid,
  .timeline,
  .pricing-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-photo {
    height: 300px;
  }

  .cta-banner {
    text-align: left;
  }

  .contact-photo {
    min-height: 260px;
  }

  .mobile-section__visual {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .topbar {
    position: static;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .nav-toggle {
    display: flex;
    order: 2;
  }

  .topbar__actions {
    order: 4;
    width: 100%;
    display: none;
    gap: 10px;
  }

  .topbar.is-open .topbar__actions {
    display: flex;
  }

  .nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 6px;
  }

  .topbar.is-open .nav {
    display: flex;
  }

  .affordability-highlight {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .affordability-highlight__price {
    grid-column: 1 / -1;
    grid-template-columns: auto auto;
    align-items: baseline;
    column-gap: 8px;
    width: 100%;
  }

  .affordability-highlight__price small {
    grid-column: 1 / -1;
  }

  .hero {
    padding-top: 34px;
  }

  .feature-grid,
  .timeline,
  .pricing-grid,
  .trust-strip,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-photo {
    height: 260px;
  }

  .section {
    padding-top: 72px;
  }

  .section--dark {
    margin-top: 72px;
    padding: 56px 20px;
    border-radius: 30px;
  }

  .mobile-section {
    margin-top: 72px;
  }

  .cta-banner,
  .contact-panel {
    padding: 0;
  }

  .cta-banner {
    padding: 30px;
  }

  .contact-copy {
    padding: 30px;
  }

  .faq-page {
    padding-top: 48px;
  }

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

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

  .pricing-card--highlight {
    transform: none;
  }
}

@media (max-width: 560px) {
  .affordability-highlight {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
    text-align: center;
  }

  .affordability-highlight__icon {
    margin: 0 auto;
  }

  .affordability-highlight__price {
    grid-template-columns: 1fr;
    justify-items: center;
    min-width: 0;
  }

  .affordability-highlight__price small {
    grid-column: auto;
  }

  .hero__cta,
  .cta-banner__actions {
    width: 100%;
    display: grid;
  }

  .button,
  .button--large {
    width: 100%;
  }

  .hero h1,
  .section-heading h2,
  .cta-banner h2,
  .contact-copy h2 {
    line-height: 1.08;
  }

  .hero-card--phone {
    width: 110px;
  }

  .mobile-frame {
    width: 190px;
  }

  .whatsapp-cta {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .faq-highlight,
  .faq-cta {
    padding: 20px;
  }

  .faq-item summary {
    padding: 18px;
  }

  .faq-item__content {
    padding: 0 18px 18px;
  }
}
