/* =========================================================
   CUID SEGUROS — LANDING PAGE
   Mobile-first / HTML5 + CSS3 / sem framework
   ========================================================= */

:root {
  --navy-950: #070b13;
  --navy-900: #0b1120;
  --navy-850: #111827;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --navy-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  --blue: #2f80ed;
  --blue-2: #38bdf8;
  --blue-soft: rgba(56, 189, 248, .12);
  --green: #25d366;
  --green-dark: #18aa50;
  --green-soft: rgba(37, 211, 102, .14);
  --gold: #f7c948;

  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(15, 23, 42, .09);
  --dark-line: rgba(255, 255, 255, .09);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;

  --shadow-sm: 0 12px 32px rgba(15, 23, 42, .08);
  --shadow: 0 24px 70px rgba(15, 23, 42, .13);
  --shadow-dark: 0 28px 80px rgba(0, 0, 0, .27);

  --container: 1200px;
  --header-h: 74px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

svg {
  display: block;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.section {
  padding: 82px 0;
}

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

.skip-link:focus {
  top: 14px;
}

[hidden] {
  display: none !important;
}

/* TYPOGRAPHY */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-heading h2,
.profession-copy h2,
.about-copy h2 {
  margin-bottom: 0;
  color: var(--navy-900);
  font-size: clamp(2rem, 7vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.section-heading h2 span,
.profession-copy h2 span,
.about-copy h2 span {
  color: var(--blue);
}

.section-heading > p,
.profession-copy > p,
.about-copy > p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.section-heading.centered .section-kicker {
  justify-content: center;
}

.section-heading.centered > p {
  margin-inline: auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform .25s var(--ease),
    box-shadow .25s var(--ease),
    background .25s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s var(--ease);
}

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

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  color: #07150b;
  background: var(--green);
  box-shadow: 0 16px 38px rgba(37, 211, 102, .25);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.38) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
}

.btn-primary:hover {
  background: #2dde70;
  box-shadow: 0 19px 46px rgba(37, 211, 102, .34);
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-dark {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 14px 34px rgba(11, 17, 32, .17);
}

.btn-dark:hover {
  background: var(--navy-800);
}

.btn-lg {
  min-height: 56px;
  padding: 16px 22px;
}

.btn-xl {
  min-height: 60px;
  padding: 18px 26px;
  border-radius: 16px;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  color: var(--white);
  transition:
    background .3s ease,
    box-shadow .3s ease,
    backdrop-filter .3s ease;
}

.site-header.scrolled {
  background: rgba(7, 11, 19, .88);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(56,189,248,.35), rgba(47,128,237,.08)),
    var(--navy-800);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px;
  box-shadow: inset 0 1px rgba(255,255,255,.12);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 4px;
  letter-spacing: -.035em;
}

.brand-copy strong {
  font-size: 1.35rem;
  font-weight: 900;
}

.brand-copy span {
  color: var(--blue-2);
  font-size: 1.05rem;
  font-weight: 700;
}

.desktop-nav,
.btn-header {
  display: none;
}

.menu-toggle {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  padding: 0;
  color: var(--white);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  transition: .25s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  display: grid;
  gap: 4px;
  padding: 16px 18px 24px;
  background: rgba(7, 11, 19, .97);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: .3s var(--ease);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav > a:not(.btn) {
  padding: 13px 8px;
  color: var(--slate-200);
  font-weight: 700;
}

/* HERO */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: calc(var(--header-h) + 46px) 0 28px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 30%, rgba(47, 128, 237, .11), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 50%, #101a30 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
}

.hero-glow-one {
  width: 330px;
  height: 330px;
  right: -150px;
  top: 150px;
  background: rgba(56, 189, 248, .10);
}

.hero-glow-two {
  width: 270px;
  height: 270px;
  left: -120px;
  bottom: 70px;
  background: rgba(37, 211, 102, .06);
}

.hero-grid {
  display: grid;
  gap: 46px;
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 11px;
  color: var(--slate-200);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .02em;
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(37,211,102,.10), 0 0 20px rgba(37,211,102,.55);
}

.eyebrow-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.16);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 12.5vw, 5.7rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.062em;
}

.rotating-wrap {
  display: block;
  min-height: 1.08em;
  color: var(--blue-2);
}

