:root {
  --navy: #062444;
  --blue: #0f5fa8;
  --cyan: #36c7dc;
  --green: #2eb67d;
  --red: #dc3655;
  --ink: #122033;
  --muted: #5d6d7f;
  --line: #d9e6ef;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(5, 31, 58, 0.16);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, "Aptos Display", "Segoe UI Variable", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

.ambient-network {
  position: fixed;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.92;
  mix-blend-mode: normal;
}

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

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

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

.container,
.section-shell {
  position: relative;
  z-index: 4;
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(217, 230, 239, 0.76);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(6, 36, 68, 0.08);
}

.navbar {
  width: var(--container);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 12px 28px rgba(15, 95, 168, 0.28);
}

.logo-mark {
  width: clamp(67px, 5.8vw, 92px);
  height: 25px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 3px 6px rgba(0, 46, 105, 0.18))
    drop-shadow(0 10px 18px rgba(6, 36, 68, 0.14));
}

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

.brand strong,
.brand small {
  display: block;
}

.site-header .brand > span:last-child {
  transform: translateY(3px);
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #29405a;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-panel a:not(.btn) {
  position: relative;
  padding-block: 8px;
}

.nav-panel a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cyan);
  transition: transform 0.2s ease;
}

.nav-panel a:hover::after {
  transform: scaleX(1);
}

.nav-tech-menu {
  position: relative;
}

.nav-tech-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-weight: inherit;
  cursor: pointer;
}

.nav-tech-trigger span {
  width: 7px;
  height: 7px;
  border-right: 1.8px solid var(--blue);
  border-bottom: 1.8px solid var(--blue);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.22s ease;
}

.nav-tech-menu.open .nav-tech-trigger span {
  transform: translateY(2px) rotate(225deg);
}

