:root {
  --navy: #06194f;
  --navy-2: #0b215f;
  --orange: #ff4f1f;
  --blue: #145cff;
  --ink: #07184a;
  --muted: #52617f;
  --line: #d9e3f3;
  --soft: #eef4fb;
  --paper: #ffffff;
  --warm: #fff3ee;
  --green: #009c72;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: #f4f8fe;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

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

.page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.container {
  width: min(1360px, calc(100% - 96px));
  margin: 0 auto;
}

.nav {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  width: min(1360px, calc(100% - 96px));
  min-height: 70px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(217, 227, 243, 0.88);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 50px rgba(6, 25, 79, 0.12);
  transform: translateX(-50%);
}

.nav.static {
  position: relative;
  top: auto;
  left: auto;
  margin: 24px auto 0;
  transform: none;
}

.logo {
  display: block;
  width: 238px;
  height: 50px;
  background: url("assets/zyntrax-logo-full.png") left center / contain no-repeat;
}

.logo.dark {
  background-image: url("assets/zyntrax-logo-full-on-dark.png");
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid #aec0df;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.button.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 79, 31, 0.2);
}

.button.dark {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-home {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  background: var(--navy);
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 61, 0.98) 0%, rgba(5, 18, 61, 0.82) 37%, rgba(5, 18, 61, 0.4) 65%, rgba(5, 18, 61, 0.08) 100%),
    url("assets/hero-business-owner-woman.png") center / cover no-repeat;
}

.hero-home .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 910px;
  padding-top: 120px;
}

.hero-copy {
  width: min(760px, 58vw);
}

.hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(62px, 6vw, 98px);
  font-weight: 950;
  line-height: 0.96;
}

.hero-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.48;
}

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

.command-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(1504px, calc(100% - 96px));
  margin: 28px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
}

.command-strip div {
  min-height: 108px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.13);
}

.command-strip span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.command-strip strong {
  display: block;
  color: #fff;
  font-size: 19px;
  line-height: 1.28;
}

.section {
  padding: 84px 0;
}

.section.tight {
  padding: 64px 0;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h2,
.product-copy h1,
.service-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 4vw, 66px);
  font-weight: 950;
  line-height: 1.02;
}

.section-head p,
.product-copy p,
.service-hero p {
  margin: 0;
  color: #33466f;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.55;
}

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

.solution-card,
.product-card,
.motor-card,
.service-card,
.support-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 25, 79, 0.07);
}

.solution-card {
  min-height: 228px;
  padding: 24px;
}

.solution-card span,
.product-card span,
.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 950;
}

.solution-card h3,
.product-card h3,
.motor-card h3,
.service-card h3,
.support-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.14;
}

.solution-card p,
.product-card p,
.motor-card p,
.service-card p,
.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.48;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.workflow-list {
  display: grid;
  gap: 18px;
}

.workflow > div > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 32px;
  color: #33466f;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.55;
}

.workflow-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.workflow-item b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
}

.workflow-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 950;
}

.workflow-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
}

.owner-proof {
  min-height: 304px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(6, 25, 79, 0.92) 0%, rgba(6, 25, 79, 0.34) 58%, rgba(6, 25, 79, 0.02) 100%),
    url("assets/hero-small-business-owner.png") center / cover no-repeat;
}

.owner-proof div {
  width: 56%;
  padding: 34px;
}

.owner-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.owner-proof h3 {
  margin: 12px 0 0;
  color: #fff;
  font-size: 31px;
  font-weight: 950;
  line-height: 1.08;
}

.dash {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(6, 25, 79, 0.1);
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.dash-head strong {
  color: var(--navy);
  font-size: 18px;
  font-weight: 950;
}

.dash-head span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.dash-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e9eff8;
}

.dash-row:last-child {
  border-bottom: 0;
}

.dash-row b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--navy);
  font-size: 15px;
}

.dash-row strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  font-weight: 950;
}

.dash-row small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.dash-row em {
  border-radius: 999px;
  background: var(--warm);
  color: var(--orange);
  padding: 8px 10px;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

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

.product-card {
  display: grid;
  min-height: 270px;
  padding: 24px;
}

.product-card a {
  align-self: end;
  color: var(--orange);
  font-size: 14px;
  font-weight: 950;
}

.motors-band {
  background: var(--navy);
  color: #fff;
}

.motors-band .section-head h2,
.motors-band .section-head p {
  color: #fff;
}

.motors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.motor-card {
  min-height: 176px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.motor-card h3 {
  color: #fff;
}

.motor-card p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 44px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(6, 25, 79, 0.98) 0%, rgba(6, 25, 79, 0.82) 52%, rgba(6, 25, 79, 0.35) 100%),
    url("assets/hero-business-owner-woman.png") center / cover no-repeat;
}

.final-cta h2 {
  max-width: 800px;
  margin: 0;
  color: #fff;
  font-size: 44px;
  font-weight: 950;
  line-height: 1.05;
}

.final-cta p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.48;
}

.product-page {
  padding-bottom: 72px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
  padding: 72px 0 56px;
}

.product-copy h1,
.service-hero h1 {
  max-width: 760px;
}

.product-copy p,
.service-hero p {
  max-width: 700px;
  margin-top: 20px;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.image-panel {
  overflow: hidden;
  min-height: 400px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(6, 25, 79, 0.9), rgba(6, 25, 79, 0.12)),
    url("assets/hero-small-business-owner.png") center / cover no-repeat;
  box-shadow: 0 20px 60px rgba(6, 25, 79, 0.16);
}

.image-panel.woman {
  background:
    linear-gradient(90deg, rgba(6, 25, 79, 0.88), rgba(6, 25, 79, 0.08)),
    url("assets/hero-business-owner-woman.png") center / cover no-repeat;
}

