:root {
  --color-blue: #015da4;
  --color-blue-dark: #053968;
  --color-yellow: #f5c500;
  --color-yellow-dark: #d7a500;
  --color-text: #1d2b38;
  --color-muted: #5d6b79;
  --color-surface: #ffffff;
  --color-border: rgba(1, 93, 164, 0.12);
  --shadow-card: 0 18px 45px rgba(4, 32, 57, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container-width: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  color: var(--color-text);
  background: #f7f8fb;
}

body.modal-open {
  overflow: hidden;
}

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

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

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0f2740;
  background: var(--color-yellow);
  box-shadow: 0 10px 24px rgba(245, 197, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(245, 197, 0, 0.32);
}

.button:disabled {
  cursor: wait;
  opacity: 0.8;
}

.button--ghost,
.button--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.button--ghost-light {
  color: #fff;
}

.button--secondary {
  min-height: 42px;
  padding: 0 18px;
  color: var(--color-blue);
  background: rgba(1, 93, 164, 0.08);
  box-shadow: none;
}

.button--dark {
  color: #fff;
  background: var(--color-blue-dark);
  box-shadow: 0 10px 24px rgba(5, 57, 104, 0.22);
}

.cta-whatsapp {
  position: relative;
  overflow: hidden;
  gap: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2ed16b 0%, #17a34a 100%);
  box-shadow: 0 18px 38px rgba(23, 163, 74, 0.34);
}

.cta-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 55%);
  pointer-events: none;
}

.cta-whatsapp:hover,
.cta-whatsapp:focus-visible {
  box-shadow: 0 22px 44px rgba(23, 163, 74, 0.42);
}

.cta-whatsapp--inline {
  justify-content: flex-start;
  min-height: 62px;
  min-width: 320px;
  padding: 10px 10px 10px 14px;
}

.cta-whatsapp--light {
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.cta-whatsapp__icon,
.floating-whatsapp .cta-whatsapp__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #17a34a;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(23, 163, 74, 0.08);
}

.cta-whatsapp__icon svg {
  width: 22px;
  height: 22px;
}

.cta-whatsapp__label {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
}

.cta-whatsapp__arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.cta-whatsapp__arrow svg {
  width: 18px;
  height: 18px;
}

.whatsapp-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.whatsapp-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.whatsapp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 23, 42, 0.62);
  backdrop-filter: blur(4px);
}

.whatsapp-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(4, 23, 39, 0.28);
}

.whatsapp-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  color: #375068;
  background: rgba(1, 93, 164, 0.08);
  cursor: pointer;
}

.whatsapp-modal__header {
  padding-right: 34px;
}

.whatsapp-modal__badge {
  margin-bottom: 14px;
}

.whatsapp-modal__eyebrow {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #17a34a;
}

.whatsapp-modal__header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.whatsapp-modal__description {
  margin: 12px 0 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.whatsapp-modal__form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.whatsapp-modal__form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(3, 52, 92, 0.16);
  border-radius: 14px;
  font: inherit;
  color: var(--color-text);
  background: #fff;
}

.whatsapp-modal__form input:focus {
  outline: 2px solid rgba(1, 93, 164, 0.22);
  border-color: rgba(1, 93, 164, 0.4);
}

.cta-whatsapp--submit {
  width: 100%;
  margin-top: 6px;
}

.whatsapp-modal__feedback {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  line-height: 1.6;
}

.whatsapp-modal__feedback.is-success,
.whatsapp-modal__feedback.is-error {
  display: block;
}

.whatsapp-modal__feedback.is-success {
  background: rgba(31, 160, 84, 0.12);
  color: #0c5a31;
}

.whatsapp-modal__feedback.is-error {
  background: rgba(214, 56, 56, 0.1);
  color: #8c2323;
}

.whatsapp-modal__privacy {
  margin: 16px 0 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.button--full,
.button--small {
  width: 100%;
}

.brand {
  width: min(310px, 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background: linear-gradient(100deg, rgba(2, 22, 42, 0.94) 0%, rgba(1, 93, 164, 0.82) 45%, rgba(1, 93, 164, 0.45) 100%), url('/static/images/source/15708de4-vector-smart-object.jpg') center/cover no-repeat;
  color: #fff;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 420px);
  gap: 40px;
  align-items: center;
}

.hero__copy {
  max-width: 620px;
}

.eyebrow {
  margin: 18px 0 10px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-yellow);
}

.hero h1,
.section-heading h2,
.contact-strip h2 {
  margin: 0;
  line-height: 1.05;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
}

.hero__description,
.section-heading p,
.contact-strip p,
.footer p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__list,
.detail-list {
  margin: 22px 0 0;
  padding-left: 18px;
  line-height: 1.7;
}

.hero__list li + li,
.detail-list li + li {
  margin-top: 8px;
}

.breadcrumb-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.lead-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-text);
  box-shadow: var(--shadow-card);
}

