:root {
  --forest: #174f2a;
  --forest-900: #0c2c19;
  --forest-700: #23623a;
  --leaf: #8ee000;
  --leaf-strong: #77c900;
  --mint: #dbe9c3;
  --ivory: #f8f6e8;
  --cream: #fffdf2;
  --paper: #eeead8;
  --gray: #8f918f;
  --charcoal: #1f2721;
  --line: rgba(23, 79, 42, 0.16);
  --shadow: 0 24px 70px rgba(16, 46, 25, 0.14);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--leaf), var(--forest));
  box-shadow: 0 4px 18px rgba(142, 224, 0, 0.38);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(1220px, calc(100vw - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  color: var(--forest);
  background: rgba(255, 253, 242, 0.78);
  border: 1px solid rgba(23, 79, 42, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(16, 46, 25, 0.08);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 242, 0.94);
  box-shadow: 0 16px 40px rgba(16, 46, 25, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand-text strong {
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
}

.brand-text span {
  color: var(--gray);
  font-size: 0.75rem;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
}

.nav a {
  padding: 10px 14px;
  border-radius: var(--radius);
  color: rgba(31, 39, 33, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--forest);
  background: rgba(142, 224, 0, 0.12);
  outline: none;
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border-radius: var(--radius);
  color: var(--cream);
  background: var(--forest);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(23, 79, 42, 0.18);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--forest);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 94vh;
  padding: 132px 0 54px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ivory);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media {
  background-image: url("assets/hero-bianca-araujo.png");
  background-size: cover;
  background-position: center right;
  opacity: 0.98;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(250, 249, 232, 0.98) 0%, rgba(250, 249, 232, 0.92) 38%, rgba(250, 249, 232, 0.64) 64%, rgba(250, 249, 232, 0.18) 100%),
    radial-gradient(circle at 24% 24%, rgba(142, 224, 0, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 242, 0.12), rgba(255, 253, 242, 0.86));
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 2px solid rgba(23, 79, 42, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  left: -110px;
  top: -150px;
  width: 320px;
  height: 320px;
  border-width: 3px;
  border-color: rgba(23, 79, 42, 0.62);
  animation: orbitFloat 12s ease-in-out infinite;
}

.hero-orbit-two {
  right: -80px;
  bottom: -110px;
  width: 250px;
  height: 250px;
  border-color: rgba(142, 224, 0, 0.32);
  animation: orbitFloat 15s ease-in-out infinite reverse;
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  color: var(--forest);
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: 4.8rem;
  font-weight: 600;
  text-transform: none;
}

h2 {
  font-size: 3.7rem;
  font-weight: 600;
}

h3 {
  color: var(--forest-900);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(31, 39, 33, 0.82);
  font-size: 1.32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button svg.whatsapp-logo,
.whatsapp-float svg.whatsapp-logo {
  fill: currentColor;
  stroke: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--cream);
  background: var(--forest);
  box-shadow: 0 18px 32px rgba(23, 79, 42, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--forest-900);
}

.button-secondary {
  color: var(--forest);
  background: rgba(255, 253, 242, 0.74);
  border-color: rgba(23, 79, 42, 0.2);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(142, 224, 0, 0.14);
  border-color: rgba(23, 79, 42, 0.3);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: var(--container);
  margin: -18px auto 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.trust-item {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 142px;
  gap: 12px;
  padding: 22px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item:hover {
  background: rgba(142, 224, 0, 0.08);
  transform: translateY(-2px);
}

.trust-item svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item span {
  max-width: 160px;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.25;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0;
}

.section-intro {
  padding-top: 86px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-lead {
  max-width: 690px;
  margin: 20px 0 40px;
  color: rgba(31, 39, 33, 0.72);
  font-size: 1.1rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.solution-card {
  min-height: 288px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(16, 46, 25, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 79, 42, 0.28);
  box-shadow: 0 22px 52px rgba(16, 46, 25, 0.11);
}

.solution-card.featured {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(142, 224, 0, 0.2), transparent 42%),
    var(--forest);
}

.solution-card.featured h3,
.solution-card.featured p {
  color: var(--cream);
}

.solution-card.featured .card-icon {
  background: rgba(255, 253, 242, 0.12);
  border-color: rgba(255, 253, 242, 0.18);
}

.solution-card.featured .card-icon svg {
  stroke: var(--leaf);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  background: rgba(142, 224, 0, 0.13);
  border: 1px solid rgba(23, 79, 42, 0.1);
  border-radius: var(--radius);
}

.card-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card p {
  margin-bottom: 0;
  color: rgba(31, 39, 33, 0.7);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.7fr);
  gap: 64px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(31, 39, 33, 0.72);
  font-size: 1.1rem;
}

.method-panel {
  display: grid;
  gap: 14px;
}

.method-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(16, 46, 25, 0.06);
  transition: transform 180ms ease, border-color 180ms ease;
}

.method-step:hover {
  transform: translateX(4px);
  border-color: rgba(23, 79, 42, 0.28);
}

.method-step span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--forest);
  background: rgba(142, 224, 0, 0.14);
  border-radius: 50%;
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  font-weight: 700;
}

.method-step h3,
.method-step p {
  margin-bottom: 0;
}

.method-step p {
  color: rgba(31, 39, 33, 0.68);
}

.founder-section {
  scroll-margin-top: 112px;
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(238, 234, 216, 0.64), rgba(255, 253, 242, 0.92)),
    var(--paper);
}