.image-panel .floating-card {
  width: min(430px, calc(100% - 48px));
  margin: 230px 24px 24px;
  padding: 22px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(6, 25, 79, 0.16);
}

.floating-card strong {
  display: block;
  color: var(--navy);
  font-size: 26px;
  font-weight: 950;
}

.floating-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  gap: 34px;
  align-items: start;
}

.feature-list,
.support-list {
  display: grid;
  gap: 12px;
}

.feature-list div,
.support-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.feature-list b,
.support-list b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.feature-list strong,
.support-list strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 950;
}

.feature-list p,
.support-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.metric-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(6, 25, 79, 0.1);
}

.metric-panel h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 950;
}

.metric {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 34px;
  font-weight: 950;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
  padding: 72px 0 56px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 242px;
  padding: 24px;
}

.support-card {
  padding: 26px;
}

@media (max-width: 760px) {
  .container,
  .nav,
  .command-strip {
    width: calc(100% - 28px);
  }

  .nav {
    position: relative;
    top: auto;
    left: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    margin: 14px auto 0;
    padding: 14px;
    overflow: hidden;
    transform: none;
  }

  .logo {
    width: 190px;
    height: 42px;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
  }

  .nav-actions,
  .hero-actions,
  .product-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-home::before {
    background:
      linear-gradient(180deg, rgba(5, 18, 61, 0.22) 0%, rgba(5, 18, 61, 0.88) 42%, rgba(5, 18, 61, 0.98) 100%),
      url("assets/hero-business-owner-woman.png") 62% top / auto 48% no-repeat;
  }

  .hero-home .hero-inner {
    min-height: auto;
    padding: 250px 0 34px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .command-strip {
    grid-template-columns: 1fr;
    margin: 0 auto 18px;
  }

  .command-strip div {
    min-height: auto;
    padding: 16px;
  }

  .section {
    padding: 46px 0;
  }

  .solution-grid,
  .workflow,
  .product-grid,
  .motors-grid,
  .product-hero,
  .two-col,
  .service-hero,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .product-copy h1,
  .service-hero h1 {
    font-size: 34px;
  }

  .section-head p,
  .product-copy p,
  .service-hero p {
    font-size: 16px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .final-cta h2 {
    font-size: 30px;
  }
}


/* V5 production overrides */
.nav {
      overflow: visible;
    }

    .nav-links {
      align-items: center;
    }

    .nav-item {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 70px;
    }

    .nav-item.has-menu::after {
      content: "";
      width: 0;
      height: 0;
      margin-left: 7px;
      border-right: 4px solid transparent;
      border-left: 4px solid transparent;
      border-top: 5px solid currentColor;
    }

    .nav-item .dropdown {
      position: absolute;
      top: 76px;
      left: 50%;
      z-index: 20;
      display: none;
      width: 420px;
      padding: 14px;
      border: 1px solid rgba(217, 227, 243, 0.96);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 24px 70px rgba(6, 25, 79, 0.22);
      transform: translateX(-50%);
    }

    .nav-item.has-menu:hover .dropdown {
      display: grid;
      gap: 10px;
    }

    .dropdown::before {
      content: "";
      position: absolute;
      top: -8px;
      left: calc(50% - 8px);
      width: 16px;
      height: 16px;
      border-top: 1px solid rgba(217, 227, 243, 0.96);
      border-left: 1px solid rgba(217, 227, 243, 0.96);
      background: #fff;
      transform: rotate(45deg);
    }

    .dropdown-link {
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 12px;
      align-items: center;
      min-height: 68px;
      padding: 12px;
      border: 1px solid #e1e9f6;
      border-radius: 8px;
      background: #fff;
    }

    .dropdown-link b {
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: var(--soft);
      color: var(--navy);
      font-size: 13px;
      font-weight: 950;
    }

    .dropdown-link strong {
      display: block;
      margin-bottom: 4px;
      color: var(--navy);
      font-size: 15px;
      font-weight: 950;
    }

    .dropdown-link small {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.35;
    }

    .hero-home.v5 {
      min-height: 820px;
    }

    .hero-home.v5 .hero-inner {
      min-height: 730px;
      padding-top: 92px;
    }

    .hero-copy.v5 {
      width: min(720px, 54vw);
    }

    .hero-copy.v5 h1 {
      max-width: 720px;
      font-size: clamp(50px, 4.9vw, 78px);
      line-height: 0.98;
    }

    .hero-copy.v5 p:not(.eyebrow) {
      max-width: 700px;
      margin-top: 22px;
      font-size: 19px;
      line-height: 1.44;
    }

    .hero-copy.v5 .eyebrow {
      margin-bottom: 14px;
      font-size: 12px;
    }

    .hero-home.v5 .hero-actions {
      margin-top: 26px;
    }

    .hero-home.v5 .command-strip {
      margin-top: 8px;
    }

    .hero-home.v5 .command-strip div {
      min-height: 82px;
      padding: 16px 22px;
    }

    .hero-home.v5 .command-strip span {
      margin-bottom: 6px;
      font-size: 11px;
    }

    .hero-home.v5 .command-strip strong {
      font-size: 16px;
    }

    .products-section-v5 {
      padding: 72px 0 34px;
      background: #fff;
    }

    .products-hero-v5 {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
      gap: 58px;
      align-items: center;
    }

    .products-copy-v5 h2 {
      max-width: 560px;
      margin: 0 0 18px;
      color: var(--navy);
      font-size: 44px;
      font-weight: 950;
      line-height: 1.06;
    }

    .products-copy-v5 p:not(.eyebrow) {
      max-width: 560px;
      margin: 0;
      color: #52617f;
      font-size: 18px;
      font-weight: 650;
      line-height: 1.5;
    }

    .products-bullets-v5 {
      display: grid;
      gap: 10px;
      margin: 22px 0 28px;
      padding: 0;
      list-style: none;
    }

    .products-bullets-v5 li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      align-items: center;
      color: var(--navy);
      font-size: 15px;
      font-weight: 800;
    }

    .products-bullets-v5 li::before {
      content: "";
      width: 18px;
      height: 18px;
      border: 2px solid #7aa3ff;
      border-radius: 50%;
      background: #eef4ff;
    }

    .products-action-v5 {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .price-note-v5 {
      color: var(--navy);
      font-size: 13px;
      font-weight: 850;
      line-height: 1.3;
    }

    .price-note-v5 strong {
      display: block;
      font-size: 22px;
      font-weight: 950;
    }

    .platform-preview-v5 {
      display: grid;
      grid-template-columns: 76px 1fr;
      overflow: hidden;
      min-height: 300px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 24px 70px rgba(6, 25, 79, 0.14);
    }

    .platform-rail-v5 {
      padding: 18px 14px;
      background: linear-gradient(180deg, #06194f 0%, #09256a 100%);
    }

    .platform-mark-v5 {
      width: 46px;
      height: 46px;
      margin: 0 auto 16px;
      background: url("assets/zyntrax-mark-on-dark.png") center / contain no-repeat;
    }

    .rail-icon-v5 {
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      margin: 9px auto;
      border-radius: 8px;
      color: rgba(255, 255, 255, 0.86);
      background: rgba(255, 255, 255, 0.08);
      font-size: 13px;
      font-weight: 950;
    }

    .platform-panel-v5 {
      padding: 22px;
    }

    .platform-head-v5 {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
    }

    .platform-head-v5 strong {
      color: var(--navy);
      font-size: 17px;
      font-weight: 950;
    }

    .platform-head-v5 span {
      color: #52617f;
      font-size: 12px;
      font-weight: 850;
    }

    .platform-metrics-v5 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 18px;
    }

    .platform-metric-v5 {
      min-height: 92px;
      padding: 14px;
      border: 1px solid #e1e9f6;
      border-radius: 8px;
      background: #f9fbff;
    }

    .platform-metric-v5 small {
      display: block;
      margin-bottom: 8px;
      color: #52617f;
      font-size: 11px;
      font-weight: 850;
    }

    .platform-metric-v5 b {
      display: block;
      color: var(--navy);
      font-size: 24px;
      font-weight: 950;
      line-height: 1;
    }

    .platform-metric-v5 em {
      display: block;
      margin-top: 7px;
      color: var(--green);
      font-size: 11px;
      font-style: normal;
      font-weight: 850;
    }

    .platform-list-v5 {
      display: grid;
      gap: 10px;
    }

    .platform-row-v5 {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      gap: 12px;
      align-items: center;
      min-height: 58px;
      padding: 10px;
      border: 1px solid #e1e9f6;
      border-radius: 8px;
      background: #fff;
    }

    .platform-row-v5 i {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: #eef4ff;
      color: var(--blue);
      font-style: normal;
      font-weight: 950;
    }

    .platform-row-v5 strong {
      display: block;
      margin-bottom: 4px;
      color: var(--navy);
      font-size: 13px;
      font-weight: 950;
    }

    .platform-row-v5 small {
      display: block;
      color: #52617f;
      font-size: 11px;
      font-weight: 700;
    }

    .platform-row-v5 em {
      color: var(--orange);
      font-size: 12px;
      font-style: normal;
      font-weight: 950;
      white-space: nowrap;
    }

    .product-cards-section-v5 {
      padding: 34px 0 78px;
      background: #fff;
    }

    .product-cards-v5 {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .product-tile-v5 {
      min-height: 305px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 16px 38px rgba(6, 25, 79, 0.07);
    }

    .tile-icon-v5 {
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      margin-bottom: 18px;
      border-radius: 50%;
      background: #eef4ff;
      color: var(--blue);
      font-size: 20px;
      font-weight: 950;
    }

    .tile-icon-v5 svg {
      width: 25px;
      height: 25px;
      stroke: currentColor;
      stroke-width: 2.4;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .tile-icon-v5.green {
      background: #e9fbf2;
      color: var(--green);
    }

    .tile-icon-v5.orange {
      background: #fff0eb;
      color: var(--orange);
    }

    .tile-icon-v5.purple {
      background: #f3efff;
      color: #8257e6;
    }

    .product-tile-v5 h3 {
      margin: 0 0 12px;
      color: var(--navy);
      font-size: 21px;
      font-weight: 950;
      line-height: 1.12;
    }

    .product-tile-v5 p {
      min-height: 66px;
      margin: 0 0 18px;
      color: #52617f;
      font-size: 15px;
      font-weight: 650;
      line-height: 1.45;
    }

    .tile-list-v5 {
      display: grid;
      gap: 9px;
      margin: 0 0 20px;
      padding: 0;
      list-style: none;
    }

    .tile-list-v5 li {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 8px;
      color: #33466f;
      font-size: 13px;
      font-weight: 750;
      line-height: 1.35;
    }

    .tile-list-v5 li::before {
      content: "✓";
      color: var(--green);
      font-weight: 950;
    }

    .tile-link-v5 {
      display: inline-flex;
      color: var(--blue);
      font-size: 14px;
      font-weight: 950;
    }

    .segments-section-v5,
    .results-section-v5 {
      padding: 72px 0;
      background: #f4f8fe;
      border-top: 1px solid rgba(217, 227, 243, 0.75);
    }

    .section-title-v5 {
      margin: 0 0 30px;
      color: var(--navy);
      font-size: 32px;
      font-weight: 950;
      line-height: 1.12;
      text-align: center;
    }

    .segment-grid-v5 {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .segment-card-v5 {
      overflow: hidden;
      min-height: 268px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 16px 38px rgba(6, 25, 79, 0.07);
    }

    .segment-photo-v5 {
      position: relative;
      height: 128px;
      background: var(--photo) center / cover no-repeat;
    }

    .segment-photo-v5::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(6, 25, 79, 0.03), rgba(6, 25, 79, 0.14));
    }

    .segment-badge-v5 {
      position: absolute;
      bottom: -18px;
      left: 20px;
      z-index: 2;
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #eef4ff;
      color: var(--blue);
      font-size: 13px;
      font-weight: 950;
      box-shadow: 0 10px 22px rgba(6, 25, 79, 0.16);
    }

    .segment-badge-v5.orange {
      background: #fff0eb;
      color: var(--orange);
    }

    .segment-badge-v5.green {
      background: #e9fbf2;
      color: var(--green);
    }

    .segment-badge-v5.purple {
      background: #f3efff;
      color: #8257e6;
    }

    .segment-body-v5 {
      padding: 32px 22px 22px;
    }

    .segment-body-v5 h3 {
      margin: 0 0 8px;
      color: var(--navy);
      font-size: 20px;
      font-weight: 950;
      line-height: 1.15;
    }

    .segment-body-v5 p {
      min-height: 44px;
      margin: 0;
      color: #52617f;
      font-size: 14px;
      font-weight: 650;
      line-height: 1.42;
    }

    .segment-body-v5 a {
      display: inline-flex;
      margin-top: 18px;
      color: var(--navy);
      font-size: 18px;
      font-weight: 950;
    }

    .plans-section-v5 {
      padding: 72px 0;
      background: #fff;
      border-top: 1px solid rgba(217, 227, 243, 0.75);
    }

    .plans-band-v5 {
      padding: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, #06194f 0%, #09296d 100%);
      color: #fff;
      box-shadow: 0 24px 70px rgba(6, 25, 79, 0.14);
    }

    .plans-band-v5 .section-title-v5 {
      margin-bottom: 28px;
      color: #fff;
    }

    .plans-grid-v5 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .plan-card-v5 {
      min-height: 292px;
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.08);
    }

    .plan-card-v5.featured {
      border-color: var(--orange);
      background: rgba(255, 255, 255, 0.12);
    }

    .plan-card-v5 h3 {
      margin: 0 0 4px;
      color: #fff;
      font-size: 24px;
      font-weight: 950;
    }

    .plan-card-v5 p {
      margin: 0 0 16px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 14px;
      font-weight: 700;
    }

    .plan-price-v5 {
      margin-bottom: 18px;
      color: var(--orange);
      font-size: 34px;
      font-weight: 950;
      line-height: 1;
    }

    .plan-price-v5 small {
      color: #fff;
      font-size: 16px;
    }

    .plan-list-v5 {
      display: grid;
      gap: 9px;
      min-height: 82px;
      margin: 0 0 22px;
      padding: 0;
      list-style: none;
    }

    .plan-list-v5 li {
      color: rgba(255, 255, 255, 0.88);
      font-size: 14px;
      font-weight: 750;
    }

    .plan-list-v5 li::before {
      content: "✓";
      margin-right: 8px;
      color: var(--orange);
      font-weight: 950;
    }

    .results-grid-v5 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .quote-card-v5 {
      display: grid;
      grid-template-columns: 68px 1fr;
      gap: 18px;
      align-items: center;
      min-height: 128px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 16px 38px rgba(6, 25, 79, 0.07);
    }

    .quote-avatar-v5 {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: var(--photo) center / cover no-repeat;
    }

    .quote-card-v5 p {
      margin: 0 0 10px;
      color: #52617f;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.45;
    }

    .quote-card-v5 strong {
      color: var(--navy);
      font-size: 13px;
      font-weight: 950;
    }

    .final-cta-v5 {
      padding: 64px 0;
      background: #fff;
      border-top: 1px solid rgba(217, 227, 243, 0.75);
    }

    .cta-box-v5 {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 30px;
      align-items: center;
      min-height: 160px;
      padding: 34px 40px;
      border-radius: 10px;
      background: linear-gradient(135deg, #06194f 0%, #09296d 100%);
      color: #fff;
    }

    .cta-box-v5 h2 {
      margin: 0 0 10px;
      color: #fff;
      font-size: 34px;
      font-weight: 950;
      line-height: 1.1;
    }

    .cta-box-v5 p {
      max-width: 760px;
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 16px;
      font-weight: 650;
      line-height: 1.45;
    }

    .footer-v5 {
      padding: 46px 0;
      background: var(--navy);
      color: #fff;
    }

    .footer-grid-v5 {
      display: grid;
      grid-template-columns: 1.25fr repeat(4, 1fr);
      gap: 42px;
    }

    .footer-logo-v5 {
      display: block;
      width: 210px;
      height: 48px;
      margin-bottom: 14px;
      background: url("assets/zyntrax-logo-full-on-dark.png") left center / contain no-repeat;
    }

    .footer-v5 p,
    .footer-v5 li {
      color: rgba(255, 255, 255, 0.74);
      font-size: 13px;
      font-weight: 650;
      line-height: 1.5;
    }

    .footer-v5 h3 {
      margin: 0 0 12px;
      color: #fff;
      font-size: 14px;
      font-weight: 950;
    }

    .footer-v5 ul {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    @media (max-width: 900px) {
      .products-hero-v5,
      .product-cards-v5,
      .segment-grid-v5,
      .plans-grid-v5,
      .results-grid-v5,
      .cta-box-v5,
      .footer-grid-v5 {
        grid-template-columns: 1fr;
      }

      .platform-preview-v5 {
        grid-template-columns: 64px 1fr;
      }

      .platform-metrics-v5 {
        grid-template-columns: 1fr;
      }
    }

/* Recuperador de Clientes */
.recovery-page {
  background: #f6faff;
}

.recovery-page * {
  min-width: 0;
}

.recovery-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--navy);
}

.recovery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 61, 0.98) 0%, rgba(5, 18, 61, 0.82) 38%, rgba(5, 18, 61, 0.36) 68%, rgba(5, 18, 61, 0.03) 100%),
    url("assets/hero-recuperador-clientes-entrepreneur.png") center / cover no-repeat;
}