#rotating-text {
  display: inline-block;
  transition:
    opacity .28s ease,
    transform .28s var(--ease),
    filter .28s ease;
}

#rotating-text.is-changing {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(5px);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--slate-300);
  font-size: clamp(1.02rem, 3.9vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.text-link,
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.text-link {
  justify-content: center;
  color: var(--slate-200);
}

.text-link svg,
.product-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s var(--ease);
}

.text-link:hover svg,
.product-link:hover svg {
  transform: translateX(4px);
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.avatar-stack {
  display: flex;
  flex: 0 0 auto;
}

.avatar-stack img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border: 3px solid var(--navy-900);
  border-radius: 50%;
}

.avatar-stack img + img {
  margin-left: -10px;
}

.proof-copy {
  display: grid;
  gap: 1px;
  color: var(--slate-300);
  font-size: .77rem;
  line-height: 1.3;
}

.proof-copy strong {
  color: var(--white);
}

.stars {
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .06em;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 24px;
  color: var(--slate-400);
  font-size: .76rem;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.trust-row svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  width: min(100%, 580px);
  margin-inline: auto;
}

.image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.7;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  box-shadow: var(--shadow-dark);
}

.image-frame::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: inherit;
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7,11,19,.7), transparent 42%),
    linear-gradient(120deg, rgba(47,128,237,.13), transparent 45%);
}

.image-badge {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 16px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(7,11,19,.62);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 12px;
  color: var(--navy-900);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0,0,0,.20);
  backdrop-filter: blur(16px);
}

.float-card small,
.float-card strong {
  display: block;
}

.float-card small {
  color: var(--slate-500);
  font-size: .66rem;
  font-weight: 700;
}

.float-card strong {
  margin-top: 1px;
  font-size: .78rem;
  line-height: 1.25;
}

.float-icon {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  color: var(--blue);
  background: #eef6ff;
  border-radius: 11px;
}

.float-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.float-card-a {
  left: -7px;
  top: 22%;
  animation: float 5.2s ease-in-out infinite;
}

.float-card-b {
  right: -8px;
  bottom: 25%;
  animation: float 5.9s ease-in-out infinite .5s;
}

.float-card-c {
  left: 8%;
  bottom: -18px;
  animation: float 6.3s ease-in-out infinite .9s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-.4deg); }
  50% { transform: translateY(-10px) rotate(.4deg); }
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 52px;
  text-align: center;
}

.hero-bottom p {
  margin: 0;
  color: var(--slate-400);
  font-size: .83rem;
}

.hero-bottom strong {
  color: var(--slate-200);
}

.scroll-cue {
  display: none;
}

/* VALUE STRIP */
.value-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.value-grid {
  display: grid;
}

.value-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.value-grid article:last-child {
  border-bottom: 0;
}

.value-grid article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
  background: #eff6ff;
  border-radius: 12px;
  font-size: .74rem;
  font-weight: 900;
}

.value-grid strong {
  color: var(--navy-900);
  font-size: .95rem;
}

.value-grid p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.5;
}

/* PRODUCTS */
.products-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--slate-50) 100%);
}

.product-tabs {
  display: flex;
  gap: 8px;
  margin: 0 -18px 26px;
  padding: 0 18px 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-tabs::-webkit-scrollbar {
  display: none;
}

.product-tab {
  flex: 0 0 auto;
  padding: 11px 14px;
  color: var(--slate-500);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
  transition: .25s var(--ease);
}

.product-tab:hover,
.product-tab.active {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: 0 10px 30px rgba(15,23,42,.12);
}

.products-grid {
  display: grid;
  gap: 14px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15,23,42,.035);
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    border-color .35s var(--ease);
}

.product-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -75px;
  top: -75px;
  background: radial-gradient(circle, rgba(47,128,237,.10), transparent 68%);
  transition: .4s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47,128,237,.24);
  box-shadow: 0 22px 55px rgba(15,23,42,.10);
}

.product-card:hover::after {
  transform: scale(1.3);
}

.product-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(56,189,248,.18), transparent 28%),
    linear-gradient(145deg, var(--navy-900), var(--navy-800));
  border-color: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}

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

.product-card.featured p,
.product-card.featured li {
  color: var(--slate-300);
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--blue);
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 15px;
  transition:
    transform .3s var(--ease),
    background .3s var(--ease);
}