.founder-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 0.74fr);
  align-items: center;
  gap: 64px;
  width: var(--container);
  margin: 0 auto;
}

.founder-photo {
  position: relative;
  margin: 0;
}

.founder-photo::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 24px;
  border: 2px solid rgba(23, 79, 42, 0.2);
  border-radius: var(--radius);
}

.founder-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(16, 46, 25, 0.18);
}

.founder-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(31, 39, 33, 0.72);
  font-size: 1.1rem;
}

.founder-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.founder-points span {
  padding: 10px 13px;
  color: var(--forest);
  background: rgba(142, 224, 0, 0.12);
  border: 1px solid rgba(23, 79, 42, 0.16);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.founder-button {
  width: fit-content;
}

.dashboard-section {
  padding: 112px 0;
  background:
    linear-gradient(135deg, rgba(23, 79, 42, 0.96), rgba(12, 44, 25, 0.98)),
    var(--forest-900);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.64fr);
  align-items: center;
  gap: 68px;
  width: var(--container);
  margin: 0 auto;
  color: var(--cream);
}

.dashboard-copy h2,
.dashboard-copy .eyebrow {
  color: var(--cream);
}

.dashboard-copy .eyebrow {
  color: var(--leaf);
}

.dashboard-copy p {
  max-width: 580px;
  color: rgba(255, 253, 242, 0.72);
  font-size: 1.1rem;
}

.dashboard {
  padding: 26px;
  background: rgba(255, 253, 242, 0.08);
  border: 1px solid rgba(255, 253, 242, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
}

.dashboard-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 253, 242, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
}

.dashboard-top strong {
  color: var(--cream);
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  font-size: 3.5rem;
  line-height: 1;
}

.status-pill {
  padding: 8px 12px;
  color: var(--forest-900);
  background: var(--leaf);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  height: 190px;
  padding: 18px;
  margin-bottom: 18px;
  background: rgba(255, 253, 242, 0.08);
  border: 1px solid rgba(255, 253, 242, 0.1);
  border-radius: var(--radius);
}

.chart span {
  height: var(--height);
  min-height: 34px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--leaf), rgba(255, 253, 242, 0.48));
  transform: scaleY(0.24);
  transform-origin: bottom;
  transition: transform 700ms ease;
}

.chart.is-visible span {
  transform: scaleY(1);
}

.chart.is-visible span:nth-child(2) {
  transition-delay: 70ms;
}

.chart.is-visible span:nth-child(3) {
  transition-delay: 140ms;
}

.chart.is-visible span:nth-child(4) {
  transition-delay: 210ms;
}

.chart.is-visible span:nth-child(5) {
  transition-delay: 280ms;
}