.recovery-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 640px;
  padding-top: 118px;
}

.recovery-hero-copy {
  width: min(610px, 52vw);
}

.recovery-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 4.8vw, 76px);
  font-weight: 950;
  line-height: 0.98;
}

.recovery-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.55;
}

.recovery-dashboard-section {
  position: relative;
  z-index: 4;
  margin-top: -118px;
  padding-bottom: 56px;
}

.recovery-dashboard {
  display: grid;
  grid-template-columns: 186px 1fr;
  overflow: hidden;
  border: 1px solid #d7e3f4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(6, 25, 79, 0.2);
}

.recovery-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px 18px;
  background: linear-gradient(180deg, #06194f 0%, #08276d 100%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 850;
}

.mini-mark {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  background: url("assets/zyntrax-mark-on-dark.png") center / contain no-repeat;
}

.recovery-sidebar strong,
.recovery-sidebar span:not(.mini-mark):hover {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.recovery-sidebar strong,
.recovery-sidebar span:not(.mini-mark) {
  min-height: 42px;
  padding: 12px 14px;
}

.recovery-panel {
  padding: 30px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid #dfe8f6;
}

.metric-row article {
  min-height: 106px;
  padding: 6px 24px 22px;
  border-right: 1px solid #dfe8f6;
}

.metric-row article:last-child {
  border-right: 0;
}

.metric-row span,
.card-head a,
.chart-months,
.list-card small {
  color: #52617f;
  font-size: 12px;
  font-weight: 850;
}

.metric-row strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 950;
}