.nav-tech-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -18px;
  z-index: 60;
  display: grid;
  min-width: 208px;
  padding: 8px;
  border: 1px solid rgba(54, 199, 220, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(20, 83, 133, 0.32), transparent 45%),
    rgba(4, 31, 57, 0.98);
  box-shadow: 0 20px 50px rgba(2, 21, 39, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-tech-dropdown::before {
  content: "DR.ECG";
  padding: 7px 10px 9px;
  color: #8fe9f4;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-tech-menu.open .nav-tech-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-tech-dropdown button,
.nav-tech-dropdown a {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 12px 10px 24px;
  border: 0;
  border-radius: 6px;
  color: #e7f7fb;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-tech-dropdown button::before,
.nav-tech-dropdown a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  transform: translateY(-50%);
}

.nav-tech-dropdown button:hover,
.nav-tech-dropdown button:focus-visible,
.nav-tech-dropdown a:hover,
.nav-tech-dropdown a:focus-visible {
  color: var(--white);
  background: rgba(54, 199, 220, 0.16);
  outline: 0;
  transform: translateX(3px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #1295bb);
  box-shadow: 0 16px 34px rgba(15, 95, 168, 0.25);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover {
  box-shadow: 0 12px 24px rgba(6, 36, 68, 0.1);
}

.btn-urgent {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #b7183e);
  box-shadow: 0 16px 34px rgba(220, 54, 85, 0.25);
}

.medical-247 {
  transition: transform 0.2s ease, color 0.2s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.medical-247:hover,
.medical-247:focus-visible {
  color: var(--white) !important;
  border-color: transparent;
  background: linear-gradient(135deg, #0b709e, #2eb67d) !important;
  box-shadow: 0 14px 28px rgba(20, 142, 159, 0.3);
  outline: 0;
  transform: translateY(-2px);
}

.medical-247.is-coming-soon {
  color: var(--white) !important;
  background: linear-gradient(135deg, #197a69, #2eb67d) !important;
  box-shadow: 0 12px 26px rgba(46, 182, 125, 0.28);
}

.btn-sm {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 0.86rem;
}

.nav-panel .btn-sm {
  width: max-content;
  min-height: 38px;
  padding-inline: 11px;
  font-size: 0.76rem;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 48px;
  padding: 72px 0 44px;
}

.section-logo,
.panel-logo,
.card-logo {
  display: block;
  object-fit: contain;
  user-select: none;
}

.section-logo {
  width: clamp(146px, 15vw, 246px);
  height: auto;
  filter:
    drop-shadow(0 3px 6px rgba(255, 255, 255, 0.24))
    drop-shadow(0 12px 24px rgba(6, 36, 68, 0.22))
    drop-shadow(0 24px 38px rgba(15, 95, 168, 0.14));
}

.hero-logo {
  width: clamp(260px, 26vw, 420px);
  margin-bottom: 20px;
}

.section-logo-right,
.section-logo-left {
  position: absolute;
  top: 36px;
  opacity: 0.18;
  z-index: -1;
}

.section-logo-right {
  right: 0;
}

.section-logo-left {
  left: 0;
}

.section-logo-on-dark {
  opacity: 0.24;
  filter:
    drop-shadow(0 2px 7px rgba(255, 255, 255, 0.18))
    drop-shadow(0 18px 34px rgba(54, 199, 220, 0.18));
}

.contact-logo {
  width: clamp(170px, 17vw, 280px);
  margin-bottom: 20px;
  filter:
    drop-shadow(0 3px 7px rgba(255, 255, 255, 0.22))
    drop-shadow(0 16px 30px rgba(54, 199, 220, 0.2))
    drop-shadow(0 24px 38px rgba(6, 36, 68, 0.18));
}

.hero-bg {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  overflow: hidden;
  z-index: -1;
  background:
    radial-gradient(circle at 75% 22%, rgba(54, 199, 220, 0.16), transparent 30%),
    linear-gradient(180deg, #f7fbfe 0%, #ffffff 72%);
}

.grid-layer {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 95, 168, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 95, 168, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 74%);
}

.pulse-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 64%;
  height: 90px;
  opacity: 0.18;
  background:
    linear-gradient(90deg, transparent 0 7%, var(--cyan) 7% 18%, transparent 18% 21%, var(--red) 21% 22%, transparent 22% 26%, var(--cyan) 26% 42%, transparent 42% 100%);
  clip-path: polygon(0 52%, 12% 52%, 15% 25%, 18% 74%, 22% 52%, 37% 52%, 40% 34%, 44% 72%, 48% 52%, 100% 52%);
  animation: ecgMove 6s linear infinite;
}

@keyframes ecgMove {
  from { transform: translateX(-10%); }
  to { transform: translateX(10%); }
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(46, 182, 125, 0.13);
}

.hero .eyebrow {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

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

h1,
h2 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 760;
}

h1 {
  max-width: 720px;
  margin-block: 18px 22px;
  font-size: clamp(2.15rem, 4.2vw, 3.85rem);
}

h2 {
  margin-block: 12px 18px;
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
}

h3 {
  color: var(--navy);
  line-height: 1.22;
  font-size: clamp(1.02rem, 1.3vw, 1.22rem);
  font-weight: 760;
}

.hero-content p,
.section-heading p,
.split p,
.about-layout p,
.investor-layout p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span,
.tag-cloud span,
.institution-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #31506d;
  background: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3.65;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vital-card,
.status-card {
  position: absolute;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(6, 36, 68, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(6, 36, 68, 0.26);
}

.vital-card {
  left: -24px;
  bottom: 34px;
  width: min(260px, 70%);
}

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

.vital-card span {
  color: #cceaf4;
  font-size: 0.88rem;
}

.mini-ecg {
  height: 46px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--cyan), var(--red));
  clip-path: polygon(0 55%, 16% 55%, 20% 20%, 25% 82%, 31% 55%, 50% 55%, 55% 34%, 62% 72%, 69% 55%, 100% 55%);
}

.status-card {
  right: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(46, 182, 125, 0.22);
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: rgba(244, 248, 251, 0.88);
}

#problema {
  padding-top: 44px;
}

.problem-visual {
  margin-bottom: 38px;
  overflow: hidden;
  border: 1px solid rgba(15, 95, 168, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(6, 36, 68, 0.12);
  position: relative;
}

.problem-visual > img:first-child {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 5.2;
  object-fit: cover;
  object-position: center 52%;
}

.problem-logo {
  position: absolute;
  left: clamp(18px, 3vw, 42px);
  bottom: clamp(16px, 2.6vw, 34px);
  width: clamp(150px, 18vw, 270px);
  height: auto;
  z-index: 2;
  filter:
    drop-shadow(0 3px 8px rgba(255, 255, 255, 0.26))
    drop-shadow(0 12px 24px rgba(6, 36, 68, 0.34))
    drop-shadow(0 22px 34px rgba(0, 46, 105, 0.22));
  opacity: 0.96;
  pointer-events: none;
}

.problem-section-title {
  margin-bottom: 16px;
  text-align: center;
}

.problem-title {
  text-align: center;
}

.problem-title .section-kicker,
.problem-section-title .section-kicker {
  display: flex;
  justify-content: center;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  color: var(--red);
  margin-bottom: 16px;
}

.problem-title h2 {
  margin-inline: auto;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.18;
}

#nosotros .section-kicker,
#solucion .section-kicker,
#servicios .section-kicker,
#instituciones .section-kicker,
#seguridad .section-kicker,
#faq .section-kicker,
#contacto .section-kicker {
  font-size: clamp(0.95rem, 1.55vw, 1.28rem);
}

#solucion h2 {
  font-size: clamp(1.38rem, 2.35vw, 2.05rem);
  line-height: 1.18;
}

.hero h1,
#nosotros h2,
#solucion h2,
#servicios h2,
#medicos h2,
#instituciones h2,
#seguridad h2,
#faq h2,
#contacto h2 {
  font-size: clamp(1.42rem, 2.45vw, 2.12rem);
  line-height: 1.18;
}

#faq h2 {
  font-size: clamp(1.28rem, 2vw, 1.82rem);
}

#servicios h2 {
  font-size: clamp(1.38rem, 2.35vw, 2.05rem);
  line-height: 1.18;
}

