:root {
  --bg-soft: #f3f5f8;
  --bg-white: #ffffff;
  --text-main: #1f242d;
  --text-soft: #697486;
  --line: #e6e9ef;
  --purple: #6d4ce7;
  --green: #02b53e;
  --green-soft: #09c64b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background: var(--bg-white);
  line-height: 1.45;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-top: 4px solid #8cd8f5;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-image {
  width: clamp(120px, 24vw, 120px);
  height: auto;
  display: block;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(140deg, #1cca61 0%, #6a42d5 100%);
  transform: rotate(45deg);
}

.logo-text {
  font-size: 2.25rem;
  font-weight: 800;
  color: #62369f;
  letter-spacing: 0.2px;
  text-transform: lowercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
}

.btn-nav {
  padding: 0.62rem 1rem;
  border: 1px solid var(--green);
  border-radius: 10px;
  color: var(--green) !important;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 4px 0;
  border-radius: 4px;
  background: #222;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 75%, #f2ecff 100%);
  padding: 3.4rem 0 2.2rem;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  display: grid;
  gap: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--purple);
}

.hero h2 {
  font-weight: 400;
  margin-top: 0.9rem;
  font-size: clamp(1.3rem, 3.2vw, 3.1rem);
}

.hero p {
  margin: 1.8rem auto 0;
  max-width: 980px;
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  color: #485260;
  line-height: 1.6;
}

.hero p strong {
  color: #2e3640;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  border-radius: 12px;
  min-width: 320px;
  padding: 1.06rem 1.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 20px rgba(1, 151, 59, 0.2);
}

.btn-secondary {
  border: 1px solid var(--green);
  color: var(--green);
  background: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.hero small {
  margin-top: 0.9rem;
  display: block;
  color: #7b8594;
  font-size: 1.03rem;
}

.hero-proof {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.hero-proof div {
  border: 1px solid #d8deea;
  border-radius: 12px;
  padding: 1rem;
  background: #fbfcff;
}

.hero-proof strong {
  display: block;
  font-size: 1.2rem;
  color: #1f2c3a;
}

.hero-proof span {
  display: block;
  margin-top: 0.2rem;
  color: #708093;
  font-size: 0.88rem;
}

.hero-mockup {
  margin: 3.3rem auto 0;
  width: min(1030px, 96%);
  border-radius: 28px 28px 0 0;
  border: 1px solid #dae0ea;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 26px 50px rgba(103, 84, 194, 0.15);
}

.mockup-top {
  height: 72px;
  background: linear-gradient(180deg, #fefefe 0%, #f1f3f7 100%);
  border-bottom: 1px solid #e4e8f0;
}

.mockup-body {
  height: clamp(260px, 36vw, 520px);
  padding: 0.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fc 100%);
}

.mockup-body img,
.mockup-body video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0 0 16px 16px;
}

.modules {
  background: var(--bg-soft);
  padding: 7rem 0 6.2rem;
}

.trustbar {
  background: #f6f8fc;
  border-top: 1px solid #e6ebf4;
  border-bottom: 1px solid #e6ebf4;
}

.trustbar-wrap {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.trustbar-wrap p {
  color: #4c5a6d;
  font-weight: 500;
}

.trust-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.trust-tags span {
  background: #ffffff;
  border: 1px solid #d9e0eb;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.84rem;
  color: #556172;
}

.integration {
  background: var(--bg-soft);
  padding: 1.3rem 0 0;
}

.integration-box {
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 16px;
  padding: 1.35rem;
}

.integration-box h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.integration-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.integration-title svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #1fa0c2;
}

.integration-box p {
  margin-top: 0.55rem;
  color: #5a687a;
}

.aligned-control {
  padding: 5.6rem 0;
  background: #ffffff;
}

.aligned-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
}

.aligned-badge {
  display: inline-block;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: #e8f6fb;
  color: #0a7c95;
  font-weight: 600;
  font-size: 0.86rem;
  margin-bottom: 0.85rem;
}

.aligned-copy h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.12;
  color: #1f2c3a;
}

.aligned-copy p {
  margin-top: 1rem;
  color: #5b6877;
  font-size: 1.05rem;
  line-height: 1.74;
}

.aligned-copy ul {
  margin-top: 1.1rem;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.aligned-copy li {
  position: relative;
  padding-left: 1.25rem;
  color: #3d4b5d;
}

.aligned-copy li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2ab5e1;
  font-weight: 700;
}