.metric-row small {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.recovery-insights {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 22px;
  margin-top: 26px;
}

.chart-card,
.list-card,
.message-card,
.calendar-card,
.post-preview {
  border: 1px solid #dce6f5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(6, 25, 79, 0.06);
}

.chart-card,
.list-card {
  padding: 20px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.card-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 950;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 18px;
  height: 210px;
  padding: 18px 12px 0;
  border-bottom: 1px solid #dce6f5;
}

.bar-chart span {
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #1b65ff 0%, #074de0 100%);
}

.chart-months {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding: 10px 12px 0;
  text-align: center;
}

.list-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-card li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.list-card small {
  display: block;
  margin-top: 3px;
}

.campaign-list li::before {
  content: "";
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: url("assets/hero-business-owner-woman.png") center / cover no-repeat;
}

.recovery-section {
  padding: 52px 0;
  background: #f8fbff;
}

.recovery-section.white {
  background: #fff;
}

.section-title-v5 {
  text-align: center;
}

.section-title-v5 h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 30px;
  font-weight: 950;
}

.section-title-v5 p {
  margin: 0 0 32px;
  color: #52617f;
  font-size: 16px;
  font-weight: 700;
}

.recovery-card-grid.four,
.content-kit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.recovery-card {
  min-height: 246px;
  padding: 26px;
  border: 1px solid #dce6f5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(6, 25, 79, 0.06);
}