#servicios .section-heading p {
  font-size: clamp(1.12rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

#medicos .section-kicker {
  font-size: clamp(0.82rem, 1.15vw, 1rem);
}

#medicos h2 {
  font-size: clamp(1.38rem, 2.35vw, 2.05rem);
  line-height: 1.18;
}

.section-blue,
.section-security {
  color: var(--white);
  background:
    linear-gradient(rgba(7, 33, 64, 0.95), rgba(7, 33, 64, 0.95)),
    repeating-linear-gradient(90deg, rgba(54, 199, 220, 0.12) 0 1px, transparent 1px 80px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-heading.light h2,
.section-heading.light p,
.section-blue h3,
.section-security h2,
.section-security p {
  color: var(--white);
}

.section-heading.light .section-kicker,
.section-security .section-kicker {
  color: #79e2ee;
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1fr 0.98fr;
}

.rich-copy {
  display: grid;
  gap: 22px;
}

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

.problem-grid span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 750;
  text-align: center;
}

.card-grid,
.services-grid,
.audience-grid,
.doctor-grid,
.security-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.service-card,
.levels-grid article,
.audience-grid article,
.doctor-card,
.investor-card,
.dashboard-card,
.contact-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 36, 68, 0.06);
}

.feature-card {
  padding: 24px;
}

.feature-card:nth-child(1),
.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  grid-column: span 1;
}

.feature-card:nth-child(7) {
  grid-column: span 2;
}

.icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: #eef8fb;
  border: 1px solid #cbeef4;
}

.icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: var(--blue);
}

.icon.heart::before { clip-path: path("M12 21s-8-5-10-11c-1-4 2-8 6-8 2 0 4 1 4 3 1-2 3-3 5-3 4 0 7 4 5 8-2 6-10 11-10 11Z"); background: var(--red); }
.icon.ecg::before { clip-path: polygon(0 55%, 20% 55%, 25% 18%, 35% 86%, 45% 55%, 100% 55%, 100% 68%, 50% 68%, 36% 96%, 24% 42%, 19% 68%, 0 68%); background: var(--cyan); }
.icon.tele::before { clip-path: inset(4px 2px 6px 2px round 3px); }
.icon.remote::before { border-radius: 50%; box-shadow: 0 0 0 6px rgba(15, 95, 168, 0.18), 0 0 0 12px rgba(15, 95, 168, 0.08); }
.icon.triage::before { clip-path: polygon(45% 0, 60% 0, 60% 40%, 100% 40%, 100% 58%, 60% 58%, 60% 100%, 45% 100%, 45% 58%, 0 58%, 0 40%, 45% 40%); background: var(--green); }
.icon.report::before { clip-path: inset(1px 5px 1px 5px round 2px); }
.icon.shield::before { clip-path: polygon(50% 0, 90% 15%, 82% 72%, 50% 100%, 18% 72%, 10% 15%); background: var(--green); }

.feature-card p,
.service-card p,
.levels-grid p,
.audience-grid p,
.doctor-card p,
.doctor-card small,
.investor-card li,
.faq-list p {
  color: var(--muted);
}

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

.service-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.service-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(141, 230, 239, 0.36);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.12) 34%, transparent 36%),
    linear-gradient(135deg, rgba(54, 199, 220, 0.2), rgba(46, 182, 125, 0.18));
  box-shadow: 0 18px 34px rgba(54, 199, 220, 0.12);
  animation: serviceFloat 4.6s ease-in-out infinite;
}

.service-icon::before,
.service-icon::after {
  content: "";
  grid-area: 1 / 1;
  display: block;
}

.service-icon::before {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #8de6ef, #2eb67d);
}

.service-icon::after {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(141, 230, 239, 0.5);
  animation: servicePulse 2.8s ease-in-out infinite;
}