.aligned-media {
  border-radius: 20px;
  border: 1px solid #e2e8f2;
  background: #f8fbff;
  box-shadow: 0 20px 44px rgba(31, 76, 128, 0.12);
  padding: 0.85rem;
}

.aligned-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  font-size: clamp(2rem, 4.3vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.5px;
}

.section-title p {
  margin-top: 1.15rem;
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  color: #717b89;
}

.module-grid {
  margin-top: 5.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem 2.8rem;
}

.module {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.module-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 58px;
}

.module-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-content {
  flex: 1;
}

.icon-cyan { background: #2ab5e1; }
.icon-blue { background: #1e79c7; }
.icon-purple { background: #8b4ca0; }
.icon-teal { background: #1ca7b7; }
.icon-green { background: #57c8a4; }
.icon-lime { background: #66c476; }

.module h3 {
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.15;
  color: #333840;
}

.module p {
  margin-top: 1.05rem;
  color: #656f7c;
  font-size: 1.45rem;
  line-height: 1.68;
}

.module a {
  display: inline-block;
  margin-top: 1.35rem;
  color: #343841;
  font-size: 1.45rem;
  text-decoration: none;
  font-weight: 500;
}

.module-btn-cyan {
  border: 1px solid #00a6c7;
  color: #00a6c7 !important;
  background: #e9f8fc;
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.module-btn-cyan:hover {
  background: #d5f1f8;
  transform: translateY(-1px);
}

.module-btn-green {
  border: 1px solid #089c6a;
  color: #089c6a !important;
  background: #e8f8f1;
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.module-btn-green:hover {
  background: #d7f1e6;
  transform: translateY(-1px);
}

.module-btn-lime {
  border: 1px solid #247b0c;
  color: #247b0c !important;
  background: #ecf8e7;
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.module-btn-lime:hover {
  background: #def2d6;
  transform: translateY(-1px);
}

.impact {
  background: var(--bg-soft);
  padding: 0 0 6rem;
}

.impact-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.impact-badge {
  display: inline-block;
  background: #2f3135;
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 1.4rem;
  font-weight: 600;
}

.impact-head h2 {
  margin-top: 1.2rem;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.15;
  font-weight: 500;
}

.impact-head h2 span {
  color: #1eae6d;
}

.impact-head p {
  margin-top: 1.2rem;
  color: #2d333d;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
}

.impact-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.impact-card {
  border: 1px solid #d8dde7;
  border-radius: 18px;
  background: #f4f6f9;
  padding: 1.8rem;
}

.impact-card h3 {
  font-size: clamp(1.35rem, 2.8vw, 1.55rem);
  line-height: 1.2;
  font-weight: 500;
}

.impact-card p {
  margin-top: 1rem;
  color: #313843;
  font-size: 1rem;
  line-height: 1.55;
}

.process,
.testimonials {
  background: var(--bg-soft);
  padding: 0 0 6rem;
}

.process-grid,
.testimonials-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.process-step,
.testimonial {
  background: #fff;
  border: 1px solid #dce3ef;
  border-radius: 16px;
  padding: 1.25rem;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e8f8ee;
  color: #0f8b44;
  font-weight: 700;
  font-size: 0.86rem;
}

.process-step h3,
.testimonial h3 {
  margin-top: 0.75rem;
  font-size: 1.15rem;
}

.process-step p,
.testimonial p {
  margin-top: 0.75rem;
  color: #58667a;
  font-size: 0.96rem;
}

.testimonial span {
  margin-top: 0.6rem;
  display: block;
  color: #6a788d;
  font-size: 0.85rem;
}

.contact {
  background: var(--bg-soft);
  padding: 0 0 6.2rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.contact-box {
  background: #ffffff;
  border: 1px solid #dfe4ee;
  border-radius: 18px;
  padding: 2.6rem;
  text-align: left;
}

.contact-box h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.contact-box p {
  margin-top: 0.5rem;
  color: #6f7988;
}

.contact-box a {
  margin-top: 0.95rem;
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.lead-form {
  margin-top: 1.6rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3c4654;
}

.form-grid label:nth-child(5),
.form-grid label:nth-child(6) {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #d6deeb;
  border-radius: 10px;
  padding: 0.72rem 0.78rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1f2630;
  outline: none;
  background: #fff;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #4eb77a;
  box-shadow: 0 0 0 3px rgba(2, 181, 62, 0.12);
}

.submit-btn {
  margin-top: 0.95rem;
  min-width: 0;
  width: 100%;
  border: none;
  cursor: pointer;
}

.form-feedback {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: #2e7b4b;
  min-height: 1.2rem;
}

.contact-aside {
  background: #ffffff;
  border: 1px solid #dfe4ee;
  border-radius: 18px;
  padding: 1.8rem;
  height: fit-content;
}

.contact-aside h3 {
  font-size: 1.15rem;
}

.contact-aside p {
  margin-top: 0.7rem;
  color: #566376;
  font-size: 0.95rem;
}

.faq {
  background: var(--bg-soft);
  padding: 0 0 6rem;
}

.faq-head {
  text-align: center;
}

.faq-badge {
  display: inline-block;
  background: #060708;
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 1.4rem;
  font-weight: 600;
}

.faq-head h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  font-weight: 500;
}

.faq-list {
  margin: 3rem auto 0;
  max-width: 1120px;
  display: grid;
  gap: 1.2rem;
}

.faq-item {
  background: transparent;
  border: 1px solid #dfe4ee;
  border-radius: 18px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  text-align: left;
  border: none;
  background: transparent;
  color: #2f3640;
  font-size: 1.12rem;
  font-weight: 500;
  padding: 1.35rem 1.5rem;
  cursor: pointer;
}

.faq-plus {
  font-size: 2rem;
  color: #6f7280;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  color: #66717f;
  padding: 0 1.3rem 1.2rem;
}

.faq-item.open .faq-answer {
  max-height: 170px;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #22c35e;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.8rem;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(34, 195, 94, 0.4);
  z-index: 25;
  animation: whatsapp-float 2.8s ease-in-out infinite, whatsapp-pulse 2.8s ease-in-out infinite;
}

.whatsapp svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
}

@keyframes whatsapp-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(34, 195, 94, 0.4);
  }
  50% {
    box-shadow: 0 14px 30px rgba(34, 195, 94, 0.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp {
    animation: none;
  }
}

.footer {
  background: #003b44;
  color: #eff7f8;
  padding: 2.8rem 0 1.6rem;
  border-top: none;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  align-items: flex-start;
  gap: 1.6rem;
  color: #d8e7ea;
}

.footer-wrap > div {
  display: grid;
  gap: 0.65rem;
}

.footer-brand {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  color: #ecf8ff;
  text-decoration: none;
  text-transform: lowercase;
}

.footer-brand-col p {
  max-width: 420px;
  color: #d0e4e9;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  color: #eff7f8;
  text-decoration: none;
}

.footer-title {
  font-size: 2.05rem;
  font-weight: 700;
  color: #ffffff;
}

.footer a {
  color: #e9f4f7;
  text-decoration: none;
}

.footer-links-col a {
  font-size: 1.05rem;
}

.footer-copy-row {
  margin-top: 2.1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #e4f0f3;
}

.footer-policy {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-policy a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 1rem;
}

.footer-copy {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid #dce2ed;
  color: #758090;
  font-size: 0.93rem;
}

.reveal,
.reveal-delay {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-delay {
  transition-delay: 0.16s;
}

.reveal.show,
.reveal-delay.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1280px) {
  .module h3 {
    font-size: 1.45rem;
  }

  .module p,
  .module a {
    font-size: 1.04rem;
  }
}

@media (max-width: 980px) {
  .impact-grid,
  .process-grid,
  .testimonials-grid,
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .aligned-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 90px;
    right: 4%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid #dce3ef;
    border-radius: 14px;
    width: min(320px, 92vw);
    padding: 0.8rem;
  }

  .nav.open {
    display: flex;
  }

  .footer-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 100%;
  }

  .mockup-body {
    height: clamp(210px, 56vw, 320px);
    padding: 0.45rem;
  }

  .module-grid,
  .impact-grid,
  .process-grid,
  .testimonials-grid,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .trustbar-wrap {
    justify-content: center;
    text-align: center;
  }

  .logo-text {
    font-size: 1.9rem;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .footer-title {
    font-size: 1.5rem;
  }

  .footer-policy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .footer-policy a + a {
    border-left: none;
    padding-left: 0;
  }
}
