:root {
  --navy: #07264a;
  --navy-2: #0a3764;
  --navy-3: #041b35;
  --blue: #2e7bf2;
  --blue-2: #1e67d5;
  --cyan: #6dd9ff;
  --green: #16a86b;
  --green-dark: #0f8c59;
  --ice: #eaf5fd;
  --off-white: #f7fafc;
  --surface: #ffffff;
  --surface-soft: #f1f7fb;
  --text: #09284d;
  --muted: #55708a;
  --line: #dce8f1;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(5, 35, 69, .08);
  --shadow: 0 18px 50px rgba(5, 35, 69, .13);
  --shadow-lg: 0 30px 80px rgba(5, 35, 69, .18);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1200px;
  --header-height: 80px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  color: var(--text);
  background: var(--off-white);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }
::selection { color: white; background: var(--blue); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  padding: 12px 16px;
  transform: translateY(-180%);
  color: white;
  background: var(--navy);
  border-radius: 10px;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { position: relative; padding: 118px 0; }
.section-heading { max-width: 850px; margin-bottom: 54px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center p { margin-inline: auto; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; }
.section-heading h2,
.about-copy h2,
.enterprise-copy h2,
.faq-intro h2,
.quote-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 4.55vw, 68px);
  line-height: 1.04;
  letter-spacing: -.047em;
  text-wrap: balance;
}
.section-heading p,
.section-heading--split > p,
.about-copy > p,
.enterprise-copy > p,
.faq-intro > p,
.quote-copy > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 22px; height: 2px; border-radius: 999px; background: currentColor; }
.section-kicker--light { color: #8fe7ff; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, summary:focus-visible, .site-header__nav a:focus-visible { outline: 3px solid rgba(46,123,242,.34); outline-offset: 4px; }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button--primary { color: white; background: linear-gradient(135deg, #0c4a83, #2e7bf2); box-shadow: 0 15px 34px rgba(28, 100, 183, .25); }
.button--primary:hover { box-shadow: 0 18px 42px rgba(28, 100, 183, .34); }
.button--ghost { color: #123b63; border: 1px solid rgba(18,70,117,.16); background: rgba(255,255,255,.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.button--outline { color: var(--navy); border: 1px solid #bfd2e1; background: transparent; }
.button--outline:hover { border-color: var(--blue); background: white; box-shadow: var(--shadow-sm); }
.button--light { color: var(--navy); background: white; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.button--large { min-height: 60px; padding-inline: 29px; font-size: 16px; }
.button--whatsapp { color: white; background: linear-gradient(135deg, #13a967, #20c87b); box-shadow: 0 16px 34px rgba(16,155,92,.25); }
.button--whatsapp:hover { box-shadow: 0 20px 44px rgba(16,155,92,.34); }
.button--card { width: 100%; margin-top: auto; color: var(--navy); border: 1px solid #cfe0ec; background: #f5f9fc; }
.button--card:hover { color: white; border-color: var(--blue); background: var(--blue); }
.button--footer { min-height: 46px; color: white; background: #176fe0; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-2); font-weight: 800; }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateX(5px); }
.center-action { display: flex; justify-content: center; margin-top: 45px; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(14,64,110,.08);
  box-shadow: 0 8px 30px rgba(5,35,69,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity .28s ease;
}
.site-header.is-scrolled::before, .site-header.is-menu-open::before { opacity: 1; }
.site-header__inner { width: min(1440px, calc(100% - 56px)); height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand__symbol {
  flex: 0 0 43px;
  width: 43px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(145deg, #0a4781, #2e7bf2);
  box-shadow: 0 12px 26px rgba(21,93,162,.22);
}
.brand__symbol svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.brand__text { display: grid; color: var(--navy); font-size: 18px; line-height: 1; letter-spacing: -.025em; }
.brand__text strong { color: var(--blue); }
.brand__text small { margin-top: 5px; color: var(--muted); font-size: 9px; font-weight: 650; letter-spacing: .02em; }
.site-header__nav { display: flex; align-items: center; gap: 23px; font-size: 13px; font-weight: 670; }
.site-header__nav > a:not(.header-cta) { opacity: .8; transition: opacity .25s ease, color .25s ease; }
.site-header__nav > a:not(.header-cta):hover { opacity: 1; color: var(--blue-2); }
.header-cta { padding: 12px 17px; color: white; border-radius: 999px; background: rgba(7,50,93,.94); box-shadow: 0 10px 25px rgba(5,37,72,.16); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; border-radius: 13px; color: var(--navy); background: rgba(255,255,255,.72); cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 4px 0; border-radius: 99px; background: currentColor; transition: transform .25s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero { position: relative; height: 178svh; min-height: 1080px; background: #dcebf6; }
.hero__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; min-height: 650px; overflow: hidden; isolation: isolate; background: #dcebf6; }
.hero__picture { position: absolute; inset: -3%; z-index: -5; transform-origin: 70% 55%; will-change: transform; }
.hero__picture img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(231,244,252,.99) 0%, rgba(227,241,250,.96) 28%, rgba(221,238,249,.62) 43%, rgba(8,43,81,.04) 67%),
    linear-gradient(180deg, rgba(5,33,65,.1), transparent 27%, transparent 72%, rgba(5,33,65,.18));
}
.hero__wash { display: none !important; }
.hero__content {
  position: relative;
  z-index: 3;
  width: min(1440px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, .88fr) minmax(600px, 1.12fr);
  align-items: center;
  padding-top: var(--header-height);
}
.hero__copy { position: relative; z-index: 8; width: min(680px, 100%); will-change: transform, opacity; }
.hero__copy-inner { opacity: 0; transform: translate3d(-34px,18px,0); transition: opacity .8s ease .12s, transform 1.05s var(--ease) .12s; }
.is-ready .hero__copy-inner { opacity: 1; transform: translate3d(0,0,0); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  margin-bottom: 22px;
  border: 1px solid rgba(27,91,150,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  box-shadow: 0 10px 32px rgba(28,76,119,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: #42c99a; box-shadow: 0 0 0 5px rgba(66,201,154,.15); }
.hero h1 { max-width: 700px; margin: 0; font-size: clamp(50px,5.1vw,82px); line-height: .98; letter-spacing: -.058em; font-weight: 780; color: #08294f; text-wrap: balance; }
.hero h1 span { display: block; margin-top: 10px; color: var(--blue); background: linear-gradient(90deg,#246fe0,#3e8fff 72%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__lead { max-width: 610px; margin: 24px 0 0; font-size: clamp(17px,1.22vw,20px); line-height: 1.62; color: #3d5d7c; }
.hero__benefits { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; max-width: 630px; margin-top: 28px; }
.benefit { display: flex; align-items: center; gap: 12px; min-height: 72px; padding: 12px 14px; border: 1px solid rgba(29,99,164,.12); border-radius: 18px; background: rgba(255,255,255,.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.benefit > svg { flex: 0 0 42px; width: 42px; height: 42px; padding: 9px; border-radius: 13px; fill: none; stroke: var(--blue); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; background: rgba(46,123,242,.09); }
.benefit span { display: grid; gap: 2px; }
.benefit strong { font-size: 14px; }
.benefit small { color: #607a94; font-size: 12px; line-height: 1.35; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__note { display: flex; align-items: center; gap: 8px; margin: 17px 0 0; color: #5b7590; font-size: 12px; }
.hero__note svg { width: 17px; flex: 0 0 17px; fill: none; stroke: #2da878; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero__visual { position: relative; height: 100%; pointer-events: none; }
.protection-glow { position: absolute; left: 35%; top: 22%; width: 48%; aspect-ratio: 1; opacity: 0; transform: scale(.65); border-radius: 50%; background: radial-gradient(circle,rgba(122,223,255,.34) 0%,rgba(66,160,246,.13) 38%,rgba(46,123,242,0) 72%); filter: blur(8px); will-change: opacity,transform; }
.shield-draw { position: absolute; z-index: 3; left: 29%; top: 13%; width: 49%; height: 70%; overflow: visible; opacity: .92; filter: drop-shadow(0 0 14px rgba(89,208,255,.25)); }
.shield-draw path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.shield-draw__glow { stroke: rgba(121,224,255,.48); stroke-width: 18; filter: blur(8px); }
.shield-draw__line { stroke: rgba(214,248,255,.92); stroke-width: 4; }
.route-draw { position: absolute; z-index: 4; left: -8%; bottom: 1%; width: 116%; height: 46%; overflow: visible; }
.route-draw path { stroke-dasharray: 1; stroke-dashoffset: 1; stroke-linecap: round; }
.route-draw__glow { stroke: rgba(77,207,255,.42); stroke-width: 21; filter: blur(9px); }
.route-draw__line { stroke: rgba(215,249,255,.95); stroke-width: 4.5; }
.service-node { position: absolute; z-index: 6; min-width: 116px; display: flex; align-items: center; gap: 9px; padding: 9px 12px 9px 9px; opacity: 0; transform: translate3d(0,14px,0) scale(.86); border: 1px solid rgba(196,242,255,.38); border-radius: 15px; color: white; background: rgba(7,46,86,.44); box-shadow: 0 14px 34px rgba(4,30,60,.16); backdrop-filter: blur(11px); -webkit-backdrop-filter: blur(11px); font-size: 12px; font-weight: 700; will-change: opacity,transform; }
.service-node__icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(125,220,255,.16); }
.service-node svg { width: 20px; fill: none; stroke: #dff9ff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-node--health { left: 22%; top: 18%; }
.service-node--dental { left: 9%; top: 38%; }
.service-node--exam { left: 13%; top: 58%; }
.service-node--company { right: 2%; top: 23%; }
.service-node--support { right: -1%; top: 49%; }
.hero__particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.particle { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: rgba(204,246,255,.78); box-shadow: 0 0 14px rgba(106,218,255,.75); animation: floatParticle var(--duration,8s) ease-in-out infinite alternate; animation-delay: var(--delay,0s); }
@keyframes floatParticle { from { transform: translate3d(0,8px,0) scale(.7); opacity: .25; } to { transform: translate3d(var(--drift,12px),-20px,0) scale(1.1); opacity: .9; } }
.scroll-cue { position: absolute; z-index: 10; left: 50%; bottom: 24px; transform: translateX(-50%); display: grid; justify-items: center; gap: 8px; color: rgba(9,45,81,.68); font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; will-change: opacity,transform; }
.scroll-cue i { width: 20px; height: 31px; border: 1.5px solid currentColor; border-radius: 999px; position: relative; }
.scroll-cue i::after { content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px; transform: translateX(-50%); border-radius: 999px; background: currentColor; animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%,0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,11px); } }

/* Problem */
.problem-section { z-index: 25; background: var(--off-white); }
.card-grid { display: grid; gap: 18px; }
.card-grid--four { grid-template-columns: repeat(4,1fr); }
.card-grid--three { grid-template-columns: repeat(3,1fr); }
.info-card, .benefit-card { position: relative; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 1px 0 rgba(255,255,255,.9) inset; transition: transform .32s var(--ease), box-shadow .32s ease, border-color .32s ease; }
.info-card::after, .benefit-card::after { content: ""; position: absolute; right: -70px; bottom: -90px; width: 170px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(46,123,242,.09),transparent 69%); pointer-events: none; }
.info-card:hover, .benefit-card:hover { transform: translateY(-6px); border-color: #bed8ec; box-shadow: var(--shadow); }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 15px; color: var(--blue); background: #eaf3ff; }
.icon-box svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.info-card h3, .benefit-card h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: -.025em; }
.info-card p, .benefit-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.67; }
.section-cta { display: flex; align-items: center; justify-content: center; gap: 13px; margin-top: 34px; }
.section-cta p { margin: 0; color: var(--muted); }

/* Process */
.process-section { overflow: hidden; background: #eaf4fb; }
.process-section::before { content: ""; position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(rgba(45,111,170,.06) 1px,transparent 1px), linear-gradient(90deg,rgba(45,111,170,.06) 1px,transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom,transparent,black 20%,black 80%,transparent); }
.process-section .container { position: relative; }
.process-list { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.process-list::before { content: ""; position: absolute; left: 10%; right: 10%; top: 34px; height: 1px; background: linear-gradient(90deg,transparent,#77a9d1 10%,#77a9d1 90%,transparent); }
.process-item { position: relative; z-index: 1; min-height: 265px; padding: 0 12px 24px; text-align: center; }
.process-item__number { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 27px; border: 7px solid #eaf4fb; border-radius: 50%; color: white; background: linear-gradient(145deg,var(--navy-2),var(--blue)); box-shadow: 0 12px 28px rgba(23,91,154,.22); font-size: 14px; font-weight: 800; }
.process-item h3 { margin: 0 0 10px; font-size: 19px; letter-spacing: -.02em; }
.process-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* Plans */
.plans-section { background: white; }
.plans-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 18px; }
.plan-card { grid-column: span 2; min-height: 390px; display: flex; flex-direction: column; padding: 29px; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: 0 10px 36px rgba(9,40,77,.06); transition: transform .32s var(--ease), box-shadow .32s ease, border-color .32s ease; }
.plan-card:nth-child(4) { grid-column: 2 / span 2; }
.plan-card:hover { transform: translateY(-7px); border-color: #bad5e9; box-shadow: var(--shadow); }
.plan-card--featured { color: white; border-color: transparent; background: linear-gradient(145deg,#082d55,#0d5da1); box-shadow: 0 24px 60px rgba(7,52,94,.2); }
.plan-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 35px; }
.plan-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 17px; color: var(--blue); background: #eaf3ff; }
.plan-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.plan-card--featured .plan-icon { color: white; background: rgba(255,255,255,.12); }
.plan-tag { padding: 7px 10px; border-radius: 999px; color: #526f89; background: #f1f6f9; font-size: 10px; font-weight: 780; letter-spacing: .05em; text-transform: uppercase; }
.plan-card--featured .plan-tag { color: #d4f4ff; background: rgba(255,255,255,.1); }
.plan-card h3 { margin: 0 0 13px; font-size: 25px; letter-spacing: -.035em; }
.plan-card p { margin: 0 0 27px; color: var(--muted); font-size: 15px; line-height: 1.68; }
.plan-card--featured p { color: #c7dce9; }
.plan-card--featured .button--card { color: white; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.1); }
.plan-card--featured .button--card:hover { color: var(--navy); background: white; }

/* Enterprise */
.enterprise-section { overflow: hidden; color: white; background: radial-gradient(circle at 80% 40%,rgba(26,130,205,.34),transparent 38%), linear-gradient(135deg,#031c35,#073961 55%,#084c7c); }
.enterprise-section::after { content: ""; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(circle at center,white 1px,transparent 1.4px); background-size: 29px 29px; mask-image: linear-gradient(90deg,transparent 35%,black); }
.enterprise-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; gap: 76px; align-items: center; }
.enterprise-copy h2 { color: white; }
.enterprise-copy > p { color: #bdd2e2; }
.enterprise-copy .enterprise-lead { color: white; font-size: 20px; font-weight: 600; }
.check-list { display: grid; gap: 12px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 31px; line-height: 1.5; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; font-size: 12px; font-weight: 900; }
.check-list--light li { color: #d7e6f1; }
.check-list--light li::before { color: #bdf8dd; background: rgba(47,211,142,.14); }
.enterprise-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.enterprise-orbit { position: absolute; border: 1px solid rgba(144,224,255,.18); border-radius: 50%; }
.enterprise-orbit--one { width: 500px; height: 500px; }
.enterprise-orbit--two { width: 360px; height: 360px; border-style: dashed; animation: orbitSpin 28s linear infinite; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.business-panel { position: relative; z-index: 2; width: min(480px,90%); padding: 31px; border: 1px solid rgba(255,255,255,.16); border-radius: 30px; background: rgba(255,255,255,.1); box-shadow: 0 35px 80px rgba(0,0,0,.28); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.business-panel__eyebrow { color: #8fe7ff; font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.business-panel__title { display: flex; align-items: center; gap: 15px; margin: 18px 0 28px; font-size: 25px; line-height: 1.2; }
.business-panel__icon { flex: 0 0 54px; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; color: white; background: linear-gradient(145deg,#1f92df,#4bc9f5); }
.business-panel__icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.business-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.business-metrics div { min-height: 105px; padding: 14px; border-radius: 17px; background: rgba(255,255,255,.075); }
.business-metrics span { display: block; margin-bottom: 15px; color: #8fe7ff; font-size: 12px; font-weight: 800; }
.business-metrics p { margin: 0; color: #d7e8f3; font-size: 12px; line-height: 1.4; }
.team-row { display: flex; align-items: center; margin-top: 25px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; margin-right: -8px; border: 3px solid #0b4a78; border-radius: 50%; color: white; background: #2b78b0; font-size: 10px; font-weight: 800; }
.avatar:nth-child(2) { background: #366a9b; }
.avatar:nth-child(3) { background: #185b8f; }
.avatar--plus { background: #0e9c72; }
.team-row p { margin: 0 0 0 21px; color: #c6dbe9; font-size: 12px; }
.floating-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: white; background: rgba(5,42,72,.76); box-shadow: 0 15px 35px rgba(0,0,0,.2); font-size: 12px; font-weight: 700; }
.floating-chip svg { width: 18px; fill: none; stroke: #85f4c7; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.floating-chip--top { right: 0; top: 88px; animation: chipFloat 4s ease-in-out infinite alternate; }
.floating-chip--bottom { left: 0; bottom: 82px; animation: chipFloat 4.6s ease-in-out infinite alternate-reverse; }
@keyframes chipFloat { to { transform: translateY(-10px); } }

/* Operators */
.operators-section { background: var(--off-white); }
.operator-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; max-width: 970px; margin: 0 auto; }
.operator-cloud span,
.operator-cloud a { min-height: 60px; display: inline-flex; align-items: center; padding: 0 26px; border: 1px solid #d7e5ef; border-radius: 18px; color: #274a6b; background: white; box-shadow: 0 9px 28px rgba(8,40,75,.045); font-size: 16px; font-weight: 720; }
.operator-cloud a { transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease; }
.operator-cloud a:hover { transform: translateY(-2px); color: #0b5eb7; border-color: #b8d5e9; box-shadow: 0 14px 34px rgba(8,40,75,.09); }
.legal-note { max-width: 850px; margin: 30px auto 0; color: #6d8398; font-size: 13px; line-height: 1.65; text-align: center; }

/* Benefits */
.benefits-section { background: white; }
.benefits-grid .benefit-card { min-height: 285px; }
.benefit-card:nth-child(2) .icon-box, .benefit-card:nth-child(5) .icon-box { color: #0a9d75; background: #e9f9f3; }
.benefit-card:nth-child(3) .icon-box, .benefit-card:nth-child(6) .icon-box { color: #7a5ad8; background: #f1edff; }

/* About */
.about-section { overflow: hidden; background: #edf6fb; }
.about-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: center; }
.about-visual { position: relative; min-height: 560px; display: grid; place-items: center; border-radius: 38px; background: radial-gradient(circle at 50% 45%,#d8f2ff,transparent 52%), linear-gradient(145deg,#dbeef8,#f7fbfd); overflow: hidden; }
.about-visual::before { content: ""; position: absolute; inset: 0; opacity: .33; background-image: linear-gradient(rgba(21,98,154,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(21,98,154,.12) 1px,transparent 1px); background-size: 45px 45px; }
.about-shield { position: relative; z-index: 2; width: 250px; height: 280px; display: grid; place-items: center; border: 1px solid rgba(68,155,216,.18); border-radius: 45% 45% 49% 49%; background: rgba(255,255,255,.58); box-shadow: 0 35px 70px rgba(13,73,114,.15); backdrop-filter: blur(10px); }
.about-shield svg { width: 165px; fill: rgba(46,123,242,.08); stroke: #2e7bf2; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 12px 18px rgba(46,123,242,.16)); }
.experience-card { position: absolute; z-index: 3; left: 33px; top: 33px; width: 170px; padding: 20px; border-radius: 22px; color: white; background: linear-gradient(145deg,#082c53,#176db0); box-shadow: var(--shadow); }
.experience-card__number { display: block; font-size: 42px; font-weight: 820; letter-spacing: -.05em; }
.experience-card__label { display: block; margin-top: 7px; color: #cde5f3; font-size: 12px; line-height: 1.45; }
.about-chip { position: absolute; z-index: 3; padding: 11px 14px; border: 1px solid white; border-radius: 999px; color: #25506e; background: rgba(255,255,255,.83); box-shadow: var(--shadow-sm); font-size: 12px; font-weight: 750; }
.about-chip--one { right: 24px; top: 100px; }
.about-chip--two { left: 42px; bottom: 55px; }
.about-copy > p { font-size: 17px; }
.about-copy blockquote { display: grid; gap: 9px; margin: 31px 0; padding: 22px 24px; border-left: 4px solid var(--blue); border-radius: 0 18px 18px 0; background: rgba(255,255,255,.7); }
.about-copy blockquote strong { color: var(--blue); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.about-copy blockquote span { color: #365776; line-height: 1.65; }

/* Quote form */
.quote-section { overflow: hidden; color: white; background: radial-gradient(circle at 15% 25%,rgba(30,126,206,.38),transparent 34%), linear-gradient(135deg,#041d37,#072d52 62%,#0b4d7b); }
.quote-section::after { content: ""; position: absolute; right: -180px; top: -180px; width: 520px; height: 520px; border: 1px solid rgba(134,224,255,.15); border-radius: 50%; box-shadow: 0 0 0 70px rgba(134,224,255,.035),0 0 0 140px rgba(134,224,255,.025); }
.quote-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.quote-copy { position: sticky; top: calc(var(--header-height) + 50px); }
.quote-copy h2 { color: white; }
.quote-copy > p { color: #c7dce9; }
.quote-benefits { display: grid; gap: 13px; margin-top: 30px; }
.quote-benefits span { display: flex; align-items: center; gap: 10px; color: #e0eef6; }
.quote-benefits svg { width: 22px; fill: none; stroke: #65e4b5; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.quote-disclaimer { max-width: 490px !important; font-size: 12px !important; line-height: 1.6 !important; opacity: .72; }
.quote-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; padding: 34px; border: 1px solid rgba(255,255,255,.16); border-radius: 30px; color: var(--text); background: rgba(255,255,255,.97); box-shadow: 0 35px 90px rgba(0,0,0,.28); }
.form-progress { grid-column: 1 / -1; height: 5px; overflow: hidden; margin: -5px 0 6px; border-radius: 99px; background: #e6edf3; }
.form-progress span { display: block; width: 12%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--blue),#54c4ef); transition: width .35s var(--ease); }
.field { min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { display: block; margin-bottom: 8px; color: #254765; font-size: 13px; font-weight: 720; }
.field input, .field select { width: 100%; min-height: 51px; padding: 0 14px; border: 1px solid #cddce8; border-radius: 13px; color: var(--text); background: white; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field input::placeholder { color: #8da2b4; }
.field input:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(46,123,242,.1); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #cf3f58; box-shadow: 0 0 0 4px rgba(207,63,88,.09); }
.radio-group { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0; padding: 0; border: 0; }
.radio-group legend { width: 100%; }
.radio-group label { display: inline-flex; align-items: center; margin: 0; cursor: pointer; }
.radio-group input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.radio-group span { min-height: 42px; display: grid; place-items: center; padding: 0 20px; border: 1px solid #cadbe7; border-radius: 12px; background: white; }
.radio-group input:checked + span { color: var(--blue-2); border-color: var(--blue); background: #edf5ff; box-shadow: 0 0 0 3px rgba(46,123,242,.08); }
.radio-group input:focus-visible + span { outline: 3px solid rgba(46,123,242,.25); outline-offset: 2px; }
.form-error { display: none; grid-column: 1 / -1; margin: 0; padding: 11px 13px; border-radius: 11px; color: #9f2438; background: #fff0f2; font-size: 13px; }
.form-error.is-visible { display: block; }
.form-privacy { margin: -5px 0 0; color: #7a8e9f; font-size: 11px; line-height: 1.55; text-align: center; }

/* Trust */
.trust-section { background: white; }
.trust-strip { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: 26px; overflow: hidden; background: white; box-shadow: var(--shadow-sm); }
.trust-strip span { min-height: 92px; display: flex; align-items: center; gap: 13px; padding: 18px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #365874; font-size: 14px; font-weight: 700; }
.trust-strip span:nth-child(3n) { border-right: 0; }
.trust-strip span:nth-last-child(-n+3) { border-bottom: 0; }
.trust-strip svg { flex: 0 0 28px; width: 28px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.testimonial-placeholder { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 35px; padding: 30px; border: 1px dashed #b9ccda; border-radius: 22px; background: #f7fafc; }
.testimonial-placeholder h3 { margin: 0 0 7px; font-size: 22px; letter-spacing: -.025em; }
.testimonial-placeholder p { max-width: 650px; margin: 0; color: var(--muted); line-height: 1.6; }
.placeholder-badge { flex: 0 0 auto; padding: 10px 13px; border-radius: 999px; color: #648096; background: #e9f1f6; font-size: 11px; font-weight: 750; }

/* FAQ */
.faq-section { background: #edf5fa; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-height) + 45px); }
.faq-intro .button { margin-top: 28px; }
.faq-list { border-top: 1px solid #cfdde7; }
.faq-list details { border-bottom: 1px solid #cfdde7; }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 25px; min-height: 82px; padding: 18px 0; cursor: pointer; list-style: none; color: #173d5e; font-size: 17px; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 32px; width: 32px; height: 32px; border: 1px solid #bdd1df; border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; border-radius: 99px; background: var(--blue); transform: translate(-50%,-50%); transition: transform .24s ease; }
.faq-list summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
.faq-list details[open] summary { color: var(--blue-2); }
.faq-list details p { max-width: 820px; margin: -2px 60px 24px 0; color: var(--muted); line-height: 1.72; }

/* Final CTA */
.final-cta { position: relative; overflow: hidden; padding: 120px 0; color: white; background: linear-gradient(135deg,#06335c,#0b67aa); }
.final-cta__glow { position: absolute; right: -7%; top: -50%; width: 700px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(112,224,255,.32),rgba(112,224,255,.04) 44%,transparent 68%); }
.final-cta__inner { position: relative; z-index: 1; text-align: center; }
.final-cta h2 { max-width: 920px; margin-inline: auto; color: white; }
.final-cta p { max-width: 720px; margin: 23px auto 0; color: #d4e6f1; font-size: 18px; line-height: 1.7; }
.final-cta__actions { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 34px; }
.final-phone { display: grid; gap: 3px; text-align: left; }
.final-phone span { color: #b8d2e2; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.final-phone strong { font-size: 18px; }
.final-cta small { display: block; margin-top: 25px; color: #b7cddd; }

/* Footer */
.site-footer { padding: 75px 0 26px; color: #d6e3ec; background: #031729; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .7fr .95fr 1fr; gap: 45px; padding-bottom: 50px; }
.brand--footer .brand__text { color: white; }
.brand--footer .brand__text small { color: #8faabd; }
.footer-brand p { margin: 22px 0 0; color: #88a3b7; font-size: 13px; line-height: 1.7; }
.footer-column { display: flex; flex-direction: column; gap: 11px; }
.footer-column h3 { margin: 4px 0 10px; color: white; font-size: 14px; }
.footer-column a, .footer-column span, .footer-column p { color: #91aabd; font-size: 13px; line-height: 1.55; }
.footer-column a:hover { color: white; }
.footer-column--cta p { margin: 0 0 7px; }
.footer-legal { display: flex; justify-content: space-between; gap: 40px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.09); }
.footer-legal p { margin: 0; color: #718da1; font-size: 11px; line-height: 1.6; }
.footer-legal p:first-child { max-width: 800px; }
.footer-legal p:last-child { white-space: nowrap; }

/* Floating WhatsApp */
.floating-whatsapp { position: fixed; z-index: 90; right: 22px; bottom: 22px; min-height: 54px; display: inline-flex; align-items: center; gap: 10px; padding: 0 18px; border-radius: 999px; color: white; background: #16a86b; box-shadow: 0 17px 38px rgba(12,113,69,.28); font-size: 13px; font-weight: 790; transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease; }
.floating-whatsapp:hover { transform: translateY(-4px); box-shadow: 0 21px 45px rgba(12,113,69,.36); }
.floating-whatsapp svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.floating-whatsapp.is-hidden { opacity: 0; pointer-events: none; transform: translateY(16px); }

/* Reveal */
.no-js .reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translate3d(0,28px,0); transition: opacity .72s ease, transform .85s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translate3d(0,0,0); }

/* Legal page */
.legal-page { background: #f7fafc; }
.legal-header { padding: 18px 0; border-bottom: 1px solid var(--line); background: white; }
.legal-header .container { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.legal-content { max-width: 880px; padding-top: 80px; padding-bottom: 100px; }
.legal-content h1 { margin: 0; font-size: clamp(42px,6vw,68px); letter-spacing: -.05em; }
.legal-updated { color: var(--muted); }
.legal-content h2 { margin: 42px 0 12px; font-size: 23px; }
.legal-content p { color: var(--muted); font-size: 16px; line-height: 1.75; }

/* Responsiveness */
@media (max-width: 1180px) {
  :root { --header-height: 74px; }
  .site-header__inner { width: min(100% - 38px,1100px); }
  .site-header__nav { gap: 16px; font-size: 12px; }
  .hero__content { width: min(100% - 40px,1100px); grid-template-columns: minmax(380px,.9fr) minmax(470px,1.1fr); }
  .hero h1 { font-size: clamp(48px,5.4vw,67px); }
  .service-node--support, .service-node--company { right: 0; }
  .card-grid--four { grid-template-columns: repeat(2,1fr); }
  .plan-card { grid-column: span 3; }
  .plan-card:nth-child(4) { grid-column: span 3; }
  .plan-card:nth-child(5) { grid-column: 2 / span 4; }
  .enterprise-layout, .about-layout { gap: 55px; }
  .enterprise-visual { min-height: 530px; }
  .quote-layout { gap: 55px; }
}

@media (max-width: 960px) {
  .section { padding: 94px 0; }
  .section-heading--split { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .menu-toggle { display: block; }
  .site-header__nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: calc(var(--header-height) + 7px);
    display: grid;
    gap: 0;
    padding: 13px;
    opacity: 0;
    transform: translateY(-12px) scale(.98);
    transform-origin: top;
    pointer-events: none;
    border: 1px solid rgba(14,64,110,.1);
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-lg);
    transition: opacity .22s ease, transform .3s var(--ease);
  }
  .site-header__nav.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .site-header__nav > a { min-height: 47px; display: flex; align-items: center; padding: 0 13px; border-radius: 11px; font-size: 14px; }
  .site-header__nav > a:not(.header-cta) { opacity: 1; }
  .site-header__nav .header-cta { justify-content: center; margin-top: 6px; }
  .hero { height: 165svh; min-height: 920px; }
  .hero__sticky { min-height: 680px; }
  .hero__content { width: calc(100% - 32px); grid-template-columns: 1fr; align-items: start; padding-top: 118px; }
  .hero__copy { width: min(600px,100%); }
  .hero h1 { max-width: 620px; font-size: clamp(43px,8vw,66px); }
  .hero__visual { position: absolute; inset: 0; }
  .hero__picture { inset: -2%; }
  .hero__picture img { object-position: 64% center; }
  .hero__vignette { background: linear-gradient(180deg,rgba(231,244,252,.99) 0%,rgba(229,243,251,.95) 40%,rgba(13,53,91,.09) 68%,rgba(4,30,58,.25) 100%); }
  .shield-draw { left: 45%; top: 28%; width: 45%; height: 58%; }
  .route-draw { left: 6%; bottom: -2%; width: 100%; height: 38%; }
  .service-node { min-width: auto; padding-right: 10px; }
  .service-node--health { left: 57%; top: 33%; }
  .service-node--dental { left: 48%; top: 50%; }
  .service-node--exam { left: 64%; top: 67%; }
  .service-node--company, .service-node--support { display: none; }
  .protection-glow { left: 49%; top: 38%; width: 45%; }
  .process-list { grid-template-columns: repeat(2,1fr); row-gap: 38px; }
  .process-list::before { display: none; }
  .process-item { min-height: auto; padding-inline: 25px; }
  .enterprise-layout, .about-layout, .quote-layout, .faq-layout { grid-template-columns: 1fr; }
  .enterprise-visual { order: -1; min-height: 500px; }
  .quote-copy, .faq-intro { position: relative; top: auto; }
  .quote-form { max-width: 760px; }
  .about-visual { min-height: 500px; }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .trust-strip span, .trust-strip span:nth-child(3n), .trust-strip span:nth-last-child(-n+3) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-strip span:nth-child(2n) { border-right: 0; }
  .trust-strip span:nth-last-child(-n+2) { border-bottom: 0; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
  :root { --header-height: 68px; }
  .container { width: min(100% - 34px,var(--container)); }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .about-copy h2, .enterprise-copy h2, .faq-intro h2, .quote-copy h2, .final-cta h2 { font-size: clamp(34px,10.5vw,49px); line-height: 1.06; }
  .section-heading p, .section-heading--split > p, .about-copy > p, .enterprise-copy > p, .faq-intro > p, .quote-copy > p { margin-top: 17px; font-size: 16px; line-height: 1.68; }
  .section-kicker { font-size: 10px; letter-spacing: .11em; }
  .site-header__inner { width: calc(100% - 28px); }
  .brand__symbol { flex-basis: 39px; width: 39px; border-radius: 12px; }
  .brand__text { font-size: 16px; }
  .brand__text small { display: none; }
  .hero { height: 152svh; min-height: 880px; }
  .hero__sticky { min-height: 680px; }
  .hero__content { width: calc(100% - 28px); padding-top: 94px; }
  .eyebrow { max-width: 100%; margin-bottom: 15px; font-size: 9px; background: rgba(255,255,255,.74); }
  .hero h1 { max-width: 510px; font-size: clamp(39px,11vw,54px); line-height: .99; }
  .hero__lead { max-width: 470px; margin-top: 18px; font-size: 15px; line-height: 1.54; }
  .hero__benefits { grid-template-columns: 1fr 1fr; margin-top: 19px; gap: 8px; }
  .benefit { min-height: 60px; padding: 9px; border-radius: 14px; background: rgba(255,255,255,.72); }
  .benefit > svg { flex-basis: 34px; width: 34px; height: 34px; padding: 7px; }
  .benefit strong { font-size: 11px; }
  .benefit small { display: none; }
  .hero__actions { margin-top: 18px; gap: 8px; }
  .hero__actions .button { min-height: 47px; padding: 0 16px; border-radius: 13px; font-size: 13px; }
  .hero__actions .button--ghost { background: rgba(255,255,255,.8); }
  .hero__note { display: none; }
  .hero__picture { inset: 0; top: 20%; height: 84%; }
  .hero__picture img { object-position: center 55%; }
  .hero__vignette { background: linear-gradient(180deg,#e7f4fc 0%,rgba(231,244,252,.99) 41%,rgba(231,244,252,.55) 57%,rgba(6,38,72,.19) 100%); }
  .shield-draw { left: 28%; top: 45%; width: 57%; height: 45%; }
  .route-draw { left: -8%; bottom: -3%; width: 116%; height: 34%; }
  .service-node { font-size: 0; padding: 7px; border-radius: 13px; }
  .service-node__icon { width: 34px; height: 34px; }
  .service-node--health { left: 68%; top: 49%; }
  .service-node--dental { left: 18%; top: 60%; }
  .service-node--exam { left: 70%; top: 72%; }
  .protection-glow { left: 35%; top: 52%; width: 60%; }
  .scroll-cue span { display: none; }
  .scroll-cue { bottom: 16px; }
  .card-grid--four, .card-grid--three { grid-template-columns: 1fr; }
  .info-card, .benefit-card { min-height: auto; padding: 24px; }
  .section-cta { flex-direction: column; text-align: center; }
  .process-list { grid-template-columns: 1fr; gap: 30px; }
  .process-item { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 0; text-align: left; }
  .process-item__number { width: 58px; height: 58px; margin: 0; border-width: 5px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card, .plan-card:nth-child(4), .plan-card:nth-child(5) { grid-column: auto; min-height: 350px; }
  .enterprise-layout { gap: 35px; }
  .enterprise-visual { min-height: 400px; }
  .enterprise-orbit--one { width: 370px; height: 370px; }
  .enterprise-orbit--two { width: 280px; height: 280px; }
  .business-panel { width: 96%; padding: 24px; border-radius: 24px; }
  .business-panel__title { font-size: 20px; }
  .business-metrics { gap: 6px; }
  .business-metrics div { min-height: 95px; padding: 10px; }
  .floating-chip { font-size: 10px; }
  .floating-chip--top { top: 30px; }
  .floating-chip--bottom { bottom: 25px; }
  .operator-cloud { gap: 9px; }
  .operator-cloud span { min-height: 50px; padding: 0 17px; border-radius: 14px; font-size: 13px; }
  .about-layout { gap: 38px; }
  .about-visual { min-height: 410px; border-radius: 28px; }
  .about-shield { width: 190px; height: 220px; }
  .about-shield svg { width: 125px; }
  .experience-card { left: 18px; top: 18px; width: 145px; padding: 16px; }
  .experience-card__number { font-size: 34px; }
  .about-chip--one { right: 12px; top: 85px; }
  .about-chip--two { left: 16px; bottom: 28px; }
  .quote-layout { gap: 38px; }
  .quote-form { grid-template-columns: 1fr; padding: 23px; border-radius: 22px; }
  .field--full { grid-column: auto; }
  .form-progress, .form-error { grid-column: auto; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip span, .trust-strip span:nth-child(2n), .trust-strip span:nth-child(3n), .trust-strip span:nth-last-child(-n+2), .trust-strip span:nth-last-child(-n+3) { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip span:last-child { border-bottom: 0; }
  .testimonial-placeholder { align-items: flex-start; flex-direction: column; gap: 20px; }
  .placeholder-badge { white-space: normal; }
  .faq-layout { gap: 38px; }
  .faq-list summary { min-height: 75px; font-size: 15px; }
  .faq-list details p { margin-right: 0; font-size: 14px; }
  .final-cta { padding: 85px 0; }
  .final-cta__actions { flex-direction: column; gap: 20px; }
  .final-phone { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-legal { flex-direction: column; gap: 16px; }
  .footer-legal p:last-child { white-space: normal; }
  .floating-whatsapp { right: 14px; bottom: 14px; min-width: 54px; width: 54px; padding: 0; justify-content: center; }
  .floating-whatsapp span { display: none; }
  .legal-header .button { min-height: 42px; padding-inline: 13px; font-size: 12px; }
  .legal-content { padding-top: 60px; }
}

@media (max-width: 480px) {
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .button { width: 100%; }
  .hero__benefits { max-width: 360px; }
  .radio-group { display: grid; grid-template-columns: 1fr 1fr; }
  .radio-group label, .radio-group span { width: 100%; }
  .team-row p { font-size: 10px; }
  .floating-chip { padding: 9px 10px; }
}



/* Compact notebook layout — optimized for common 1366×768 and 1440×800 screens */
@media (min-width: 961px) and (max-height: 850px) {
  :root {
    --header-height: 64px;
    --container: 1120px;
  }

  html { scroll-padding-top: calc(var(--header-height) + 10px); }
  .container { width: min(var(--container), calc(100% - 42px)); }
  .section { padding: 68px 0; }
  .section-heading { max-width: 760px; margin-bottom: 34px; }
  .section-heading--split { max-width: none; gap: 48px; }
  .section-heading h2,
  .about-copy h2,
  .enterprise-copy h2,
  .faq-intro h2,
  .quote-copy h2,
  .final-cta h2 {
    font-size: clamp(32px, 3.45vw, 49px);
    line-height: 1.02;
  }
  .section-heading p,
  .section-heading--split > p,
  .about-copy > p,
  .enterprise-copy > p,
  .faq-intro > p,
  .quote-copy > p {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.58;
  }
  .section-kicker { margin-bottom: 11px; font-size: 10px; }
  .center-action { margin-top: 28px; }
  .button { min-height: 46px; padding-inline: 18px; font-size: 13px; border-radius: 13px; }
  .button--large { min-height: 50px; padding-inline: 23px; font-size: 14px; }

  .site-header__inner { width: min(1220px, calc(100% - 42px)); }
  .brand__symbol { flex-basis: 38px; width: 38px; border-radius: 12px; }
  .brand__symbol svg { width: 23px; }
  .brand__text { font-size: 16px; }
  .site-header__nav { gap: 17px; font-size: 11px; }
  .header-cta { padding: 10px 15px; }

  .hero { height: 148svh; min-height: 820px; }
  .hero__sticky { min-height: 560px; }
  .hero__content {
    width: min(1220px, calc(100% - 48px));
    grid-template-columns: minmax(360px, .9fr) minmax(510px, 1.1fr);
    padding-top: var(--header-height);
  }
  .hero__copy { width: min(600px, 100%); }
  .eyebrow { margin-bottom: 14px; padding: 7px 11px; font-size: 10px; }
  .hero h1 { max-width: 590px; font-size: clamp(43px, 4.3vw, 60px); line-height: .97; }
  .hero h1 span { margin-top: 6px; }
  .hero__lead { max-width: 560px; margin-top: 16px; font-size: 15px; line-height: 1.48; }
  .hero__benefits { max-width: 580px; margin-top: 17px; gap: 9px; }
  .benefit { min-height: 56px; padding: 8px 10px; border-radius: 14px; }
  .benefit > svg { flex-basis: 34px; width: 34px; height: 34px; padding: 7px; border-radius: 11px; }
  .benefit strong { font-size: 12px; }
  .benefit small { font-size: 10px; }
  .hero__actions { margin-top: 18px; gap: 9px; }
  .hero__note { margin-top: 10px; font-size: 10px; }
  .shield-draw { top: 11%; height: 72%; }
  .service-node { padding: 7px 10px 7px 7px; font-size: 10px; }
  .service-node__icon { width: 29px; height: 29px; }
  .service-node svg { width: 17px; }
  .scroll-cue { bottom: 13px; }

  .card-grid { gap: 14px; }
  .info-card, .benefit-card { padding: 21px; border-radius: 18px; }
  .icon-box { width: 42px; height: 42px; margin-bottom: 16px; border-radius: 13px; }
  .info-card h3, .benefit-card h3 { margin-bottom: 7px; font-size: 17px; }
  .info-card p, .benefit-card p { font-size: 13px; line-height: 1.52; }
  .section-cta { margin-top: 24px; }

  .process-list { gap: 12px; }
  .process-list::before { top: 28px; }
  .process-item { min-height: 190px; padding: 0 8px 12px; }
  .process-item__number { width: 56px; height: 56px; margin-bottom: 17px; border-width: 5px; }
  .process-item h3 { margin-bottom: 7px; font-size: 16px; }
  .process-item p { font-size: 12px; line-height: 1.5; }

  .plans-grid { gap: 14px; }
  .plan-card { min-height: 310px; padding: 22px; border-radius: 21px; }
  .plan-card__top { margin-bottom: 21px; }
  .plan-icon { width: 44px; height: 44px; border-radius: 14px; }
  .plan-card h3 { margin-bottom: 9px; font-size: 21px; }
  .plan-card p { font-size: 13px; line-height: 1.55; }
  .plan-card .button { margin-top: 18px; }

  .enterprise-section, .benefits-section, .about-section { padding-block: 50px; }
  .enterprise-layout, .about-layout, .quote-layout { gap: 38px; }
  .enterprise-copy h2 { font-size: clamp(34px, 3.2vw, 43px); line-height: 1.04; }
  .enterprise-copy > p { margin-top: 12px; font-size: 13px; line-height: 1.48; }
  .enterprise-copy .enterprise-lead { margin-top: 14px; font-size: 16px; line-height: 1.4; }
  .enterprise-copy .check-list { margin: 15px 0 18px; gap: 6px; }
  .enterprise-copy .check-list li { padding-left: 27px; font-size: 12px; line-height: 1.34; }
  .enterprise-copy .check-list li::before { width: 19px; height: 19px; font-size: 10px; }
  .enterprise-copy .button { min-height: 43px; }
  .enterprise-visual { min-height: 355px; }
  .business-panel { width: min(390px, 90%); padding: 22px; border-radius: 24px; }
  .business-panel__title { font-size: 19px; }
  .business-metrics div { min-height: 82px; padding: 10px; }
  .business-metrics strong { font-size: 19px; }
  .operator-cloud { gap: 10px; }
  .operator-cloud span { min-height: 47px; padding-inline: 19px; border-radius: 14px; font-size: 13px; }
  .benefits-section .section-heading { margin-bottom: 26px; }
  .benefits-grid .benefit-card { min-height: 172px; padding: 18px; }
  .benefits-grid .icon-box { width: 38px; height: 38px; margin-bottom: 12px; }
  .benefits-grid .benefit-card h3 { font-size: 16px; }
  .benefits-grid .benefit-card p { font-size: 12px; line-height: 1.46; }
  .benefits-section .center-action { margin-top: 22px; }

  .about-visual { min-height: 350px; border-radius: 28px; }
  .about-copy h2 { font-size: clamp(33px, 3.15vw, 43px); }
  .about-copy > p { margin-top: 11px; font-size: 13px; line-height: 1.48; }
  .about-copy blockquote { gap: 5px; margin: 15px 0; padding: 14px 17px; }
  .about-copy blockquote strong { font-size: 10px; }
  .about-copy blockquote span { font-size: 12px; line-height: 1.45; }
  .about-shield { transform: scale(.82); }
  .experience-card { transform: scale(.86); transform-origin: top left; }

  .quote-form { gap: 13px; padding: 22px; border-radius: 22px; }
  .field { gap: 6px; }
  .field label, .field legend { font-size: 11px; }
  .field input, .field select { min-height: 44px; font-size: 13px; }
  .radio-group span { min-height: 37px; padding-inline: 14px; font-size: 12px; }
  .form-progress { margin-bottom: 1px; }

  .trust-strip span { min-height: 72px; padding: 14px 17px; font-size: 12px; }
  .testimonial-placeholder { margin-top: 27px; padding: 22px; }

  .faq-layout { gap: 46px; }
  .faq-intro { top: calc(var(--header-height) + 20px); }
  .faq-list summary { min-height: 61px; padding: 12px 0; font-size: 14px; }
  .faq-list details p { padding-bottom: 15px; font-size: 13px; line-height: 1.55; }

  .final-cta { padding: 66px 0; }
  .final-cta p { margin-top: 15px; font-size: 15px; }
  .final-cta__actions { margin-top: 25px; }
  .site-footer { padding-top: 54px; }
  .footer-grid { gap: 32px; padding-bottom: 36px; }
  .footer-legal { padding: 18px 0; }
}



@media (min-width: 1200px) and (max-height: 850px) {
  .plans-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .plan-card,
  .plan-card:nth-child(4),
  .plan-card:nth-child(5) {
    grid-column: auto;
    min-width: 0;
    min-height: 345px;
    padding: 19px;
  }
  .plan-card__top { margin-bottom: 17px; }
  .plan-card h3 { font-size: 19px; }
  .plan-card p { font-size: 12px; line-height: 1.48; }
  .plan-card .button { min-height: 43px; padding-inline: 10px; font-size: 11px; }
}

@media (min-width: 961px) and (max-height: 700px) {
  .section { padding: 56px 0; }
  .section-heading { margin-bottom: 27px; }
  .hero { height: 143svh; min-height: 700px; }
  .hero h1 { font-size: clamp(39px, 4vw, 54px); }
  .hero__lead { font-size: 14px; }
  .hero__benefits { margin-top: 13px; }
  .hero__actions { margin-top: 14px; }
  .hero__note { display: none; }
  .enterprise-visual, .about-visual { min-height: 360px; }
  .plan-card { min-height: 285px; }
  .benefits-grid .benefit-card { min-height: 195px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero { height: 100svh; min-height: 720px; }
  .hero__sticky { position: relative; }
  .hero__copy-inner { opacity: 1; transform: none; }
  .hero__picture { transform: none !important; }
  .shield-draw path, .route-draw path { stroke-dashoffset: 0 !important; }
  .service-node { opacity: 1 !important; transform: none !important; }
  .hero__wash { display: none; }
  .js .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Inner pages: proposal, operator pages and operator hub
   ========================================================= */
.inner-page { background: #f7fafc; color: var(--navy); }
.inner-page .inner-header::before { opacity: 1; }
.inner-page .site-header { background: rgba(255,255,255,.92); }
.inner-page main { padding-top: var(--header-height); }
.page-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 18px; color: rgba(255,255,255,.74); font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.page-breadcrumb a { color: inherit; }
.page-breadcrumb a:hover { color: white; }
.page-breadcrumb i { font-style: normal; opacity: .55; }
.button--glass { color: white; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.10); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.button--glass:hover { background: rgba(255,255,255,.17); }

/* Proposal hero */
.inner-hero { position: relative; min-height: min(670px, calc(100svh - var(--header-height))); display: grid; align-items: center; overflow: hidden; isolation: isolate; background: #092e55; }
.inner-hero__image { position: absolute; inset: 0; z-index: -3; }
.inner-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.inner-hero__overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(4,27,55,.97) 0%, rgba(5,37,71,.90) 38%, rgba(8,45,83,.50) 67%, rgba(5,30,57,.24) 100%), linear-gradient(180deg, rgba(4,25,49,.12), rgba(4,25,49,.58)); }
.inner-hero__content { padding-top: 64px; padding-bottom: 64px; }
.inner-hero__copy { max-width: 720px; color: white; }
.inner-hero__copy h1 { margin: 12px 0 20px; max-width: 720px; font-size: clamp(42px, 5.5vw, 76px); line-height: .98; letter-spacing: -.05em; }
.inner-hero__copy > p { max-width: 650px; color: rgba(255,255,255,.82); font-size: clamp(16px,1.4vw,20px); line-height: 1.65; }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-trust-row span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.88); background: rgba(255,255,255,.09); font-size: 12px; font-weight: 750; backdrop-filter: blur(10px); }

/* Proposal form */
.proposal-section { background: linear-gradient(180deg, #f8fbfd 0%, #eef5f9 100%); }
.proposal-layout { display: grid; grid-template-columns: minmax(270px,.78fr) minmax(0,1.35fr); gap: clamp(34px,6vw,90px); align-items: start; }
.proposal-aside { position: sticky; top: calc(var(--header-height) + 30px); }
.proposal-aside h2 { margin: 11px 0 18px; font-size: clamp(30px,3.2vw,48px); line-height: 1.05; letter-spacing: -.04em; }
.proposal-aside > p { color: var(--muted); line-height: 1.72; }
.proposal-assurances { display: grid; gap: 11px; margin-top: 30px; }
.proposal-assurances > span { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; padding: 12px 14px; border: 1px solid rgba(12,73,124,.09); border-radius: 16px; background: rgba(255,255,255,.72); }
.proposal-assurances b { width: 38px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 12px; color: white; background: linear-gradient(145deg,var(--blue-2),var(--blue)); font-size: 12px; }
.proposal-assurances i { display: grid; gap: 2px; color: var(--muted); font-style: normal; font-size: 12px; }
.proposal-assurances strong { color: var(--navy); font-size: 14px; }
.proposal-safe-note { display: grid; grid-template-columns: 34px 1fr; gap: 12px; margin-top: 24px; padding: 17px; border-radius: 18px; color: #255071; background: #eaf6ff; }
.proposal-safe-note svg { width: 32px; fill: none; stroke: var(--blue-2); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.proposal-safe-note p { margin: 0; font-size: 12px; line-height: 1.55; }
.proposal-form-shell { overflow: hidden; border: 1px solid rgba(10,65,112,.10); border-radius: 28px; background: white; box-shadow: 0 28px 70px rgba(4,37,73,.12); }
.proposal-progress { padding: 24px 28px 0; }
.proposal-progress__meta { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 10px; color: var(--muted); font-size: 12px; }
.proposal-progress__meta strong { color: var(--blue-2); }
.proposal-progress__track { height: 7px; overflow: hidden; border-radius: 999px; background: #e8eef3; }
.proposal-progress__track i { display: block; width: 25%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--blue-2),#58b8ff); transition: width .35s cubic-bezier(.22,1,.36,1); }
#proposal-form { padding: 28px; }
.proposal-step { display: none; padding: 0; margin: 0; border: 0; animation: proposalStep .32s ease both; }
.proposal-step.is-active { display: block; }
@keyframes proposalStep { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.proposal-step legend { width: 100%; margin-bottom: 8px; font-size: clamp(24px,2.3vw,34px); font-weight: 780; letter-spacing: -.035em; }
.step-help { margin: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.choice-grid { display: grid; gap: 11px; }
.choice-grid--plans { grid-template-columns: repeat(3,minmax(0,1fr)); }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card span { min-height: 92px; display: grid; align-content: center; gap: 5px; padding: 16px; border: 1px solid #dce6ee; border-radius: 17px; background: #fbfdfe; transition: border .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
.choice-card strong { color: var(--navy); font-size: 14px; }
.choice-card small { color: var(--muted); font-size: 11px; line-height: 1.35; }
.choice-card:hover span { transform: translateY(-2px); border-color: #b9d9ee; box-shadow: 0 10px 24px rgba(7,64,110,.08); }
.choice-card input:checked + span { border-color: var(--blue-2); background: #edf7ff; box-shadow: 0 0 0 3px rgba(21,113,195,.10); }
.choice-card input:focus-visible + span { outline: 3px solid rgba(23,112,197,.23); outline-offset: 2px; }
.field-grid { display: grid; gap: 15px; margin-top: 16px; }
.field-grid--two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.form-field { display: grid; gap: 7px; margin-top: 15px; color: var(--navy); font-size: 12px; font-weight: 720; }
.form-field em { color: var(--muted); font-style: normal; font-weight: 500; }
.form-field input,.form-field select,.form-field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #d6e1e9; border-radius: 14px; color: var(--navy); background: white; font: inherit; font-size: 14px; font-weight: 500; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus,.form-field select:focus,.form-field textarea:focus { border-color: var(--blue-2); box-shadow: 0 0 0 4px rgba(29,117,199,.10); }
.form-field [aria-invalid="true"] { border-color: #c34040; box-shadow: 0 0 0 3px rgba(195,64,64,.10); }
.form-field small { color: var(--muted); font-size: 10px; font-weight: 500; line-height: 1.45; }
.choice-inline { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-top: 22px; padding: 16px; border-radius: 16px; background: #f5f9fc; }
.choice-inline > span { width: 100%; color: var(--navy); font-size: 12px; font-weight: 750; }
.choice-inline label { display: inline-flex; align-items: center; gap: 7px; color: #38566f; font-size: 13px; cursor: pointer; }
.choice-inline input,.consent-row input { accent-color: var(--blue-2); }
.conditional-field { opacity: .65; transition: opacity .2s ease; }
.conditional-field.is-relevant { opacity: 1; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 22px; padding: 15px; border-radius: 15px; background: #f5f9fc; color: #38566f; font-size: 12px; line-height: 1.5; cursor: pointer; }
.consent-row input { margin-top: 3px; }
.proposal-review { display: none; margin-top: 18px; padding: 16px; border-radius: 16px; color: #33546f; background: #eef8ff; font-size: 12px; line-height: 1.65; }
.proposal-review.is-visible { display: block; }
.proposal-error { min-height: 22px; margin-top: 15px; color: #b32b2b; font-size: 12px; font-weight: 650; }
.proposal-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 18px; padding-top: 21px; border-top: 1px solid #e7edf2; }
.proposal-back { display: none; }
.proposal-submit { display: none; }
.proposal-info-section { background: white; }
.compact-process { grid-template-columns: repeat(3,minmax(0,1fr)); }

/* Operator pages */
.operator-hero { position: relative; min-height: min(720px, calc(100svh - var(--header-height))); display: grid; align-items: center; overflow: hidden; isolation: isolate; background: #082846; }
.operator-hero__image { position: absolute; inset: 0; z-index: -3; }
.operator-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.operator-hero__overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(4,25,50,.97) 0%, rgba(5,39,70,.90) 42%, rgba(5,39,70,.43) 70%, rgba(4,25,50,.18) 100%), linear-gradient(180deg, transparent 45%, rgba(3,20,39,.58)); }
.operator-page--prevent .operator-hero__overlay { background: linear-gradient(90deg, rgba(4,41,45,.97), rgba(4,67,66,.88) 42%, rgba(5,72,70,.40) 72%, rgba(3,35,38,.15)), linear-gradient(180deg,transparent 42%,rgba(2,30,32,.60)); }
.operator-page--omint .operator-hero__overlay { background: linear-gradient(90deg, rgba(4,18,40,.98), rgba(8,34,70,.91) 45%, rgba(9,40,77,.38) 73%, rgba(4,18,40,.14)), linear-gradient(180deg,transparent 42%,rgba(4,18,40,.68)); }
.operator-hero__inner { padding-top: 70px; padding-bottom: 70px; }
.operator-hero__copy { max-width: 760px; color: white; }
.operator-wordmark { display: inline-flex; align-items: baseline; margin: 8px 0 18px; font-size: clamp(24px,3.4vw,48px); font-weight: 500; letter-spacing: -.045em; }
.operator-wordmark strong { font-weight: 820; }
.operator-wordmark--prevent { color: #bff5e8; }
.operator-wordmark--omint { color: #e8d5a7; font-family: Georgia,serif; letter-spacing: .12em; }
.operator-hero h1 { margin: 0; max-width: 760px; font-size: clamp(42px,5.7vw,78px); line-height: .98; letter-spacing: -.052em; }
.operator-hero__copy > p { max-width: 660px; margin: 22px 0 0; color: rgba(255,255,255,.82); font-size: clamp(16px,1.4vw,20px); line-height: 1.65; }
.operator-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.operator-hero__copy > small { display: block; margin-top: 18px; color: rgba(255,255,255,.58); font-size: 10px; }
.split-layout { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.72fr); gap: clamp(40px,7vw,100px); align-items: center; }
.split-layout h2 { margin: 10px 0 20px; max-width: 720px; font-size: clamp(34px,4.4vw,62px); line-height: 1.02; letter-spacing: -.045em; }
.split-layout p { color: var(--muted); line-height: 1.75; }
.source-actions { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 26px; }
.operator-consult-card { padding: clamp(28px,4vw,48px); border: 1px solid rgba(8,65,113,.10); border-radius: 28px; background: linear-gradient(150deg,#fff,#edf6fb); box-shadow: 0 24px 70px rgba(4,37,72,.10); }
.operator-consult-card > span { color: var(--blue-2); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.operator-consult-card h3 { margin: 12px 0 14px; font-size: clamp(26px,2.6vw,38px); line-height: 1.05; letter-spacing: -.035em; }
.operator-consult-card p { margin-bottom: 24px; }
.operator-lines { background: #f0f6f9; }
.operator-page--prevent .operator-lines { background: #eef8f6; }
.operator-page--omint .operator-lines { background: #f4f2ed; }
.operator-benefit-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; margin-top: 42px; }
.operator-benefit { min-height: 255px; padding: 26px; border: 1px solid rgba(9,67,115,.09); border-radius: 22px; background: rgba(255,255,255,.87); box-shadow: 0 14px 32px rgba(4,37,72,.06); }
.operator-benefit__icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 14px; color: white; background: linear-gradient(145deg,var(--blue-2),var(--blue)); font-size: 11px; font-weight: 800; }
.operator-page--prevent .operator-benefit__icon { background: linear-gradient(145deg,#148878,#075957); }
.operator-page--omint .operator-benefit__icon { color: #1c2b42; background: linear-gradient(145deg,#e5cc91,#b59757); }
.operator-benefit h3 { margin: 20px 0 10px; font-size: 20px; letter-spacing: -.025em; }
.operator-benefit p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.operator-compare { background: white; }
.check-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin-top: 34px; }
.check-card { display: grid; grid-template-columns: 34px 1fr; gap: 13px; padding: 22px; border: 1px solid #e0e9ef; border-radius: 19px; background: #fbfdfe; }
.check-card svg { width: 30px; padding: 7px; border-radius: 10px; fill: none; stroke: var(--blue-2); stroke-width: 2; background: #e9f5fd; }
.check-card h3 { margin: 2px 0 7px; font-size: 16px; }
.check-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.operator-compare__cta { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 30px; padding: 25px 28px; border-radius: 22px; color: white; background: linear-gradient(135deg,#082f57,#0e5f9c); }
.operator-page--prevent .operator-compare__cta { background: linear-gradient(135deg,#075755,#138573); }
.operator-page--omint .operator-compare__cta { background: linear-gradient(135deg,#091c3d,#163f71); }
.operator-compare__cta div { display: grid; gap: 4px; }
.operator-compare__cta strong { font-size: 19px; }
.operator-compare__cta span { color: rgba(255,255,255,.7); font-size: 12px; }
.operator-process { background: #f7fafc; }
.operator-process-line { grid-template-columns: repeat(4,minmax(0,1fr)); }
.operator-faq { background: white; }
.final-cta--operator { min-height: 480px; }

/* Operators hub */
.hub-hero { padding: clamp(80px,10vw,145px) 0 clamp(70px,9vw,125px); color: white; background: radial-gradient(circle at 75% 30%,rgba(66,162,231,.28),transparent 34%), linear-gradient(135deg,#051b38,#0a4a82); }
.hub-hero .container { max-width: 970px; margin-left: max(24px,calc((100vw - min(1440px,calc(100% - 56px)))/2)); }
.hub-hero h1 { max-width: 900px; margin: 14px 0 18px; font-size: clamp(43px,6vw,80px); line-height: .98; letter-spacing: -.055em; }
.hub-hero p { max-width: 720px; color: rgba(255,255,255,.78); font-size: clamp(16px,1.5vw,20px); line-height: 1.65; }
.operator-feature-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.operator-feature { position: relative; min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; overflow: hidden; border-radius: 26px; color: white; isolation: isolate; transition: transform .25s ease, box-shadow .25s ease; }
.operator-feature::before { content:""; position:absolute; inset:0; z-index:-2; background: linear-gradient(160deg,#0a6071,#073e4c); }
.operator-feature::after { content:""; position:absolute; inset:auto -20% -35% 20%; z-index:-1; height:75%; border-radius:50%; background:radial-gradient(circle,rgba(255,255,255,.22),transparent 64%); }
.operator-feature--omint::before { background: linear-gradient(160deg,#091d40,#184b83); }
.operator-feature--compare::before { background: linear-gradient(160deg,#0b4f88,#1885ca); }
.operator-feature:hover { transform: translateY(-7px); box-shadow: 0 25px 60px rgba(4,34,66,.18); }
.operator-feature__mark { position: absolute; top: 28px; left: 30px; color: rgba(255,255,255,.78); font-size: 19px; letter-spacing: -.02em; }
.operator-feature--omint .operator-feature__mark { color: #e5cf9e; font-family: Georgia,serif; letter-spacing: .12em; }
.operator-feature h2 { margin: 0 0 12px; color: white; font-size: 34px; letter-spacing: -.04em; }
.operator-feature p { margin: 0 0 22px; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.65; }
.operator-feature b { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); font-size: 13px; }
.operator-feature i { font-style: normal; font-size: 20px; transition: transform .2s ease; }
.operator-feature:hover i { transform: translateX(5px); }
.operator-cloud a { display: inline-flex; align-items: center; color: inherit; }
.operator-cloud a:hover { color: var(--blue-2); }

@media (max-width: 1100px) {
  .proposal-layout { grid-template-columns: 1fr; }
  .proposal-aside { position: static; }
  .proposal-assurances { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .operator-benefit-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .check-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .operator-feature-grid { grid-template-columns: 1fr 1fr; }
  .operator-feature--compare { grid-column: 1 / -1; min-height: 300px; }
}
@media (max-width: 760px) {
  .inner-page main { padding-top: var(--header-height); }
  .inner-hero,.operator-hero { min-height: 720px; align-items: end; }
  .inner-hero__image img,.operator-hero__image img { object-position: 62% center; }
  .inner-hero__overlay,.operator-hero__overlay,.operator-page--prevent .operator-hero__overlay,.operator-page--omint .operator-hero__overlay { background: linear-gradient(180deg,rgba(3,22,43,.22) 0%,rgba(4,31,59,.72) 42%,rgba(3,23,45,.98) 76%); }
  .inner-hero__content,.operator-hero__inner { padding-top: 170px; padding-bottom: 45px; }
  .inner-hero__copy h1,.operator-hero h1 { font-size: clamp(38px,12vw,56px); }
  .page-breadcrumb { font-size: 10px; }
  .proposal-section { padding-top: 58px; }
  .proposal-assurances { grid-template-columns: 1fr; }
  .proposal-form-shell { border-radius: 20px; }
  .proposal-progress { padding: 20px 18px 0; }
  #proposal-form { padding: 20px 18px 22px; }
  .choice-grid--plans,.field-grid--two { grid-template-columns: 1fr; }
  .choice-card span { min-height: 72px; }
  .proposal-actions { position: sticky; bottom: 0; margin: 18px -18px -22px; padding: 16px 18px calc(16px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); box-shadow: 0 -8px 24px rgba(4,34,65,.08); backdrop-filter: blur(10px); }
  .proposal-actions .button { flex: 1; padding-inline: 12px; }
  .compact-process,.operator-process-line { grid-template-columns: 1fr; }
  .split-layout { grid-template-columns: 1fr; }
  .operator-benefit-grid,.check-grid,.operator-feature-grid { grid-template-columns: 1fr; }
  .operator-benefit { min-height: auto; }
  .operator-compare__cta { align-items: stretch; flex-direction: column; }
  .operator-feature--compare { grid-column: auto; }
  .operator-feature { min-height: 330px; }
  .hub-hero .container { margin: 0 auto; }
}
@media (max-height: 780px) and (min-width: 900px) {
  .inner-hero,.operator-hero { min-height: 600px; }
  .inner-hero__content,.operator-hero__inner { padding-top: 38px; padding-bottom: 38px; }
  .inner-hero__copy h1,.operator-hero h1 { font-size: clamp(39px,5vw,62px); }
  .operator-hero__copy > p,.inner-hero__copy > p { line-height: 1.5; }
  .proposal-section,.operator-intro,.operator-lines,.operator-compare,.operator-process,.operator-faq { padding-top: 70px; padding-bottom: 70px; }
}

.footer-grid--five { grid-template-columns: 1.15fr .64fr .86fr .72fr 1fr; gap: 30px; }
.center-action { flex-wrap: wrap; gap: 12px; }
@media (max-width: 1180px) { .footer-grid--five { grid-template-columns: repeat(3,minmax(0,1fr)); } }
@media (max-width: 760px) { .footer-grid--five { grid-template-columns: 1fr; } }
.operator-wordmark--prevent { gap: .18em; }


/* Requested footer refinements: brand slider, legal row and WhatsApp pulse */
.footer-brand-slider {
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255,255,255,.075);
}
.footer-brand-slider__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.footer-brand-slider__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: footerBrandsMove 27s linear infinite;
  will-change: transform;
}
.footer-brand-slider__viewport:hover .footer-brand-slider__track {
  animation-play-state: paused;
}
.footer-brand-slider__group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}
.footer-brand-slider__item {
  display: grid;
  place-items: center;
  width: 190px;
  height: 66px;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 24px rgba(0,0,0,.11);
}
.footer-brand-slider__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes footerBrandsMove {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

.footer-legal {
  align-items: center;
}
.footer-legal p:first-child {
  max-width: none;
}
.footer-legal__developer {
  margin-left: auto !important;
  margin-right: 112px !important;
  white-space: nowrap;
}
.footer-legal__developer a {
  color: #9ec7e8;
  font-weight: 700;
  transition: color .22s ease;
}
.footer-legal__developer a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .footer-brand-slider {
    padding: 15px 0 18px;
  }
  .footer-brand-slider__group {
    gap: 12px;
    padding-right: 12px;
  }
  .footer-brand-slider__item {
    width: 154px;
    height: 58px;
    padding: 8px 14px;
    border-radius: 14px;
  }
  .footer-legal__developer {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-brand-slider__track,
  .floating-whatsapp { animation: none !important; }
}


/* WhatsApp widget — compact round button with the support prompt used on the FaciliSites home */
.whatsapp-widget {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.whatsapp-widget__hint {
  position: relative;
  width: 224px;
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 15px 38px 15px 17px;
  border: 1px solid rgba(10,58,88,.10);
  border-radius: 15px;
  color: #17364e;
  background: rgba(255,255,255,.98);
  box-shadow: 0 16px 42px rgba(3,31,53,.18);
  opacity: 0;
  transform: translate3d(12px,8px,0) scale(.96);
  transform-origin: right bottom;
  animation: whatsappHintIn .55s cubic-bezier(.22,1,.36,1) .8s forwards;
  pointer-events: auto;
}
.whatsapp-widget__hint::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 19px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(10,58,88,.10);
  border-right: 1px solid rgba(10,58,88,.10);
  background: white;
  transform: rotate(45deg);
}
.whatsapp-widget__hint strong {
  color: #0c2941;
  font-size: 14px;
  line-height: 1.15;
}
.whatsapp-widget__hint span {
  color: #60788b;
  font-size: 12px;
  line-height: 1.35;
}
.whatsapp-widget__close {
  position: absolute;
  z-index: 2;
  top: 7px;
  right: 8px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #7890a2;
  background: transparent;
  font: 500 20px/1 Arial, sans-serif;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.whatsapp-widget__close:hover {
  color: #17364e;
  background: #eef4f7;
}
.whatsapp-widget.is-dismissed .whatsapp-widget__hint {
  display: none;
}
.whatsapp-widget .floating-whatsapp {
  position: relative;
  right: auto;
  bottom: auto;
  width: 62px;
  height: 62px;
  min-width: 62px;
  min-height: 62px;
  display: grid;
  place-items: center;
  flex: 0 0 62px;
  padding: 0;
  border: 3px solid white;
  border-radius: 50%;
  color: white;
  background: #25d366;
  box-shadow: 0 13px 30px rgba(9,105,56,.34);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  animation: whatsappButtonFloat 2.8s ease-in-out infinite;
  pointer-events: auto;
  isolation: isolate;
  overflow: visible;
}
.whatsapp-widget .floating-whatsapp::before,
.whatsapp-widget .floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 2px solid rgba(37,211,102,.48);
  border-radius: 50%;
  opacity: 0;
  animation: whatsappPulseRing 2.5s ease-out infinite;
  pointer-events: none;
}
.whatsapp-widget .floating-whatsapp::after { animation-delay: 1.25s; }
.whatsapp-widget .floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  color: white;
  background: #20c45d;
  box-shadow: 0 17px 38px rgba(9,105,56,.42);
}
.whatsapp-widget .floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: white;
  stroke: none;
}
.whatsapp-widget .floating-whatsapp span { display: none; }
.whatsapp-widget .floating-whatsapp.is-hidden {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
@keyframes whatsappHintIn {
  to { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}
@keyframes whatsappPulseRing {
  0% { transform: scale(.90); opacity: 0; }
  16% { opacity: .72; }
  100% { transform: scale(1.38); opacity: 0; }
}
@keyframes whatsappButtonFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@media (max-width: 767px) {
  .whatsapp-widget { right: 14px; bottom: 14px; }
  .whatsapp-widget__hint { display: none; }
  .whatsapp-widget .floating-whatsapp {
    width: 58px;
    height: 58px;
    min-width: 58px;
    min-height: 58px;
    flex-basis: 58px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-widget__hint,
  .whatsapp-widget .floating-whatsapp,
  .whatsapp-widget .floating-whatsapp::before,
  .whatsapp-widget .floating-whatsapp::after {
    animation: none !important;
  }
  .whatsapp-widget__hint { opacity: 1; transform: none; }
}
