:root {
  --blue-950: #061832;
  --blue-900: #08234a;
  --blue-800: #0b376c;
  --blue-700: #0f5fa8;
  --blue-600: #1576d1;
  --cyan-500: #18d8ff;
  --cyan-400: #47e4ff;
  --cyan-200: #bdf4ff;
  --white: #ffffff;
  --slate-50: #f7fbff;
  --slate-100: #eaf3fb;
  --slate-300: #b9c8d9;
  --slate-600: #5d7188;
  --slate-800: #203049;
  --dark: #071322;
  --shadow: 0 24px 80px rgba(5, 20, 48, .25);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.6;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 24, 50, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 1.25rem;
}

.brand-symbol {
  width: 56px;
  height: 56px;
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
  display: block;
}

.footer-symbol {
  width: 56px;
  height: 56px;
  max-width: 56px;
  max-height: 56px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  box-shadow: 0 14px 30px rgba(24, 216, 255, .24);
  color: var(--white);
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
  font-size: .95rem;
}

.main-nav a:hover {
  color: var(--cyan-400);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--cyan-500), #74ecff);
  color: #041326;
  box-shadow: 0 16px 38px rgba(24, 216, 255, .24);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border-color: rgba(255, 255, 255, .18);
}

.btn.full {
  width: 100%;
  border: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 16% 10%, rgba(24, 216, 255, .18), transparent 30%), linear-gradient(135deg, #071a36 0%, #0b376c 52%, #0e65b6 100%);
}

.hero-ai-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,20,48,.86) 0%, rgba(5,20,48,.76) 38%, rgba(5,20,48,.48) 64%, rgba(5,20,48,.28) 100%), url('assets/hero-ai-bg-code.png?v=6.1') center/cover no-repeat;
  z-index: 0;
}

.section-bg {
  isolation: isolate;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.75) 58%, transparent 100%);
  opacity: .65;
  z-index: -3;
}

.orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(30px);
  opacity: .22;
  z-index: -2;
}

.orb-one {
  right: -120px;
  top: 100px;
  background: var(--cyan-500);
}

.orb-two {
  left: -180px;
  bottom: -180px;
  background: var(--blue-600);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: 82px 0 94px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan-400);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .16em;
  font-size: .78rem;
  margin-bottom: 22px;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 540px;
  font-size: clamp(1.75rem, 2.9vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -.075em;
  font-weight: 900;
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

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

.hero-metrics {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 680px;
}

.hero-metrics div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: .94rem;
  color: var(--white);
}

.hero-metrics span {
  margin-top: 3px;
  font-size: .82rem;
  color: rgba(255,255,255,.66);
}

.hero-visual {
  position: relative;
}

.terminal-card {
  width: 100%;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.terminal-top {
  height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  background: rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.terminal-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6b6b;
}

.terminal-top span:nth-child(2) { background: #ffd166; }
.terminal-top span:nth-child(3) { background: #5ddc8d; }

.terminal-top small {
  margin-left: auto;
  color: rgba(255,255,255,.72);
  font-weight: 700;
}

.terminal-body {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  padding: 28px;
}

.code-card,
.dashboard-card,
.status-card {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(5, 18, 38, .76);
  border-radius: 24px;
  padding: 24px;
}

.code-card {
  min-height: 340px;
}

.card-title {
  color: var(--cyan-400);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  margin-bottom: 20px;
}

.code-card p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 18px;
  color: rgba(255,255,255,.80);
  font-weight: 700;
}

.code-card span {
  color: var(--cyan-400);
}

.dashboard-card {
  min-height: 340px;
  background: linear-gradient(180deg, rgba(8,35,74,.9), rgba(7,19,34,.84));
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.dash-header strong {
  font-size: 1.1rem;
}

.dash-header em {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(24,216,255,.14);
  color: var(--cyan-400);
  font-style: normal;
  font-size: .8rem;
  font-weight: 900;
}

.dash-bars {
  height: 165px;
  display: flex;
  align-items: end;
  gap: 14px;
  margin-top: 34px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
}

.dash-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--cyan-400), rgba(24,216,255,.35));
  box-shadow: 0 10px 30px rgba(24,216,255,.25);
}

.dash-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.dash-modules span {
  border-radius: 14px;
  padding: 9px 8px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.72);
  text-align: center;
  font-size: .76rem;
  font-weight: 800;
}

