:root {
  --blue-900: #243057;
  --blue-800: #2d3f6e;
  --blue-700: #394b7e;
  --blue-100: #e9eef9;
  --coral-600: #f16464;
  --coral-700: #de5252;
  --white: #ffffff;
  --ink-900: #1c2440;
  --ink-700: #475072;
  --ink-500: #6e7693;
  --line: #dce2f0;
  --shadow: 0 16px 42px rgba(36, 48, 87, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink-900);
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 40%, #f6f8fe 100%);
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bree Serif", Georgia, serif;
  color: var(--blue-900);
}

p {
  margin: 0;
}

.container {
  width: min(1140px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 4vw, 6rem) 0;
}

.section-soft {
  background:
    radial-gradient(120% 180% at 5% 0%, rgba(57, 75, 126, 0.07), transparent 60%),
    radial-gradient(100% 120% at 100% 100%, rgba(241, 100, 100, 0.06), transparent 60%),
    #fdfdff;
}

.skip-link {
  position: fixed;
  left: -999px;
  top: 0;
  background: var(--blue-900);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(57, 75, 126, 0.08);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand img {
  height: clamp(34px, 5vw, 42px);
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.96rem;
  color: var(--ink-700);
}

.nav a {
  text-decoration: none;
  font-weight: 700;
}

.nav a:hover {
  color: var(--blue-700);
}

.nav-cta {
  color: #fff;
  background: var(--coral-600);
  padding: 0.62rem 1rem;
  border-radius: 999px;
}

.nav-cta:hover {
  color: #fff;
  background: var(--coral-700);
}

.hero {
  padding-top: clamp(2.8rem, 6vw, 5.2rem);
  background:
    radial-gradient(80% 80% at 88% 15%, rgba(241, 100, 100, 0.16), transparent 62%),
    radial-gradient(70% 100% at 0% 100%, rgba(57, 75, 126, 0.12), transparent 64%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: start;
}

.eyebrow {
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--coral-600);
}

h1 {
  font-size: clamp(2rem, 3.9vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  line-height: 1.62;
  color: var(--ink-700);
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1.45rem 0 1.6rem;
  display: grid;
  gap: 0.75rem;
}

.hero-benefits li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--ink-700);
  font-weight: 700;
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -0.08rem;
  width: 1.15rem;
  height: 1.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(57, 75, 126, 0.11);
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.92rem 1.3rem;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--coral-600);
  color: #fff;
  box-shadow: 0 12px 24px rgba(241, 100, 100, 0.22);
}

.btn-primary:hover {
  background: var(--coral-700);
}

.btn-ghost {
  border: 1px solid var(--blue-700);
  color: var(--blue-700);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(57, 75, 126, 0.08);
}

.btn-ghost.light {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-ghost.light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-block {
  width: 100%;
}

.hero-note {
  color: var(--ink-500);
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-photo-wrap {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-700));
  border-radius: var(--radius-lg);
  min-height: 420px;
  padding: 1.6rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(241, 100, 100, 0.2);
  top: -180px;
  right: -120px;
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  bottom: -180px;
  left: -80px;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: min(440px, 92%);
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}

.hero-chip {
  position: absolute;
  bottom: 1.3rem;
  right: 1.3rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.93);
  color: var(--blue-900);
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.quick-form {
  margin-top: -2.3rem;
  margin-inline: auto;
  width: min(96%, 500px);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.quick-form h2 {
  font-size: 1.24rem;
  margin-bottom: 0.22rem;
}

.quick-form > p {
  color: var(--ink-700);
  margin-bottom: 0.85rem;
}

.field-row {
  margin-bottom: 0.82rem;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--blue-900);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  font: inherit;
  padding: 0.78rem 0.85rem;
  color: var(--ink-900);
  background: #fff;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.faq-item button:focus-visible,
.nav a:focus-visible {
  outline: 3px solid rgba(241, 100, 100, 0.35);
  outline-offset: 2px;
}

.microcopy {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  color: var(--ink-500);
}

.form-status {
  min-height: 1.1rem;
  margin-top: 0.45rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue-700);
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--ink-700);
  line-height: 1.65;
}

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

.pain-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 1.25rem;
  box-shadow: 0 10px 20px rgba(36, 48, 87, 0.06);
}

.pain-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.pain-card p {
  color: var(--ink-700);
  line-height: 1.55;
}

.manifesto {
  background:
    linear-gradient(136deg, rgba(36, 48, 87, 0.96), rgba(57, 75, 126, 0.96)),
    url("assets/img/proof-team.jpg") center/cover;
  color: #fff;
}

.manifesto h2,
.manifesto blockquote {
  color: #fff;
}

.manifesto p {
  max-width: 800px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.manifesto .eyebrow {
  color: #ffd8d8;
}

.manifesto blockquote {
  margin: 1.2rem 0 0;
  padding: 0.95rem 1.1rem;
  border-left: 4px solid var(--coral-600);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.05rem;
}

.segment-grid {
  display: grid;
  gap: 1rem;
}

.segment-card {
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(36, 48, 87, 0.09);
}

.segment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 270px;
}

.segment-content {
  padding: 1.25rem 1.2rem;
}

.segment-content h3 {
  font-size: 1.36rem;
}

.segment-subtitle {
  margin: 0.45rem 0 0.72rem;
  color: var(--coral-600);
  font-weight: 800;
}