.icon-pill {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 950;
}

.icon-pill.orange {
  background: #fff0ea;
  color: var(--orange);
}

.icon-pill.blue {
  background: #edf4ff;
  color: #145cff;
}

.icon-pill.green {
  background: #e8f8f2;
  color: var(--green);
}

.icon-pill.purple {
  background: #f1e9ff;
  color: #7b4df2;
}

.recovery-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 950;
}

.recovery-card p {
  margin: 0 0 22px;
  color: #39496e;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.48;
}

.recovery-card a {
  color: var(--orange);
  font-size: 14px;
  font-weight: 950;
}

.post-preview,
.message-card,
.calendar-card {
  min-height: 280px;
  padding: 20px;
}

.post-preview small,
.message-card small,
.calendar-card small {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
}

.fashion-post {
  display: flex;
  align-items: end;
  min-height: 210px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(6, 25, 79, 0.08) 0%, rgba(6, 25, 79, 0.62) 100%),
    url("assets/consulting-implementation.png") center / cover no-repeat;
  color: #fff;
}

.fashion-post span {
  max-width: 190px;
  font-size: 26px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.message-card p,
.calendar-card {
  color: #334467;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.button.small {
  min-height: 38px;
  padding: 0 16px;
  color: #145cff;
  font-size: 13px;
}

.calendar-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--navy);
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 24px;
  text-align: center;
}

.calendar-grid span,
.calendar-grid b {
  display: grid;
  place-items: center;
  min-height: 24px;
  border-radius: 50%;
  color: #52617f;
  font-size: 12px;
}

.calendar-grid b {
  background: #eef4ff;
  color: #145cff;
}

.channels-section {
  padding: 48px 0 42px;
  background: #fff;
}

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

.channels-grid article {
  padding: 16px 20px 20px;
  border-right: 1px solid #dce6f5;
}

.channels-grid article:last-child {
  border-right: 0;
}

.channels-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #edf4ff;
  color: #145cff;
  font-weight: 950;
}

.channels-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 950;
}