.product-card:hover .product-icon {
  transform: translateY(-3px) rotate(-3deg);
  background: #e0f2fe;
}

.product-card.featured .product-icon {
  color: var(--blue-2);
  background: rgba(56,189,248,.11);
  border-color: rgba(56,189,248,.18);
}

.product-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-tag {
  align-self: flex-start;
  padding: 7px 9px;
  color: var(--green);
  background: rgba(37,211,102,.10);
  border: 1px solid rgba(37,211,102,.16);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 9px;
  color: var(--navy-900);
  font-size: 1.25rem;
  letter-spacing: -.025em;
}

.product-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
}

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

.product-card li {
  position: relative;
  padding-left: 17px;
  color: var(--slate-500);
  font-size: .78rem;
}

.product-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.product-link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  color: var(--blue);
  font-size: .79rem;
}

.tab-visible {
  animation: tabIn .38s var(--ease) both;
}

@keyframes tabIn {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: none; }
}

/* PROFESSION */
.profession-section {
  background: var(--white);
}

.profession-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.profession-image {
  position: relative;
}

.profession-image img {
  width: 100%;
  aspect-ratio: 1.06 / 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.profession-mini-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 13px 16px;
  color: var(--white);
  background: rgba(7,11,19,.82);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

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

.profession-mini-card span {
  color: var(--blue-2);
  font-size: .67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.profession-mini-card strong {
  margin-top: 2px;
  font-size: .88rem;
}

.profession-copy h2,
.about-copy h2 {
  margin-bottom: 20px;
}

.profession-copy > p {
  margin-bottom: 22px;
}

.profession-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.profession-chips span {
  padding: 8px 11px;
  color: var(--navy-700);
  background: var(--slate-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
}

/* PROCESS */
.process-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(47,128,237,.16), transparent 30%),
    var(--navy-900);
}

.process-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -250px;
  bottom: -220px;
  background: rgba(56,189,248,.05);
  border-radius: 50%;
  filter: blur(20px);
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light h2 span {
  color: var(--blue-2);
}

.section-heading.light > p {
  color: var(--slate-300);
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.process-card {
  position: relative;
  min-height: 245px;
  padding: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: .3s var(--ease);
}

.process-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.065);
  border-color: rgba(56,189,248,.22);
}

.process-number {
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(255,255,255,.08);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.08em;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 28px;
  color: var(--blue-2);
  background: rgba(56,189,248,.09);
  border: 1px solid rgba(56,189,248,.13);
  border-radius: 14px;
}

.process-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-card h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1.08rem;
}

.process-card p {
  margin-bottom: 0;
  color: var(--slate-400);
  font-size: .84rem;
}

/* PARTNERS */
.partners-section {
  background: var(--slate-50);
}

.partner-group + .partner-group {
  margin-top: 36px;
}

.partner-group-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
  color: var(--slate-500);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.partner-group-title div {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.logo-card {
  display: grid;
  place-items: center;
  min-height: 105px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  transition:
    transform .28s var(--ease),
    box-shadow .28s var(--ease),
    border-color .28s var(--ease);
}

.logo-card img {
  width: auto;
  max-width: 102px;
  height: 34px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .62;
  transition:
    filter .3s ease,
    opacity .3s ease,
    transform .3s var(--ease);
}

.logo-card span {
  margin-top: 8px;
  color: var(--slate-500);
  font-size: .68rem;
  font-weight: 800;
  text-align: center;
  transition: color .3s ease;
}

.logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47,128,237,.18);
  box-shadow: var(--shadow-sm);
}

.logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.logo-card:hover span {
  color: var(--navy-900);
}

/* ABOUT */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.about-copy > p + p {
  margin-top: 14px;
}

.about-facts {
  display: grid;
  gap: 10px;
  margin: 26px 0 28px;
}

.about-facts > div {
  padding: 15px;
  background: var(--slate-50);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.about-facts strong,
.about-facts span {
  display: block;
}

.about-facts strong {
  color: var(--navy-900);
  font-size: .96rem;
}

.about-facts span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .73rem;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-location {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  color: var(--white);
  background: rgba(7,11,19,.82);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.about-location svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue-2);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-location small,
.about-location strong {
  display: block;
}

.about-location small {
  color: var(--slate-400);
  font-size: .66rem;
}

.about-location strong {
  font-size: .84rem;
}

/* FINAL CTA */
.final-cta {
  padding: 16px 0 80px;
  background: var(--white);
}

.final-cta-inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 48px 22px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(56,189,248,.13), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  border-radius: 28px;
  box-shadow: var(--shadow-dark);
}

