:root {
  --ink: #071329;
  --ink-2: #18263b;
  --muted: #5a667a;
  --muted-2: #7a8798;
  --line: #dbe5ee;
  --line-strong: #bdcad8;
  --soft: #f4f8fb;
  --soft-2: #eaf3f7;
  --white: #ffffff;
  --navy: #06182e;
  --navy-2: #0c243d;
  --teal: #00a6a6;
  --teal-dark: #007e82;
  --gold: #f4bd20;
  --shadow: 0 24px 70px rgba(7, 19, 41, 0.12);
  --shadow-soft: 0 14px 36px rgba(7, 19, 41, 0.09);
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(0, 166, 166, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(219, 229, 238, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner,
.hero-inner,
.proof-inner,
.section-grid,
.solutions-section > .section-copy,
.solution-shell,
.workflow-section,
.plans-section,
.contact-inner,
.footer-inner,
.footer-bottom {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
}

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

.brand img {
  width: 198px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a:not(.header-cta) {
  position: relative;
  padding: 28px 0;
}

.main-nav a:not(.header-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 23px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:not(.header-cta):hover::after,
.main-nav a:not(.header-cta):focus-visible::after {
  transform: scaleX(1);
}

.language-switch,
.footer-lang {
  display: inline-grid;
  grid-template-columns: repeat(3, 36px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.lang-btn {
  height: 34px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.lang-btn + .lang-btn {
  border-left: 1px solid var(--line);
}

.lang-btn.is-active {
  color: var(--navy);
  background: #e1f7f6;
}

.header-cta,
.primary-cta,
.secondary-cta,
.form-submit {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta,
.primary-cta,
.form-submit {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(0, 166, 166, 0.22);
}

.secondary-cta {
  color: var(--teal-dark);
  background: var(--white);
  border-color: rgba(0, 166, 166, 0.35);
}

.header-cta:hover,
.primary-cta:hover,
.secondary-cta:hover,
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(7, 19, 41, 0.16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(234, 243, 247, 0.85));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  min-height: 760px;
  padding: 92px 0 62px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(540px, 1.18fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font-size: 74px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy p {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 550;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  max-width: 630px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proof article {
  padding: 18px 18px 18px 0;
}

.hero-proof article + article {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.hero-proof span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.photo-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 66%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow-soft);
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.22));
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
}

.product-frame {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.38);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-frame {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 74px;
  width: 86%;
}

.dnp-frame {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 48px;
  width: 42%;
}

.frame-bar {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--muted);
  background: #f8fbfd;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
}

.frame-bar.compact {
  height: 34px;
  font-size: 11px;
}

.frame-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c7d5e4;
}

.frame-bar span:first-child {
  background: #ff6b6b;
}

.frame-bar span:nth-child(2) {
  background: var(--gold);
}

.frame-bar span:nth-child(3) {
  background: #18c29c;
}

.frame-bar strong {
  margin-left: 8px;
}

.product-frame img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
  object-position: center top;
}

.dnp-frame img {
  aspect-ratio: 1.35;
}

.proof-strip {
  position: relative;
  z-index: 2;
  background: var(--white);
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.proof-inner article {
  min-height: 144px;
  padding: 30px;
}

.proof-inner article + article {
  border-left: 1px solid var(--line);
}

.proof-inner strong,
.value-list strong,
.workflow-line strong,
.plans-list h3 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.16;
}

.proof-inner p,
.value-list p,
.workflow-line p,
.plans-list p {
  margin: 9px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.value-section {
  padding: 96px 0;
  background: var(--soft);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  align-items: start;
}

.section-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

.section-copy p,
.contact-copy > p {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 550;
}

.section-copy.centered {
  max-width: 820px;
  text-align: center;
}

.value-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.value-list article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  column-gap: 18px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-list span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 950;
}

.value-list strong,
.value-list p {
  grid-column: 2;
}

.solutions-section {
  padding: 96px 0 108px;
  color: var(--white);
  background: var(--navy);
}

.solutions-section .section-copy h2 {
  color: var(--white);
}

.solutions-section .section-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.solution-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  margin-top: 46px;
}

.solutions-tabs {
  display: grid;
  gap: 8px;
  align-self: start;
}

.solution-tab {
  min-height: 76px;
  display: grid;
  gap: 4px;
  justify-items: start;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 16px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.solution-tab span {
  font-size: 14px;
  font-weight: 950;
}

.solution-tab small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
}

.solution-tab:hover,
.solution-tab:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  outline: none;
}

.solution-tab.is-active {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.solution-tab.is-active small {
  color: var(--muted);
}

.solution-panel {
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.44fr 0.56fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.solution-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.05;
}

.solution-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 600;
}

.solution-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.solution-copy li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.solution-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.solution-panel .product-frame {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.workflow-section {
  padding: 100px 0 110px;
  background: var(--white);
}

.workflow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 58px;
}

.workflow-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 166, 166, 0.18), rgba(0, 166, 166, 0.88), rgba(0, 166, 166, 0.18));
}

.workflow-line article {
  position: relative;
  padding-top: 60px;
  text-align: center;
}

.workflow-line span {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 7px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 26px rgba(0, 166, 166, 0.25);
  transform: translateX(-50%);
  font-size: 15px;
  font-weight: 950;
}