.chart.is-visible span:nth-child(6) {
  transition-delay: 350ms;
}

.dashboard-list {
  display: grid;
  gap: 10px;
}

.dashboard-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 253, 242, 0.12);
}

.dashboard-list div:last-child {
  border-bottom: 0;
}

.dashboard-list span {
  color: rgba(255, 253, 242, 0.68);
}

.dashboard-list strong {
  color: var(--cream);
}

.segments-section {
  padding-bottom: 92px;
}

.segments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.segments article {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.segments article:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 79, 42, 0.28);
  box-shadow: 0 18px 42px rgba(16, 46, 25, 0.08);
}

.segments h3 {
  margin-bottom: 14px;
}

.segments p {
  margin-bottom: 0;
  color: rgba(31, 39, 33, 0.68);
}

.profile-finder {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.76fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 42px;
  padding: 30px;
  background: rgba(238, 234, 216, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.profile-copy h3 {
  margin-bottom: 12px;
  color: var(--forest);
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}

.profile-copy p {
  margin-bottom: 0;
  color: rgba(31, 39, 33, 0.7);
}

.profile-tool {
  display: grid;
  gap: 16px;
}

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

.profile-option {
  min-height: 48px;
  padding: 10px 12px;
  color: var(--forest);
  background: rgba(255, 253, 242, 0.82);
  border: 1px solid rgba(23, 79, 42, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.profile-option:hover,
.profile-option:focus-visible,
.profile-option.is-active {
  color: var(--cream);
  background: var(--forest);
  outline: none;
  transform: translateY(-2px);
}

.profile-result {
  min-height: 186px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(16, 46, 25, 0.07);
}

.profile-result.is-changing {
  animation: resultPulse 260ms ease;
}

.profile-result span {
  display: block;
  margin-bottom: 10px;
  color: var(--forest-700);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-result h4 {
  margin: 0 0 12px;
  color: var(--forest-900);
  font-size: 1.32rem;
  line-height: 1.25;
}

.profile-result p {
  margin-bottom: 0;
  color: rgba(31, 39, 33, 0.68);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(340px, 0.76fr);
  gap: 54px;
  align-items: start;
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 96px;
}

.faq-copy h2 {
  max-width: 520px;
}

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

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(16, 46, 25, 0.06);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 66px;
  padding: 18px 22px;
  color: var(--forest-900);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-item button svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.faq-item.is-open button svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 22px 0;
  overflow: hidden;
  color: rgba(31, 39, 33, 0.68);
  transition: padding 220ms ease;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 20px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.7fr);
  gap: 60px;
  width: var(--container);
  margin: 0 auto 96px;
  padding: 74px;
  background:
    linear-gradient(135deg, rgba(142, 224, 0, 0.16), transparent 40%),
    var(--paper);
  border: 1px solid rgba(23, 79, 42, 0.14);
  border-radius: var(--radius);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(31, 39, 33, 0.72);
  font-size: 1.08rem;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-direct a {
  color: var(--forest);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form span {
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 14px;
  color: var(--charcoal);
  background: rgba(255, 253, 242, 0.88);
  border: 1px solid rgba(23, 79, 42, 0.2);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(142, 224, 0, 0.18);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}

.form-status.is-success {
  color: var(--forest);
}

.form-status.is-error {
  color: #9b1c1c;
}

.contact-form .button[disabled] {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px max(20px, calc((100vw - 1160px) / 2));
  color: rgba(255, 253, 242, 0.76);
  background: var(--forest-900);
}

.site-footer .brand-text strong,
.site-footer p,
.site-footer span {
  color: var(--cream);
}

.site-footer .brand-mark {
  background: var(--cream);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer > span {
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--cream);
  background: #1f8f4d;
  border: 1px solid rgba(255, 253, 242, 0.18);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(16, 46, 25, 0.28);
  transition: transform 160ms ease, background 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  background: var(--forest);
  outline: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035) translateX(-10px);
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -10px, 0);
  }
}

@keyframes resultPulse {
  from {
    opacity: 0.55;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav.is-open {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    display: grid;
    justify-items: start;
    gap: 8px;
    padding: 18px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav.is-open a {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(250, 249, 232, 0.98) 0%, rgba(250, 249, 232, 0.86) 58%, rgba(250, 249, 232, 0.4) 100%),
      linear-gradient(180deg, rgba(255, 253, 242, 0.18), rgba(255, 253, 242, 0.94));
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.2rem;
  }

  .section-heading,
  .method-section,
  .founder-shell,
  .dashboard-shell,
  .profile-finder,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-lead {
    margin-left: 0;
  }

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

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .segments {
    grid-template-columns: 1fr;
  }

  .profile-options {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 44px;
  }

  .founder-shell {
    gap: 42px;
  }

  .founder-photo {
    max-width: 520px;
  }

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

@media (max-width: 720px) {
  :root {
    --container: min(1160px, calc(100vw - 28px));
  }

  html {
    scroll-padding-top: 92px;
  }

  .site-header {
    top: 0;
    width: 100%;
    margin-top: 0;
    padding: 10px 14px;
    background: rgba(255, 253, 242, 0.97);
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 10px 28px rgba(16, 46, 25, 0.1);
  }

  .nav.is-open {
    top: 74px;
    right: 12px;
    left: 12px;
  }

  .brand-mark {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text span {
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 104px;
    padding-bottom: 34px;
  }

  .hero-content,
  .section,
  .founder-shell,
  .dashboard-shell,
  .faq-section,
  .contact-section,
  .trust-strip {
    width: var(--container);
    max-width: calc(100vw - 28px);
  }

  .hero-copy,
  .section-lead,
  .profile-copy p,
  .profile-result p,
  .faq-answer p,
  .contact-copy p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-media {
    background-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(250, 249, 232, 0.98) 0%, rgba(250, 249, 232, 0.94) 55%, rgba(250, 249, 232, 0.82) 100%),
      radial-gradient(circle at 20% 18%, rgba(142, 224, 0, 0.18), transparent 30%);
  }

  .hero-orbit-one {
    top: -220px;
    left: -220px;
    opacity: 0.55;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .solutions-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section,
  .founder-section,
  .dashboard-section {
    padding: 76px 0;
  }

  .faq-section {
    gap: 26px;
    padding-bottom: 76px;
  }

  .section-intro {
    padding-top: 88px;
  }

  .solution-card {
    min-height: 232px;
  }

  .method-step {
    grid-template-columns: 1fr;
  }

  .dashboard-shell {
    gap: 36px;
  }

  .dashboard {
    padding: 18px;
  }

  .dashboard-top strong {
    font-size: 2.7rem;
  }

  .chart {
    height: 150px;
    gap: 7px;
    padding: 12px;
  }

  .contact-section {
    margin-bottom: 70px;
    padding: 30px 20px;
  }

  .profile-finder {
    gap: 24px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .profile-copy h3 {
    font-size: 1.65rem;
  }

  .profile-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .profile-option {
    width: auto;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--forest);
    background: rgba(238, 234, 216, 0.72);
  }

  .profile-result {
    min-height: 0;
    padding: 20px;
  }

  .profile-result h4 {
    font-size: 1.16rem;
  }

  .faq-copy h2 {
    max-width: 100%;
    font-size: 2rem;
    overflow-wrap: break-word;
  }

  .faq-item button {
    min-height: 60px;
    padding: 16px 18px;
    font-size: 1rem;
  }

  .founder-photo::before {
    inset: 18px -10px -10px 18px;
  }

  .founder-photo img {
    aspect-ratio: 3 / 4;
    object-position: center 12%;
  }

  .founder-button {
    width: 100%;
  }

  .whatsapp-float {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(1160px, calc(100vw - 32px));
  }

  .site-header {
    padding: 9px 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .brand-text span {
    font-size: 0.64rem;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: 2.12rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 2rem;
  }

  .segments {
    margin-top: 28px;
  }

  .segments article {
    padding: 20px;
  }

  .profile-finder {
    margin-top: 34px;
  }

  .profile-option {
    font-size: 0.94rem;
  }

  .faq-copy h2 {
    font-size: 1.82rem;
  }
}