.channels-grid p {
  margin: 0;
  color: #52617f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.recovery-results {
  padding: 34px 0 0;
  background: #f8fbff;
}

.results-band {
  display: grid;
  grid-template-columns: 1.2fr 2fr auto;
  gap: 30px;
  align-items: center;
  padding: 34px 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #06194f 0%, #0b2a74 100%);
  color: #fff;
}

.results-band h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 950;
}

.result-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.result-numbers article {
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
}

.result-numbers strong {
  display: block;
  color: var(--orange);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.result-numbers span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 850;
}

.cta-box-v5.compact {
  margin-top: 18px;
}

.recovery-testimonials {
  padding: 48px 0 0;
  background: #eef4fb;
}

.testimonial-grid-v5 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card-v5 {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 128px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(6, 25, 79, 0.07);
}

.testimonial-card-v5 p {
  margin: 0 0 10px;
  color: #52617f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.testimonial-card-v5 strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
}

.avatar-v5 {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: url("assets/hero-business-owner-woman.png") center / cover no-repeat;
}

.avatar-v5.second {
  background-image: url("assets/consulting-implementation.png");
}

@media (max-width: 980px) {
  .recovery-hero-copy {
    width: min(620px, 90vw);
  }

  .recovery-dashboard,
  .recovery-insights,
  .metric-row,
  .recovery-card-grid.four,
  .content-kit-grid,
  .channels-grid,
  .results-band,
  .result-numbers,
  .testimonial-grid-v5 {
    grid-template-columns: 1fr;
  }

  .recovery-sidebar {
    display: none;
  }

  .metric-row article,
  .channels-grid article {
    border-right: 0;
    border-bottom: 1px solid #dfe8f6;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 28px);
  }

  .nav {
    grid-template-columns: 1fr;
    gap: 14px;
    width: calc(100% - 24px);
    min-height: 0;
    padding: 14px;
  }

  .logo {
    width: 190px;
    height: 42px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
    font-size: 12px;
  }

  .nav-item {
    min-height: 28px;
  }

  .nav-item .dropdown {
    left: 0;
    width: min(330px, calc(100vw - 36px));
    transform: none;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .recovery-hero {
    min-height: 780px;
  }

  .recovery-hero-inner {
    min-height: 720px;
    padding-top: 230px;
  }

  .recovery-hero-copy {
    width: 100%;
  }

  .recovery-hero-copy h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .recovery-hero-copy p:not(.eyebrow) {
    max-width: 94%;
    font-size: 14px;
  }

  .recovery-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .recovery-dashboard-section {
    margin-top: -78px;
  }

  .recovery-dashboard,
  .recovery-panel,
  .chart-card,
  .list-card,
  .metric-row article,
  .recovery-card,
  .post-preview,
  .message-card,
  .calendar-card,
  .results-band,
  .cta-box-v5,
  .testimonial-card-v5 {
    min-width: 0;
  }

  .recovery-panel {
    padding: 16px;
  }

  .recovery-dashboard,
  .recovery-insights,
  .chart-card,
  .list-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .metric-row article {
    min-height: 92px;
    padding: 14px 10px;
  }

  .bar-chart {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    height: 170px;
    padding-inline: 4px;
  }

  .chart-months {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    padding-inline: 4px;
  }

  .list-card li {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .campaign-list li {
    grid-template-columns: 34px 1fr;
  }

  .campaign-list li::before {
    flex: none;
  }

  .results-band {
    padding: 28px 22px;
  }

  .result-numbers article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    padding: 18px 0 0;
  }
}

/* Divulgar */
.marketing-page {
  background: #f7fbff;
}

.marketing-page * {
  min-width: 0;
}

.marketing-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--navy);
}

.marketing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 61, 0.98) 0%, rgba(5, 18, 61, 0.82) 38%, rgba(5, 18, 61, 0.25) 70%, rgba(5, 18, 61, 0.06) 100%),
    url("assets/hero-divulgar-entrepreneur.png") center / cover no-repeat;
}

.marketing-hero::after {
  content: "Nova\A colecao\A de voce";
  white-space: pre-line;
  position: absolute;
  right: 11%;
  top: 150px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-3deg);
}

.marketing-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 650px;
  padding-top: 118px;
}

.marketing-hero-copy {
  width: min(650px, 52vw);
}

.marketing-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 4.6vw, 72px);
  font-weight: 950;
  line-height: 1.02;
}

.marketing-hero-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.marketing-hero-copy ul,
.marketing-plan ul,
.win-card ul,
.security-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.marketing-hero-copy li,
.marketing-plan li,
.win-card li,
.security-card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: inherit;
  font-weight: 850;
}

.marketing-hero-copy li {
  color: rgba(255, 255, 255, 0.92);
}

.marketing-hero-copy li::before,
.marketing-plan li::before,
.win-card li::before,
.security-card li::before {
  content: "\2713";
  color: var(--orange);
  font-weight: 950;
}