.status-card {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(430px, calc(100% - 56px));
  background: rgba(255,255,255,.94);
  color: var(--slate-800);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.status-card strong,
.status-card span {
  display: block;
}

.status-card span {
  margin-top: 5px;
  color: var(--slate-600);
}

.section {
  padding: 92px 0;
}

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

.section-heading.left {
  text-align: left;
  margin: 0;
}

.section-heading.compact {
  margin-bottom: 36px;
}

.section-kicker {
  display: inline-block;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-size: .8rem;
  margin-bottom: 12px;
}

.section h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.05em;
}

.section-heading p,
.tech-grid p,
.contact-copy p {
  margin: 16px 0 0;
  color: var(--slate-600);
  font-size: 1.05rem;
}

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

.solution-card,
.product-card,
.security-card,
.contact-form {
  background: var(--white);
  border: 1px solid rgba(17, 42, 80, .08);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 45px rgba(11, 55, 108, .08);
}

.solution-card {
  padding: 28px;
  min-height: 370px;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(21,118,209,.12), rgba(24,216,255,.18));
  color: var(--blue-700);
  font-weight: 900;
  margin-bottom: 24px;
}

.solution-illustration {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(17, 42, 80, .08);
  background: linear-gradient(180deg, #edf7ff, #dff3ff);
}

.solution-card h3,
.product-card h3,
.step h3,
.security-card h3 {
  margin: 0;
  color: var(--blue-950);
  letter-spacing: -.03em;
  line-height: 1.15;
}

.solution-card p,
.product-card p,
.step p,
.security-card li {
  color: var(--slate-600);
}

.solution-card p,
.product-card p,
.step p {
  margin: 12px 0 0;
}

.soft-section {
  background: linear-gradient(180deg, #eff7ff, #ffffff);
}

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

.product-card {
  padding: 26px;
  min-height: 268px;
  position: relative;
  overflow: hidden;
}

.product-card.featured {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
}

.product-card.featured h3,
.product-card.featured p {
  color: var(--white);
}

.product-card.featured p {
  opacity: .78;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(24,216,255,.12);
  color: var(--blue-700);
  font-size: .75rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.product-card.featured .tag {
  background: rgba(255,255,255,.12);
  color: var(--cyan-400);
}

.action-card {
  border: 1px solid rgba(24,216,255,.35);
}

.action-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-700);
  font-weight: 900;
}

.process-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(17, 42, 80, .08);
  box-shadow: 0 16px 45px rgba(11, 55, 108, .07);
}

.step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  color: var(--white);
  font-weight: 900;
}

.tech-section {
  background: var(--blue-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.tech-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(24,216,255,.18), transparent 30%), linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: auto, 70px 70px, 70px 70px;
}

.tech-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 50px;
  align-items: center;
}

.tech-section h2,
.tech-section .section-kicker {
  color: var(--white);
}

.tech-grid p {
  color: rgba(255,255,255,.72);
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tech-list span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.86);
  font-weight: 800;
  font-size: .9rem;
}

.security-card {
  padding: 30px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.security-card h3 {
  color: var(--white);
}

.security-card ul {
  padding-left: 20px;
  margin: 18px 0 0;
}

.security-card li {
  color: rgba(255,255,255,.74);
  margin: 10px 0;
}

.contact-section {
  background: linear-gradient(180deg, #ffffff, #edf7ff);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -.05em;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-links a {
  color: var(--blue-700);
  font-weight: 900;
}

.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-950);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 42, 80, .12);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--slate-800);
  background: #fbfdff;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(24,216,255,.13);
}

.site-footer {
  background: var(--blue-950);
  color: rgba(255,255,255,.70);
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 420px;
  margin: 0;
}

.site-footer strong,
.site-footer a {
  display: block;
}

.site-footer strong {
  color: var(--white);
  margin-bottom: 14px;
}

