:root {
  --ink: #0b1724;
  --ink-soft: #2e4054;
  --muted: #617084;
  --line: #dbe4ee;
  --paper: #f8fbfd;
  --white: #ffffff;
  --navy: #071421;
  --navy-2: #102a43;
  --teal: #0fa6a0;
  --blue: #1f6feb;
  --green: #70c173;
  --amber: #f2b84b;
  --cyan: #47d7ff;
  --grid: rgba(31, 111, 235, 0.08);
  --shadow: 0 20px 60px rgba(10, 29, 48, 0.16);
  --tech-shadow: 0 24px 70px rgba(16, 117, 190, 0.2);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes patternScroll {
  0% {
    transform: translate(-5%, -5%);
  }

  100% {
    transform: translate(5%, 5%);
  }
}

@keyframes reversePatternScroll {
  0% {
    transform: translate(5%, 5%);
  }

  100% {
    transform: translate(-5%, -5%);
  }
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  70% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0.22;
  }
}

@keyframes pulseCta {
  0% {
    box-shadow: 0 14px 30px rgba(31, 111, 235, 0.3), 0 0 0 0 rgba(71, 215, 255, 0.28);
  }

  50% {
    box-shadow: 0 18px 42px rgba(31, 111, 235, 0.42), 0 0 0 8px rgba(71, 215, 255, 0);
  }

  100% {
    box-shadow: 0 14px 30px rgba(31, 111, 235, 0.3), 0 0 0 0 rgba(71, 215, 255, 0);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(31, 111, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 235, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(248, 251, 253, 0.86);
  border-bottom: 1px solid rgba(31, 111, 235, 0.16);
  box-shadow: 0 12px 30px rgba(10, 29, 48, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(160px, 18vw, 232px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.nav-links a {
  transition: color 180ms ease, background 180ms ease;
}

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

.nav-cta {
  padding: 9px 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(31, 111, 235, 0.2);
}

.section,
.hero,
.final-cta {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(rgba(71, 215, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 215, 255, 0.08) 1px, transparent 1px),
    linear-gradient(120deg, rgba(7, 20, 33, 0.98), rgba(9, 32, 55, 0.94)),
    linear-gradient(135deg, rgba(15, 166, 160, 0.24), rgba(31, 111, 235, 0.14));
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 64px);
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-animation {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.line-wrapper {
  position: absolute;
  width: min(42vw, 620px);
  height: min(34vw, 420px);
  opacity: 0.7;
  filter: drop-shadow(0 0 12px rgba(71, 215, 255, 0.36));
}

.line-wrapper-a {
  top: 9%;
  right: -5%;
}

.line-wrapper-b {
  bottom: 7%;
  left: -6%;
  transform: rotate(180deg);
}

.animation-line {
  fill: none;
  stroke: rgba(71, 215, 255, 0.72);
  stroke-width: 2;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawLine 4.6s ease-in-out 0.35s infinite alternate;
}

.line-wrapper-b .animation-line {
  stroke: rgba(15, 166, 160, 0.72);
  animation-delay: 1.1s;
}

.hero-pattern {
  position: absolute;
  width: 200%;
  height: 200%;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 12px,
      rgba(71, 215, 255, 0.06) 12px,
      rgba(71, 215, 255, 0.06) 22px
    );
  opacity: 0.48;
}

.hero-pattern-a {
  top: -70%;
  left: -74%;
  animation: patternScroll 26s linear infinite alternate;
}

.hero-pattern-b {
  right: -78%;
  bottom: -72%;
  animation: reversePatternScroll 32s linear infinite alternate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(71, 215, 255, 0.14) 38.2% 38.7%, transparent 39%),
    linear-gradient(150deg, transparent 0 58%, rgba(15, 166, 160, 0.16) 58.2% 58.6%, transparent 59%),
    radial-gradient(ellipse at 82% 54%, rgba(31, 111, 235, 0.22), transparent 34%);
}

.hero::after {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 24px;
  z-index: -1;
  width: min(44vw, 620px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(71, 215, 255, 0.6), transparent);
  box-shadow:
    0 -92px 0 rgba(71, 215, 255, 0.16),
    0 -184px 0 rgba(15, 166, 160, 0.12);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: heroFadeIn 900ms ease-out forwards;
}

.hero-visual {
  animation-delay: 180ms;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(2.8rem, 6.2vw, 6.2rem);
}

.hero-subtitle {
  max-width: 720px;
  margin: 26px 0 0;
  color: #d9e6f2;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-support {
  max-width: 680px;
  margin: 18px 0 0;
  color: #a9bed3;
  font-size: 1rem;
}

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

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #1457d9, #0fa6a0 72%, #42d6ff);
  box-shadow: 0 14px 30px rgba(31, 111, 235, 0.3), 0 0 0 1px rgba(71, 215, 255, 0.18) inset;
}

.hero .button.primary {
  animation: pulseCta 2.8s ease-in-out 1.1s infinite;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(71, 215, 255, 0.34);
  background: rgba(7, 20, 33, 0.36);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.button.outline {
  color: var(--ink);
  border-color: rgba(31, 111, 235, 0.22);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(31, 111, 235, 0.25), rgba(15, 166, 160, 0.26)) border-box;
}

.button.full {
  width: 100%;
}

.hero-visual {
  padding: clamp(8px, 1.4vw, 16px);
  border: 1px solid rgba(71, 215, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(71, 215, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 215, 255, 0.07) 1px, transparent 1px),
    rgba(255, 255, 255, 0.08);
  background-size: 24px 24px;
  box-shadow: var(--tech-shadow), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 2;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.75;
}

.hero-visual::before {
  top: 12px;
  right: 18px;
  left: 18px;
}

.hero-visual::after {
  right: 18px;
  bottom: 12px;
  left: 18px;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  background: #f6fbff;
  box-shadow: 0 18px 52px rgba(1, 15, 28, 0.18);
}

.section {
  background:
    linear-gradient(rgba(31, 111, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 235, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.section:nth-of-type(even):not(.section-dark) {
  background:
    linear-gradient(135deg, rgba(15, 166, 160, 0.035), transparent 32%),
    var(--white);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section h2,
.final-cta h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}

.section h2::after,
.final-cta h2::after {
  display: block;
  width: 86px;
  height: 3px;
  margin-top: 16px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--cyan));
  border-radius: 3px;
}

.section-heading:not(.left) h2::after {
  margin-right: auto;
  margin-left: auto;
}

.section-heading p,
.split p,
.about p,
.associations p,
.proof p,
.final-cta p {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.pain-grid,
.offer-grid,
.use-grid,
.benefit-grid,
.method-grid {
  display: grid;
  gap: 14px;
}

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

.problem-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.problem-intro h2 {
  max-width: 720px;
}

.pain-quote {
  margin: 0;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  border: 1px solid rgba(31, 111, 235, 0.18);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(71, 215, 255, 0.12), rgba(15, 166, 160, 0.08)),
    var(--white);
  box-shadow: 0 18px 46px rgba(10, 29, 48, 0.08);
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.28;
}

.research-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto 24px;
  padding: clamp(22px, 4vw, 36px);
  color: var(--white);
  border: 1px solid rgba(71, 215, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(71, 215, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 215, 255, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy), #0d2844 58%, #0a4c62);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: var(--tech-shadow);
}

.research-number {
  display: block;
  color: var(--cyan);
  font-size: clamp(4px, 8vw, 92px);
  font-weight: 900;
  line-height: 0.92;
  text-shadow: 0 0 28px rgba(71, 215, 255, 0.38);
}

.research-callout strong {
  display: block;
  max-width: 760px;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.15;
}

.research-callout p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #d0deeb;
}

.research-callout a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pain-item,
.offer-card,
.use-grid article,
.method-grid article,
.faq-list details {
  border: 1px solid rgba(31, 111, 235, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 111, 235, 0.035), rgba(15, 166, 160, 0.025)),
    var(--white);
  box-shadow: 0 12px 30px rgba(10, 29, 48, 0.055);
}

.pain-item,
.offer-card,
.use-grid article,
.method-grid article {
  position: relative;
  overflow: hidden;
}

.pain-item::after,
.offer-card::after,
.use-grid article::after,
.method-grid article::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(71, 215, 255, 0.75), transparent);
  opacity: 0.65;
}