.marketing-plans-section {
  position: relative;
  z-index: 5;
  margin-top: -54px;
  padding-bottom: 34px;
  background: linear-gradient(180deg, transparent 0, transparent 54px, #f7fbff 54px, #f7fbff 100%);
}

.marketing-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.marketing-plan {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 430px;
  padding: 44px 34px 30px;
  border: 1px solid #d9e3f3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(6, 25, 79, 0.08);
}

.marketing-plan.featured {
  border-color: var(--orange);
  box-shadow: 0 30px 80px rgba(255, 79, 31, 0.13);
}

.plan-badge {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.marketing-plan h2 {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 950;
}

.marketing-plan p {
  max-width: 250px;
  margin: 0 0 18px;
  color: #52617f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.marketing-plan .price {
  display: block;
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 38px;
  font-weight: 950;
}

.marketing-plan .price small {
  color: var(--navy);
  font-size: 19px;
}

.marketing-plan .price.custom {
  font-size: 34px;
}

.marketing-plan ul {
  margin-bottom: 34px;
}

.marketing-plan li {
  color: var(--navy);
  font-size: 15px;
}

.marketing-plan .button {
  align-self: end;
  width: 100%;
  margin-top: auto;
}

.compare-section,
.implementation-section,
.campaign-suggestions,
.marketing-info-section,
.routine-benefits {
  padding: 34px 0;
  background: #f7fbff;
}

.compare-table {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid #d9e3f3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(6, 25, 79, 0.06);
}

.compare-table > * {
  min-height: 48px;
  padding: 14px 24px;
  border-right: 1px solid #e5edf8;
  border-bottom: 1px solid #e5edf8;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

.compare-table > *:nth-child(4n) {
  border-right: 0;
}

.compare-head {
  background: linear-gradient(135deg, #06194f 0%, #0a2468 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.compare-head small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.compare-head b {
  display: inline-block;
  margin-left: 6px;
  padding: 3px 6px;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  text-transform: uppercase;
}

.compare-table b,
.compare-table i,
.compare-table em {
  text-align: center;
  font-style: normal;
}

.compare-table b {
  color: var(--green);
  font-size: 19px;
}

.compare-table i {
  color: #6f7c98;
  font-size: 19px;
}

.implementation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 1.4fr;
  gap: 18px;
}

.implementation-grid article,
.info-card,
.benefit-grid article {
  border: 1px solid #d9e3f3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(6, 25, 79, 0.06);
}

.implementation-grid article {
  min-height: 190px;
  padding: 24px;
}

.implementation-grid span,
.benefit-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #eef4ff;
  color: #145cff;
  font-size: 16px;
  font-weight: 950;
}

.implementation-grid h3,
.info-card h2,
.benefit-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 950;
}

.implementation-grid p,
.info-card p,
.benefit-grid p {
  margin: 0;
  color: #52617f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.48;
}

.win-card li,
.security-card li {
  color: #334467;
  font-size: 14px;
}

.win-card li::before,
.security-card li::before {
  color: var(--green);
}

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

.campaign-grid article {
  overflow: hidden;
  border: 1px solid #d9e3f3;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 16px 38px rgba(6, 25, 79, 0.09);
}

.campaign-grid article > span {
  position: absolute;
  z-index: 2;
  margin: 8px 0 0 10px;
  padding: 5px 9px;
  border-radius: 5px;
  background: #145cff;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.campaign-photo {
  height: 126px;
  background: var(--photo) center / cover no-repeat;
}

.campaign-photo.coffee {
  --photo: url("assets/hero-small-business-owner.png");
}

.campaign-photo.smile,
.campaign-photo.owner {
  --photo: url("assets/hero-business-owner-woman.png");
}

.campaign-photo.team,
.campaign-photo.product {
  --photo: url("assets/consulting-implementation.png");
}

.campaign-grid h3 {
  margin: 0;
  padding: 16px 16px 6px;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.18;
}

.campaign-grid p {
  margin: 0;
  padding: 0 16px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card {
  min-height: 240px;
  padding: 30px;
}

.info-card a {
  display: inline-block;
  margin-top: 26px;
  color: #145cff;
  font-size: 14px;
  font-weight: 950;
}

.integration-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.integration-icons span {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid #d9e3f3;
  border-radius: 10px;
  background: #f8fbff;
  color: #145cff;
  font-weight: 950;
}

.security-card {
  display: grid;
  grid-template-columns: 1fr 160px;
  align-items: center;
  gap: 20px;
}

.shield-visual {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, #e7f1ff 0%, #f8fbff 70%);
  color: #145cff;
  font-size: 28px;
  font-weight: 950;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.benefit-grid article {
  min-height: 178px;
  padding: 24px;
}

.marketing-final {
  padding-top: 28px;
}

.cta-actions {
  display: flex;
  gap: 14px;
}

@media (max-width: 980px) {
  .marketing-hero-copy {
    width: min(620px, 90vw);
  }

  .marketing-plans,
  .implementation-grid,
  .campaign-grid,
  .info-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .compare-table {
    overflow-x: auto;
    grid-template-columns: 190px repeat(3, 170px);
  }

  .security-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .marketing-hero {
    min-height: 760px;
  }

  .marketing-hero::after {
    display: none;
  }

  .marketing-hero-inner {
    min-height: 700px;
    padding-top: 230px;
  }

  .marketing-hero-copy {
    width: 100%;
  }

  .marketing-hero-copy h1 {
    font-size: 36px;
    line-height: 1.05;
  }

  .marketing-hero-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .marketing-plans-section {
    margin-top: -34px;
  }

  .marketing-plan {
    min-height: 0;
    padding: 36px 24px 24px;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Central de Oportunidades */
.central-page {
  background: #f7fbff;
}

.central-page * {
  min-width: 0;
}

.central-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(20, 92, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #06194f 0%, #09296d 100%);
}

.central-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: center;
  min-height: 720px;
  padding-top: 118px;
}

.breadcrumb {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.central-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 4.6vw, 72px);
  font-weight: 950;
  line-height: 1.05;
}

.central-copy p:not(.breadcrumb) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.central-preview {
  display: grid;
  grid-template-columns: 74px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.28);
}

.central-preview aside {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 16px;
  padding: 24px 14px;
  background: #071f5c;
}

.central-preview aside .mini-mark {
  width: 48px;
  height: 48px;
}

.central-preview aside b {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.11);
}

.central-preview-panel {
  padding: 28px;
}

.preview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.preview-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  font-weight: 950;
}