.site-footer a {
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--cyan-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 34px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 20px;
  background: linear-gradient(135deg, #25d366, #65f2a3);
  color: #041326;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(37, 211, 102, .28);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 40;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(6, 24, 50, .88);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .2s ease;
  backdrop-filter: blur(14px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .process-layout,
  .tech-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-visual {
    max-width: 760px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 20px;
    background: rgba(6, 24, 50, .98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-radius: 12px;
  }

  .main-nav a:hover {
    background: rgba(255,255,255,.08);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .hero-metrics,
  .terminal-body,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .status-card {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 18px;
  }

  .code-card,
  .dashboard-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .main-nav {
    top: 74px;
    left: 14px;
    right: 14px;
  }

  .hero-grid {
    padding: 46px 0 62px;
    gap: 36px;
  }

  .eyebrow {
    font-size: .7rem;
    letter-spacing: .11em;
  }

  .hero h1 {
    letter-spacing: -.06em;
  }

  .hero-metrics,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .terminal-body {
    padding: 18px;
  }

  .dash-modules {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
  }

  .back-to-top {
    right: 14px;
    bottom: 74px;
  }
}


.status-card { display: none !important; }

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.04;
  }

  .solution-card {
    min-height: auto;
  }

  .solution-illustration {
    height: 126px;
  }
}


.product-card.has-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.product-card.has-bg > * {
  position: relative;
  z-index: 2;
}

.product-card.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.94) 52%, rgba(255,255,255,.84) 100%);
  z-index: 0;
}

.product-card.has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .23;
  z-index: 1;
}

.product-card.featured.has-bg::before {
  background: linear-gradient(90deg, rgba(7,26,54,.92) 0%, rgba(9,47,93,.88) 54%, rgba(13,78,146,.74) 100%);
}

.product-card.featured.has-bg::after {
  opacity: .30;
}

.product-concrete { --card-bg: url('assets/bg-smartconcrete.svg'); }
.product-loteia { --card-bg: url('assets/bg-smartloteia.svg'); }
.product-eletri { --card-bg: url('assets/bg-smarteletri.svg'); }
.product-avcb { --card-bg: url('assets/bg-smartavcb.svg'); }
.product-sigri { --card-bg: url('assets/bg-smartsigri.svg'); }
.product-custom { --card-bg: url('assets/bg-sobmedida.svg'); }

.product-card.has-bg h3,
.product-card.has-bg p,
.product-card.has-bg .tag,
.product-card.has-bg a {
  max-width: 56%;
}

.product-card.featured.has-bg h3,
.product-card.featured.has-bg p,
.product-card.featured.has-bg .tag {
  max-width: 54%;
}

.product-card .tag { backdrop-filter: blur(6px); }
.hero-content, .hero-visual { position: relative; z-index: 1; }

@media (max-width: 1100px) {
  .product-card.has-bg h3,
  .product-card.has-bg p,
  .product-card.has-bg .tag,
  .product-card.has-bg a,
  .product-card.featured.has-bg h3,
  .product-card.featured.has-bg p,
  .product-card.featured.has-bg .tag {
    max-width: 58%;
  }
}

@media (max-width: 720px) {
  .product-card.has-bg::before {
    background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.92) 45%, rgba(255,255,255,.82) 100%);
  }

  .product-card.featured.has-bg::before {
    background: linear-gradient(180deg, rgba(7,26,54,.90) 0%, rgba(9,47,93,.82) 50%, rgba(13,78,146,.70) 100%);
  }

  .product-card.has-bg h3,
  .product-card.has-bg p,
  .product-card.has-bg .tag,
  .product-card.has-bg a,
  .product-card.featured.has-bg h3,
  .product-card.featured.has-bg p,
  .product-card.featured.has-bg .tag {
    max-width: 100%;
  }

  .product-card.has-bg::after {
    opacity: .16;
  }
}
.product-card.featured p { max-width: 100%; }
.action-card a { position: relative; z-index: 2; }


/* v6.3 cards text contrast fix */
.product-card.featured.has-bg h3,
.product-card.featured.has-bg p,
.product-card.featured.has-bg a {
  color: #ffffff;
}

.product-card.featured.has-bg p {
  opacity: 1;
}

.product-card.featured.has-bg .tag {
  color: #67e8f9;
  background: rgba(255,255,255,.12);
}

.product-card.has-bg:not(.featured) h3,
.product-card.has-bg:not(.featured) p,
.product-card.has-bg:not(.featured) a,
.product-card.has-bg:not(.featured) .card-inline-link {
  color: #082b57;
}

.product-card.has-bg:not(.featured) .tag {
  color: #0b5fad;
  background: rgba(24,216,255,.14);
}

/* v6.5 clickable product cards */
.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.product-card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(11, 55, 108, .16);
  border-color: rgba(24,216,255,.42);
}

.product-card-link:hover::after {
  opacity: .34;
}

.product-card-link.featured:hover::after {
  opacity: .42;
}

.card-inline-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-700);
  font-weight: 900;
  position: relative;
  z-index: 2;
}
