:root {
  --navy-950: #06172c;
  --navy-900: #0a2343;
  --navy-800: #10355f;
  --teal-500: #35c7c8;
  --teal-400: #66ded9;
  --cyan-100: #dff8f8;
  --ice: #f3fafb;
  --mist: #eaf4f6;
  --white: #ffffff;
  --ink: #102238;
  --muted: #5d6c7b;
  --line: #dbe5e9;
  --shadow: 0 24px 70px rgba(8, 34, 63, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-dark { background: var(--navy-950); color: var(--white); }
.section-soft { background: var(--ice); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  z-index: 2000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-950);
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 35px rgba(7, 31, 58, .08);
  backdrop-filter: blur(18px);
}
.nav-shell { height: 84px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; width: 172px; min-width: 150px; }
.brand img { width: 100%; max-height: 58px; object-fit: contain; object-position: left center; }
.site-menu { display: flex; align-items: center; justify-content: center; gap: 26px; flex: 1; }
.site-menu a { color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 700; transition: color .2s ease; }
.site-menu a:hover { color: var(--teal-400); }
.site-header.is-scrolled .site-menu a { color: var(--navy-900); }
.site-header.is-scrolled .site-menu a:hover { color: #008f96; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--white); transition: .25s ease; }
.site-header.is-scrolled .menu-toggle span:not(.sr-only) { background: var(--navy-950); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, #1679bb, var(--teal-500)); box-shadow: 0 10px 30px rgba(53,199,200,.24); }
.btn-light { color: var(--navy-950); background: var(--white); }
.btn-light:hover { box-shadow: 0 14px 36px rgba(255,255,255,.16); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.btn-dark { color: var(--white); background: var(--navy-900); }
.site-header.is-scrolled .nav-cta { color: var(--white); }

.hero {
  position: relative;
  min-height: 820px;
  padding: 170px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(53,199,200,.25), transparent 28%),
    radial-gradient(circle at 60% 90%, rgba(19,96,153,.28), transparent 34%),
    linear-gradient(135deg, #06172c 0%, #092b50 52%, #0b3d62 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(to top, rgba(3,17,33,.7), transparent);
  pointer-events: none;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 70px; }
.eyebrow { margin: 0 0 16px; color: #008e95; font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-light { color: var(--teal-400); }
.hero h1, .section-heading h2, .statement-grid h2, .support-intro h2, .proof-copy h2, .contact-copy h2 {
  margin: 0;
  letter-spacing: -.045em;
  line-height: 1.04;
}
.hero h1 { max-width: 720px; font-size: clamp(3.25rem, 6vw, 6.25rem); }
.hero-lead { max-width: 670px; margin: 28px 0 0; color: rgba(255,255,255,.74); font-size: 1.12rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin: 32px 0 0; padding: 0; list-style: none; }
.hero-proof li { position: relative; padding-left: 18px; color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 700; }
.hero-proof li::before { content: ""; position: absolute; top: .42em; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--teal-400); }
.hero-visual { position: relative; min-height: 530px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(102,222,217,.22); border-radius: 50%; }
.orbit-one { width: 500px; height: 500px; }
.orbit-two { width: 380px; height: 380px; border-style: dashed; animation: rotate 24s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.hero-product-card {
  position: relative;
  width: min(440px, 90%);
  min-height: 500px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,.17), rgba(255,255,255,.05));
  box-shadow: 0 40px 100px rgba(0,0,0,.28);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.hero-product-card::before { content: ""; position: absolute; inset: 70px 20px 76px; border-radius: 50%; background: radial-gradient(circle, rgba(102,222,217,.34), transparent 67%); filter: blur(5px); }
.hero-product-card img { position: relative; z-index: 2; width: 100%; height: 355px; object-fit: contain; filter: drop-shadow(0 28px 24px rgba(0,0,0,.22)); }
.product-label { position: relative; z-index: 3; display: inline-flex; padding: 8px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.78); font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-mini-copy { position: relative; z-index: 3; display: flex; justify-content: space-between; align-items: end; gap: 18px; }
.product-mini-copy strong { font-size: 1.45rem; }
.product-mini-copy span { max-width: 190px; color: rgba(255,255,255,.62); font-size: .75rem; line-height: 1.5; }
.floating-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.17); border-radius: 16px; background: rgba(6,23,44,.76); color: rgba(255,255,255,.85); box-shadow: 0 18px 50px rgba(0,0,0,.24); backdrop-filter: blur(16px); font-size: .78rem; font-weight: 700; }
.note-top { top: 80px; right: -18px; }
.note-bottom { left: -8px; bottom: 130px; }
.note-number { color: var(--teal-400); }

.trust-strip { position: relative; z-index: 5; margin-top: -1px; background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid article { display: flex; gap: 15px; min-height: 112px; padding: 28px 24px; border-right: 1px solid var(--line); }
.trust-grid article:first-child { border-left: 1px solid var(--line); }
.trust-grid article > span { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 50%; background: var(--cyan-100); color: #01868d; font-size: .7rem; font-weight: 800; }
.trust-grid strong, .trust-grid small { display: block; }
.trust-grid strong { font-size: .86rem; }
.trust-grid small { margin-top: 5px; color: var(--muted); font-size: .68rem; line-height: 1.45; }

.statement-section { padding: 128px 0; }
.statement-grid { display: grid; grid-template-columns: 1.1fr .75fr; gap: 110px; align-items: end; }
.statement-grid h2 { max-width: 760px; font-size: clamp(2.75rem, 5vw, 5.25rem); }
.statement-copy p { margin: 0 0 24px; color: var(--muted); font-size: 1rem; line-height: 1.85; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding: 0; border: 0; background: transparent; color: var(--navy-900); font-size: .86rem; font-weight: 800; cursor: pointer; }
.text-link span { color: #00a4a8; font-size: 1.1em; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.section-heading { max-width: 760px; margin-bottom: 56px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { font-size: clamp(2.4rem, 4.5vw, 4.5rem); }
.section-heading > p:last-child { margin: 18px 0 0; color: var(--muted); line-height: 1.7; }
.need-selector { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 70px; }
.need-tab { min-height: 96px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); text-align: left; font-size: .76rem; font-weight: 800; cursor: pointer; transition: .22s ease; }
.need-tab span { display: block; margin-bottom: 15px; color: var(--teal-500); font-size: .68rem; }
.need-tab:hover, .need-tab.is-active { transform: translateY(-4px); border-color: rgba(53,199,200,.7); box-shadow: 0 18px 38px rgba(8,34,63,.08); }
.need-tab.is-active { color: var(--white); background: var(--navy-900); }
.solution-intro { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: end; padding-top: 6px; margin-bottom: 36px; }
.solution-intro h3 { margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -.035em; }
.solution-intro > p { margin: 0; color: var(--muted); line-height: 1.75; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.solution-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); overflow: hidden; box-shadow: 0 10px 40px rgba(8,34,63,.045); transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease; }
.solution-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.solution-card.is-hidden { display: none; }
.solution-image { position: relative; display: grid; place-items: center; min-height: 310px; padding: 30px; overflow: hidden; }
.solution-image::after { content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%; background: rgba(255,255,255,.48); filter: blur(4px); }
.solution-image img { position: relative; z-index: 2; width: 100%; height: 240px; object-fit: contain; filter: drop-shadow(0 24px 20px rgba(12,52,82,.18)); }
.image-mist { background: linear-gradient(140deg, #eff8f8, #d9f2f2); }
.image-aqua { background: linear-gradient(140deg, #e9f8f9, #c5eff0); }
.image-blue { background: linear-gradient(140deg, #edf5fc, #d8ebf7); }
.image-lilac { background: linear-gradient(140deg, #f0effb, #dfdcf7); }
.image-cyan { background: linear-gradient(140deg, #eefbfc, #cbf2f3); }
.image-green { background: linear-gradient(140deg, #edf9f5, #d3f1e7); }
.image-service { background: linear-gradient(145deg, #0b3158, #0f5a77); }
.card-tag { position: absolute; z-index: 3; top: 20px; left: 20px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.84); color: var(--navy-900); font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(12px); }
.solution-body { padding: 27px 28px 30px; }
.card-overline { margin: 0 0 8px; color: #008f95; font-size: .63rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.solution-body h3 { margin: 0; font-size: 1.65rem; letter-spacing: -.035em; }
.solution-body > p:not(.card-overline) { min-height: 74px; margin: 14px 0 22px; color: var(--muted); font-size: .86rem; line-height: 1.7; }
.product-placeholder { min-height: 310px; }
.placeholder-device { position: relative; z-index: 2; width: 210px; height: 190px; }
.detector { position: absolute; left: 12px; bottom: 20px; width: 112px; height: 145px; border: 8px solid #172735; border-radius: 8px; background: linear-gradient(135deg, #202d39, #0e1721); box-shadow: 0 24px 30px rgba(10,32,52,.22); transform: rotate(-4deg); }
.workstation { position: absolute; right: 7px; top: 17px; width: 120px; height: 78px; border: 8px solid #1f2b35; border-radius: 8px; background: linear-gradient(135deg, #173956, #2b7c97); box-shadow: 0 20px 30px rgba(10,32,52,.18); transform: rotate(3deg); }
.workstation::after { content: ""; position: absolute; left: 42px; bottom: -62px; width: 12px; height: 60px; background: #1b2833; box-shadow: -32px 60px 0 2px #1b2833; }
.service-icon { position: relative; z-index: 2; display: grid; place-items: center; width: 120px; height: 120px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--teal-400); font-size: 5rem; font-weight: 200; }
.service-lines { position: absolute; inset: 0; z-index: 1; }
.service-lines span { position: absolute; left: 50%; top: 50%; width: 280px; height: 1px; background: linear-gradient(90deg, transparent, rgba(102,222,217,.4), transparent); transform-origin: center; }
.service-lines span:nth-child(2) { transform: rotate(60deg); }
.service-lines span:nth-child(3) { transform: rotate(-60deg); }

.featured-section { overflow: hidden; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 70px 0; border-top: 1px solid var(--line); }
.feature-row-reverse .feature-media { order: 2; }
.feature-media { position: relative; display: grid; place-items: center; min-height: 560px; border-radius: var(--radius-xl); overflow: hidden; }
.feature-media::after { content: ""; position: absolute; width: 390px; height: 390px; border-radius: 50%; background: rgba(255,255,255,.52); }
.feature-media img { position: relative; z-index: 2; width: 78%; height: 430px; object-fit: contain; filter: drop-shadow(0 32px 28px rgba(7,38,66,.2)); }
.feature-index { position: absolute; top: 26px; left: 30px; z-index: 3; color: rgba(16,34,56,.18); font-size: 4rem; font-weight: 800; }
.feature-copy h3 { margin: 0; font-size: clamp(2.5rem, 4vw, 4.5rem); letter-spacing: -.045em; }
.feature-copy > p:not(.eyebrow) { margin: 20px 0 28px; color: var(--muted); line-height: 1.85; }
.feature-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
.feature-points span { padding: 15px 16px; border: 1px solid var(--line); border-radius: 14px; color: var(--navy-900); font-size: .74rem; font-weight: 800; }
.feature-points span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: var(--teal-500); }

.support-section { background: linear-gradient(135deg, #06172c, #0b2f57); }
.support-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.support-intro { position: sticky; top: 130px; }
.support-intro h2 { font-size: clamp(2.8rem, 5vw, 5.1rem); }
.support-intro > p:not(.eyebrow) { margin: 26px 0 32px; color: rgba(255,255,255,.68); line-height: 1.85; }
.support-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.support-cards article { min-height: 220px; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.055); }
.support-cards article > span { color: var(--teal-400); font-size: .7rem; font-weight: 800; }
.support-cards h3 { margin: 44px 0 10px; font-size: 1.15rem; }
.support-cards p { margin: 0; color: rgba(255,255,255,.6); font-size: .8rem; line-height: 1.65; }

.process-section { background: #eef7f8; }
.process-line { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.process-line::before { content: ""; position: absolute; top: 38px; left: 12.5%; right: 12.5%; height: 1px; background: #b6dfe1; }
.process-line article { position: relative; z-index: 2; min-height: 240px; padding: 28px; border: 1px solid #d3e6e8; border-radius: var(--radius-md); background: rgba(255,255,255,.86); }
.process-line article > span { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 52px; border-radius: 50%; background: var(--white); color: var(--teal-500); box-shadow: 0 8px 22px rgba(20,95,110,.1); font-weight: 800; }
.process-line h3 { margin: 0 0 10px; font-size: 1rem; }
.process-line p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.65; }

.proof-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.proof-copy h2 { font-size: clamp(2.6rem, 4.5vw, 4.6rem); }
.proof-copy > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); line-height: 1.8; }
.testimonial-card { position: relative; padding: 54px; border-radius: var(--radius-xl); background: var(--navy-900); color: var(--white); box-shadow: var(--shadow); }
.quote-mark { position: absolute; top: 12px; right: 30px; color: rgba(102,222,217,.25); font-size: 8rem; line-height: 1; }
.testimonial-card blockquote { position: relative; z-index: 2; margin: 0; font-size: clamp(1.4rem, 2.5vw, 2.25rem); line-height: 1.45; letter-spacing: -.025em; }
.testimonial-person { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.avatar { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--teal-500); color: var(--navy-950); font-size: .8rem; font-weight: 800; }
.testimonial-person strong, .testimonial-person span { display: block; }
.testimonial-person span { margin-top: 4px; color: rgba(255,255,255,.58); font-size: .72rem; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { display: flex; justify-content: space-between; align-items: center; width: 100%; min-height: 74px; padding: 0; border: 0; background: transparent; text-align: left; font-size: .9rem; font-weight: 800; cursor: pointer; }
.faq-item button b { color: var(--teal-500); font-size: 1.4rem; font-weight: 400; transition: transform .2s ease; }
.faq-item button[aria-expanded="true"] b { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); line-height: 1.7; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding-bottom: 24px; }

.contact-section { padding: 110px 0; color: var(--white); background: linear-gradient(135deg, #0a2c54, #0d4770 58%, #087d88); }
.contact-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.contact-copy h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); line-height: 1.8; }
.contact-points { display: grid; gap: 10px; margin-top: 30px; }
.contact-points span { color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 700; }
.contact-points span::before { content: "✓"; margin-right: 10px; color: var(--teal-400); }
.contact-form { padding: 34px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-xl); background: rgba(255,255,255,.1); backdrop-filter: blur(18px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { color: rgba(255,255,255,.74); font-size: .72rem; font-weight: 700; }
.form-full { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  background: rgba(3,21,39,.35);
  color: var(--white);
  outline: 0;
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input, .contact-form select { height: 50px; padding: 0 14px; }
.contact-form textarea { padding: 14px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.4); }
.contact-form select option { color: var(--ink); background: var(--white); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal-400); background: rgba(3,21,39,.5); }
.form-submit { width: 100%; margin-top: 20px; }
.form-note { margin: 14px 0 0; color: rgba(255,255,255,.52); font-size: .68rem; text-align: center; }

.site-footer { padding: 70px 0 28px; color: rgba(255,255,255,.7); background: #041426; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 55px; }
.footer-brand img { max-width: 180px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 360px; margin: 0; font-size: .8rem; line-height: 1.75; }
.site-footer h3 { margin: 0 0 18px; color: var(--white); font-size: .78rem; }
.site-footer a { display: block; margin: 10px 0; font-size: .75rem; transition: color .2s ease; }
.site-footer a:hover { color: var(--teal-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .68rem; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: grid; place-items: center; width: 58px; height: 58px; border: 4px solid var(--white); border-radius: 50%; background: #20c76a; color: var(--white); box-shadow: 0 15px 40px rgba(6,23,44,.25); font-size: .68rem; font-weight: 800; transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .site-menu { gap: 16px; }
  .site-menu a { font-size: .78rem; }
  .hero-grid, .statement-grid, .support-grid, .proof-grid, .faq-grid, .contact-shell { gap: 50px; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .need-selector { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid article:nth-child(3) { border-left: 1px solid var(--line); }
}

@media (max-width: 860px) {
  .nav-shell { height: 74px; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .site-menu {
    position: fixed;
    inset: 74px 18px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-15px);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
  }
  .site-menu.is-open { transform: none; opacity: 1; visibility: visible; }
  .site-menu a, .site-header.is-scrolled .site-menu a { padding: 14px; color: var(--navy-900); border-radius: 12px; }
  .site-menu a:hover { background: var(--ice); }
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { min-height: 500px; }
  .statement-grid, .solution-intro, .support-grid, .proof-grid, .faq-grid, .contact-shell { grid-template-columns: 1fr; }
  .statement-grid { gap: 36px; }
  .feature-row, .feature-row-reverse { grid-template-columns: 1fr; gap: 40px; }
  .feature-row-reverse .feature-media { order: 0; }
  .support-intro { position: static; }
  .process-line { grid-template-columns: 1fr 1fr; }
  .process-line::before { display: none; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .brand { width: 145px; }
  .hero { min-height: auto; padding: 125px 0 72px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.6rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; justify-content: start; text-align: left; }
  .hero-visual { min-height: 420px; }
  .orbit-one { width: 370px; height: 370px; }
  .orbit-two { width: 285px; height: 285px; }
  .hero-product-card { min-height: 395px; border-radius: 28px; }
  .hero-product-card img { height: 270px; }
  .note-top { right: 0; top: 46px; }
  .note-bottom { left: 0; bottom: 38px; }
  .trust-grid, .solution-grid, .support-cards, .process-line, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-grid article, .trust-grid article:first-child, .trust-grid article:nth-child(3) { border-left: 1px solid var(--line); }
  .need-selector { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .need-tab { flex: 0 0 190px; scroll-snap-align: start; }
  .solution-intro { gap: 20px; }
  .solution-image { min-height: 280px; }
  .feature-media { min-height: 390px; }
  .feature-media img { height: 310px; }
  .feature-points { grid-template-columns: 1fr; }
  .process-line article > span { margin-bottom: 28px; }
  .testimonial-card { padding: 36px 28px; }
  .contact-form { padding: 24px 18px; }
  .form-full, .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; }
}

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


/* =========================================================
   EXPERIENCIAS CLÍNICAS Y EQUIPOS EN ACCIÓN
   ========================================================= */

.testimonial-showcase {
  position: relative;
  overflow: hidden;
  background:
          radial-gradient(
                  circle at 92% 8%,
                  rgba(50, 196, 200, 0.13),
                  transparent 24%
          ),
          linear-gradient(
                  180deg,
                  #ffffff 0%,
                  #ffffff 68%,
                  #eef8f9 100%
          );
}

.testimonial-showcase__glow {
  position: absolute;
  top: 200px;
  right: -250px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(45, 194, 199, 0.1);
  filter: blur(100px);
  pointer-events: none;
}


/* =========================================================
   ENCABEZADO
   ========================================================= */

.testimonial-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.testimonial-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.testimonial-heading__copy {
  padding-bottom: 8px;
}

.testimonial-heading__copy p {
  margin: 0 0 24px;
  color: var(--muted, #657284);
  font-size: 1rem;
  line-height: 1.8;
}


/* =========================================================
   VIDEO PRINCIPAL
   ========================================================= */

.testimonial-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
  gap: 60px;
  align-items: center;
  min-height: 570px;
  padding: 60px;
  overflow: hidden;
  border-radius: var(--radius-xl, 34px);
  color: #ffffff;
  background:
          radial-gradient(
                  circle at 5% 5%,
                  rgba(48, 196, 201, 0.25),
                  transparent 30%
          ),
          radial-gradient(
                  circle at 100% 100%,
                  rgba(19, 100, 154, 0.32),
                  transparent 35%
          ),
          linear-gradient(
                  135deg,
                  var(--navy-950, #06172c) 0%,
                  var(--navy-900, #0a2949) 58%,
                  #0d496c 100%
          );
  box-shadow: 0 35px 100px rgba(6, 23, 44, 0.18);
}

.testimonial-main::before {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(100, 221, 219, 0.16);
  border-radius: 50%;
}

.testimonial-main::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(100, 221, 219, 0.13);
  border-radius: 50%;
}

.testimonial-main__video,
.testimonial-main__content {
  position: relative;
  z-index: 2;
}

.testimonial-main__video {
  position: relative;
}

.testimonial-main__content {
  max-width: 490px;
}

.testimonial-main__content h3 {
  margin: 0;
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.testimonial-specialty {
  margin: 15px 0 0;
  color: var(--teal-400, #63ded9);
  font-size: 0.93rem;
  font-weight: 800;
}

.testimonial-description {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.98rem;
  line-height: 1.85;
}


/* =========================================================
   ETIQUETAS
   ========================================================= */

.testimonial-label {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(4, 23, 43, 0.76);
  box-shadow: 0 8px 26px rgba(5, 19, 35, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.testimonial-label__dot {
  display: block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal-400, #63ded9);
  box-shadow: 0 0 0 5px rgba(99, 222, 217, 0.14);
}

.testimonial-label--product {
  color: var(--navy-950, #06172c);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.7);
}

.testimonial-label--product .testimonial-label__dot {
  background: #1787ba;
  box-shadow: 0 0 0 5px rgba(23, 135, 186, 0.12);
}


/* =========================================================
   REPRODUCTORES DE YOUTUBE
   ========================================================= */

.youtube-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #020a13;
  box-shadow: 0 24px 55px rgba(4, 18, 34, 0.2);
}

.youtube-frame--landscape {
  aspect-ratio: 16 / 9;
}

.youtube-frame--portrait {
  width: min(100%, 350px);
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  border-radius: 26px;
}

.youtube-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}


/* =========================================================
   ETIQUETAS INFERIORES DEL TESTIMONIO PRINCIPAL
   ========================================================= */

.testimonial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 29px 0 34px;
}

.testimonial-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.7rem;
  font-weight: 700;
}


/* =========================================================
   GRID DE VIDEOS HORIZONTALES
   ========================================================= */

.testimonial-landscape-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line, #dce6e9);
  border-radius: var(--radius-lg, 25px);
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(8, 34, 63, 0.08);
  transition:
          transform 0.25s ease,
          box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 75px rgba(8, 34, 63, 0.14);
}

.testimonial-card__media {
  position: relative;
  padding: 18px;
  background:
          radial-gradient(
                  circle at 50% 50%,
                  rgba(255, 255, 255, 0.88),
                  transparent 43%
          ),
          linear-gradient(
                  145deg,
                  #e3f7f7 0%,
                  #eaf3f5 100%
          );
}

.testimonial-card--product .testimonial-card__media {
  background:
          radial-gradient(
                  circle at 50% 50%,
                  rgba(255, 255, 255, 0.9),
                  transparent 43%
          ),
          linear-gradient(
                  145deg,
                  #e3f3fa 0%,
                  #daf4f4 100%
          );
}

.testimonial-card__content {
  padding: 30px 32px 35px;
}

.testimonial-card__content h3 {
  margin: 6px 0 6px;
  font-size: clamp(1.75rem, 2.7vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.testimonial-card__subtitle {
  margin: 0 0 17px !important;
  color: #1383a8 !important;
  font-size: 0.77rem !important;
  font-weight: 800;
}

.testimonial-card__content > p:not(.card-overline):not(.testimonial-card__subtitle) {
  margin: 0;
  color: var(--muted, #657284);
  font-size: 0.88rem;
  line-height: 1.75;
}

.testimonial-card__content .text-link {
  margin-top: 22px;
}


/* =========================================================
   BLOQUE VERTICAL CONSONA N7
   ========================================================= */

.testimonial-portrait {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.6fr);
  gap: 75px;
  align-items: center;
  margin-top: 28px;
  padding: 65px 75px;
  overflow: hidden;
  border: 1px solid var(--line, #dce6e9);
  border-radius: var(--radius-xl, 34px);
  background:
          radial-gradient(
                  circle at 85% 30%,
                  rgba(62, 203, 203, 0.2),
                  transparent 27%
          ),
          linear-gradient(
                  135deg,
                  #f3fbfb 0%,
                  #edf6f8 100%
          );
}

.testimonial-portrait__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.testimonial-portrait__content h3 {
  margin: 0;
  color: var(--navy-950, #06172c);
  font-size: clamp(3rem, 5.7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.testimonial-portrait__lead {
  max-width: 580px;
  margin: 25px 0 0;
  color: var(--muted, #657284);
  font-size: 1rem;
  line-height: 1.8;
}

.testimonial-portrait__features {
  display: grid;
  gap: 12px;
  margin: 32px 0 35px;
}

.testimonial-portrait__features article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  padding: 15px 17px;
  border: 1px solid rgba(9, 43, 74, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.7);
}

.testimonial-portrait__features article > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #087c93;
  background: rgba(45, 194, 199, 0.13);
  font-size: 0.67rem;
  font-weight: 800;
}

.testimonial-portrait__features strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-950, #06172c);
  font-size: 0.85rem;
}

.testimonial-portrait__features p {
  margin: 0;
  color: var(--muted, #657284);
  font-size: 0.76rem;
  line-height: 1.55;
}

.testimonial-portrait__media {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 25px;
}

.testimonial-portrait__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(70, 207, 205, 0.15);
  filter: blur(15px);
  transform: translate(-50%, -50%);
}

.testimonial-portrait__media .youtube-frame {
  position: relative;
  z-index: 2;
}

.testimonial-label--portrait {
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}


/* =========================================================
   CIERRE DE SECCIÓN
   ========================================================= */

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 28px;
  padding: 30px 34px;
  border: 1px solid var(--line, #dce6e9);
  border-radius: var(--radius-lg, 25px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(8, 34, 63, 0.06);
}

.testimonial-footer strong {
  display: block;
  color: var(--navy-950, #06172c);
  font-size: 1.04rem;
}

.testimonial-footer p {
  margin: 7px 0 0;
  color: var(--muted, #657284);
  font-size: 0.82rem;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1080px) {
  .testimonial-heading {
    gap: 45px;
  }

  .testimonial-main {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 42px;
    padding: 48px;
  }

  .testimonial-portrait {
    gap: 45px;
    padding: 55px;
  }
}


@media (max-width: 880px) {
  .testimonial-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 45px;
  }

  .testimonial-heading__copy {
    max-width: 680px;
  }

  .testimonial-main {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .testimonial-main__content {
    max-width: 680px;
  }

  .testimonial-landscape-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-portrait {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 48px 40px;
  }

  .testimonial-portrait__content {
    max-width: 700px;
  }

  .testimonial-portrait__media {
    grid-row: 1;
  }
}


@media (max-width: 620px) {
  .testimonial-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .testimonial-main {
    min-height: auto;
    padding: 25px 20px 34px;
    border-radius: 24px;
  }

  .testimonial-main__content h3 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .testimonial-main__video {
    padding-top: 0;
  }

  .testimonial-label {
    top: 11px;
    left: 11px;
    padding: 8px 10px;
    font-size: 0.56rem;
  }

  .testimonial-card__media {
    padding: 10px;
  }

  .testimonial-card__content {
    padding: 25px 23px 29px;
  }

  .youtube-frame {
    border-radius: 15px;
  }

  .youtube-frame--portrait {
    width: min(100%, 295px);
    border-radius: 20px;
  }

  .testimonial-portrait {
    padding: 38px 20px;
    border-radius: 24px;
  }

  .testimonial-portrait__content h3 {
    font-size: clamp(2.8rem, 16vw, 4.5rem);
  }

  .testimonial-portrait__media {
    padding: 14px 0;
  }

  .testimonial-label--portrait {
    top: 26px;
    left: 50%;
  }

  .testimonial-footer {
    align-items: stretch;
    flex-direction: column;
    padding: 25px;
  }

  .testimonial-footer .btn {
    width: 100%;
  }
}



/* =========================================================
   HOME · NUESTRO EQUIPO
   ========================================================= */

.home-team-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(53, 199, 200, 0.10),
      transparent 24%
    ),
    var(--white);
}

.home-team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 75px;
  align-items: end;
  margin-bottom: 46px;
}

.home-team-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.home-team-heading__copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.home-team-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.home-team-counts span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-800);
  background: var(--ice);
  font-size: 0.7rem;
  font-weight: 700;
}

.home-team-counts b {
  color: #008f96;
  font-size: 0.8rem;
}

.home-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-team-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(8, 34, 63, 0.06);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.home-team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(53, 199, 200, 0.48);
  box-shadow: 0 24px 55px rgba(8, 34, 63, 0.11);
}

.home-team-card__photo {
  position: relative;
  aspect-ratio: 1 / 0.95;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 37%,
      #ffffff 0 31%,
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #edf8f8,
      #e4f0f3
    );
}

.home-team-card__photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background:
    linear-gradient(
      transparent,
      rgba(7, 30, 54, 0.08)
    );
  pointer-events: none;
}

.home-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-team-card__body {
  padding: 19px 19px 22px;
}

.home-team-card__body > span {
  display: block;
  margin-bottom: 7px;
  color: #008f96;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-team-card__body h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.home-team-card__body p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.home-team-card--technical {
  border-color: #cfe9ea;
  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f2fbfb
    );
}

.home-team-card--technical .home-team-card__body > span {
  color: #126799;
}

.home-team-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--ice);
}

.home-team-footer p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.65;
}


/* =========================================================
   HOME · UBICACIÓN
   ========================================================= */

.home-location-section {
  background: var(--white);
}

.home-location-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  gap: 70px;
  align-items: center;
}

.home-location-copy h2 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(2.7rem, 4.7vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.home-location-lead {
  max-width: 530px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.home-location-info {
  display: grid;
  gap: 5px;
  margin-top: 31px;
}

.home-location-info article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.home-location-info article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #008f96;
  background: var(--cyan-100);
  font-size: 0.65rem;
  font-weight: 800;
}

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

.home-location-info small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.62rem;
}

.home-location-info strong {
  color: var(--navy-900);
  font-size: 0.8rem;
  line-height: 1.55;
}

.home-location-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.home-location-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--ice);
  box-shadow: 0 26px 68px rgba(8, 34, 63, 0.10);
}

.home-location-map iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  filter:
    saturate(0.86)
    contrast(0.97);
}

.home-location-map__badge {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  max-width: 260px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 15px;
  color: var(--white);
  background: rgba(6, 23, 44, 0.83);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.home-location-map__badge span,
.home-location-map__badge strong {
  display: block;
}

.home-location-map__badge span {
  color: var(--teal-400);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-location-map__badge strong {
  margin-top: 4px;
  font-size: 0.78rem;
}


/* =========================================================
   EQUIPO + UBICACIÓN · RESPONSIVE
   ========================================================= */

@media (max-width: 1020px) {
  .home-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-team-heading,
  .home-location-grid {
    gap: 45px;
  }
}

@media (max-width: 820px) {
  .home-team-heading,
  .home-location-grid {
    grid-template-columns: 1fr;
  }

  .home-team-heading {
    gap: 22px;
  }

  .home-team-heading__copy,
  .home-location-copy {
    max-width: 680px;
  }

  .home-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-team-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-location-map {
    min-height: 440px;
  }

  .home-location-map iframe {
    height: 440px;
  }
}

@media (max-width: 560px) {
  .home-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-team-card {
    border-radius: 18px;
  }

  .home-team-card__body {
    padding: 14px;
  }

  .home-team-card__body h3 {
    font-size: 0.88rem;
  }

  .home-team-card__body p {
    font-size: 0.65rem;
  }

  .home-team-card__body > span {
    font-size: 0.54rem;
  }

  .home-team-footer {
    padding: 20px;
  }

  .home-location-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-location-actions .btn,
  .home-location-actions .text-link {
    width: 100%;
  }

  .home-location-map {
    min-height: 380px;
    border-radius: 22px;
  }

  .home-location-map iframe {
    height: 380px;
  }

  .home-location-map__badge {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }
}


/* =========================================================
   HOME · EQUIPO DE TRABAJO V2
   Diseñado para ser más compacto que la página Nosotros
   ========================================================= */

.home-team-v2 {
  position: relative;
  overflow: hidden;

  background:
          radial-gradient(
                  circle at 92% 7%,
                  rgba(53, 199, 200, 0.11),
                  transparent 25%
          ),
          linear-gradient(
                  180deg,
                  #ffffff 0%,
                  #f8fcfc 100%
          );
}


/* ENCABEZADO */

.home-team-v2__heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(300px, 0.65fr);

  gap: 72px;
  align-items: end;

  margin-bottom: 42px;
}

.home-team-v2__heading h2 {
  max-width: 760px;
  margin: 0;

  font-size: clamp(2.7rem, 4.8vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.home-team-v2__intro > p {
  margin: 0;

  color: var(--muted);

  font-size: 0.94rem;
  line-height: 1.8;
}

.home-team-v2__counts {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 20px;
}

.home-team-v2__counts span {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 12px;

  border: 1px solid var(--line);
  border-radius: 999px;

  color: var(--navy-800);
  background: var(--white);

  font-size: 0.68rem;
  font-weight: 700;
}

.home-team-v2__counts b {
  color: #008f96;
  font-size: 0.79rem;
}

.home-team-v2__overline {
  margin: 0 0 8px;

  color: #008f96;

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* =========================================================
   GERENTE
   ========================================================= */

.home-team-manager {
  position: relative;

  display: grid;
  grid-template-columns:
    190px
    minmax(0, 1fr);

  gap: 32px;
  align-items: center;

  min-height: 235px;

  margin-bottom: 24px;
  padding: 22px 42px 22px 22px;

  overflow: hidden;

  border: 1px solid rgba(53, 199, 200, 0.36);
  border-radius: 28px;

  background:
          radial-gradient(
                  circle at 90% 10%,
                  rgba(53, 199, 200, 0.16),
                  transparent 26%
          ),
          linear-gradient(
                  135deg,
                  #f8fdfd,
                  #edf8f9
          );

  box-shadow:
          0 20px 55px rgba(8, 34, 63, 0.08);
}

.home-team-manager__photo {
  position: relative;

  width: 190px;
  height: 190px;

  overflow: hidden;

  border-radius: 22px;

  background:
          linear-gradient(
                  145deg,
                  #e4f4f5,
                  #d5ecee
          );
}

.home-team-manager__photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;
}

.home-team-manager__content {
  position: relative;
  z-index: 2;

  max-width: 690px;
}

.home-team-manager__content h3 {
  margin: 0;

  color: var(--navy-900);

  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-team-manager__position {
  display: block;

  margin-top: 7px;

  color: #087e86;

  font-size: 0.78rem;
  font-weight: 800;
}

.home-team-manager__description {
  max-width: 660px;

  margin: 15px 0 0;

  color: var(--muted);

  font-size: 0.8rem;
  line-height: 1.68;
}

.home-team-manager__tags {
  display: flex;
  flex-wrap: wrap;

  gap: 7px;

  margin-top: 17px;
}

.home-team-manager__tags span {
  padding: 7px 10px;

  border: 1px solid rgba(53, 199, 200, 0.22);
  border-radius: 999px;

  color: #17626b;
  background: rgba(255, 255, 255, 0.78);

  font-size: 0.61rem;
  font-weight: 700;
}

.home-team-manager__badge {
  position: absolute;
  z-index: 4;

  top: 18px;
  right: 18px;

  padding: 7px 11px;

  border-radius: 999px;

  color: #ffffff;

  background:
          linear-gradient(
                  135deg,
                  #087e86,
                  #18a7ad
          );

  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-team-manager__number {
  position: absolute;

  right: 20px;
  bottom: -24px;

  color: rgba(8, 96, 106, 0.045);

  font-size: 8rem;
  font-weight: 800;
  line-height: 1;

  pointer-events: none;
}


/* =========================================================
   ASESORES
   ========================================================= */

.home-team-v2__group {
  padding: 28px;

  border: 1px solid var(--line);
  border-radius: 28px;

  background: #ffffff;
}

.home-team-v2__group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 22px;
}

.home-team-v2__group-head h3 {
  margin: 0;

  color: var(--navy-900);

  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-team-v2__group-head > span {
  padding: 8px 12px;

  border: 1px solid var(--line);
  border-radius: 999px;

  color: var(--muted);
  background: var(--ice);

  font-size: 0.66rem;
  font-weight: 800;

  white-space: nowrap;
}

.home-team-v2__advisors {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 14px;
}

.home-person-card {
  display: grid;
  grid-template-columns:
    92px
    minmax(0, 1fr);

  gap: 16px;
  align-items: center;

  min-height: 122px;

  padding: 14px;

  border: 1px solid #e0eaec;
  border-radius: 18px;

  background: #ffffff;

  transition:
          transform 0.22s ease,
          border-color 0.22s ease,
          box-shadow 0.22s ease;
}

.home-person-card:hover {
  transform: translateY(-3px);

  border-color: rgba(53, 199, 200, 0.48);

  box-shadow:
          0 16px 34px rgba(8, 34, 63, 0.08);
}

.home-person-card__photo {
  width: 92px;
  height: 92px;

  overflow: hidden;

  border-radius: 16px;

  background:
          linear-gradient(
                  145deg,
                  #edf8f8,
                  #e5f1f3
          );
}

.home-person-card__photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;
}

.home-person-card__body h4 {
  margin: 0;

  color: var(--navy-900);

  font-size: 0.86rem;
  line-height: 1.22;
}

.home-person-card__body p {
  margin: 6px 0 0;

  color: #008f96;

  font-size: 0.68rem;
  font-weight: 700;
}


/* =========================================================
   INGENIERÍA
   ========================================================= */

.home-team-engineering {
  display: grid;
  grid-template-columns:
    112px
    minmax(0, 1fr)
    auto;

  gap: 22px;
  align-items: center;

  margin-top: 14px;
  padding: 18px 22px;

  border: 1px solid #d2e8eb;
  border-radius: 22px;

  background:
          linear-gradient(
                  135deg,
                  #eef8f9,
                  #f7fcfc
          );
}

.home-team-engineering__photo {
  width: 112px;
  height: 112px;

  overflow: hidden;

  border-radius: 18px;

  background: #dceff1;
}

.home-team-engineering__photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;
}

.home-team-engineering__content h3 {
  margin: 0;

  color: var(--navy-900);

  font-size: 1.08rem;
}

.home-team-engineering__content > span {
  display: block;

  margin-top: 5px;

  color: #126799;

  font-size: 0.7rem;
  font-weight: 800;
}

.home-team-engineering__content > p:not(.home-team-v2__overline) {
  max-width: 560px;

  margin: 9px 0 0;

  color: var(--muted);

  font-size: 0.72rem;
  line-height: 1.6;
}

.home-team-engineering__cta {
  min-width: 185px;
  text-align: right;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {

  .home-team-v2__heading {
    gap: 42px;
  }

  .home-team-v2__advisors {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .home-team-engineering {
    grid-template-columns:
      100px
      minmax(0, 1fr);
  }

  .home-team-engineering__photo {
    width: 100px;
    height: 100px;
  }

  .home-team-engineering__cta {
    grid-column: 2;
    text-align: left;
  }

}


@media (max-width: 760px) {

  .home-team-v2__heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-team-manager {
    grid-template-columns:
      145px
      minmax(0, 1fr);

    gap: 22px;

    padding: 18px;
  }

  .home-team-manager__photo {
    width: 145px;
    height: 165px;
  }

  .home-team-v2__group {
    padding: 22px;
  }

}


@media (max-width: 580px) {

  .home-team-manager {
    grid-template-columns: 1fr;
  }

  .home-team-manager__photo {
    width: 100%;
    height: 280px;
  }

  .home-team-manager__badge {
    top: 28px;
    right: 28px;
  }

  .home-team-v2__group-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-team-v2__advisors {
    grid-template-columns: 1fr;
  }

  .home-person-card {
    grid-template-columns:
      82px
      minmax(0, 1fr);
  }

  .home-person-card__photo {
    width: 82px;
    height: 82px;
  }

  .home-team-engineering {
    grid-template-columns:
      82px
      minmax(0, 1fr);

    padding: 15px;
  }

  .home-team-engineering__photo {
    width: 82px;
    height: 82px;
  }

}

/* =========================================================
   HERO CON IMAGEN DE FONDO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  filter: saturate(0.9) contrast(0.95) brightness(0.72);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
          linear-gradient(
                  90deg,
                  rgba(6, 23, 44, 0.88) 0%,
                  rgba(6, 23, 44, 0.76) 34%,
                  rgba(6, 23, 44, 0.46) 62%,
                  rgba(6, 23, 44, 0.28) 100%
          );
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 3;
}


/* =========================================================
   FRANJA DE MARCAS
   ========================================================= */

.brand-strip {
  padding: 72px 0;
  background:
          linear-gradient(
                  180deg,
                  #ffffff 0%,
                  #f7fbfc 100%
          );
  border-bottom: 1px solid var(--line);
}

.brand-strip__shell {
  display: grid;
  gap: 28px;
}

.brand-strip__intro {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.brand-strip__intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--navy-900);
}

.brand-strip__intro p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.75;
}

.brand-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(8, 34, 63, 0.05);
  transition:
          transform 0.22s ease,
          border-color 0.22s ease,
          box-shadow 0.22s ease;
}

.brand-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 199, 200, 0.42);
  box-shadow: 0 20px 44px rgba(8, 34, 63, 0.09);
}

.brand-logo-card img {
  /*max-width: 100%;*/
  max-width: 90% !important;
  max-height: 52px;
  width: 100%;
  /*height: auto;*/
  height: 50%;
  object-fit: contain;
  display: block;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
  .brand-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand-strip {
    padding: 56px 0;
  }

  .brand-strip__grid {
    grid-template-columns: 1fr;
  }

  .brand-logo-card {
    min-height: 110px;
    border-radius: 18px;
  }

  .brand-logo-card img {
    max-height: 46px;
  }

  .hero-overlay {
    background:
            linear-gradient(
                    180deg,
                    rgba(6, 23, 44, 0.84) 0%,
                    rgba(6, 23, 44, 0.72) 45%,
                    rgba(6, 23, 44, 0.52) 100%
            );
  }
}