:root {
  --brand-black: #0c0c0c;
  --brand-green: #c6f050;
  --brand-blue: #3824ea;
  --brand-white: #ffffff;
  --brand-muted: #9ea3a8;
  --brand-border: #1f1f1f;
  --brand-card: #161616;
  --brand-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  --font-heading: "Space Grotesk", "Poppins", sans-serif;
  --font-body: "Poppins", "Space Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: #121212;
  background: #ffffff;
  line-height: 1.45;
}

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

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

p {
  margin-bottom: 12px;
}

p + .btn,
p + .btn-group,
.lead + .btn {
  margin-top: 12px;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: var(--brand-black);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.top-banner {
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.85rem;
}

.top-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0;
  text-align: center;
  flex-wrap: nowrap;
  position: relative;
}

.top-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 999px;
  text-decoration: none;
}

.top-banner__close {
  position: absolute;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 6px;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

.brand img {
  max-width: 160px;
}

.nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #f4f6fb;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  transition: width 0.2s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

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

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 200;
}

.lang-switch a {
  font-size: 1.05rem;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--brand-green);
  background: transparent;
  color: var(--brand-green);
}

.lang-switch a.is-active {
  background: var(--brand-green);
  color: #0a0a0a;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #f4f6fb;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.86rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--brand-green);
  color: #0a0a0a;
}

.btn--ghost {
  border-color: var(--brand-green);
  color: var(--brand-green);
  background: transparent;
}

.btn--ghost.btn--blue,
a.btn--ghost.btn--blue {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.hero {
  background: var(--brand-black);
  color: #fff;
  padding: 80px 0 60px;
}

.hero__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero__content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  margin-bottom: 12px;
  color: #fff;
}

.hero__content .lead,
.hero__content .muted,
.hero__content .eyebrow {
  color: #f4f6fb;
}

.hero__content .eyebrow {
  color: var(--brand-green);
}

.hero__content .muted strong {
  color: var(--brand-green);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--brand-green);
}

.divider {
  width: 64px;
  height: 3px;
  background: var(--brand-green);
  margin: 16px 0;
}

.logo-strip {
  background: #ffffff;
  padding: 18px 0;
  overflow: hidden;
}

.logo-strip__track {
  position: relative;
  overflow: hidden;
}

.logo-strip__row {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  animation: logoMarquee 22s linear infinite;
  white-space: nowrap;
}

.logo-strip__row img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

@keyframes logoMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.features {
  padding: 70px 0;
}

.features h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

.features__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
}

.feature-card::before {
  content: "";
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: rgba(56, 36, 234, 0.15);
  border: 1px solid rgba(56, 36, 234, 0.35);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M12 3l2.7 5.5 6.1.9-4.4 4.3 1 6.1L12 17l-5.4 2.8 1-6.1L3.2 9.4l6.1-.9L12 3z' stroke='%233824EA' stroke-width='1.8' stroke-linejoin='round' /></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  border-color: rgba(56, 36, 234, 0.6);
}

.split {
  padding: 70px 0;
}

.media-illustration-sm {
  width: 80%;
  height: auto;
}

.cta-form {
  padding-bottom: 48px;
}

.split__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.split__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  margin-bottom: 12px;
  line-height: 1.2;
}

.split__content .lead {
  color: var(--brand-muted);
  font-size: 1rem;
}

.split--reverse .split__grid {
  direction: rtl;
}

.split--reverse .split__content,
.split--reverse .split__media {
  direction: ltr;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
}

.checklist li::before {
  content: "✓";
  color: var(--brand-blue);
  font-weight: 700;
  margin-right: 8px;
}

.feature-panel {
  background: #0d0d0d;
  color: #f4f6fb;
  padding: 70px 0;
}

.feature-panel__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.feature-panel h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  margin-bottom: 12px;
  line-height: 1.2;
}

.feature-panel h3 {
  margin-top: 24px;
}

.page-hero {
  background: var(--brand-black);
  color: #fff;
  padding: 70px 0 50px;
}

.page-hero__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.page-hero__content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 14px;
  color: #fff;
}

.page-hero__content .lead {
  color: #f0f2f5;
}

.page-hero__form {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  color: #0c0c0c;
  box-shadow: var(--brand-shadow);
}

.page-hero__form * {
  color: #0c0c0c;
}

.page-hero__form .btn {
  margin-top: 8px;
}

.checklist-hero .page-hero__content img {
  margin-top: 24px;
  width: min(320px, 100%);
}

.case-hero .page-hero__content img {
  margin-top: 24px;
  width: min(360px, 100%);
}

