
:root {
  --font-space-grotesk: "Space Grotesk";
  --font-ibm-plex-sans: "IBM Plex Sans";
  --font-ibm-plex-mono: "IBM Plex Mono";
  --navy: #081733;
  --navy-soft: #0d2148;
  --blue: #2e7df6;
  --blue-bright: #55a2ff;
  --green: #12b981;
  --surface: #f4f7fc;
  --ink: #0a1424;
  --muted: #5a6679;
  --line: #dce4ef;
  --white: #ffffff;
  --font-title: var(--font-space-grotesk), Arial, sans-serif;
  --font-body: var(--font-ibm-plex-sans), Arial, sans-serif;
  --font-data: var(--font-ibm-plex-mono), monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrowShell { width: min(1040px, calc(100% - 40px)); }
.section { padding: 112px 0; }
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 23, 51, 0.15), rgba(8, 23, 51, 0.86)),
    radial-gradient(circle at 76% 42%, #153f86 0%, #0b2552 25%, #081733 58%, #050f23 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}
.heroGlow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.heroGlowOne { width: 520px; height: 520px; right: -240px; top: -210px; background: rgba(46,125,246,.18); }
.heroGlowTwo { width: 340px; height: 340px; left: 38%; bottom: -270px; background: rgba(18,185,129,.1); }
.siteHeader { position: relative; z-index: 5; height: 100px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand { width: 178px; height: 68px; display: flex; align-items: center; overflow: hidden; }
.brand img { width: 178px; height: auto; }
.headerProof { color: #b7c8e6; font-size: 13px; display: flex; gap: 9px; align-items: center; }
.headerDot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(18,185,129,.12); }
.heroGrid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: 70px; align-items: center; padding: 84px 0 92px; }
.eyebrow { margin: 0 0 22px; color: var(--blue); font-family: var(--font-data); font-size: 12px; line-height: 1.4; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.eyebrow > span { width: 23px; height: 2px; background: currentColor; }
.lightEyebrow { color: #70a9ff; }
.heroCopy h1, .sectionTitle, .finalCta h2 { font-family: var(--font-title); letter-spacing: -.055em; }
.heroCopy h1 { margin: 0; font-size: clamp(44px, 4.4vw, 58px); line-height: 1.04; max-width: 740px; font-weight: 720; text-wrap: balance; }
.heroCopy h1 em { display: block; margin-top: 14px; font-style: normal;
  background: linear-gradient(135deg, #a8d0ff 0%, #5ca0ff 55%, #2e7df6 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
  text-shadow: 0 0 42px rgba(92,160,255,.22);
}
.heroSubtitle { color: #cfdaec; font-size: 19px; line-height: 1.6; max-width: 590px; margin: 28px 0 32px; }
.heroActions { display: flex; align-items: center; gap: 20px; }
.ctaButton {
  min-height: 58px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 0 16px 0 25px;
  background: linear-gradient(135deg, #3989ff 0%, #1f6fe8 100%);
  color: white;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  font-family: var(--font-title);
  font-weight: 650;
  font-size: 15px;
  box-shadow: 0 16px 38px rgba(20,95,220,.32), inset 0 1px 0 rgba(255,255,255,.2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ctaButton:hover { transform: translateY(-2px); box-shadow: 0 21px 46px rgba(20,95,220,.44), inset 0 1px 0 rgba(255,255,255,.2); }
.ctaButton:focus-visible { outline: 3px solid rgba(112,169,255,.5); outline-offset: 3px; }
.buttonArrow { width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; background: rgba(255,255,255,.13); font-size: 18px; }
.ctaButtonCompact { min-height: 44px; font-size: 13px; border-radius: 9px; padding-left: 18px; gap: 10px; }
.ctaButtonCompact .buttonArrow { width: 28px; height: 28px; }
.microcopy { margin: 0; max-width: 180px; color: #aebdd5; font-size: 12px; line-height: 1.45; display: flex; align-items: center; gap: 9px; }
.microAvatar { flex: 0 0 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #ecf3ff; color: var(--navy); font-family: var(--font-title); font-weight: 700; }
.proofRow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding-top: 36px; margin-top: 38px; border-top: 1px solid rgba(255,255,255,.11); }
.proofRow > div { display: flex; align-items: flex-start; gap: 9px; color: #aebed6; font-size: 11px; line-height: 1.45; }
.proofRow strong { color: white; font-weight: 600; }
.checkIcon { display: inline-grid; place-items: center; flex: 0 0 auto; width: 19px; height: 19px; border-radius: 50%; background: var(--green); color: white; font-size: 11px; font-weight: 800; }
.qualificationVisual { position: relative; padding: 38px 0 0; }
.panelAura { position: absolute; inset: 5% -10% 0; background: radial-gradient(circle, rgba(46,125,246,.28), transparent 63%); filter: blur(12px); }
.systemPanel { position: relative; padding: 20px; border-radius: 20px; background: rgba(248,251,255,.97); color: var(--ink); border: 1px solid rgba(255,255,255,.78); box-shadow: 0 35px 90px rgba(0,6,20,.46), 0 0 0 9px rgba(255,255,255,.035); transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.panelTopbar, .patientHeader, .panelFooter { display: flex; align-items: center; }
.panelTopbar { justify-content: space-between; padding-bottom: 18px; }
.panelBrand { display: flex; align-items: center; gap: 9px; font-family: var(--font-title); font-size: 12px; font-weight: 700; color: #334258; }
.panelMark { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 7px; color: white; background: linear-gradient(135deg, var(--blue), #074dbb); }
.panelLive { padding: 6px 8px; border-radius: 6px; background: #eaf8f3; color: #198763; font-family: var(--font-data); font-size: 8px; letter-spacing: .04em; text-transform: uppercase; }
.panelLive i, .availability i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 5px; background: var(--green); animation: pulse 2s ease infinite; }
.patientHeader { gap: 12px; padding: 20px 4px; }
.patientAvatar { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; color: var(--blue); background: #e7f0ff; font-family: var(--font-data); font-size: 13px; font-weight: 700; }
.patientLabel, .metricLabel { display: block; font-family: var(--font-data); font-size: 8px; color: #8590a1; letter-spacing: .08em; }
.patientHeader h2 { margin: 5px 0 0; font-family: var(--font-title); font-size: 17px; }
.approvedBadge { margin-left: auto; display: flex; align-items: center; gap: 6px; padding: 7px 9px; border-radius: 8px; background: #e5f8f1; color: #12835f; font-family: var(--font-data); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.approvedBadge .checkIcon { width: 16px; height: 16px; font-size: 9px; }
.panelDivider { height: 1px; background: #e1e7ef; }
.panelMetrics { display: grid; grid-template-columns: 1fr 1.15fr; gap: 10px; padding: 16px 0 10px; }
.metricCard { position: relative; padding: 14px 12px 14px 46px; min-height: 88px; border: 1px solid #dfe6f0; border-radius: 12px; background: white; }
.metricCard strong { display: block; margin-top: 7px; font-family: var(--font-title); font-size: 14px; }
.metricCard small { display: block; color: #8a96a8; margin-top: 2px; font-size: 9px; }
.metricIcon { position: absolute; top: 16px; left: 12px; width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; color: var(--blue); background: #e7f0ff; font-family: var(--font-data); font-size: 8px; font-weight: 700; }
.blueMetric { border-color: #a9c9fa; background: linear-gradient(145deg, #fafdff, #edf5ff); }
.blueMetric strong { color: #145fc9; font-family: var(--font-data); }
.interestCard { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px; border: 1px solid #dfe6f0; border-radius: 12px; background: white; }
.interestCard strong { display: block; margin-top: 6px; font-family: var(--font-title); font-size: 13px; }
.priorityTag { color: #a5660d; background: #fff3dd; border-radius: 5px; padding: 5px 7px; font-family: var(--font-data); font-size: 7px; font-weight: 700; }
.panelFooter { gap: 12px; padding: 17px 3px 3px; }
.scoreBlock { flex: 1; }
.scoreBlock > span { font-family: var(--font-data); font-size: 7px; color: #8995a5; letter-spacing: .08em; }
.scoreTrack { height: 5px; overflow: hidden; border-radius: 4px; background: #dce5ef; margin-top: 7px; }
.scoreTrack i { display: block; width: 92%; height: 100%; background: linear-gradient(90deg, var(--blue), #68a6ff); }
.scoreNumber { font-family: var(--font-data); color: var(--blue); font-size: 22px; }
.lgpdNote { position: relative; text-align: center; color: #8397b7; font-family: var(--font-data); font-size: 8px; letter-spacing: .03em; margin: 20px 0 0; }
.heroBottomLine { position: absolute; z-index: 2; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent 0%, var(--blue) 42%, var(--green) 56%, transparent 100%); opacity: .7; }
.reveal { animation: rise .7s cubic-bezier(.2,.75,.3,1) both; }
.revealDelay { animation-delay: .13s; }

.problem {
  color: white;
  background:
    radial-gradient(circle at 15% 18%, rgba(46,125,246,.13), transparent 30%),
    linear-gradient(180deg, #07142d 0%, #091a39 100%);
}
.problem .sectionTitle { color: white; }
.sectionTitle { margin: 0; font-size: clamp(38px, 4vw, 56px); line-height: 1.05; font-weight: 650; max-width: 820px; }
.sectionTitle em { color: var(--blue); font-style: normal; }
.leakFlow { display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; gap: 14px; align-items: center; margin-top: 60px; }
.flowCard { position: relative; min-height: 260px; padding: 29px; overflow: hidden; border: 1px solid rgba(137,169,216,.16); border-radius: 18px; background: linear-gradient(155deg, rgba(18,43,86,.82), rgba(8,25,55,.9)); box-shadow: 0 20px 55px rgba(0,5,18,.22), inset 0 1px 0 rgba(255,255,255,.04); }
.flowNumber { position: absolute; top: 22px; right: 22px; color: #536b8f; font-family: var(--font-data); font-size: 11px; }
.flowIcon { position: relative; width: 54px; height: 54px; border-radius: 15px; margin-bottom: 28px; background: #eaf2ff; }
.flowIcon i { position: absolute; display: block; }
.arrivalIcon i { left: 13px; height: 3px; border-radius: 3px; background: var(--blue); }
.arrivalIcon i:nth-child(1) { top: 14px; width: 26px; }
.arrivalIcon i:nth-child(2) { top: 24px; width: 20px; }
.arrivalIcon i:nth-child(3) { top: 34px; width: 13px; }
.coolingIcon { background: #eef1f5; }
.coolingIcon i:first-child { width: 24px; height: 24px; border: 3px solid #8090a5; border-radius: 50%; left: 15px; top: 15px; }
.coolingIcon i:last-child { width: 3px; height: 12px; background: #8090a5; left: 27px; top: 8px; }
.leakIcon { background: #fff0ed; }
.leakIcon i:first-child { width: 17px; height: 25px; border-radius: 50% 50% 60% 60%; background: #e77665; left: 18px; top: 10px; transform: rotate(45deg); }
.leakIcon i:last-child { width: 9px; height: 12px; border-radius: 50%; background: #f0a69b; left: 34px; top: 35px; }
.flowCard h3 { margin: 0 0 12px; font-family: var(--font-data); color: white; font-size: 16px; letter-spacing: .09em; }
.flowCard p { margin: 0; color: #9eafc9; line-height: 1.65; font-size: 15px; }
.flowArrow { text-align: center; color: #97a8be; font-size: 26px; }
.sectionClose { display: flex; align-items: center; gap: 24px; margin-top: 48px; }
.sectionClose p { margin: 0; color: white; text-align: center; font-family: var(--font-title); font-size: 20px; font-weight: 650; }
.closeLine { height: 1px; flex: 1; background: rgba(137,169,216,.18); }

.difference { position: relative; overflow: hidden; color: white; background: linear-gradient(150deg, #081733 0%, #0c2350 62%, #10336b 100%); }
.difference::after { content: ""; position: absolute; width: 600px; height: 600px; right: -300px; bottom: -380px; border-radius: 50%; background: rgba(46,125,246,.22); filter: blur(20px); }
.difference .shell { position: relative; z-index: 1; }
.splitHeading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 100px; }
.splitHeading > p { color: #aebed6; line-height: 1.7; font-size: 16px; margin: 0 0 4px; }
.lightTitle { color: white; }
.stepsGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 62px; }
.stepCard { position: relative; min-height: 310px; padding: 31px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.055); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.featuredStep { background: linear-gradient(145deg, rgba(46,125,246,.26), rgba(46,125,246,.1)); border-color: rgba(94,158,255,.56); }
.stepIndex { position: absolute; top: 26px; right: 28px; color: #6880a5; font-family: var(--font-data); font-size: 12px; }
.stepLabel { position: absolute; top: -11px; left: 24px; padding: 6px 9px; border-radius: 5px; color: white; background: var(--blue); font-family: var(--font-data); font-size: 7px; letter-spacing: .08em; font-weight: 700; }
.stepVisual { position: relative; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 17px; margin: 10px 0 44px; background: #122b58; color: #6da6ff; font-family: var(--font-data); font-weight: 700; box-shadow: inset 0 0 0 1px rgba(100,160,255,.14); }
.calendarVisual span { font-size: 15px; }
.calendarVisual i { position: absolute; width: 28px; height: 4px; top: 14px; border-radius: 2px; background: #6da6ff; }
.verifyVisual { background: #173c78; }
.verifyVisual span { font-size: 10px; }
.verifyVisual i { position: absolute; width: 21px; height: 21px; right: -7px; bottom: -5px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-size: 11px; font-style: normal; box-shadow: 0 0 0 4px #0e2c5b; }
.chairVisual i { position: absolute; width: 30px; height: 2px; bottom: 16px; background: #6da6ff; transform: rotate(-12deg); }
.stepCard h3 { margin: 0 0 12px; font-family: var(--font-title); font-size: 20px; }
.stepCard p { margin: 0; color: #aebed6; line-height: 1.65; font-size: 14px; }

.comparison {
  position: relative;
  color: white;
  background:
    radial-gradient(circle at 82% 25%, rgba(46,125,246,.13), transparent 28%),
    linear-gradient(180deg, #061126 0%, #081733 100%);
}
.centeredHeading { text-align: center; }
.centeredHeading .eyebrow { justify-content: center; }
.centeredHeading .sectionTitle { margin: 0 auto; }
.comparisonGrid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 20px; margin-top: 60px; }
.comparisonCard { position: relative; padding: 38px; border-radius: 20px; }
.commonCard { border: 1px solid rgba(158,176,205,.13); background: rgba(255,255,255,.035); color: #8291a8; }
.prospectaCard { border: 1px solid var(--blue); background: linear-gradient(155deg, #12336b 0%, #0b2149 58%, #081733 100%); color: white; box-shadow: 0 28px 70px rgba(0,7,24,.34), 0 0 60px rgba(46,125,246,.08); }
.recommendedFlag { position: absolute; right: 25px; top: -12px; padding: 7px 10px; border-radius: 5px; color: white; background: var(--blue); font-family: var(--font-data); font-size: 8px; letter-spacing: .08em; font-weight: 700; }
.comparisonCardHeader { display: flex; align-items: center; gap: 13px; padding-bottom: 26px; border-bottom: 1px solid currentColor; border-color: rgba(111,127,148,.2); }
.comparisonCardHeader h3 { margin: 0; font-family: var(--font-title); font-size: 22px; }
.minusIcon, .plusIcon { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 10px; font-family: var(--font-title); font-weight: 700; }
.minusIcon { background: #e4e8ee; color: #8b97a8; }
.plusIcon { background: var(--blue); color: white; }
.comparisonCard ul, .fitCard ul { margin: 0; padding: 24px 0 0; list-style: none; }
.comparisonCard li { min-height: 46px; display: flex; align-items: center; gap: 13px; border-bottom: 1px solid rgba(117,133,152,.14); font-size: 14px; }
.comparisonCard li:last-child { border: 0; }
.commonCard li span { color: #a4aebb; font-size: 18px; }
.prospectaCard li { color: #dbe5f4; }
.prospectaCard .checkIcon { width: 18px; height: 18px; }
.guaranteeSeal { max-width: 660px; margin: 26px auto 0; padding: 17px 24px; display: flex; align-items: center; justify-content: center; gap: 15px; border: 1px solid rgba(18,185,129,.3); border-radius: 14px; background: #eaf9f4; color: #167b5e; }
.sealIcon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 10px; background: rgba(18,185,129,.13); }
.guaranteeSeal span { font-family: var(--font-data); font-size: 9px; letter-spacing: .08em; font-weight: 700; }
.guaranteeSeal p { margin: 3px 0 0; color: #325e52; font-size: 13px; }

.team {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(145deg, #0b2148 0%, #07152f 52%, #050f22 100%);
  border-top: 1px solid rgba(255,255,255,.06);
}
.team::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 35% 50%, black, transparent 65%);
}
.teamGlow { position: absolute; width: 520px; height: 520px; left: -280px; top: 10%; border-radius: 50%; background: rgba(46,125,246,.22); filter: blur(40px); }
.teamGrid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 78px; align-items: center; }
.teamPortrait { position: relative; }
.portraitFrame { position: relative; overflow: hidden; border-radius: 24px; border: 1px solid rgba(119,169,244,.26); background: #101a2a; box-shadow: 0 34px 90px rgba(0,4,16,.38), 0 0 0 8px rgba(255,255,255,.025); }
.portraitFrame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(2,8,20,.92) 100%); pointer-events: none; }
.portraitFrame img { width: 100%; aspect-ratio: 3 / 2.5; object-fit: cover; object-position: center; filter: saturate(.8) contrast(1.06); }
.portraitCaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 24px; }
.portraitCaption span { display: block; margin-bottom: 7px; color: #77adff; font-family: var(--font-data); font-size: 9px; letter-spacing: .12em; font-weight: 700; }
.portraitCaption strong { display: block; max-width: 440px; font-family: var(--font-title); font-size: 21px; line-height: 1.2; }
.portraitStamp { position: absolute; z-index: 3; top: -22px; right: -24px; width: 100px; height: 100px; display: grid; align-content: center; justify-content: center; border-radius: 50%; color: #cfe0fb; background: linear-gradient(145deg, #1f67d3, #0c306b); border: 1px solid rgba(255,255,255,.28); box-shadow: 0 17px 36px rgba(0,8,25,.36); font-family: var(--font-data); font-size: 8px; line-height: 1.25; letter-spacing: .06em; text-transform: uppercase; }
.portraitStamp span { display: block; color: white; font-size: 28px; font-weight: 700; line-height: .85; }
.teamLead { margin: 24px 0 32px; color: #9eafc9; line-height: 1.7; font-size: 16px; max-width: 540px; }
.leadersGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.leaderCard { min-height: 74px; display: flex; align-items: center; gap: 12px; padding: 9px; border: 1px solid rgba(135,164,205,.14); border-radius: 13px; background: rgba(255,255,255,.035); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.leaderCard:hover { transform: translateY(-2px); border-color: rgba(96,153,239,.4); background: rgba(46,125,246,.08); }
.leaderCard img { width: 54px; height: 54px; flex: 0 0 auto; object-fit: cover; object-position: center 22%; border-radius: 10px; background: #0b1423; }
.leaderCard strong, .leaderCard span { display: block; }
.leaderCard strong { margin-bottom: 4px; font-family: var(--font-title); font-size: 13px; color: white; }
.leaderCard span { color: #7f93b1; font-size: 9px; line-height: 1.35; }

.fit { color: white; background: #071329; }
.fit .shell { display: grid; grid-template-columns: .65fr 1.35fr; gap: 78px; align-items: center; }
.fitIntro > p:last-child { color: #9fb0cb; line-height: 1.7; max-width: 340px; }
.fitGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fitCard { overflow: hidden; border-radius: 18px; border: 1px solid rgba(255,255,255,.12); background: #0b1c3c; }
.yesCard { border-color: rgba(46,125,246,.48); background: linear-gradient(150deg, #102c60, #0a1e43); }
.fitCardHeader { min-height: 74px; padding: 0 24px; display: flex; align-items: center; gap: 11px; border-bottom: 1px solid rgba(255,255,255,.1); }
.fitCardHeader h3 { margin: 0; font-family: var(--font-title); font-size: 19px; }
.pauseIcon { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: #42526d; color: #b9c4d5; font-family: var(--font-data); font-size: 7px; }
.fitCard ul { padding: 9px 24px 18px; }
.fitCard li { min-height: 68px; padding: 14px 0; display: flex; align-items: flex-start; gap: 14px; border-bottom: 1px solid rgba(255,255,255,.08); color: #c5d0e1; font-size: 14px; line-height: 1.5; }
.fitCard li:last-child { border: 0; }
.fitCard li > span { flex: 0 0 auto; color: #6fa7fc; font-family: var(--font-data); font-size: 9px; margin-top: 5px; }
.notYetCard { opacity: .82; }
.notYetCard li > span { color: #74839b; }

.finalCta { position: relative; overflow: hidden; color: white; background: linear-gradient(120deg, #164a9e 0%, #2e7df6 52%, #145fc9 100%); }
.finalCta::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: radial-gradient(circle at center, white 1px, transparent 1px); background-size: 25px 25px; }
.finalGlow { position: absolute; width: 420px; height: 420px; left: -180px; bottom: -280px; border-radius: 50%; background: rgba(255,255,255,.18); filter: blur(10px); }
.finalCtaInner { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 90px; }
.finalCta h2 { margin: 0; font-size: clamp(40px, 4vw, 57px); line-height: 1.04; }
.finalCtaAction > p { margin: 0 0 25px; color: #e7efff; line-height: 1.7; font-size: 17px; }
.finalCta .ctaButton { width: 100%; color: #154b99; background: white; box-shadow: 0 18px 40px rgba(4,34,86,.2); }
.finalCta .buttonArrow { color: white; background: var(--blue); }
.availability { display: block; margin-top: 14px; text-align: center; font-family: var(--font-data); font-size: 9px; letter-spacing: .05em; color: #dbe8ff; }
.availability i { background: #9af1d1; }
.siteFooter { padding: 40px 0; color: #8798b3; background: #050e20; }
.footerInner { display: grid; grid-template-columns: 190px 1fr 1.2fr; gap: 40px; align-items: center; font-size: 12px; line-height: 1.5; }
.footerInner img { width: 154px; height: auto; }
.footerInner p { margin: 0; }
.footerLegal { text-align: right; }
.mobileWhatsApp { display: none; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(18,185,129,.3); } 50% { box-shadow: 0 0 0 6px rgba(18,185,129,0); } }

@media (max-width: 980px) {
  .heroGrid { grid-template-columns: 1fr; gap: 50px; padding-top: 64px; }
  .heroCopy { max-width: 760px; }
  .qualificationVisual { width: min(620px, 100%); margin: 0 auto; }
  .splitHeading, .finalCtaInner { grid-template-columns: 1fr; gap: 28px; }
  .splitHeading > p { max-width: 620px; }
  .fit .shell { grid-template-columns: 1fr; gap: 46px; }
  .teamGrid { grid-template-columns: 1fr; gap: 52px; }
  .teamPortrait { width: min(680px, 100%); }
  .fitIntro > p:last-child { max-width: 620px; }
  .footerInner { grid-template-columns: 160px 1fr; }
  .footerLegal { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 720px) {
  .shell, .narrowShell { width: min(100% - 32px, 620px); }
  .section { padding: 78px 0; }
  body { padding-bottom: 79px; }
  .siteHeader { height: 78px; }
  .brand { width: 145px; height: 56px; }
  .brand img { width: 145px; }
  .headerProof, .siteHeader .ctaButton { display: none; }
  .heroGrid { padding: 52px 0 70px; gap: 35px; }
  .heroCopy h1 { font-size: clamp(34px, 9vw, 44px); line-height: 1.08; }
  .heroCopy h1 em { margin-top: 9px; }
  .heroSubtitle { margin: 24px 0 27px; font-size: 17px; line-height: 1.55; }
  .heroActions { display: block; }
  .heroActions .ctaButton { width: 100%; }
  .microcopy { max-width: none; justify-content: center; margin-top: 14px; }
  .proofRow { grid-template-columns: 1fr; gap: 13px; padding-top: 25px; margin-top: 28px; }
  .proofRow > div { font-size: 12px; align-items: center; }
  .qualificationVisual { padding-top: 8px; }
  .systemPanel { padding: 14px; border-radius: 16px; transform: none; }
  .panelBrand { font-size: 10px; }
  .panelLive { font-size: 6px; }
  .patientHeader { padding: 16px 0; }
  .patientAvatar { width: 42px; height: 42px; }
  .approvedBadge { padding: 6px; font-size: 7px; }
  .panelMetrics { grid-template-columns: 1fr; }
  .metricCard { min-height: 80px; }
  .interestCard { align-items: flex-start; flex-direction: column; }
  .sectionTitle { font-size: clamp(36px, 10vw, 48px); }
  .leakFlow { grid-template-columns: 1fr; gap: 12px; margin-top: 42px; }
  .flowCard { min-height: auto; padding: 26px; }
  .flowIcon { margin-bottom: 21px; }
  .flowArrow { transform: rotate(90deg); height: 24px; line-height: 20px; }
  .sectionClose { margin-top: 37px; }
  .sectionClose .closeLine { display: none; }
  .sectionClose p { text-align: left; font-size: 19px; border-left: 3px solid var(--blue); padding-left: 18px; }
  .stepsGrid, .comparisonGrid, .fitGrid { grid-template-columns: 1fr; }
  .stepsGrid { margin-top: 45px; }
  .stepCard { min-height: 260px; }
  .comparisonGrid { margin-top: 42px; }
  .comparisonCard { padding: 28px 23px; }
  .prospectaCard { order: -1; }
  .guaranteeSeal { align-items: flex-start; justify-content: flex-start; padding: 16px; }
  .teamGrid { gap: 43px; }
  .portraitFrame { border-radius: 18px; }
  .portraitCaption { left: 20px; right: 20px; bottom: 18px; }
  .portraitCaption strong { font-size: 17px; }
  .portraitStamp { width: 82px; height: 82px; top: -17px; right: -7px; font-size: 7px; }
  .portraitStamp span { font-size: 23px; }
  .leadersGrid { grid-template-columns: 1fr; }
  .leaderCard { min-height: 70px; }
  .fitGrid { gap: 13px; }
  .finalCtaInner { gap: 32px; }
  .finalCta h2 { font-size: clamp(38px, 10vw, 50px); }
  .finalCtaAction > p { font-size: 16px; }
  .footerInner { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
  .footerLegal { text-align: left; }
  .mobileWhatsApp { position: fixed; z-index: 50; left: 0; right: 0; bottom: 0; display: block; padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); background: rgba(5,14,32,.96); border-top: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(14px); }
  .mobileWhatsApp a { min-height: 58px; display: flex; justify-content: center; align-items: center; gap: 12px; border-radius: 11px; color: white; background: linear-gradient(135deg, #2782fb, #1766d6); box-shadow: 0 10px 24px rgba(20,95,220,.28); }
  .mobileWaIcon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 8px; background: rgba(255,255,255,.14); font-size: 18px; }
  .mobileWhatsApp strong, .mobileWhatsApp small { display: block; }
  .mobileWhatsApp strong { font-family: var(--font-title); font-size: 14px; }
  .mobileWhatsApp small { margin-top: 2px; color: #c9dcfa; font-size: 10px; }
}

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

  
/* ============ Camada de conversão (modal, notificações, WhatsApp) ============ */
.lpFloatWa { position: fixed; right: 20px; bottom: 22px; z-index: 60; width: 58px; height: 58px; border: none; border-radius: 50%; background: #25d366; box-shadow: 0 14px 34px rgba(18,120,60,.38); cursor: pointer; display: grid; place-items: center; }
.lpFloatWa svg { width: 32px; height: 32px; fill: #fff; }
.lpFloatWa:hover { transform: translateY(-2px); }

.lpNotif { position: fixed; left: 20px; bottom: 22px; z-index: 55; display: flex; gap: 10px; align-items: flex-start; max-width: 320px; padding: 13px 16px; border-radius: 14px; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 44px rgba(4,15,40,.18); animation: rise .5s ease both; }
.lpNotif strong { display: block; font-family: var(--font-data); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.lpNotif p { margin: 4px 0 0; font-size: 13px; line-height: 1.4; color: var(--ink); }
.lpNotifDot { flex: 0 0 8px; height: 8px; margin-top: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(18,185,129,.14); }

@keyframes lpOverlayIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes lpModalIn { from { opacity: 0; transform: translateY(22px) scale(.97) } to { opacity: 1; transform: none } }

.lpOverlay { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 20px; background: radial-gradient(120% 90% at 50% 0%, rgba(20,60,140,.55) 0%, rgba(4,10,26,.86) 60%, rgba(2,6,18,.94) 100%); backdrop-filter: blur(10px) saturate(130%); overflow-y: auto; animation: lpOverlayIn .28s ease both; }
.lpModal { position: relative; width: min(540px, 100%); border-radius: 26px; padding: 32px 28px 26px; color: #e9f0fb; background: linear-gradient(160deg, #0d2350 0%, #0a1836 46%, #060f26 100%); border: 1px solid rgba(120,170,255,.22); box-shadow: 0 50px 120px rgba(0,6,24,.62), inset 0 1px 0 rgba(255,255,255,.07); overflow: hidden; animation: lpModalIn .38s cubic-bezier(.2,.8,.25,1) both; }
.lpModal::before { content: ""; position: absolute; inset: -1px -1px auto; height: 3px; background: linear-gradient(90deg, transparent, #57a0ff, #22d69a, transparent); opacity: .85; }
.lpModal > * { position: relative; z-index: 1; }
.lpModal h3 { margin: 14px 0 6px; font-family: var(--font-title); font-size: 25px; letter-spacing: -.03em; color: #f4f8ff; }
.lpLead { margin: 0 0 18px; color: #a8bcda; font-size: 14px; line-height: 1.5; }
.lpClose { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border: 1px solid rgba(150,190,255,.22); border-radius: 11px; background: rgba(255,255,255,.06); color: #cfe0f8; font-size: 20px; line-height: 1; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.lpClose:hover { background: rgba(255,255,255,.14); transform: rotate(90deg); }
.lpExitPitch { margin: 0 -4px 10px; padding: 16px 18px; border-radius: 16px; background: linear-gradient(135deg, rgba(255,214,102,.16), rgba(255,183,53,.07)); border: 1px solid rgba(255,205,90,.28); color: #ffe9b8; }
.lpExitPitch strong { display: block; font-family: var(--font-title); font-size: 17px; line-height: 1.25; margin-bottom: 8px; letter-spacing: -.02em; }
.lpExitPitch p { margin: 0; font-size: 14px; line-height: 1.5; color: #f0dcae; }

/* Popup de retenção (pitch) antes do formulário */
.lpModalPitch { text-align: center; }
.lpPitch { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lpPitchImage { width: 100%; max-width: 390px; aspect-ratio: 3 / 2; border-radius: 20px; overflow: hidden; margin: 0 auto 4px; border: 1px solid rgba(140,180,255,.2); box-shadow: 0 24px 54px rgba(0,8,28,.5); }
.lpPitchImage img { width: 100%; height: 100%; object-fit: contain; background: #060f26; }
.lpPitch strong { display: block; font-family: var(--font-title); font-size: 24px; line-height: 1.15; letter-spacing: -.03em; background: linear-gradient(120deg, #ffffff, #9dc6ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lpPitch p { margin: 0; font-size: 15px; line-height: 1.55; color: #adc1de; }
.lpPitch .lpPrimary { margin-top: 4px; }
.lpPitch .lpBack { margin-top: 2px; }

.lpProgress { height: 6px; border-radius: 4px; background: rgba(255,255,255,.09); overflow: hidden; }
.lpProgress i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, #3d8bff, #22d69a); box-shadow: 0 0 16px rgba(61,139,255,.55); transition: width .35s cubic-bezier(.2,.8,.25,1); }
.lpStepLabel { display: inline-block; margin-top: 10px; font-family: var(--font-data); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #8fa6c8; }
.lpField { display: block; border: none; padding: 0; margin: 0 0 18px; }
.lpField legend { padding: 0; font-size: 13px; font-weight: 600; color: #dce8fa; margin-bottom: 9px; }
.lpOptions { display: flex; flex-wrap: wrap; gap: 8px; }
.lpOption { padding: 11px 14px; border-radius: 12px; border: 1px solid rgba(150,190,255,.2); background: rgba(255,255,255,.04); font-size: 13px; color: #d6e4f8; cursor: pointer; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.lpOption:hover { border-color: #4d94ff; background: rgba(77,148,255,.14); transform: translateY(-1px); }
.lpOptionOn { border-color: #58a1ff; background: linear-gradient(135deg, rgba(61,139,255,.32), rgba(34,214,154,.18)); color: #fff; font-weight: 650; box-shadow: 0 8px 22px rgba(30,90,200,.35); }
.lpField input { width: 100%; min-height: 50px; padding: 0 14px; border-radius: 13px; border: 1px solid rgba(150,190,255,.2); background: rgba(255,255,255,.05); color: #f2f7ff; font-family: var(--font-body); font-size: 15px; transition: border-color .2s ease, box-shadow .2s ease; }
.lpField input::placeholder { color: #7e93b4; }
.lpField input:focus { outline: none; border-color: #58a1ff; box-shadow: 0 0 0 4px rgba(61,139,255,.18); }
.lpPrimary { position: relative; display: inline-flex; justify-content: center; align-items: center; width: 100%; min-height: 56px; margin-top: 6px; border: none; border-radius: 14px; background: linear-gradient(135deg, #4b9bff 0%, #1f6fe8 55%, #17b98a 140%); color: #fff; font-family: var(--font-title); font-weight: 650; font-size: 15px; cursor: pointer; box-shadow: 0 16px 34px rgba(24,86,200,.42); transition: transform .18s ease, box-shadow .18s ease, filter .18s ease; }
.lpPrimary:hover:not(:disabled) { transform: translateY(-2px); filter: saturate(115%); box-shadow: 0 22px 44px rgba(24,86,200,.5); }
.lpPrimary:active:not(:disabled) { transform: translateY(0); }
.lpPrimary:disabled { opacity: .42; cursor: not-allowed; box-shadow: none; }
.lpBack { display: block; width: 100%; margin-top: 10px; border: none; background: none; color: #8fa6c8; font-size: 13px; cursor: pointer; transition: color .2s ease; }
.lpBack:hover { color: #d6e4f8; }
.lpHint, .lpError, .lpLgpd { display: block; margin-top: 10px; font-size: 12px; line-height: 1.4; }
.lpHint { color: #8fa6c8; }
.lpError { color: #ff8f80; }
.lpLgpd { color: #7186a5; font-family: var(--font-data); font-size: 9px; letter-spacing: .03em; text-align: center; }
.lpSuccess { text-align: center; padding: 10px 0 4px; }
.lpSuccessIcon { display: inline-grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: linear-gradient(135deg, rgba(34,214,154,.28), rgba(61,139,255,.2)); border: 1px solid rgba(34,214,154,.4); color: #6ff0c0; font-size: 26px; font-weight: 800; box-shadow: 0 0 0 8px rgba(34,214,154,.08); }
.lpSuccess p { color: #adc1de; font-size: 14px; line-height: 1.55; margin: 8px 0 18px; }
.lpSuccess a.lpPrimary { text-decoration: none; }

/* destaque amarelado alternado entre dobras */
.section:nth-of-type(even)::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: min(1160px, calc(100% - 40px)); height: 2px; background: linear-gradient(90deg, transparent, #f6c453, transparent); opacity: .75; }
.section { position: relative; }
.lpAccent { background-image: linear-gradient(180deg, rgba(246,196,83,.10), transparent 45%); }

@media (max-width: 640px) {
  .lpNotif { left: 12px; right: 76px; max-width: none; }
  .lpFloatWa { width: 52px; height: 52px; bottom: 16px; right: 14px; }
  .lpModal { padding: 26px 18px 20px; }
}

body.lpBody { background: var(--surface) !important; color: var(--ink) !important; font-family: var(--font-body) !important; }

@media (max-width: 760px) {
  .siteHeader { justify-content: center; }
  .brand { margin: 0 auto; }
  .heroCopy { text-align: center; }
  .heroCopy h1, .heroSubtitle { margin-left: auto; margin-right: auto; }
  .eyebrow { justify-content: center; }
  .heroActions { flex-direction: column; align-items: center; }
  .microcopy { max-width: none; justify-content: center; }
  .lpFloatWa { bottom: 96px; }
}

/* ============================================================
   UX/UI refresh: tipografia Inter + ícones modernos (SVG mask)
   ============================================================ */
:root {
  --font-title: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-data: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

body {
  font-family: var(--font-body);
  font-feature-settings: "cv11", "ss01";
  font-optical-sizing: auto;
  letter-spacing: -0.011em;
}

.heroCopy h1, .sectionTitle, .finalCta h2 { letter-spacing: -0.032em; font-weight: 640; }
.heroSubtitle { letter-spacing: -0.008em; }
.eyebrow { letter-spacing: .12em; }

/* --- ícones utilitários --- */
.checkIcon,
.buttonArrow,
.pauseIcon,
.minusIcon,
.plusIcon {
  font-size: 0 !important;
  line-height: 0;
  color: inherit;
}

.checkIcon::before,
.buttonArrow::before,
.pauseIcon::before,
.minusIcon::before,
.plusIcon::before,
.sealIcon::before,
.flowIcon::before {
  content: "";
  display: block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.checkIcon, .buttonArrow, .pauseIcon, .minusIcon, .plusIcon { position: relative; }
.checkIcon::before, .buttonArrow::before, .pauseIcon::before, .minusIcon::before, .plusIcon::before { position: absolute; inset: 0; }
.checkIcon::before {
  -webkit-mask-size: 62%; mask-size: 62%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.buttonArrow::before {
  -webkit-mask-size: 17px; mask-size: 17px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E");
  transition: transform .2s ease;
}
.ctaButton:hover .buttonArrow::before { transform: translateX(3px); }

.pauseIcon::before {
  -webkit-mask-size: 9px; mask-size: 9px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Crect x='6' y='4' width='4' height='16' rx='1.5'/%3E%3Crect x='14' y='4' width='4' height='16' rx='1.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Crect x='6' y='4' width='4' height='16' rx='1.5'/%3E%3Crect x='14' y='4' width='4' height='16' rx='1.5'/%3E%3C/svg%3E");
}

.minusIcon::before {
  -webkit-mask-size: 17px; mask-size: 17px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}

.plusIcon::before {
  -webkit-mask-size: 18px; mask-size: 18px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* selo de garantia */
.sealIcon { color: var(--green); }
.sealIcon::before {
  width: 21px; height: 21px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

/* ícones das etapas: troca as formas CSS por ícones vetoriais */
.flowIcon { display: grid; place-items: center; }
.flowIcon i { display: none !important; }
.flowIcon::before { width: 26px; height: 26px; }
.arrivalIcon { color: var(--blue); }
.arrivalIcon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}
.coolingIcon { color: #7c8a9f; }
.coolingIcon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}
.leakIcon { color: #e2705c; }
.leakIcon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 17l5-5-5-5'/%3E%3Cpath d='M21 12H9'/%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 17l5-5-5-5'/%3E%3Cpath d='M21 12H9'/%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3C/svg%3E");
}

/* --- polimento geral --- */
.ctaButton { border-radius: 14px; letter-spacing: -.01em; }
.metricCard, .systemPanel { border-radius: 16px; }
.flowIcon { border-radius: 16px; }
:where(a, button, .lpOption, .lpPrimary):focus-visible { outline: 3px solid rgba(46,125,246,.45); outline-offset: 3px; border-radius: 10px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}


/* ===== Fundos fotográficos com degradê escuro (sócios) ===== */
.problem, .fit { position: relative; overflow: hidden; }
.problem::after, .fit::after, .testimonials .testiBg {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .22;
  filter: grayscale(35%) saturate(.85);
  mask-image: linear-gradient(105deg, transparent 0%, rgba(0,0,0,.65) 45%, black 100%);
}
.problem::after { background-image: url("/__l5e/assets-v1/1e39b1e4-43b0-4c51-be1a-ac1803661a04/bg-socios-1.jpg"); background-position: right 18%; }
.fit::after { background-image: url("/__l5e/assets-v1/cb843b17-bfde-4d17-bd89-a3726e50ef47/bg-socios-2.jpg"); background-position: left 22%; mask-image: linear-gradient(255deg, transparent 0%, rgba(0,0,0,.6) 42%, black 100%); }
.problem > *, .fit > * { position: relative; z-index: 1; }

/* ===== Depoimentos ===== */
.testimonials {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 12%, rgba(46,125,246,.16), transparent 38%),
    linear-gradient(165deg, #06122a 0%, #0a1d3f 58%, #071429 100%);
  border-top: 1px solid rgba(255,255,255,.06);
}
.testimonials .testiBg { background-image: url("/__l5e/assets-v1/7ea0fc50-4358-4236-b374-3f0c6027bf12/team-socios.jpg"); background-position: center 30%; opacity: .16; mask-image: linear-gradient(to bottom, black 0%, transparent 78%); }
.testimonials .shell { position: relative; z-index: 1; }
.testiGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.testiCard {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 30px 26px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(160deg, rgba(255,255,255,.075), rgba(255,255,255,.02));
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0,6,20,.32);
}
.testiHead { display: flex; align-items: center; gap: 14px; }
.testiAvatar {
  width: 46px; height: 46px; flex: 0 0 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--font-title); font-weight: 650; font-size: 18px;
  color: white;
  background: linear-gradient(140deg, var(--blue-bright), var(--blue));
}
.testiHead strong { display: block; font-family: var(--font-title); font-size: 17px; }
.testiStars { display: block; margin-top: 2px; font-size: 14px; letter-spacing: 2px; color: #ffc53d; }
.testiCard p { margin: 0; color: #cdd9ec; line-height: 1.7; font-size: 15px; }
.testiCard small { margin-top: auto; color: #8ea3c2; font-family: var(--font-data); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }

@media (max-width: 860px) {
  .testiGrid { grid-template-columns: 1fr; }
  .problem::after, .fit::after { opacity: .14; }
}