.pain-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 116px;
  padding: 18px;
}

.pain-item p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background:
    linear-gradient(rgba(15, 166, 160, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 166, 160, 0.12) 1px, transparent 1px),
    #e8f5f4;
  background-size: 10px 10px;
}

.icon::before,
.icon::after {
  position: absolute;
  content: "";
}

.icon.whatsapp::before,
.icon.lead::before,
.icon.docs::before,
.icon.files::before,
.icon.key-person::before,
.icon.start::before {
  inset: 11px;
  border: 2px solid var(--teal);
  border-radius: 5px;
}

.icon.lead {
  background: #edf3ff;
}

.icon.lead::before {
  border-color: var(--blue);
  border-radius: 50%;
}

.icon.docs,
.icon.files {
  background: #fff7e6;
}

.icon.docs::before,
.icon.files::before {
  border-color: var(--amber);
}

.icon.key-person,
.icon.start {
  background: #ecf8ee;
}

.icon.key-person::before,
.icon.start::before {
  border-color: var(--green);
}

.section-note {
  max-width: 860px;
  margin: 28px auto 0;
  padding: 18px 22px;
  color: var(--ink-soft);
  border: 1px solid rgba(15, 166, 160, 0.2);
  border-left: 4px solid var(--teal);
  background:
    linear-gradient(90deg, rgba(15, 166, 160, 0.08), transparent 34%),
    var(--white);
  border-radius: var(--radius);
}