.service-telecardio::before {
  background: linear-gradient(135deg, #8de6ef, #dc3655);
  clip-path: path("M19 34s-14-8-17-19C0 8 5 2 12 2c3 0 6 2 7 5 2-3 4-5 8-5 7 0 12 6 10 13-4 11-18 19-18 19Z");
}

.service-telecardio::after {
  width: 52px;
  height: 36px;
  border-radius: 5px;
  border-color: rgba(141, 230, 239, 0.42);
}

.service-ecg::before {
  width: 44px;
  height: 30px;
  background: linear-gradient(90deg, #8de6ef, #dc3655);
  clip-path: polygon(0 56%, 18% 56%, 24% 18%, 34% 88%, 44% 56%, 60% 56%, 66% 34%, 76% 74%, 84% 56%, 100% 56%, 100% 70%, 86% 70%, 74% 94%, 64% 50%, 58% 70%, 46% 70%, 32% 100%, 22% 42%, 18% 70%, 0 70%);
  animation: ecgBlink 1.8s ease-in-out infinite;
}

.service-mammo::before {
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 45% 45%;
  background:
    radial-gradient(circle at 62% 38%, rgba(255, 255, 255, 0.72) 0 10%, transparent 11%),
    linear-gradient(135deg, #8de6ef, #2eb67d);
}

.service-mammo::after {
  width: 42px;
  height: 22px;
  border-radius: 999px;
  transform: translateY(10px);
}

.service-spiro::before {
  width: 40px;
  height: 42px;
  background:
    radial-gradient(ellipse at 30% 45%, #8de6ef 0 34%, transparent 35%),
    radial-gradient(ellipse at 70% 45%, #2eb67d 0 34%, transparent 35%),
    linear-gradient(#8de6ef, #8de6ef);
  clip-path: polygon(45% 0, 55% 0, 55% 34%, 94% 18%, 100% 54%, 70% 100%, 52% 72%, 48% 72%, 30% 100%, 0 54%, 6% 18%, 45% 34%);
}

.service-spiro::after {
  border-color: rgba(46, 182, 125, 0.48);
  animation: breathPulse 2.6s ease-in-out infinite;
}

.service-doctors::before {
  width: 40px;
  height: 40px;
  background:
    radial-gradient(circle at 50% 24%, #8de6ef 0 18%, transparent 19%),
    linear-gradient(135deg, #8de6ef, #2eb67d);
  clip-path: polygon(50% 0, 64% 26%, 92% 28%, 92% 46%, 66% 48%, 66% 100%, 34% 100%, 34% 48%, 8% 46%, 8% 28%, 36% 26%);
}

.service-247::before {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    conic-gradient(from 30deg, #dc3655 0 28%, transparent 29% 36%, #8de6ef 37% 74%, transparent 75% 82%, #2eb67d 83% 100%);
  animation: rotateCare 5s linear infinite;
}

.service-247::after {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 33, 64, 0.86);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.08);
}

.service-card p {
  color: #d4e9f1;
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  color: #8de6ef;
  font-weight: 850;
}

.service-card.highlighted {
  background: linear-gradient(135deg, rgba(220, 54, 85, 0.92), rgba(15, 95, 168, 0.78));
}

@keyframes serviceFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes servicePulse {
  0%, 100% {
    transform: scale(0.82);
    opacity: 0.52;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.15;
  }
}

@keyframes ecgBlink {
  0%, 100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes breathPulse {
  0%, 100% {
    transform: scale(0.82);
  }
  50% {
    transform: scale(1.18);
  }
}

@keyframes rotateCare {
  to {
    transform: rotate(360deg);
  }
}

.process-track,
.ecg-flow {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  counter-reset: step;
}

.process-track .process-step,
.ecg-flow span {
  position: relative;
  min-height: 86px;
  display: grid;
  align-content: center;
  padding: 14px;
  border-radius: var(--radius);
  background: #eef8fb;
  border: 1px solid #cbeef4;
  color: var(--navy);
  font-weight: 780;
  font-size: 1.02rem;
}

.process-track .process-step {
  grid-template-columns: 25px 30px;
  grid-template-rows: 30px auto;
  align-items: center;
  align-content: center;
  column-gap: 8px;
  row-gap: 9px;
  min-height: 112px;
  padding: 14px;
}

.process-track .process-step::before {
  counter-increment: step;
  content: counter(step);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  grid-column: 1;
  grid-row: 1;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.78rem;
}

.process-label {
  grid-column: 1 / -1;
  grid-row: 2;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.22;
}

.process-icon {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(15, 95, 168, 0.18);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 5px 12px rgba(6, 36, 68, 0.1);
  animation: processIconPulse 2.8s ease-in-out infinite;
}

.process-icon::before,
.process-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.process-patient::before {
  left: 10px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 8px 0 2px var(--blue);
}

.process-record::before {
  left: 8px;
  top: 6px;
  width: 12px;
  height: 16px;
  border: 2px solid var(--green);
  border-radius: 2px;
}

.process-record::after {
  left: 11px;
  top: 11px;
  width: 7px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 4px 0 var(--green);
}

.process-triage::before,
.process-reference::before {
  left: 7px;
  top: 7px;
  width: 15px;
  height: 15px;
  background: var(--red);
  clip-path: polygon(36% 0, 64% 0, 64% 36%, 100% 36%, 100% 64%, 64% 64%, 64% 100%, 36% 100%, 36% 64%, 0 64%, 0 36%, 36% 36%);
}

.process-consultation::before {
  left: 6px;
  top: 8px;
  width: 15px;
  height: 11px;
  border: 2px solid var(--blue);
  border-radius: 3px;
}

.process-consultation::after {
  right: 5px;
  top: 11px;
  width: 5px;
  height: 7px;
  border-radius: 1px;
  background: var(--cyan);
}

.process-ecg::before {
  left: 4px;
  top: 10px;
  width: 20px;
  height: 10px;
  background: var(--red);
  clip-path: polygon(0 44%, 22% 44%, 32% 0, 46% 100%, 59% 44%, 76% 44%, 83% 22%, 91% 44%, 100% 44%, 100% 60%, 87% 60%, 82% 46%, 74% 60%, 62% 60%, 46% 100%, 31% 30%, 27% 60%, 0 60%);
}

.process-diagnosis::before {
  left: 7px;
  top: 6px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.process-diagnosis::after {
  right: 6px;
  bottom: 6px;
  width: 9px;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
  transform: rotate(45deg);
}

.process-followup::before {
  left: 7px;
  top: 7px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--green);
  border-left-color: transparent;
  border-radius: 50%;
}

.process-followup::after {
  right: 5px;
  top: 6px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--green);
}

.process-reference::before {
  background: var(--blue);
}

.process-reference::after {
  right: 4px;
  bottom: 4px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--green);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.process-track .process-step:nth-child(2) .process-icon { animation-delay: 0.18s; }
.process-track .process-step:nth-child(3) .process-icon { animation-delay: 0.36s; }
.process-track .process-step:nth-child(4) .process-icon { animation-delay: 0.54s; }
.process-track .process-step:nth-child(5) .process-icon { animation-delay: 0.72s; }
.process-track .process-step:nth-child(6) .process-icon { animation-delay: 0.9s; }
.process-track .process-step:nth-child(7) .process-icon { animation-delay: 1.08s; }
.process-track .process-step:nth-child(8) .process-icon { animation-delay: 1.26s; }

@keyframes processIconPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 5px 12px rgba(6, 36, 68, 0.1); }
  50% { transform: translateY(-3px); box-shadow: 0 8px 16px rgba(15, 95, 168, 0.18); }
}

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

.levels-grid article {
  padding: 24px;
}

.levels-grid span {
  color: var(--green);
  font-weight: 850;
}

#modelo .section-kicker {
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
}

#modelo .section-heading h2 {
  max-width: 730px;
  font-size: clamp(1.28rem, 2vw, 1.78rem);
  line-height: 1.22;
}

.levels-grid .level-icon {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 14px 0 12px;
  border: 1px solid rgba(15, 95, 168, 0.18);
  border-radius: 50%;
  background: linear-gradient(145deg, #f4fcff, #e6f7f0);
  box-shadow: inset 0 0 0 5px rgba(54, 199, 220, 0.08), 0 10px 20px rgba(6, 36, 68, 0.08);
  animation: levelIconFloat 3.2s ease-in-out infinite;
}

.levels-grid .level-icon::before,
.levels-grid .level-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.level-icon-prevention::before {
  width: 20px;
  height: 24px;
  border-radius: 11px 11px 14px 14px;
  background: var(--green);
  clip-path: polygon(50% 0, 96% 18%, 84% 72%, 50% 100%, 16% 72%, 4% 18%);
}

.level-icon-prevention::after {
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: translateY(-1px) rotate(-45deg);
}

.level-icon-consultation::before {
  width: 24px;
  height: 16px;
  border: 3px solid var(--blue);
  border-radius: 5px;
}

.level-icon-consultation::after {
  width: 7px;
  height: 7px;
  right: 10px;
  bottom: 13px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(54, 199, 220, 0.16);
}

.level-icon-ecg::before {
  width: 30px;
  height: 20px;
  background: var(--red);
  clip-path: polygon(0 53%, 25% 53%, 34% 18%, 45% 85%, 58% 53%, 74% 53%, 82% 32%, 91% 53%, 100% 53%, 100% 65%, 86% 65%, 80% 51%, 72% 65%, 62% 65%, 45% 100%, 32% 42%, 28% 65%, 0 65%);
}

.level-icon-ecg::after {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(220, 54, 85, 0.26);
  border-radius: 50%;
  animation: levelIconPulse 2s ease-out infinite;
}

.level-icon-reference::before {
  width: 25px;
  height: 25px;
  border: 3px solid var(--blue);
  border-radius: 4px 4px 2px 2px;
}

.level-icon-reference::after {
  width: 15px;
  height: 15px;
  background: var(--green);
  clip-path: polygon(38% 0, 62% 0, 62% 38%, 100% 38%, 100% 62%, 62% 62%, 62% 100%, 38% 100%, 38% 62%, 0 62%, 0 38%, 38% 38%);
}

.levels-grid article:nth-child(2) .level-icon { animation-delay: 0.35s; }
.levels-grid article:nth-child(3) .level-icon { animation-delay: 0.7s; }
.levels-grid article:nth-child(4) .level-icon { animation-delay: 1.05s; }

@keyframes levelIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes levelIconPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.78); }
  50% { opacity: 0.9; transform: scale(1); }
}

.section-tech {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(238, 248, 251, 0.88) 100%);
}