.preview-head span,
.central-preview-panel a {
  color: #52617f;
  font-size: 13px;
  font-weight: 900;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.preview-metrics article {
  min-height: 108px;
  padding: 16px;
  border: 1px solid #dfe8f6;
  border-radius: 9px;
  background: #f8fbff;
}

.preview-metrics span,
.preview-metrics small {
  display: block;
  color: #52617f;
  font-size: 11px;
  font-weight: 850;
}

.preview-metrics strong {
  display: block;
  margin: 8px 0 5px;
  color: var(--navy);
  font-size: 23px;
  font-weight: 950;
}

.preview-metrics small {
  color: var(--green);
}

.opportunity-table {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.2fr 0.75fr 0.55fr;
  overflow: hidden;
  border: 1px solid #e5edf8;
  border-radius: 9px;
}

.opportunity-table > * {
  min-height: 48px;
  padding: 13px 14px;
  border-bottom: 1px solid #e5edf8;
  color: #334467;
  font-size: 12px;
  font-weight: 800;
}

.opportunity-table div {
  min-height: 40px;
  color: #52617f;
  font-size: 11px;
  font-weight: 950;
}

.opportunity-table b,
.opportunity-table i {
  color: var(--orange);
  font-style: normal;
  font-weight: 950;
}

.opportunity-table i {
  color: #f5a000;
}

.central-preview-panel > a {
  display: block;
  margin-top: 18px;
  color: #145cff;
  text-align: center;
}

.central-section {
  padding: 64px 0;
  background: #f7fbff;
}

.central-section.white {
  background: #fff;
}

.central-feature-grid,
.central-kpi-grid,
.central-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.central-feature-grid article,
.central-kpi-grid article,
.central-result-grid article,
.score-explain,
.score-card {
  border: 1px solid #d9e3f3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(6, 25, 79, 0.06);
}

.central-feature-grid article {
  min-height: 300px;
  padding: 34px 30px;
}

.central-feature-grid span,
.central-kpi-grid > article::before {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: #eef4ff;
  color: #145cff;
  font-size: 18px;
  font-weight: 950;
}

.central-feature-grid article:nth-child(2) span,
.central-kpi-grid article:nth-child(2)::before {
  background: #e8f8f2;
  color: var(--green);
}

.central-feature-grid article:nth-child(3) span,
.central-kpi-grid article:nth-child(3)::before {
  background: #f1e9ff;
  color: #7b4df2;
}

.central-feature-grid article:nth-child(4) span,
.central-kpi-grid article:nth-child(4)::before {
  background: #fff0ea;
  color: var(--orange);
}

.central-feature-grid h3,
.central-result-grid h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.18;
}

.central-feature-grid p,
.central-result-grid p,
.score-explain p,
.score-card p {
  margin: 0;
  color: #52617f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.central-kpi-grid article {
  min-height: 270px;
  padding: 28px;
}

.central-kpi-grid > article::before {
  content: "";
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.central-kpi-grid span {
  color: #52617f;
  font-size: 13px;
  font-weight: 950;
}

.central-kpi-grid strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--navy);
  font-size: 34px;
  font-weight: 950;
}

.central-kpi-grid small {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}

.spark {
  height: 72px;
  margin-top: 30px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 45%, currentColor 46% 49%, transparent 50% 100%),
    linear-gradient(180deg, rgba(20, 92, 255, 0.1), transparent);
  color: #145cff;
}

.spark.green {
  color: var(--green);
}

.spark.purple {
  color: #7b4df2;
}

.spark.orange {
  color: var(--orange);
}

.score-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 26px;
}

.score-explain,
.score-card {
  min-height: 360px;
  padding: 36px;
}

.score-explain h3 {
  max-width: 520px;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 950;
}

.score-explain ul {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.score-explain li {
  display: grid;
  gap: 4px;
}

.score-explain strong {
  color: #145cff;
  font-size: 15px;
  font-weight: 950;
}

.score-explain span {
  color: #52617f;
  font-size: 13px;
  font-weight: 700;
}

.score-card {
  display: grid;
  align-content: center;
}

.score-card > span {
  color: var(--navy);
  font-size: 16px;
  font-weight: 950;
}

.score-card strong {
  margin: 16px 0;
  color: var(--navy);
  font-size: 72px;
  font-weight: 950;
  line-height: 1;
}

.score-card small {
  font-size: 28px;
}

.score-card b {
  justify-self: start;
  margin-bottom: 30px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #e8f8f2;
  color: var(--green);
}

.score-bar {
  overflow: hidden;
  height: 16px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4422, #ffd43b, #00a971);
}

.score-bar i {
  display: block;
  width: 82%;
  height: 100%;
  border-right: 18px solid #00a971;
}

.central-result-grid article {
  min-height: 210px;
  padding: 30px;
}

.central-result-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 34px;
  font-weight: 950;
}

.result-note {
  margin: 26px 0 0;
  color: #6a7894;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .central-hero-inner,
  .central-feature-grid,
  .central-kpi-grid,
  .score-grid,
  .central-result-grid {
    grid-template-columns: 1fr;
  }

  .central-preview {
    grid-template-columns: 1fr;
  }

  .central-preview aside {
    display: none;
  }

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

  .opportunity-table {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .central-hero {
    min-height: 980px;
  }

  .central-hero-inner {
    min-height: 920px;
    padding-top: 230px;
  }

  .central-copy h1 {
    font-size: 38px;
  }

  .central-copy p:not(.breadcrumb) {
    font-size: 15px;
  }

  .preview-metrics {
    grid-template-columns: 1fr;
  }

  .central-preview-panel,
  .score-explain,
  .score-card {
    padding: 22px;
  }
}