.workflow-line strong {
  font-size: 17px;
}

.workflow-line p {
  font-size: 14px;
}

.plans-section {
  width: 100%;
  max-width: none;
  padding: 96px 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 68px;
  align-items: start;
  margin: 0;
  padding-right: max(28px, calc((100vw - var(--container)) / 2));
  padding-left: max(28px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.plans-list {
  display: grid;
  gap: 0;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.plans-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-bottom: 0;
}

.plans-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.plans-list article.featured {
  border-left: 4px solid var(--teal);
  background: linear-gradient(90deg, rgba(0, 166, 166, 0.08), #ffffff 42%);
}

.plans-list span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.plans-list h3,
.plans-list p {
  margin: 0;
}

.plans-list h3,
.plans-list p {
  grid-column: 2;
}

.contact-section {
  padding: 104px 0;
  background:
    linear-gradient(90deg, rgba(6, 24, 46, 0.96), rgba(6, 24, 46, 0.86)),
    url("assets/contact-laptop.jpg") center / cover no-repeat;
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 68px;
  align-items: start;
}

.contact-copy h2,
.contact-copy > p {
  color: var(--white);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.contact-actions a:not(.secondary-cta) {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input {
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  font-weight: 650;
}

.contact-form input::placeholder {
  color: #8a96a6;
}

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 4px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  color: var(--white);
  background: #041426;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(150px, 0.7fr)) 0.8fr;
  gap: 46px;
  padding: 64px 0;
}

.footer-brand img {
  width: 190px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 280px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 650;
}

.site-footer nav,
.footer-social {
  display: grid;
  align-content: start;
  gap: 13px;
}

.site-footer strong {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer-lang {
  margin-top: 12px;
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
}

.footer-lang .lang-btn {
  color: rgba(255, 255, 255, 0.72);
}

.footer-lang .lang-btn + .lang-btn {
  border-left-color: rgba(255, 255, 255, 0.18);
}

.footer-lang .lang-btn.is-active {
  color: var(--navy);
  background: #e1f7f6;
}

.footer-bottom {
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #00b894;
  box-shadow: 0 16px 34px rgba(7, 19, 41, 0.2);
}

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

@media (max-width: 1120px) {
  .hero-inner,
  .section-grid,
  .plans-section,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-copy h1 {
    max-width: 760px;
    font-size: 62px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .solution-shell {
    grid-template-columns: 1fr;
  }

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

  .solution-tab {
    min-height: 68px;
  }

  .solution-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .header-inner,
  .hero-inner,
  .proof-inner,
  .section-grid,
  .solutions-section > .section-copy,
  .solution-shell,
  .workflow-section,
  .plans-section,
  .contact-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 32px, var(--container));
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav {
    display: grid;
  }

  .main-nav a:not(.header-cta) {
    padding: 14px 8px;
  }

  .main-nav a:not(.header-cta)::after {
    display: none;
  }

  .language-switch {
    margin: 10px 0;
  }

  .header-cta {
    width: 100%;
  }

  .hero-copy h1,
  .section-copy h2,
  .contact-copy h2 {
    font-size: 44px;
  }

  .hero-copy p,
  .section-copy p,
  .contact-copy > p {
    font-size: 17px;
  }

  .hero-proof,
  .proof-inner,
  .workflow-line {
    grid-template-columns: 1fr;
  }

  .hero-proof article,
  .hero-proof article + article {
    padding: 15px 0;
    border-left: 0;
  }

  .hero-proof article + article {
    border-top: 1px solid var(--line);
  }

  .proof-inner {
    border-right: 0;
    border-left: 0;
  }

  .proof-inner article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .solutions-tabs {
    grid-template-columns: 1fr;
  }

  .workflow-line {
    gap: 0;
    margin-left: 10px;
  }

  .workflow-line::before {
    left: 22px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(0, 166, 166, 0.18), rgba(0, 166, 166, 0.88), rgba(0, 166, 166, 0.18));
  }

  .workflow-line article {
    min-height: 118px;
    padding: 4px 0 30px 74px;
    text-align: left;
  }

  .workflow-line span {
    left: 0;
    transform: none;
  }

  .plans-list article {
    grid-template-columns: 1fr;
  }

  .plans-list h3,
  .plans-list p {
    grid-column: auto;
  }

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

@media (max-width: 640px) {
  .brand img {
    width: 154px;
  }

  .header-inner {
    min-height: 68px;
  }

  .hero-inner {
    padding: 46px 0 46px;
    gap: 34px;
  }

  .hero-copy h1,
  .section-copy h2,
  .contact-copy h2 {
    font-size: 36px;
    line-height: 1.04;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .primary-cta,
  .secondary-cta,
  .contact-actions a:not(.secondary-cta) {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .photo-panel,
  .hero-frame,
  .dnp-frame {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .photo-panel {
    height: 190px;
    order: 2;
  }

  .hero-frame {
    order: 1;
  }

  .dnp-frame {
    order: 3;
  }

  .value-section,
  .solutions-section,
  .workflow-section,
  .plans-section,
  .contact-section {
    padding: 68px 0;
  }

  .value-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .value-list strong,
  .value-list p {
    grid-column: auto;
  }

  .solution-panel {
    min-height: auto;
    padding: 18px;
  }

  .solution-copy h3 {
    font-size: 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