.split,
.associations {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.impact-panel {
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(rgba(71, 215, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 215, 255, 0.06) 1px, transparent 1px),
    linear-gradient(140deg, var(--navy), var(--navy-2));
  background-size: 26px 26px, 26px 26px, auto;
  border: 1px solid rgba(71, 215, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--tech-shadow);
}

.impact-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(71, 215, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(1, 15, 28, 0.24);
}

.impact-panel p {
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.16;
}

.panel-label {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.statement {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(31, 111, 235, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 111, 235, 0.08), transparent 44%),
    var(--white);
  box-shadow: 0 14px 35px rgba(10, 29, 48, 0.08);
}

.statement p {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 700;
}

.statement strong {
  display: block;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.2;
}

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

.timeline article {
  position: relative;
  min-height: 190px;
  padding: 22px 16px;
  border: 1px solid rgba(31, 111, 235, 0.16);
  border-top: 4px solid var(--teal);
  background:
    linear-gradient(rgba(31, 111, 235, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 235, 0.045) 1px, transparent 1px),
    var(--white);
  background-size: 20px 20px;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(10, 29, 48, 0.06);
}

.timeline span,
.method-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 7px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(31, 111, 235, 0.24);
}

.timeline h3,
.offer-card h3,
.use-grid h3,
.method-grid h3 {
  margin: 16px 0 8px;
  line-height: 1.15;
}

.timeline p,
.offer-card p,
.offer-card li,
.use-grid p,
.method-grid p,
.faq-list p {
  color: var(--ink-soft);
}

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

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
}

.offer-card.featured {
  border-color: rgba(31, 111, 235, 0.38);
  box-shadow: var(--tech-shadow);
}

.offer-card ul {
  margin: 16px 0 0;
  padding-left: 19px;
}

.offer-card li + li {
  margin-top: 7px;
}