.technology-heading {
  max-width: 760px;
}

.technology-heading .section-kicker {
  font-size: clamp(1.08rem, 1.85vw, 1.42rem);
}

.technology-heading h2 {
  max-width: 680px;
  font-size: clamp(1.28rem, 2.05vw, 1.82rem);
}

.technology-experience {
  display: block;
  margin-top: 30px;
}

.technology-copy {
  padding: 10px 0;
}

.tech-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tech-label::before {
  content: "";
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.technology-copy h3 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: clamp(1.32rem, 2.1vw, 1.9rem);
  line-height: 1.22;
}

.technology-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.tech-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.tech-points li {
  position: relative;
  padding-left: 24px;
  color: #2c4d69;
  font-weight: 650;
}

.tech-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 182, 125, 0.12);
}

.tech-selection {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(15, 95, 168, 0.16);
  border-radius: var(--radius);
  color: #28516e;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
}

.tech-selection-dot,
.carousel-signal {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(46, 182, 125, 0.14), 0 0 14px rgba(46, 182, 125, 0.8);
  animation: technologyPulse 2s ease-in-out infinite;
}

.tech-carousel {
  overflow: hidden;
  border: 1px solid rgba(54, 199, 220, 0.45);
  border-radius: var(--radius);
  background: #062444;
  box-shadow: 0 24px 56px rgba(6, 36, 68, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.carousel-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(171, 229, 239, 0.15);
  color: #bfe8ef;
  font-size: 0.78rem;
  font-weight: 750;
}

.carousel-live {
  margin-left: auto;
  color: #74dce9;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tech-slides {
  position: relative;
  min-height: clamp(380px, 48vw, 620px);
  background:
    linear-gradient(135deg, rgba(13, 89, 142, 0.28), transparent 52%),
    radial-gradient(circle at 78% 18%, rgba(54, 199, 220, 0.18), transparent 24%),
    #041c35;
}

.tech-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(12px, 2.4vw, 28px);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035) translateX(14px);
  transition: opacity 0.48s ease, transform 0.58s ease, visibility 0.58s step-end;
}