.final-cta-inner .section-kicker {
  color: var(--blue-2);
}

.final-cta-inner h2 {
  max-width: 850px;
  margin: 0 auto 18px;
  font-size: clamp(2.1rem, 8.8vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.final-cta-inner h2 span {
  color: var(--blue-2);
}

.final-cta-inner > p {
  max-width: 610px;
  margin: 0 auto 26px;
  color: var(--slate-300);
}

.final-cta-inner > small {
  display: block;
  margin-top: 14px;
  color: var(--slate-400);
  font-size: .7rem;
}

.final-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.orb-one {
  width: 230px;
  height: 230px;
  left: -115px;
  bottom: -115px;
  background: rgba(37,211,102,.06);
}

.orb-two {
  width: 260px;
  height: 260px;
  right: -150px;
  top: -130px;
  background: rgba(56,189,248,.07);
}

/* FOOTER */
.site-footer {
  padding: 50px 0 26px;
  color: var(--slate-400);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  gap: 34px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 370px;
  margin: 16px 0 0;
  font-size: .82rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: .8rem;
}

.footer-links a,
.footer-links span {
  font-size: .76rem;
}

.footer-links a {
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p,
.legal-note p {
  margin: 0;
  font-size: .67rem;
}

.legal-note {
  margin-top: 18px;
}

.legal-note p {
  max-width: 980px;
  color: #64748b;
  line-height: 1.55;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  z-index: 1200;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 56px;
  min-height: 56px;
  padding: 0 16px;
  color: #041b0d;
  background: var(--green);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(17, 91, 46, .34);
  font-weight: 900;
  transition:
    transform .25s var(--ease),
    box-shadow .25s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 50px rgba(17, 91, 46, .42);
}

.whatsapp-float > svg {
  width: 28px;
  height: 28px;
}

.wa-label {
  display: none;
  font-size: .76rem;
}

.wa-pulse {
  position: absolute;
  inset: -6px;
  z-index: -1;
  border: 1px solid rgba(37,211,102,.38);
  border-radius: inherit;
  animation: waPulse 2.2s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(.9); opacity: .8; }
  75%, 100% { transform: scale(1.18); opacity: 0; }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .72s var(--ease),
    transform .72s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* TABLET */
@media (min-width: 700px) {
  .container {
    width: min(calc(100% - 56px), var(--container));
  }

  .section {
    padding: 100px 0;
  }

  .hero {
    padding-top: calc(var(--header-h) + 72px);
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .text-link {
    justify-content: flex-start;
  }

  .social-proof {
    gap: 16px;
  }

  .avatar-stack img {
    width: 44px;
    height: 44px;
  }

  .proof-copy {
    font-size: .82rem;
  }

  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-grid article {
    padding: 28px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .value-grid article:first-child {
    padding-left: 0;
  }

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

  .section-heading {
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 40px;
    margin-bottom: 44px;
  }

  .section-heading.centered {
    display: block;
  }

  .section-heading.centered > p {
    margin-top: 18px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .product-card {
    min-height: 320px;
    padding: 26px;
  }

  .profession-grid,
  .about-grid {
    grid-template-columns: .95fr 1.05fr;
    gap: 56px;
  }

  .about-grid {
    grid-template-columns: 1.05fr .95fr;
  }

  .about-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .logo-grid-secondary {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .wa-label {
    display: inline;
  }

  .whatsapp-float {
    right: 24px;
    bottom: 24px;
  }
}

/* DESKTOP */
@media (min-width: 980px) {
  :root {
    --header-h: 84px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
  }

  .desktop-nav a {
    position: relative;
    color: var(--slate-300);
    font-size: .78rem;
    font-weight: 750;
    transition: color .2s ease;
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--blue-2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .24s var(--ease);
  }

  .desktop-nav a:hover {
    color: var(--white);
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .btn-header {
    display: inline-flex;
    min-height: 44px;
    padding: 11px 15px;
    color: #07150b;
    background: var(--green);
    font-size: .73rem;
    box-shadow: 0 10px 30px rgba(37,211,102,.18);
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .hero {
    min-height: 820px;
    padding: calc(var(--header-h) + 74px) 0 34px;
  }

  .hero-grid {
    grid-template-columns: 1.04fr .96fr;
    gap: 72px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 6.3vw, 5.8rem);
  }

  .hero-lead {
    max-width: 630px;
  }

  .hero-visual {
    margin-right: 0;
  }

  .image-frame {
    border-radius: 36px;
  }

  .float-card-a {
    left: -52px;
  }

  .float-card-b {
    right: -34px;
  }

  .float-card-c {
    left: 10%;
    bottom: -20px;
  }

  .hero-bottom {
    justify-content: space-between;
    margin-top: 50px;
    text-align: left;
  }

  .scroll-cue {
    position: relative;
    display: block;
    width: 24px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
  }

  .scroll-cue span {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 3px;
    height: 7px;
    background: var(--slate-400);
    border-radius: 999px;
    transform: translateX(-50%);
    animation: scrollCue 1.8s ease-in-out infinite;
  }

  @keyframes scrollCue {
    0% { opacity: 0; transform: translate(-50%, -3px); }
    35% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 12px); }
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-card.featured {
    grid-column: span 1;
  }

  .profession-grid,
  .about-grid {
    gap: 86px;
  }

  .process-card {
    min-height: 280px;
    padding: 30px;
  }

  .logo-grid-secondary {
    grid-template-columns: repeat(7, 1fr);
  }

  .final-cta {
    padding-bottom: 110px;
  }

  .final-cta-inner {
    padding: 78px 50px;
    border-radius: 36px;
  }
}

/* LARGE DESKTOP */
@media (min-width: 1240px) {
  .hero-grid {
    gap: 96px;
  }

  .float-card {
    min-width: 210px;
    padding: 14px;
  }

  .products-grid {
    gap: 20px;
  }

  .product-card {
    min-height: 338px;
    padding: 28px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* PRINT */
@media print {
  .site-header,
  .whatsapp-float,
  .hero-glow,
  .scroll-cue {
    display: none !important;
  }

  .hero {
    min-height: auto;
    color: #000;
    background: #fff;
  }

  .hero-lead,
  .proof-copy,
  .trust-row {
    color: #333;
  }

  .section,
  .hero {
    padding: 24px 0;
  }
}


/* Added in final package */
.solutions-strip{background:linear-gradient(180deg,#f8fbff 0%,#fff 100%);border-bottom:1px solid rgba(15,23,42,.08)}
.solutions-strip-inner{display:grid;gap:14px;padding:18px 0 20px}.solutions-label{display:inline-flex;align-items:center;gap:10px;color:#0f172a;font-weight:800;font-size:.86rem}.solutions-label svg{width:18px;height:18px;fill:none;stroke:#2f80ed;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.solutions-list{display:flex;flex-wrap:wrap;gap:8px 10px}.solutions-list span{padding:8px 11px;background:#0b1120;color:#fff;border-radius:999px;font-size:.73rem;font-weight:700}
.logo-card{min-height:115px;padding:14px 12px}.logo-card img{max-width:170px;height:46px;object-fit:contain;filter:grayscale(1);opacity:.68}.logo-grid{grid-template-columns:repeat(2,1fr)}
.referral-section{background:linear-gradient(180deg,#fff 0%,#f8fafc 100%)}
.referral-grid{display:grid;gap:14px;margin-bottom:26px}.referral-card{padding:22px;background:#fff;border:1px solid rgba(15,23,42,.09);border-radius:20px;box-shadow:0 10px 30px rgba(15,23,42,.04)}.referral-card h3{margin:16px 0 8px;color:#0b1120;font-size:1.1rem;letter-spacing:-.02em}.referral-card p{margin:0;color:#64748b;font-size:.86rem}.referral-icon{display:grid;place-items:center;width:46px;height:46px;color:#2f80ed;background:#eff6ff;border:1px solid #dbeafe;border-radius:14px}.referral-icon svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.referral-steps{display:grid;gap:12px;margin:10px 0 26px}.step-card{padding:20px;background:#0b1120;color:#fff;border-radius:18px;border:1px solid rgba(255,255,255,.06)}.step-card span{display:grid;place-items:center;width:34px;height:34px;margin-bottom:14px;background:#25d366;color:#07150b;border-radius:50%;font-weight:900}.step-card h4{margin:0 0 5px;font-size:1rem}.step-card p{margin:0;color:#cbd5e1;font-size:.82rem;line-height:1.55}
.referral-cta{display:flex;flex-direction:column;gap:18px;padding:24px;background:linear-gradient(145deg,#0b1120,#1e293b);color:#fff;border-radius:24px;box-shadow:0 24px 70px rgba(15,23,42,.13)}.referral-cta strong{display:block;font-size:1.15rem;letter-spacing:-.02em}.referral-cta p{margin:.35rem 0 0;color:#cbd5e1}
@media (min-width:700px){.solutions-strip-inner{grid-template-columns:auto 1fr;align-items:center}.logo-grid{grid-template-columns:repeat(4,1fr)}.referral-grid{grid-template-columns:repeat(2,1fr)}.referral-steps{grid-template-columns:repeat(2,1fr)}.referral-cta{flex-direction:row;align-items:center;justify-content:space-between}}
@media (min-width:980px){.logo-grid{grid-template-columns:repeat(5,1fr)}.logo-grid-secondary{grid-template-columns:repeat(4,1fr)}.referral-grid{grid-template-columns:repeat(4,1fr)}.referral-steps{grid-template-columns:repeat(4,1fr)}}


/* ===== AJUSTE FINAL — LOGOS PADRONIZADAS ===== */
.logo-card {
  min-height: 122px;
  overflow: hidden;
}
.logo-card img {
  display: block;
  width: 172px;
  max-width: 86%;
  height: 58px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1);
  opacity: .72;
  transform: none;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}
.logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

/* Compensações ópticas para formatos muito largos/estreitos */
.logo-card img[src*="rodobens"] { width: 188px; height: 54px; }
.logo-card img[src*="azos"] { width: 184px; height: 54px; }
.logo-card img[src*="allianz"] { width: 178px; height: 56px; }
.logo-card img[src*="sulamerica"] { width: 174px; height: 58px; }
.logo-card img[src*="bradesco_saude"] { width: 166px; height: 60px; }
.logo-card img[src*="porto_saude"] { width: 170px; height: 60px; }
.logo-card img[src*="medsenior"] { width: 170px; height: 60px; }
.logo-card img[src*="tokio_marine"] { width: 148px; height: 62px; }
.logo-card img[src*="hdi"] { width: 150px; height: 62px; }
.logo-card img[src*="leve_saude"] { width: 150px; height: 62px; }

@media (max-width: 699px) {
  .logo-card img { width: 150px; max-width: 88%; height: 52px; }
}


/* Link jurídico no rodapé */
.footer-legal-links{display:flex;flex-wrap:wrap;align-items:center;gap:10px 18px}.footer-legal-links p{margin:0}.footer-legal-links a{color:var(--slate-300);font-size:.67rem;font-weight:700;text-decoration:underline;text-decoration-color:rgba(203,213,225,.35);text-underline-offset:3px;transition:color .2s ease}.footer-legal-links a:hover{color:var(--white)}


/* ===== ABAS DE PRODUTOS — SEM DEPENDÊNCIA DE JAVASCRIPT ===== */
.product-selector { position: relative; }
.product-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.product-tabs .product-tab {
  cursor: pointer;
  user-select: none;
}
.product-selector .products-grid .product-card {
  display: none;
}
#tab-familia:checked ~ .products-grid .product-card[data-category="familia"],
#tab-profissionais:checked ~ .products-grid .product-card[data-category="profissionais"],
#tab-beneficios:checked ~ .products-grid .product-card[data-category="beneficios"] {
  display: flex;
  animation: tabIn .38s var(--ease) both;
}
#tab-familia:checked ~ .product-tabs label[for="tab-familia"],
#tab-profissionais:checked ~ .product-tabs label[for="tab-profissionais"],
#tab-beneficios:checked ~ .product-tabs label[for="tab-beneficios"] {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: 0 10px 30px rgba(15,23,42,.12);
}
.product-radio:focus-visible ~ .product-tabs label {
  outline-offset: 3px;
}


/* =========================================================
   CABEÇALHO UNIFICADO CUID SEGUROS — HOME + PARCERIAS
   ========================================================= */
.unified-site-header{
  position:fixed !important;
  top:0; left:0; right:0;
  width:100%;
  z-index:2000;
  color:#fff;
  background:rgba(7,11,19,.94) !important;
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 34px rgba(0,0,0,.16);
  -webkit-backdrop-filter:blur(18px);
  backdrop-filter:blur(18px);
}
.unified-header-inner{
  height:84px !important;
  min-height:84px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:18px !important;
}
.unified-brand{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  text-decoration:none;
}
.unified-brand-card{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:7px 12px 7px 10px;
  min-width:144px;
  background:#fff;
  border:1px solid rgba(255,255,255,.75);
  border-radius:14px;
  box-shadow:0 8px 22px rgba(0,0,0,.16);
}
.unified-brand-shield{
  width:31px;
  height:31px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.unified-brand-shield svg{
  width:31px;
  height:31px;
  fill:none;
  stroke:#e3a62f;
  stroke-width:4;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.unified-brand-word{
  display:grid;
  align-content:center;
  line-height:1;
  color:#111827;
}
.unified-brand-word strong{
  display:block;
  color:#111827;
  font-family:Arial,Helvetica,sans-serif;
  font-size:22px;
  font-weight:500;
  line-height:21px;
  letter-spacing:-.6px;
}
.unified-brand-word small{
  display:block;
  margin-top:5px;
  color:#111827;
  font-family:Arial,Helvetica,sans-serif;
  font-size:8px;
  font-weight:500;
  line-height:9px;
  letter-spacing:2.2px;
}
.unified-nav{
  margin-left:auto !important;
  display:flex !important;
  align-items:center !important;
  gap:27px !important;
}
.unified-nav a{
  position:relative;
  color:#cbd5e1 !important;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:12px !important;
  font-weight:750 !important;
  line-height:1;
  text-decoration:none;
  transition:color .2s ease;
}
.unified-nav a::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-9px;
  height:2px;
  background:#38bdf8;
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .22s ease;
}
.unified-nav a:hover{color:#fff !important}
.unified-nav a:hover::after{transform:scaleX(1);transform-origin:left}
.unified-header-cta{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:44px !important;
  padding:11px 16px !important;
  border:0 !important;
  border-radius:14px !important;
  color:#07150b !important;
  background:#25d366 !important;
  box-shadow:0 10px 30px rgba(37,211,102,.22) !important;
  font-size:12px !important;
  font-weight:850 !important;
  line-height:1;
  text-decoration:none;
}
.unified-header-cta:hover{background:#2dde70 !important;transform:translateY(-2px)}
.unified-menu-toggle{
  display:none;
  width:44px;
  height:44px;
  padding:0;
  place-content:center;
  gap:5px;
  color:#fff;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  cursor:pointer;
}
.unified-menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:currentColor;
  border-radius:10px;
  transition:.25s ease;
}
.unified-menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.unified-menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.unified-menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.unified-mobile-nav{
  position:fixed;
  top:84px;
  left:0; right:0;
  z-index:1999;
  display:grid;
  gap:4px;
  padding:16px 20px 24px;
  background:rgba(7,11,19,.98);
  border-top:1px solid rgba(255,255,255,.08);
  box-shadow:0 24px 60px rgba(0,0,0,.28);
  transform:translateY(-130%);
  opacity:0;
  pointer-events:none;
  transition:.28s ease;
}
.unified-mobile-nav.open{transform:translateY(0);opacity:1;pointer-events:auto}
.unified-mobile-nav>a:not(.btn){padding:13px 8px;color:#e2e8f0;font-weight:750;text-decoration:none}
.unified-mobile-cta{margin-top:8px;background:#25d366 !important;color:#07150b !important;border:0 !important}

@media(max-width:979px){
  .unified-nav,.unified-header-cta{display:none !important}
  .unified-menu-toggle{display:grid !important}
  .unified-brand-card{min-width:137px;padding:6px 11px 6px 9px}
  .unified-brand-word strong{font-size:21px}
}
@media(max-width:480px){
  .unified-header-inner{height:74px !important;min-height:74px !important}
  .unified-mobile-nav{top:74px}
  .unified-brand-card{min-width:128px}
  .unified-brand-shield,.unified-brand-shield svg{width:28px;height:28px}
  .unified-brand-word strong{font-size:20px;line-height:20px}
  .unified-brand-word small{font-size:7.5px;letter-spacing:2px}
}