.lead-card__intro {
  margin-bottom: 20px;
}

.lead-card__eyebrow {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-yellow-dark);
  text-transform: uppercase;
}

.lead-card__intro h2 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.3;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(3, 52, 92, 0.16);
  border-radius: 14px;
  font: inherit;
  color: var(--color-text);
  background: #fff;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 2px solid rgba(1, 93, 164, 0.22);
  border-color: rgba(1, 93, 164, 0.4);
}

.lead-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.96rem;
  line-height: 1.6;
}

.form-feedback a {
  font-weight: 700;
  text-decoration: underline;
}

.form-feedback.is-success,
.form-feedback.is-error {
  display: block;
}

.form-feedback.is-success {
  background: rgba(31, 160, 84, 0.12);
  color: #0c5a31;
}

.form-feedback.is-error {
  background: rgba(214, 56, 56, 0.1);
  color: #8c2323;
}

.lead-card__privacy {
  margin: 16px 0 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.section {
  position: relative;
  padding: 88px 0;
}

.section--products {
  background: #fff url('/static/images/source/9cc9ab8a-bg2.jpg') center/cover no-repeat;
}

.section--benefits {
  background: #ffffff;
}

.section--solutions {
  color: #0f2740;
  background: linear-gradient(180deg, rgba(245, 197, 0, 0.95), rgba(239, 184, 0, 0.95)), url('/static/images/source/ddc780dd-bgr.jpg') center/cover no-repeat;
}

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

.section-heading h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.section-heading--left {
  max-width: none;
  margin: 0 0 24px;
  text-align: left;
}

.section-heading--dark h2 {
  color: #0f2740;
}

.product-grid,
.benefit-grid,
.solution-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.product-card,
.benefit-card,
.solution-card {
  height: 100%;
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  text-align: left;
}

.product-card__image-wrap {
  overflow: hidden;
  border-radius: 18px;
  min-height: 220px;
  background: #eef3f8;
}

.product-card__image-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card h3,
.benefit-card h3,
.solution-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
}

.product-card p,
.benefit-card p,
.solution-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.product-card__list {
  margin: 0;
  padding-left: 18px;
  color: var(--color-text);
  line-height: 1.6;
}

.product-card__list li + li {
  margin-top: 8px;
}

.benefit-card__icon,
.solution-card__icon {
  width: 54px;
  margin: 0 auto 12px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.product-detail__visual {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.product-detail__visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.product-detail__content {
  padding: 10px 0;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-strip {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(1, 93, 164, 0.96), rgba(3, 61, 112, 0.95)), url('/static/images/source/fa22d520-bnn.jpg') center/cover no-repeat;
  color: #fff;
}

.contact-strip__grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.contact-strip__image img {
  width: min(280px, 100%);
  margin: 0 auto;
}

.contact-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.contact-strip__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}

.contact-strip__badges img {
  max-height: 76px;
  width: auto;
}

.footer {
  padding: 34px 0 44px;
  background: #f3f5f8;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer__credits {
  text-align: right;
}

.footer__credits img {
  margin-left: auto;
  max-width: 150px;
  width: 100%;
  height: auto;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  min-width: 286px;
  max-width: min(calc(100vw - 32px), 340px);
  padding: 12px 12px 12px 14px;
  border-radius: 999px;
}

@media (max-width: 1100px) {
  .product-grid,
  .benefit-grid,
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero {
    padding-top: 64px;
  }

  .hero__grid,
  .product-detail__grid,
  .contact-strip__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .contact-strip__image {
    order: 2;
  }

  .footer__credits {
    text-align: left;
  }

  .footer__credits img {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .hero__actions,
  .contact-strip__actions,
  .product-detail__actions {
    flex-direction: column;
  }

  .cta-whatsapp--inline,
  .floating-whatsapp {
    min-width: 100%;
  }

  .product-grid,
  .benefit-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-strip {
    padding: 68px 0;
  }

  .lead-card {
    padding: 22px;
  }

  .floating-whatsapp {
    right: 16px;
    left: 16px;
    justify-content: center;
    bottom: 16px;
  }

  .whatsapp-modal__dialog {
    padding: 24px 18px;
  }
}