.tech-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateX(0);
  transition: opacity 0.48s ease, transform 0.58s ease, visibility 0s;
}

.tech-slide img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 5, 18, 0.28));
}

.carousel-controls {
  display: grid;
  grid-template-columns: 38px 1fr auto 38px;
  align-items: center;
  gap: 11px;
  min-height: 64px;
  padding: 10px 14px;
  border-top: 1px solid rgba(171, 229, 239, 0.15);
}

.carousel-control,
.carousel-pause,
.carousel-dots button {
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.carousel-control {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(145, 224, 235, 0.28);
  border-radius: 50%;
  color: #a7e8ef;
  font-size: 1.1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: rgba(54, 199, 220, 0.2);
  outline: 0;
  transform: translateY(-2px);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(180, 234, 241, 0.4);
  box-shadow: 0 0 0 0 rgba(54, 199, 220, 0.3);
  transition: width 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.carousel-dots button.is-active {
  width: 24px;
  border-radius: 8px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(54, 199, 220, 0.75);
}

.carousel-dots button:focus-visible,
.carousel-pause:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.carousel-pause {
  min-height: 32px;
  padding: 0 9px;
  border: 1px solid rgba(145, 224, 235, 0.26);
  border-radius: 5px;
  color: #c6f1f4;
  font-size: 0.74rem;
  font-weight: 800;
  transition: background 0.2s ease;
}

.carousel-pause:hover {
  background: rgba(54, 199, 220, 0.16);
}

@keyframes technologyPulse {
  0%, 100% { opacity: 0.7; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1); }
}

.tech-panel {
  position: relative;
  padding: 18px;
  border-radius: var(--radius);
  background: #082743;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-logo {
  position: absolute;
  right: 18px;
  top: 18px;
  width: clamp(58px, 7vw, 92px);
  opacity: 0.2;
  filter: drop-shadow(0 12px 24px rgba(54, 199, 220, 0.18));
}

.panel-header {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.panel-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.panel-header span:nth-child(2) {
  background: var(--green);
}

.panel-header span:nth-child(3) {
  background: var(--red);
}

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

.dashboard-card {
  min-height: 128px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
  color: var(--white);
}

.dashboard-card.wide {
  grid-column: 1 / -1;
}

.dashboard-card small {
  color: #a7dce8;
}

.dashboard-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
}

.bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 64px;
  margin-top: 16px;
}

.bars span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--green));
}

.bars span:nth-child(1) { height: 42%; }
.bars span:nth-child(2) { height: 72%; }
.bars span:nth-child(3) { height: 56%; }
.bars span:nth-child(4) { height: 88%; }

.ecg-screen::after {
  content: "";
  display: block;
  height: 44px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--cyan), var(--red));
  clip-path: polygon(0 55%, 14% 55%, 18% 18%, 23% 84%, 30% 55%, 48% 55%, 52% 32%, 60% 74%, 67% 55%, 100% 55%);
}