.segment-content p {
  color: var(--ink-700);
  line-height: 1.56;
}

.segment-content ul {
  margin: 0.85rem 0 1rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.segment-content li {
  color: var(--ink-700);
  font-weight: 700;
}

.text-link {
  color: var(--blue-700);
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.text-link:hover {
  color: var(--coral-600);
}

.steps-layout {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 320px);
  gap: 1.2rem;
  align-items: start;
}

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.78rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem;
}

.step-number {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral-600);
  color: #fff;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 0.24rem;
  font-size: 1.06rem;
}

.step p {
  color: var(--ink-700);
}

.steps-aside {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 0.85rem;
  box-shadow: 0 10px 22px rgba(36, 48, 87, 0.08);
}

.steps-aside img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 0.62rem;
}

.steps-aside p {
  color: var(--ink-700);
  line-height: 1.55;
  font-size: 0.95rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  position: relative;
}

.feature-card::before {
  content: "";
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 50%;
  background: var(--coral-600);
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.feature-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
}

.feature-card p {
  color: var(--ink-700);
  line-height: 1.55;
}

.social-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.social-copy h2 {
  margin-bottom: 1rem;
}

.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 0.8rem;
}

.quote-card p {
  color: var(--ink-700);
  line-height: 1.65;
  margin-bottom: 0.35rem;
}

.quote-card span {
  font-weight: 800;
  color: var(--blue-900);
  font-size: 0.92rem;
}

.social-gallery {
  display: grid;
  gap: 0.8rem;
}

.social-gallery img {
  border-radius: 14px;
  width: 100%;
  min-height: 215px;
  object-fit: cover;
}

.form-section {
  background:
    linear-gradient(180deg, rgba(233, 238, 249, 0.55), rgba(255, 255, 255, 0.95)),
    #fff;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: 1.2rem;
  align-items: start;
}

.form-copy p {
  color: var(--ink-700);
  line-height: 1.65;
}

.trust-list {
  margin: 0.95rem 0 1.05rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.trust-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-700);
  font-weight: 700;
}

.trust-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--coral-600);
  font-size: 1.05rem;
}

.inline-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.inline-contact a {
  text-decoration: none;
  border: 1px solid rgba(57, 75, 126, 0.2);
  border-radius: 999px;
  padding: 0.45rem 0.82rem;
  color: var(--blue-800);
  font-weight: 800;
}

.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.noscript-note {
  margin-top: 0.6rem;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 0.68rem;
}

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

.faq-item button {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 0.95rem 1rem;
  font: inherit;
  font-weight: 800;
  color: var(--blue-900);
  cursor: pointer;
  position: relative;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--coral-600);
  font-weight: 900;
}

.faq-item button[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1rem 1rem;
  color: var(--ink-700);
  line-height: 1.6;
}

.cta-final {
  background:
    radial-gradient(160% 140% at 0% 0%, rgba(241, 100, 100, 0.2), transparent 60%),
    linear-gradient(140deg, var(--blue-900), var(--blue-700));
}

.cta-final h2,
.cta-final p {
  color: #fff;
}

.cta-final p {
  max-width: 840px;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.footer {
  background: #fff;
  border-top: 1px solid rgba(57, 75, 126, 0.12);
  padding: 1.25rem 0 1.4rem;
}

.footer-inner {
  display: grid;
  gap: 0.2rem;
  color: var(--ink-700);
  font-size: 0.93rem;
}

.footer-inner p:first-child {
  font-weight: 900;
  color: var(--blue-900);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  text-decoration: none;
  background: #26d366;
  color: #fff;
  border-radius: 999px;
  padding: 0.64rem 0.86rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  font-weight: 800;
  font-size: 0.9rem;
}

.floating-whatsapp svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (min-width: 1021px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 520px);
    gap: clamp(1.2rem, 2.4vw, 2.4rem);
    align-items: center;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-visual {
    margin-left: auto;
    width: 100%;
  }

  .hero-photo-wrap {
    min-height: 370px;
  }

  .hero-photo {
    width: auto;
    max-width: 88%;
    max-height: 320px;
  }

  .quick-form {
    margin-top: 0.85rem;
    width: 100%;
    max-width: 520px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.72rem;
    align-items: end;
  }

  .quick-form h2,
  .quick-form > p,
  .quick-form .btn,
  .quick-form .microcopy,
  .quick-form .form-status {
    grid-column: 1 / -1;
  }

  .quick-form .field-row {
    margin-bottom: 0;
  }
}

@media (max-width: 1020px) {
  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero-grid,
  .social-layout,
  .form-layout,
  .steps-layout {
    grid-template-columns: 1fr;
  }

  .hero-photo-wrap {
    min-height: 320px;
  }

  .quick-form {
    margin-top: 0.9rem;
    width: 100%;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(1140px, calc(100% - 1.4rem));
  }

  .section {
    padding: 3rem 0;
  }

  .topbar-inner {
    min-height: 70px;
  }

  .nav {
    gap: 0.5rem;
  }

  .nav-cta {
    font-size: 0.83rem;
    padding: 0.54rem 0.84rem;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .segment-card {
    grid-template-columns: 1fr;
  }

  .segment-card img {
    min-height: 210px;
  }

  .pain-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp span {
    display: none;
  }
}

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

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

  .btn {
    transition: none;
  }
}