.offer-tag {
  align-self: flex-start;
  margin: 0 0 4px;
  padding: 5px 8px;
  color: var(--navy);
  background: linear-gradient(135deg, #dff8ff, #e8f5f4);
  border: 1px solid rgba(71, 215, 255, 0.38);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  display: block;
  margin: auto 0 16px;
  padding-top: 24px;
  font-size: 1.15rem;
}

.price.muted {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

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

.use-grid article {
  min-height: 188px;
  padding: 22px;
  border-top: 4px solid var(--blue);
}

.audience {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.sector-list,
.benefit-grid,
.demo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sector-list span,
.benefit-grid span,
.demo-strip label {
  padding: 10px 12px;
  border: 1px solid rgba(31, 111, 235, 0.16);
  border-radius: 7px;
  color: var(--ink-soft);
  background:
    linear-gradient(135deg, rgba(31, 111, 235, 0.05), rgba(15, 166, 160, 0.04)),
    var(--white);
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(10, 29, 48, 0.045);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.demo-strip label:hover {
  color: var(--blue);
  border-color: rgba(71, 215, 255, 0.46);
  transform: translateY(-1px);
}

.section-soft {
  background:
    linear-gradient(rgba(15, 166, 160, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 235, 0.07) 1px, transparent 1px),
    #eef6f8;
  background-size: 38px 38px;
}

.benefit-grid {
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.associations {
  background: var(--white);
}

.association-visual {
  min-height: 390px;
  padding: 28px;
  background:
    linear-gradient(rgba(31, 111, 235, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 166, 160, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(31, 111, 235, 0.14), rgba(15, 166, 160, 0.18)),
    linear-gradient(160deg, #ffffff, #e8f5f4);
  background-size: 28px 28px, 28px 28px, auto, auto;
  border: 1px solid rgba(31, 111, 235, 0.18);
  border-radius: var(--radius);
}

.event-board {
  display: grid;
  min-height: 330px;
  align-content: end;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 20, 33, 0.05), rgba(7, 20, 33, 0.86)),
    repeating-linear-gradient(90deg, rgba(71, 215, 255, 0.13) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(0deg, rgba(15, 166, 160, 0.08) 0 1px, transparent 1px 48px),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: var(--radius);
}

.event-board span {
  display: block;
  width: 58px;
  height: 5px;
  margin-bottom: 18px;
  background: var(--green);
  border-radius: 4px;
}

.event-board strong {
  font-size: 1.55rem;
  line-height: 1.15;
}

.event-board p {
  margin: 10px 0 0;
  color: #c3d4e4;
}

.check-list {
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
}

.check-list li + li {
  margin-top: 10px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

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

.method-grid article {
  padding: 22px;
}

.proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background:
    linear-gradient(rgba(31, 111, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 235, 0.035) 1px, transparent 1px),
    var(--white);
  background-size: 40px 40px;
}

.proof-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.proof-content {
  min-width: 0;
}

.proof-visuals {
  position: relative;
  min-height: clamp(440px, 42vw, 620px);
}

.proof-panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(71, 215, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(71, 215, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 215, 255, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.82);
  background-size: 24px 24px;
  box-shadow: var(--tech-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.proof-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(31, 111, 235, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(1, 15, 28, 0.18);
}

.proof-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.proof-panel p {
  margin: 0;
  color: var(--ink-soft);
}

#proof-diagnostics:checked ~ .proof-visuals .proof-panel-diagnostics,
#proof-agents:checked ~ .proof-visuals .proof-panel-agents,
#proof-flows:checked ~ .proof-visuals .proof-panel-flows,
#proof-automations:checked ~ .proof-visuals .proof-panel-automations,
#proof-workshops:checked ~ .proof-visuals .proof-panel-workshops {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#proof-diagnostics:checked ~ .proof-content label[for="proof-diagnostics"],
#proof-agents:checked ~ .proof-content label[for="proof-agents"],
#proof-flows:checked ~ .proof-content label[for="proof-flows"],
#proof-automations:checked ~ .proof-content label[for="proof-automations"],
#proof-workshops:checked ~ .proof-content label[for="proof-workshops"] {
  color: var(--white);
  border-color: rgba(71, 215, 255, 0.42);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 28px rgba(31, 111, 235, 0.22);
}

.founder {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background:
    linear-gradient(rgba(31, 111, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 235, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(15, 166, 160, 0.05), transparent 40%),
    var(--paper);
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.founder-photo {
  position: relative;
  padding: clamp(8px, 1.3vw, 16px);
  border: 1px solid rgba(71, 215, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(71, 215, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 215, 255, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.78);
  background-size: 24px 24px;
  box-shadow: var(--tech-shadow);
}

.founder-photo::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.75;
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.founder-content h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.02;
}

.founder-content h2::after {
  display: block;
  width: 86px;
  height: 3px;
  margin-top: 16px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--cyan));
  border-radius: 3px;
}

.founder-content p {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.founder-content strong {
  color: var(--ink);
}

.founder-mission {
  padding: 18px 20px;
  border: 1px solid rgba(15, 166, 160, 0.2);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(15, 166, 160, 0.08), transparent 34%),
    var(--white);
  box-shadow: 0 12px 30px rgba(10, 29, 48, 0.055);
}

.small-note {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 10px;
}

.faq-list details {
  padding: 18px 20px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(15, 166, 160, 0.38);
  box-shadow: 0 16px 42px rgba(10, 29, 48, 0.08);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(71, 215, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 215, 255, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(7, 20, 33, 0.97), rgba(16, 42, 67, 0.95)),
    linear-gradient(90deg, rgba(112, 193, 115, 0.18), rgba(31, 111, 235, 0.16));
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.final-cta p {
  max-width: 760px;
  color: #d0deeb;
}

.final-actions {
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #c8d5e2;
  background: var(--navy);
  font-size: 0.92rem;
}

.site-footer img {
  width: 214px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: clamp(12px, 3vw, 32px);
}

.contact-modal.is-open {
  display: grid;
  place-items: center;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 33, 0.78);
  backdrop-filter: blur(10px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  padding: clamp(20px, 4vw, 40px);
  border: 1px solid rgba(71, 215, 255, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(31, 111, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 235, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  box-shadow: 0 34px 90px rgba(1, 15, 28, 0.42);
}

.contact-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(71, 215, 255, 0.34);
  border-radius: 7px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.contact-header {
  max-width: 820px;
  margin-bottom: 24px;
}

.contact-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.contact-header p {
  color: var(--ink-soft);
}

.contact-type-badge {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin: 8px 0 0;
  padding: 9px 11px;
  color: var(--ink-soft);
  border: 1px solid rgba(71, 215, 255, 0.28);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-type-badge strong {
  color: var(--blue);
}

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

.form-section {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(31, 111, 235, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 111, 235, 0.04), rgba(15, 166, 160, 0.035)),
    var(--white);
  box-shadow: 0 12px 30px rgba(10, 29, 48, 0.055);
}

.form-section h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.12rem;
}

.form-grid,
.form-two {
  display: grid;
  gap: 14px;
}

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

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

.contact-form label,
.contact-form fieldset {
  min-width: 0;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(31, 111, 235, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form legend {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 800;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice {
  display: inline-flex !important;
  gap: 8px !important;
  align-items: center;
  padding: 8px 10px;
  color: var(--ink-soft) !important;
  border: 1px solid rgba(31, 111, 235, 0.16);
  border-radius: 7px;
  background: rgba(248, 251, 253, 0.92);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700 !important;
}

.choice input {
  width: auto;
  min-height: auto;
  accent-color: var(--teal);
}

.form-hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-hint.is-warning {
  color: #b42318;
}

.lgpd-consent {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px !important;
  align-items: start;
  padding: 16px 18px;
  color: var(--ink-soft) !important;
  border: 1px solid rgba(15, 166, 160, 0.22);
  border-radius: var(--radius);
  background: rgba(232, 245, 244, 0.72);
  font-weight: 700 !important;
}

.lgpd-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .hero,
  .split,
  .about,
  .associations,
  .audience,
  .proof,
  .founder,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 186px;
    height: 64px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-dialog {
    max-height: 94vh;
  }

  .form-grid,
  .form-two {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .offer-grid,
  .use-grid,
  .method-grid,
  .timeline,
  .pain-grid,
  .problem-intro {
    grid-template-columns: 1fr;
  }

  .pain-item {
    min-height: auto;
  }

  .proof-visuals {
    min-height: 470px;
  }

  .research-callout {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-content,
  .hero-visual {
    opacity: 1;
    transform: none;
  }
}