.tag-cloud,
.institution-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

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

.ecg-flow span {
  background: var(--white);
}

.note-box {
  margin-top: 24px;
  padding: 22px;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: #f0fbf7;
  color: #244a43;
  font-weight: 700;
}

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

.audience-grid article {
  padding: 26px;
}

.stats-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("assets/images/telecardio-hero.png") center / cover fixed;
}

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

.stats-grid article {
  min-height: 168px;
  display: grid;
  align-content: center;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(6, 36, 68, 0.9);
  backdrop-filter: blur(10px);
}

.stats-grid strong {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.stats-grid span {
  margin-top: 10px;
  color: #cceaf4;
  font-weight: 700;
}

.institution-list span {
  background: #f5fbfc;
}

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

.security-grid span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #edfaff;
  text-align: center;
  font-weight: 750;
}

.medical-note {
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(220, 54, 85, 0.16);
  border: 1px solid rgba(220, 54, 85, 0.32);
}

.about-layout,
.investor-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.about-section,
.investor-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(245, 250, 247, 0.9) 100%);
}

.about-content {
  max-width: 680px;
}

.about-lead {
  font-size: 1.14rem;
  color: #344c63;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-visual {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
}

.about-photo {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-logo {
  position: absolute;
  left: 24px;
  top: 24px;
  width: clamp(150px, 17vw, 250px);
  height: auto;
  padding: 0;
  background: transparent;
  filter:
    drop-shadow(0 3px 8px rgba(255, 255, 255, 0.28))
    drop-shadow(0 12px 22px rgba(6, 36, 68, 0.34))
    drop-shadow(0 20px 34px rgba(0, 46, 105, 0.2));
}

.about-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 230px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(6, 36, 68, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(6, 36, 68, 0.25);
}

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

.about-badge span {
  color: #cceaf4;
  font-size: 0.92rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.about-pillars article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(6, 36, 68, 0.06);
  overflow: hidden;
}

.about-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.2) 34%, transparent 36%),
    linear-gradient(135deg, rgba(54, 199, 220, 0.18), rgba(46, 182, 125, 0.18));
  border: 1px solid rgba(54, 199, 220, 0.32);
  box-shadow: 0 16px 34px rgba(15, 95, 168, 0.13);
  animation: iconFloat 4.8s ease-in-out infinite;
}

.about-icon::before,
.about-icon::after {
  content: "";
  grid-area: 1 / 1;
  display: block;
}

.about-icon::before {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.about-icon::after {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(54, 199, 220, 0.42);
  animation: iconPulse 2.8s ease-in-out infinite;
}

.icon-gear::before {
  clip-path: polygon(42% 0, 58% 0, 62% 16%, 73% 21%, 88% 13%, 100% 27%, 90% 41%, 94% 54%, 100% 68%, 86% 82%, 72% 74%, 60% 80%, 56% 100%, 40% 100%, 36% 81%, 24% 76%, 10% 84%, 0 69%, 8% 56%, 6% 43%, 0 28%, 13% 15%, 27% 22%, 38% 16%);
}

.icon-mission::before {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  clip-path: polygon(50% 0, 88% 18%, 78% 78%, 50% 100%, 22% 78%, 12% 18%);
}

.icon-mission::after {
  border-color: rgba(46, 182, 125, 0.48);
}

.icon-vision::before {
  width: 40px;
  height: 28px;
  background: linear-gradient(135deg, var(--blue), #1aa6d9);
  clip-path: ellipse(50% 36% at 50% 50%);
}

.icon-vision::after {
  width: 15px;
  height: 15px;
  border: 5px solid rgba(255, 255, 255, 0.78);
  background: var(--cyan);
  animation: iconLook 3.2s ease-in-out infinite;
}

.icon-target::before {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--red) 0 18%, transparent 19% 32%, var(--cyan) 33% 48%, transparent 49% 62%, var(--blue) 63%);
}

.icon-target::after {
  width: 44px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: rotate(-34deg);
  animation: iconScan 2.4s ease-in-out infinite;
}

.about-pillars article > span:not(.about-icon) {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-weight: 850;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  letter-spacing: 0.06em;
}

.about-pillars p {
  color: var(--muted);
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(0.86);
    opacity: 0.52;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.16;
  }
}

@keyframes iconLook {
  0%, 100% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(4px);
  }
}

@keyframes iconScan {
  0%, 100% {
    transform: translateX(-5px) rotate(-34deg);
    opacity: 0.35;
  }
  50% {
    transform: translateX(5px) rotate(-34deg);
    opacity: 0.9;
  }
}

.investor-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
}

.card-logo {
  position: absolute;
  right: 22px;
  top: 18px;
  width: 88px;
  opacity: 0.14;
}

.investor-card ul {
  display: grid;
  gap: 14px;
  padding-left: 20px;
  margin: 18px 0 0;
}

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

.doctor-card {
  position: relative;
  padding: 24px;
}

