/* ============================================================
   Odontal Web — Main Styles
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* Salto de línea condicional: solo visible en mobile */
.solo-mobile { display: none; }
@media (max-width: 820px) {
  .solo-mobile { display: inline; }
}

/* Offset anchor scroll so sticky navbar doesn't cover the target */
#top, #perfil, #caracteristicas, #odi, #ventajas, #contactenos {
  scroll-margin-top: 58px;
}
@media (max-width: 820px) {
  #top, #perfil, #caracteristicas, #odi, #ventajas, #contactenos {
    scroll-margin-top: 52px;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  height: 44px;
  padding: 0 22px;
  border-radius: 6px;
  font-family: var(--ow-font-sans);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 160ms, color 160ms, border-color 160ms;
}

.btn--dark    { background: #000;       color: #fff;    border-color: #000;   }
.btn--green   { background: #27EB65;    color: #000;    border-color: #27EB65;}
.btn--primary { background: #556154;    color: #fff;    border-color: #556154;}
.btn--outline { background: transparent;color: #556154; border-color: #556154;}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.navbar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06), transparent);
  pointer-events: none;
}

.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo { display: flex; align-items: center; }
.navbar__logo img { height: 40px; }

.navbar__nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.navbar__link {
  color: #556154;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.navbar__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.navbar__burger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #0A0F0B;
  border-radius: 2px;
  transition: transform 240ms, opacity 240ms;
}

.navbar__mobile-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 280ms ease;
  border-top: 1px solid transparent;
}

.navbar__mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 20px 18px;
}

.navbar__mobile-link {
  color: #0A0F0B;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar--open .navbar__burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar--open .navbar__burger-bar:nth-child(2) { opacity: 0; }
.navbar--open .navbar__burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar--open .navbar__mobile-menu { max-height: 320px; border-top-color: rgba(0, 0, 0, 0.05); }

@media (max-width: 820px) {
  .navbar__nav    { display: none; }
  .navbar__burger { display: flex; }
  .navbar__inner  { padding: 8px 20px; }
  .navbar__logo img { height: 34px; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero { background: #fff; position: relative; overflow: hidden; }

.hero__orbit {
  position: absolute;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  border: 1px dashed rgba(17, 178, 72, 0.18);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-bottom: 52px;
}

.hero__eyebrow {
  margin: 0;
  padding-top: 52px;
  color: #11B248;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--ow-font-mono);
  animation: ow-hero-fade 0.6s ease-out both;
}

.hero__headline {
  font-size: 92px;
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0;
}

.hero__headline--black {
  color: #000;
  animation: ow-hero-up 0.7s 0.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__headline--green {
  color: #27EB65;
  animation: ow-hero-up 0.7s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__arc-wrap {
  margin: 14px auto 10px;
  width: 260px;
  height: 130px;
  position: relative;
}

.hero__arc-wrap svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero__arc {
  stroke-dasharray: 340;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 14px 22px rgba(17, 178, 72, 0.25));
  animation: ow-hero-draw 1.2s 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__rotating {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  justify-content: center;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  animation: ow-hero-up 0.7s 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__rotating-logo  { height: 48px; width: 48px; }
.hero__rotating-brand { font-family: var(--ow-font-sans); font-weight: 700; color: #0A0F0B; letter-spacing: -0.025em; }
.hero__rotating-divider { width: 1px; height: 32px; background: rgba(10, 15, 11, 0.18); display: inline-block; flex-shrink: 0; }

.hero__rotating-word {
  color: #27EB65;
  font-weight: 600;
  display: inline-block;
  min-width: 200px;
  text-align: left;
}

.hero__rotating-word.is-flipping {
  animation: ow-hero-flip 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  animation: ow-hero-up 0.7s 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__btn-primary {
  background: #0A0F0B;
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--ow-font-sans);
}

.hero__btn-secondary {
  background: #fff;
  color: #0A0F0B;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--ow-font-sans);
}

@keyframes ow-hero-draw { 0% { stroke-dashoffset: 340; opacity: 0; } 30% { opacity: 1; } 100% { stroke-dashoffset: 0; opacity: 1; } }
@keyframes ow-hero-up   { 0% { transform: translateY(24px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes ow-hero-fade { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes ow-hero-flip { 0% { transform: translateY(20px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }

@media (max-width: 820px) {
  .hero__inner           { padding: 0px; height: 100%; }
  .hero__eyebrow         { font-size: 13px; padding-top: 28px; }
  .hero__headline        { font-size: 50px; white-space: normal; }
  .hero__arc-wrap        { width: 168px; height: 84px; margin: 10px auto 8px; }
  .hero__footer          { gap: 0; padding-bottom: 40px; }
  .hero__rotating        { font-size: 20px; gap: 10px; flex-wrap: nowrap; }
  .hero__rotating-logo   { height: 26px; width: 26px; }
  .hero__rotating-divider{ height: 24px; }
  .hero__rotating-word   { min-width: 118px; }
  .hero__ctas            { display: none; }
}

/* ============================================================
   DESKTOP 14" — proporciones para 1366–1440px
   ============================================================ */
@media (min-width: 768px) and (max-width: 1440px) {
  /* Hero: espacio para los CTAs posicionados debajo del fold */
  .hero { padding-bottom: 140px; }

  /* Eyebrow: sube, menos padding superior */
  .hero__eyebrow { padding-top: 20px; }
  .hero__center { margin-top: -50px;}

  /* Bloque central: titulares y arco más chicos */
  .hero__headline { font-size: 80px; }
  .hero__arc-wrap { width: 210px; height: 105px; margin: 10px auto 8px; }

  /* Footer: logo + texto dinámico pegados al pie del viewport visible.
     Los CTAs salen del flujo (absolute), así que el gap ya no aplica. */
  .hero__footer          { gap: 0; padding-bottom: 28px; }
  .hero__rotating        { font-size: 28px; gap: 14px; }
  .hero__rotating-logo   { height: 38px; width: 38px; }
  .hero__rotating-divider{ height: 26px; }
  .hero__rotating-word   { min-width: 160px; }

  /* CTAs debajo del fold: absolute relativo a .hero__inner (position:relative).
     .hero__footer no tiene position, por lo que el bloque de contención es
     .hero__inner. top:100% = bottom del inner = fondo del viewport visible. */
  .hero__ctas {
    display: flex;
    position: absolute;
    top: calc(100% + 48px);
    left: 0;
    right: 0;
    justify-content: center;
  }
}

/* Header más alto en pantallas grandes (>1440px) */
@media (min-width: 1441px) {
  .navbar__inner { padding: 12px 48px; }
  .navbar__logo img { height: 44px; }
  #top, #perfil, #caracteristicas, #odi, #ventajas, #contactenos {
    scroll-margin-top: 70px;
  }
}

/* ============================================================
   PROFILE SELECTOR (VariantC — section#perfil)
   ============================================================ */

.profiles {
  background: #E6F6E2;
  border-top: 1px solid rgba(17, 178, 72, 0.22);
  box-shadow: inset 0 16px 26px -20px rgba(17, 178, 72, 0.30);
  padding: 64px 64px 56px;
}

.profiles__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.profiles__eyebrow {
  margin: 0;
  color: #11B248;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--ow-font-mono);
}

.profiles__title {
  margin: 14px 0;
  color: #000;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.profiles__sub {
  margin: 0;
  color: #556154;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.profiles__grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: stretch;
}

/* Rail */
.profiles__rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-btn {
  text-align: left;
  background: #fff;
  color: #0A0F0B;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 18px 44px 16px 18px;
  cursor: pointer;
  font-family: var(--ow-font-sans);
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 180ms;
  position: relative;
  overflow: hidden;
}

.profile-btn.is-active {
  background: #0A0F0B;
  color: #fff;
  border-color: #0A0F0B;
  box-shadow: 0 14px 30px rgba(10, 15, 11, 0.18);
}

.profile-btn__eyebrow {
  font-family: var(--ow-font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #11B248;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.profile-btn.is-active .profile-btn__eyebrow { color: #27EB65; }

.profile-btn__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.profile-btn__sub {
  font-size: 13px;
  opacity: 0.7;
  font-weight: 500;
}

.profile-btn__arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #27EB65;
  font-size: 22px;
  opacity: 0;
  transition: opacity 180ms;
}

.profile-btn.is-active .profile-btn__arrow { opacity: 1; }

/* Panel */
.profile-panel {
  background: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 30px rgba(60, 79, 66, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  min-height: 356px;
}

.profile-panel__empathy {
  color: #0A0F0B;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.profile-panel__promise {
  color: #556154;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 20px;
  font-weight: 500;
}

.profile-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F5FFF3;
  color: #0F7A3A;
  border: 1px solid rgba(39, 235, 101, 0.32);
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.profile-chip svg { flex-shrink: 0; }

.profile-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: #0A0F0B;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--ow-font-sans);
  white-space: nowrap;
}

/* Browser frame */
.browser-frame {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.browser-frame__bar {
  height: 22px;
  background: #F4F5F4;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}

.browser-frame__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.browser-frame__dot--red    { background: #FF6157; }
.browser-frame__dot--yellow { background: #FFBD2E; }
.browser-frame__dot--green  { background: #28C840; }

.browser-frame__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: left top;
}

@media (max-width: 820px) {
  .profiles { padding: 48px 20px 44px; }
  .profiles__title { font-size: 32px; }
  .profiles__sub { font-size: 15.5px; }

  .profiles__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .profile-panel {
    grid-template-columns: 1fr;
    padding: 24px 22px;
    gap: 22px;
    min-height: 0;
    display: none;
  }

  .profile-panel.is-visible { display: grid; }

  .profile-panel__chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .profile-chip { white-space: normal; }
}

/* ============================================================
   FEATURES SECTION (section#caracteristicas)
   ============================================================ */

.features {
  background: radial-gradient(120% 80% at 80% 0%, #34402F 0%, #232A21 48%, #1B211A 100%);
  padding: 96px 64px 104px;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39, 235, 101, 0.5), transparent);
}

.features__inner { max-width: 1240px; margin: 0 auto; }

.features__header { max-width: 720px; }

.features__eyebrow {
  margin: 0;
  color: #27EB65;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--ow-font-mono);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.features__eyebrow-line {
  width: 24px;
  height: 1px;
  background: #27EB65;
  display: inline-block;
  flex-shrink: 0;
}

.features__title {
  margin: 16px 0 14px;
  color: #fff;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.features__title-green { color: #27EB65; }

.features__desc {
  margin: 0;
  color: #C7D3C3;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  max-width: 600px;
}

.features__mobile { display: none; }
.features__desc--mobile { display: none; }

/* Desktop explorer */
.features__explorer {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

.features__rail { display: flex; flex-direction: column; }

/* Feature rail buttons */
.feat-btn {
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 18px 8px 18px 4px;
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 6px;
  font-family: var(--ow-font-sans);
  width: 100%;
}

.feat-btn:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.09); }

.feat-btn__indicator {
  position: absolute;
  left: -64px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #27EB65;
  border-radius: 3px;
  opacity: 0;
  transition: opacity 180ms;
}

.feat-btn.is-active .feat-btn__indicator { opacity: 1; }

.feat-btn__num {
  font-family: var(--ow-font-mono);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.32);
  transition: color 180ms;
}

.feat-btn.is-active .feat-btn__num { color: #27EB65; }

.feat-btn__name {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  transition: all 180ms;
  display: flex;
  align-items: center;
  gap: 9px;
}

.feat-btn.is-active .feat-btn__name { color: #fff; font-weight: 600; }

.feat-new {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0A0F0B;
  background: #27EB65;
  border-radius: 4px;
  padding: 2px 6px;
  font-family: var(--ow-font-mono);
  flex-shrink: 0;
}

.feat-btn__arrow {
  color: #27EB65;
  font-size: 18px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 180ms;
}

.feat-btn.is-active .feat-btn__arrow { opacity: 1; transform: none; }

/* Feature panel */
.features__panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: opacity 160ms;
}

.features__panel-media {
  border-radius: 18px;
  height: 448px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.features__panel-media--flow { align-items: flex-start; }

.features__panel-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 96px;
}

.features__panel-desc {
  margin: 0;
  color: #C7D3C3;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  max-width: 720px;
}

.features__panel-tags { display: flex; flex-wrap: nowrap; gap: 8px; }

/* Feature tags */
.feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #DFFFDD;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(39, 235, 101, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.feat-tag__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #27EB65;
  flex-shrink: 0;
}

/* Mac frame */
.mac-frame {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.40), 0 6px 16px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.mac-frame__bar {
  height: 30px;
  flex: 0 0 30px;
  background: #ECEEEC;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mac-frame__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.mac-frame__dot--red    { background: #FF6157; }
.mac-frame__dot--yellow { background: #FFBD2E; }
.mac-frame__dot--green  { background: #28C840; }

.mac-frame__url {
  margin-left: 14px;
  flex: 1;
  height: 16px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  font-size: 10px;
  color: #9AA29A;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-family: var(--ow-font-mono);
}

.mac-frame__img { width: 100%; height: auto; }
.mac-frame--fixed .mac-frame__img {
  flex: 1;
  min-height: 0;
  object-fit: cover;
  object-position: left top;
  height: auto;
}

/* Overlay frame */
.overlay-frame {
  position: relative;
  width: 100%;
  max-width: 760px;
  height: 408px;
  margin: 0 auto;
}

.overlay-frame .mac-frame { height: 100%; }

.overlay-frame .mac-frame .mac-frame__img {
  flex: 1;
  min-height: 0;
  object-fit: cover;
  object-position: left top;
  height: auto;
}

.overlay-frame__overlay {
  position: absolute;
  right: -10px;
  bottom: -16px;
  width: 52%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(39, 235, 101, 0.45);
}

.overlay-frame__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0B5C2E;
  color: #fff;
  padding: 8px 12px;
}

.overlay-frame__bar-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #27EB65;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.overlay-frame__bar-label {
  font-size: 12px;
  font-weight: 700;
  font-family: var(--ow-font-sans);
  white-space: nowrap;
}

.overlay-frame__bar-badge {
  margin-left: auto;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0B5C2E;
  background: #27EB65;
  border-radius: 4px;
  padding: 2px 6px;
  font-family: var(--ow-font-mono);
  flex-shrink: 0;
}

.overlay-frame__img { width: 100%; height: auto; }

/* Flow frame (desktop) */
.flow-frame {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.flow-step__cap {
  font-size: 11px;
  color: #C7D3C3;
  font-family: var(--ow-font-mono);
  letter-spacing: 0.03em;
  white-space: nowrap;
  font-weight: 600;
}

.flow-step__img { height: 408px; width: auto; }

.flow-arrow {
  flex-shrink: 0;
  margin-top: 183px; /* ~45% of 408px */
}

/* Flow carousel (mobile) */
.flow-carousel { }

.flow-carousel__track {
  display: flex;
  transition: transform 480ms cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-carousel__slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-carousel__img {
  height: 430px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.flow-carousel__cap {
  text-align: center;
  margin: 14px 0 0;
  color: #DFFFDD;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--ow-font-mono);
}

.flow-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.flow-carousel__dots { display: flex; gap: 8px; }

.flow-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  transition: all 240ms;
  display: inline-block;
}

.flow-carousel__dot.is-active { width: 22px; background: #27EB65; }

.flow-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(39, 235, 101, 0.10);
  border: 1px solid rgba(39, 235, 101, 0.5);
}

/* Mobile features list */
.features__mobile-list { margin-top: 36px; display: flex; flex-direction: column; }

.mobile-feat { border-top: 1px solid rgba(255, 255, 255, 0.10); padding: 28px 0; }

.mobile-feat__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.mobile-feat__num { font-family: var(--ow-font-mono); font-size: 12px; font-weight: 700; color: #27EB65; }

.mobile-feat__name {
  margin: 0;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.2;
}

.mobile-feat__desc { margin: 0 0 14px; color: #C7D3C3; font-size: 14.5px; line-height: 1.6; font-weight: 500; }

.mobile-feat__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.mobile-feat__tags .feat-tag { font-size: 12px; padding: 5px 11px; }

.mobile-feat__media .mac-frame { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30); }

.mobile-feat__media .flow-carousel { overflow: hidden; }

@media (max-width: 820px) {
  .features { padding: 64px 20px 72px; }
  .features__title { font-size: 30px; }
  .features__desc--desktop { display: none; }
  .features__desc--mobile  { display: block; }
  .features__explorer { display: none; }
  .features__mobile { display: block; }
}

/* ============================================================
   ODI TEASER (section#odi)
   ============================================================ */

.odi { background: #fff; padding: 80px 32px; }
.odi__inner { max-width: 1120px; margin: 0 auto; }

.odi__card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(60, 79, 66, 0.10);
  box-shadow: 0 30px 80px rgba(60, 79, 66, 0.10), 0 1px 2px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}

.odi__left {
  padding: 44px 44px 44px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  order: 1;
}

.odi__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: #FFF1E5;
  color: #C0570B;
  border: 1px solid rgba(255, 138, 60, 0.4);
  font-family: var(--ow-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.odi__pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF8A3C;
  box-shadow: 0 0 8px #FF8A3C;
  flex-shrink: 0;
}

.odi__title {
  margin: 0;
  color: #0A0F0B;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.odi__title-accent { color: #11B248; }

.odi__desc {
  margin: 0;
  color: #556154;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
  max-width: 480px;
}

.odi__benefits { display: grid; gap: 9px; max-width: 480px; }

.odi__benefit {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.odi__benefit-text { color: #2B3329; font-size: 14px; font-weight: 500; line-height: 1.45; }

#odi-form,
.odi-form { display: flex; gap: 10px; margin-top: 4px; max-width: 480px; align-items: stretch; }

.odi-form__input {
  flex: 1;
  min-width: 0;
  font-family: var(--ow-font-sans);
  font-size: 15px;
  color: #0A0F0B;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  padding: 14px 16px;
}

.odi-form__btn {
  font-family: var(--ow-font-sans);
  font-size: 15px;
  font-weight: 600;
  background: rgba(10, 15, 11, 0.4);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 0 22px;
  cursor: not-allowed;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 160ms;
}

.odi-form__btn.is-valid {
  background: #0A0F0B;
  cursor: pointer;
}

.odi-success,
.odi-error {
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 15px;
  display: none;
  max-width: 480px;
}

.odi-success {
  background: #E7FFE5;
  border: 1px solid rgba(39, 235, 101, 0.5);
  color: #11B248;
}

.odi-error {
  background: #FFF1F1;
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #C0390B;
}

.odi__social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: #556154;
  font-weight: 500;
  flex-wrap: wrap;
}

.odi__social-proof b { color: #0A0F0B; font-weight: 700; }

#odi-count-wrap { display: none; }

.odi__discount {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E7FFE5;
  color: #11B248;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 12.5px;
}

/* Odi right panel */
.odi__right {
  position: relative;
  background: radial-gradient(ellipse at 50% 28%, #1F6B4A 0%, #134E37 55%, #0E3C2B 100%);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  order: 2;
}

.odi__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
}

.odi__ring--1 { width: 300px; height: 300px; border: 1px solid rgba(39, 235, 101, 0.18); top: 8px; }
.odi__ring--2 { width: 440px; height: 440px; border: 1px solid rgba(39, 235, 101, 0.10); top: -52px; }

.odi__char-wrap {
  position: relative;
  z-index: 3;
  display: inline-block;
}

.odi__pulse {
  position: absolute;
  top: -18px;
  right: -18px;
  bottom: -18px;
  left: -18px;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

.odi__pulse--1 { background: rgba(39, 235, 101, 0.20); animation: ow-pulse 2.2s ease-out 0s infinite; }
.odi__pulse--2 { background: rgba(39, 235, 101, 0.12); animation: ow-pulse 2.2s ease-out 0.6s infinite; }

.odi__char {
  position: relative;
  z-index: 3;
  width: 150px;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
  animation: odi-bob 3.6s ease-in-out infinite;
}

.odi__chat {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 280px;
}

.odi-bubble {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.96);
  color: #0A0F0B;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 12px;
  border-top-left-radius: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  max-width: 90%;
}

.odi-bubble--us {
  align-self: flex-end;
  background: #27EB65;
  border-top-left-radius: 12px;
  border-top-right-radius: 3px;
}

.odi-bubble__time {
  font-family: var(--ow-font-mono);
  font-size: 11px;
  opacity: 0.55;
  margin-right: 6px;
}

@keyframes ow-pulse { 0% { transform: scale(0.85); opacity: 0.9; } 100% { transform: scale(1.55); opacity: 0; } }
@keyframes odi-bob  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (prefers-reduced-motion: reduce) {
  .odi__char { animation: none !important; }
}

@media (max-width: 820px) {
  .odi { padding: 56px 10px; overflow-x: hidden; }
  .odi__card { grid-template-columns: 1fr; }
  .odi__left { padding: 32px 20px; order: 2; }
  .odi__right { order: 1; }
  .odi__ring--1 { width: 220px; height: 220px; }
  .odi__ring--2 { width: 280px; height: 280px; top: -28px; }
  .odi__title { font-size: 30px; }
  .odi__desc { max-width: 100%; }
  #odi-form,
  .odi-form        { max-width: 100%; width: 100%; box-sizing: border-box; }
  .odi-form__input { width: 100%; min-width: 0; box-sizing: border-box; }
  .odi-form__btn   { box-sizing: border-box; }
  .odi__benefits { max-width: 100%; }
  .odi-form__btn-text { display: none; }
  .odi-form__btn { flex: 0 0 48px; width: 48px; padding: 0; font-size: 20px; justify-content: center; }
}

/* ============================================================
   VENTAJAS (section#ventajas)
   ============================================================ */

.ventajas { background: #E7FFE5; border-top: 1px solid rgba(17, 178, 72, 0.22); box-shadow: inset 0 16px 26px -20px rgba(17, 178, 72, 0.30); padding: 88px 32px 96px; }
.ventajas__inner { max-width: 1140px; margin: 0 auto; }

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

.ventajas__eyebrow {
  margin: 0;
  color: #11B248;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--ow-font-mono);
}

.ventajas__title {
  margin: 14px 0 12px;
  color: #000;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.ventajas__sub { margin: 0; color: #3C6B49; font-size: 16px; line-height: 1.55; font-weight: 500; }

.ventajas__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ventaja-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(17, 178, 72, 0.12);
  box-shadow: 0 10px 28px rgba(60, 79, 66, 0.07);
  padding: 30px 28px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ventaja-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #27EB65, #11B248);
  display: block;
}

.ventaja-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ventaja-card__icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #F0FFEC;
  border: 1px solid rgba(39, 235, 101, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ventaja-card__icon { width: 32px; height: 32px; }

.ventaja-card__num {
  font-family: var(--ow-font-mono);
  font-size: 30px;
  font-weight: 700;
  color: rgba(17, 178, 72, 0.18);
  line-height: 1;
}

.ventaja-card__title {
  font-size: 22px;
  color: #0A0F0B;
  font-weight: 600;
  margin: 22px 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.ventaja-card__body { color: #556154; font-size: 14.5px; line-height: 1.6; margin: 0 0 18px; font-weight: 500; }

.ventaja-card__points {
  padding: 16px 0 0;
  margin: auto 0 0;
  display: grid;
  gap: 11px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ventaja-card__point {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.ventaja-card__point-text { color: #2B3329; font-size: 13.5px; font-weight: 500; line-height: 1.45; }

.ventajas__cta { margin-top: 52px; text-align: center; }

.ventajas__btn {
  background: #000;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--ow-font-sans);
  white-space: nowrap;
}

@media (max-width: 820px) {
  .ventajas { padding: 64px 20px 72px; }
  .ventajas__title { font-size: 30px; }
  .ventajas__grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
}

/* ============================================================
   CONTACT FORM (section#contactenos)
   ============================================================ */

.contact {
  background: linear-gradient(180deg, #E7FFE5 70%, #3C4F42 70%);
  padding: 88px 32px 96px;
}

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

.contact__headline {
  font-size: 33px;
  color: #000;
  font-weight: 500;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1.15;
}

.contact__card {
  background: #fff;
  padding: 36px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-top: 2px solid #27EB65;
  text-align: left;
}

.contact__ribbon {
  position: absolute;
  right: -42px;
  top: 20px;
  width: 160px;
  height: 32px;
  background: #27EB65;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  transform: rotate(45deg);
  text-align: center;
  padding-top: 8px;
  box-shadow: 0 2px 3px rgba(136, 136, 136, 0.25);
  user-select: none;
}

.contact__title { margin: 0 0 4px; color: #000; font-size: 22px; font-weight: 600; text-align: center; }
.contact__sub   { margin: 0 0 24px; color: #556154; font-size: 14px; font-weight: 500; text-align: center; }

.contact__fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact__field { margin-top: 14px; }
.contact__field--no-gap { margin-top: 0; }

.contact__label { display: block; font-size: 12px; color: #556154; font-weight: 600; margin-bottom: 6px; }

.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  font-family: var(--ow-font-sans);
  font-size: 14px;
  color: #000;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  padding: 10px 12px;
}

.contact__textarea { min-height: 96px; resize: vertical; }

.contact__input--error { border-color: #C0390B; }

.contact__submit { margin-top: 24px; text-align: right; }

.contact-success,
.contact-error {
  margin-top: 16px;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  display: none;
}

.contact-success {
  background: #E7FFE5;
  border: 1px solid rgba(39, 235, 101, 0.5);
  color: #11B248;
}

.contact-error {
  background: #FFF1F1;
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #C0390B;
}

@media (max-width: 820px) {
  .contact { padding: 64px 20px 80px; }
  .contact__headline { font-size: 26px; white-space: normal; }
  .contact__card { padding: 24px; }
  .contact__fields-row { grid-template-columns: 1fr; }
  .contact__title { text-align: left; position: relative; z-index: 1; }
  .contact__sub   { text-align: left; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer { background: #3C4F42; color: #fff; padding: 40px 32px 32px; }

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo { height: 32px; }
.footer__copy { font-size: 12px; opacity: 0.95; margin: 0; }
.footer__social { display: flex; gap: 16px; font-size: 22px; }
.footer__social-link { color: #fff; }