.case-highlights .lead {
  color: #4a4f55;
  margin-bottom: 18px;
}

.case-highlights .feature-card {
  display: grid;
  gap: 14px;
}

.case-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 240, 80, 0.2);
  color: var(--brand-green);
}

.case-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd4da;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: #0c0c0c;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(198, 240, 80, 0.45);
  border-color: var(--brand-green);
}

.lead-form button {
  width: 100%;
  justify-content: center;
}

.value-grid {
  padding: 50px 0 30px;
}

.value-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.value-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
}

.value-card__title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.2;
}

.pricing {
  background: #0e0e0e;
  color: #fff;
  padding: 70px 0;
}

.pricing h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 32px;
  line-height: 1.2;
}

.pricing__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
  background: var(--brand-card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--brand-border);
}

.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

.pricing-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-green);
}

.pricing-card__price span {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 400;
}

.pricing .btn--primary {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

.site-footer {
  background: var(--brand-black);
  color: #f4f6fb;
  padding: 70px 0 20px;
  border-top: 1px solid #151515;
}

main {
  padding-bottom: 48px;
}

.footer__top {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(220px, 320px) repeat(auto-fit, minmax(160px, 1fr));
}

.footer__brand img {
  width: 140px;
  margin-bottom: 16px;
}

.footer__brand p {
  margin-bottom: 10px;
  color: #c9cdd2;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.footer__col h4 {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  color: var(--brand-green);
}

.footer__col a {
  display: block;
  color: #f4f6fb;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer__col a:hover {
  color: var(--brand-green);
}

.footer__bottom {
  border-top: 1px solid #1b1b1b;
  margin-top: 30px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #a4a9af;
}

.whatsapp-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
}

.whatsapp-modal.is-open {
  display: flex;
}

.whatsapp-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
}

.whatsapp-modal__panel {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  width: min(520px, 92vw);
  padding: 28px;
  max-height: 85vh;
  overflow: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.whatsapp-modal__panel h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--brand-green);
}

.whatsapp-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: #222;
}

.modal-open {
  overflow: hidden;
}

.whatsapp-modal__panel .mauticform_wrapper,
.whatsapp-modal__panel form,
.whatsapp-modal__panel .mauticform-innerform,
.whatsapp-modal__panel .mauticform-page-wrapper {
  display: block;
  width: 100%;
}

.whatsapp-modal__panel .mauticform-row {
  margin-bottom: 16px;
}

.whatsapp-modal__panel .mauticform-label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #0c0c0c;
}

.whatsapp-modal__panel .mauticform-input,
.whatsapp-modal__panel .mauticform-selectbox,
.whatsapp-modal__panel .mauticform-textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd4da;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: #0c0c0c;
}

.whatsapp-modal__panel .mauticform-button {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--brand-green);
  background: var(--brand-green);
  color: #0a0a0a;
  cursor: pointer;
}

.whatsapp-modal__panel .whatsapp-form [data-validate] {
  margin-bottom: 16px;
}

.whatsapp-modal__panel .whatsapp-form label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #0c0c0c;
}

.whatsapp-modal__panel .whatsapp-form input:not([type="hidden"]),
.whatsapp-modal__panel .whatsapp-form select,
.whatsapp-modal__panel .whatsapp-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd4da;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: #0c0c0c;
}

.whatsapp-modal__panel .whatsapp-form button[type="submit"] {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--brand-green);
  background: var(--brand-green);
  color: #0a0a0a;
  cursor: pointer;
  width: 100%;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 200;
  border: none;
  cursor: pointer;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

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

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 200;
  border: none;
  cursor: pointer;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

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


.blend-transparent {
  mix-blend-mode: multiply;
}

@media (max-width: 960px) {
  html,
  body {
    background: #ffffff;
  }

  .site-header {
    padding-top: env(safe-area-inset-top);
    background: var(--brand-black);
    min-height: 72px;
  }

  .header__inner {
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
  }

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

  .brand img {
    max-width: 140px;
    max-height: 48px;
    height: auto;
    display: block;
  }

  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #ffffff;
    padding: 20px;
    transform: translateY(-160%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.2s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    color: #0c0c0c;
  }

  .nav a {
    color: #0c0c0c;
  }

  .nav.open {
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header__actions {
    display: none;
  }

  .lang-switch {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .hero,
  .page-hero,
  .features,
  .split,
  .pricing,
  .feature-panel {
    padding: 50px 0;
  }

  .logo-strip__row {
    gap: 22px;
  }

  .logo-strip__row img {
    height: 24px;
  }

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