.doctor-avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 850;
}

.availability {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 8px;
  border-radius: 999px;
  background: #eaf8f2;
  color: #197451;
  font-size: 0.74rem;
  font-weight: 850;
}

.doctor-card .btn {
  margin-top: 18px;
}

.coming-soon {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(220, 54, 85, 0.1);
  border: 1px solid rgba(220, 54, 85, 0.2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(6, 36, 68, 0.96), rgba(15, 95, 168, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 76px);
  color: var(--white);
}

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

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 780;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(54, 199, 220, 0.16);
}

.contact-form .invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(220, 54, 85, 0.13);
}

.full {
  grid-column: 1 / -1;
}

.privacy-copy,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status.success {
  color: #197451;
  font-weight: 800;
}

.site-footer {
  color: #d9e7ee;
  background: #061c33;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1.1fr;
  gap: 32px;
  padding: 58px 0 38px;
}

.footer-brand .brand-mark {
  box-shadow: none;
}

.site-footer p,
.site-footer small {
  color: #a9bdc9;
}

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

.site-footer a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: #d9e7ee;
}

.footer-bottom {
  position: relative;
  z-index: 4;
  width: var(--container);
  min-height: 64px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9fb3c0;
  font-size: 0.92rem;
}

.floating-247,
.back-to-top {
  position: fixed;
  z-index: 35;
  right: 20px;
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(6, 36, 68, 0.2);
}

.floating-247 {
  bottom: 88px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--red);
  font-weight: 850;
}

.back-to-top {
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-chat-float {
  position: fixed;
  right: 18px;
  top: 52%;
  z-index: 34;
  transform: translateY(-50%);
  pointer-events: auto;
}

.whatsapp-chat-float > div {
  max-width: min(360px, calc(100vw - 36px));
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-panel {
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero,
  .split,
  .split.reverse,
  .about-layout,
  .technology-experience,
  .investor-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .card-grid.seven,
  .services-grid,
  .audience-grid,
  .doctor-grid,
  .about-pillars,
  .stats-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 820px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .navbar {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 78px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .nav-panel a {
    padding: 12px;
  }

  .nav-tech-menu {
    width: 100%;
  }

  .nav-tech-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
  }

  .nav-tech-dropdown {
    position: static;
    display: grid;
    max-height: 0;
    min-width: 0;
    padding: 0 8px;
    margin: 0;
    border-width: 0;
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.2s ease;
  }

  .nav-tech-menu.open .nav-tech-dropdown {
    max-height: 240px;
    padding: 8px;
    border-width: 1px;
    opacity: 1;
  }

  .technology-experience {
    gap: 28px;
  }

  .nav-panel .btn {
    margin-top: 8px;
  }

  .hero {
    padding-top: 52px;
    gap: 34px;
  }

  .section-logo-right,
  .section-logo-left {
    width: 84px;
    top: 18px;
    opacity: 0.12;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .section {
    padding: 70px 0;
  }

  .problem-grid,
  .ecg-flow,
  .levels-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .logo-mark {
    width: 65px;
    height: 23px;
    padding: 0;
  }

  .hero-logo {
    width: 238px;
    margin-bottom: 14px;
  }

  .contact-logo {
    width: 180px;
  }

  .section-logo-right,
  .section-logo-left,
  .panel-logo,
  .card-logo {
    opacity: 0.1;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
  }

  .hero-visual img {
    aspect-ratio: 1 / 1.06;
  }

  .problem-visual {
    margin-bottom: 28px;
  }

  .problem-visual > img:first-child {
    aspect-ratio: 1.75 / 1;
    object-position: 64% center;
  }

  .problem-logo {
    left: 14px;
    bottom: 12px;
    width: 132px;
  }

  .technology-copy h3 {
    font-size: 1.4rem;
  }

  .carousel-live {
    display: none;
  }

  .carousel-controls {
    grid-template-columns: 36px 1fr 36px;
    gap: 8px;
  }

  .carousel-pause {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }

  .tech-slides {
    min-height: 320px;
  }

  .vital-card,
  .status-card {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .card-grid.seven,
  .services-grid,
  .audience-grid,
  .doctor-grid,
  .about-pillars,
  .stats-grid,
  .security-grid,
  .problem-grid,
  .levels-grid,
  .process-track,
  .ecg-flow,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .about-photo,
  .about-visual {
    min-height: 340px;
    height: auto;
  }

  .about-photo {
    height: 340px;
  }

  .about-logo {
    width: 136px;
    left: 14px;
    top: 14px;
  }

  .about-badge {
    left: 14px;
    right: 14px;
    max-width: none;
  }

  .feature-card:nth-child(7) {
    grid-column: auto;
  }

  .service-card {
    min-height: 230px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .floating-247 {
    left: 14px;
    right: 74px;
    text-align: center;
  }

  .whatsapp-chat-float {
    right: 14px;
    top: auto;
    bottom: 152px;
    transform: none;
  }
}

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