:root {
      --bg: #f5f5f7;
      --surface: #ffffff;
      --surface-soft: #fbfbfd;
      --text: #1d1d1f;
      --muted: #6e6e73;
      --line: rgba(0, 0, 0, .08);
      --blue: #0071e3;
      --blue-hover: #0077ed;
      --title-gradient: linear-gradient(90deg, #063b78 0%, #0071e3 48%, #5bbcff 100%);
      --shadow-soft: 0 24px 80px rgba(0, 0, 0, .08);
      --shadow-card: 0 18px 54px rgba(0, 0, 0, .06);
      --nav-height: 46px;
      --local-nav-height: 56px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      overflow-x: hidden;
      background: var(--bg);
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }

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

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

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

    section {
      position: relative;
    }

    .skip-link {
      position: fixed;
      left: 16px;
      top: 16px;
      z-index: 2000;
      transform: translateY(-160%);
      border-radius: 999px;
      background: var(--text);
      color: #fff;
      padding: 10px 16px;
      font-size: 14px;
      transition: transform .2s ease;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    body.whatsapp-modal-open {
      overflow: hidden;
    }

    .whatsapp-float {
      position: fixed;
      right: max(20px, env(safe-area-inset-right));
      bottom: max(22px, env(safe-area-inset-bottom));
      z-index: 1500;
      display: grid;
      width: 62px;
      height: 62px;
      place-items: center;
      border: 0;
      border-radius: 50%;
      background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
      box-shadow: 0 4px 10px rgba(0, 0, 0, .30);
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transform: translateY(14px) scale(.96);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .whatsapp-float.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0) scale(1);
    }

    .whatsapp-float:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(18, 140, 126, .36);
    }

    .whatsapp-float-icon {
      width: 34px;
      height: 34px;
      background: #fff;
      -webkit-mask: url("../images/whatsapp.svg") center / contain no-repeat;
      mask: url("../images/whatsapp.svg") center / contain no-repeat;
    }

    .whatsapp-modal[hidden] {
      display: none;
    }

    .whatsapp-modal {
      position: fixed;
      inset: 0;
      z-index: 2200;
      display: grid;
      place-items: center;
      padding: 24px;
    }

    .whatsapp-modal-backdrop {
      position: absolute;
      inset: 0;
      border: 0;
      background: rgba(0, 0, 0, .56);
      cursor: pointer;
    }

    .whatsapp-modal-card {
      position: relative;
      width: min(460px, calc(100vw - 32px));
      overflow: hidden;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
    }

    .whatsapp-modal-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 22px;
      background: #078b37;
      color: #fff;
    }

    .whatsapp-modal-head strong,
    .whatsapp-modal-head span {
      display: block;
      line-height: 1.18;
    }

    .whatsapp-modal-head strong {
      font-size: 20px;
      font-weight: 800;
    }

    .whatsapp-modal-head span {
      margin-top: 2px;
      font-size: 17px;
      font-weight: 600;
    }

    .whatsapp-modal-head button {
      width: 38px;
      height: 38px;
      border: 0;
      border-radius: 10px;
      background: transparent;
      color: #fff;
      cursor: pointer;
      font-size: 34px;
      line-height: 1;
    }

    .whatsapp-form {
      display: grid;
      gap: 12px;
      padding: 20px 22px 22px;
    }

    .whatsapp-form p {
      margin: 0 0 4px;
      border-left: 4px solid #25d366;
      border-radius: 7px;
      background: #f5f5f7;
      padding: 12px 14px;
      color: #515154;
      font-size: 14px;
      line-height: 1.35;
    }

    .whatsapp-form label {
      display: grid;
      gap: 6px;
      margin: 0;
      color: #1d1d1f;
      font-size: 15px;
      font-weight: 600;
    }

    .whatsapp-form input {
      width: 100%;
      min-height: 44px;
      border: 1px solid #d2d2d7;
      border-radius: 9px;
      padding: 0 13px;
      color: #1d1d1f;
      font: inherit;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .whatsapp-form input:focus {
      border-color: #25d366;
      box-shadow: 0 0 0 4px rgba(37, 211, 102, .16);
    }

    .whatsapp-area {
      display: grid;
      gap: 8px;
      margin: 2px 0 0;
      border: 0;
      padding: 0;
    }

    .whatsapp-area legend {
      margin: 0;
      padding: 0;
      color: #1d1d1f;
      font-size: 15px;
      font-weight: 700;
    }

    .whatsapp-area-options {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .whatsapp-area-options button {
      min-height: 44px;
      border: 1px solid #d2d2d7;
      border-radius: 9px;
      background: #fff;
      color: #1d1d1f;
      cursor: pointer;
      font: inherit;
      font-size: 14px;
      font-weight: 800;
      transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
    }

    .whatsapp-area-options button.is-active {
      border-color: #078b37;
      background: #078b37;
      color: #fff;
      box-shadow: 0 8px 20px rgba(7, 139, 55, .18);
    }

    .whatsapp-hp {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
    }

    .whatsapp-message {
      min-height: 18px;
      color: #b42318;
      font-size: 13px;
      font-weight: 700;
    }

    .whatsapp-form button[type="submit"] {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 999px;
      background: #00c83d;
      color: #fff;
      cursor: pointer;
      font: inherit;
      font-weight: 800;
      box-shadow: 0 12px 28px rgba(0, 200, 61, .28);
    }

    .whatsapp-form button[type="submit"]:disabled {
      cursor: wait;
      opacity: .72;
    }

    .whatsapp-modal-phone {
      padding: 10px 22px;
      background: #0b6f25;
      color: #fff;
      font-size: 15px;
      font-weight: 700;
    }

    .topbar {
      position: absolute;
      inset: 0 0 auto;
      z-index: 1000;
      height: var(--nav-height);
      border-bottom: 0;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: none;
      transition: opacity .28s ease, transform .28s ease;
    }

    .topbar.is-hidden {
      opacity: 0;
      pointer-events: none;
      transform: translateY(-100%);
    }

    .topbar-inner {
      width: min(1060px, 100%);
      height: 100%;
      margin: 0 auto;
      padding: 0 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand-cluster {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .mobile-menu-toggle {
      display: none;
      width: 36px;
      height: 36px;
      border: 0;
      border-radius: 999px;
      background: transparent;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 4px;
      padding: 0;
      cursor: pointer;
    }

    .mobile-menu-toggle span {
      width: 17px;
      height: 2px;
      border-radius: 999px;
      background: rgba(29, 29, 31, .82);
      transition: opacity .2s ease, transform .2s ease;
    }

    .topbar.menu-open .mobile-menu-toggle span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

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

    .topbar.menu-open .mobile-menu-toggle span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
    }

    .brand-logo {
      width: auto;
      height: 25px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 34px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: rgba(29, 29, 31, .78);
      font-size: 13px;
      line-height: 1;
      white-space: nowrap;
    }

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

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .btn-pill {
      display: inline-flex;
      min-height: 32px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(0, 0, 0, .18);
      border-radius: 999px;
      background: #fff;
      color: var(--text);
      padding: 7px 17px;
      font-size: 13px;
      font-weight: 500;
      line-height: 1;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }

    .btn-pill:hover {
      transform: translateY(-1px);
      border-color: rgba(0, 0, 0, .28);
      background: #f9f9fb;
    }

    .btn-primary-pill {
      border-color: var(--blue);
      background: var(--blue);
      color: #fff;
    }

    .btn-primary-pill:hover {
      border-color: var(--blue-hover);
      background: var(--blue-hover);
      color: #fff;
    }

    .localnav {
      position: fixed;
      top: 10px;
      left: 50%;
      z-index: 1001;
      width: min(940px, calc(100% - 28px));
      min-height: var(--local-nav-height);
      transform: translate(-50%, -16px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255, 255, 255, .82);
      box-shadow: 0 10px 28px rgba(0, 0, 0, .035);
      backdrop-filter: blur(22px) saturate(180%);
      padding: 10px 22px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .32s ease, transform .32s ease;
    }

    .localnav.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .localnav strong {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: 0;
    }

    .mini-actions {
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .hero {
      position: relative;
      min-height: 100svh;
      overflow: hidden;
      display: flex;
      align-items: stretch;
      background: #fff;
      padding: var(--nav-height) 24px 54px;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 2;
      height: 32vh;
      pointer-events: none;
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, .72) 48%,
        #fff 100%
      );
    }

    .hero-inner {
      position: relative;
      width: min(1760px, 100%);
      min-height: calc(100svh - var(--nav-height) - 54px);
      margin: 0 auto;
    }

    .hero-copy {
      position: absolute;
      left: 0;
      bottom: clamp(18px, 3vw, 44px);
      z-index: 3;
      width: min(760px, 55vw);
      opacity: 1;
      transform: none;
    }

    .eyebrow {
      margin-bottom: 10px;
      color: var(--text);
      font-size: clamp(22px, 2.5vw, 34px);
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0;
    }

    .gradient-title {
      margin: 0;
      background: var(--title-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-size: clamp(72px, 7.4vw, 150px);
      font-weight: 800;
      line-height: .88;
      letter-spacing: 0;
    }

    .hero-subcopy {
      max-width: 470px;
      margin: 24px 0 0;
      color: var(--muted);
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 600;
      line-height: 1.28;
      letter-spacing: 0;
    }

    .hero-actions {
      position: absolute;
      right: 0;
      bottom: clamp(26px, 3vw, 48px);
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 24px;
      min-height: 72px;
      margin-top: 0;
      border-radius: 999px;
      background: rgba(245, 245, 247, .94);
      box-shadow: 0 14px 40px rgba(0, 0, 0, .05);
      backdrop-filter: blur(18px) saturate(170%);
      padding: 14px 16px 14px 28px;
      opacity: 1;
      transform: none;
    }

    .hero-price {
      color: var(--text);
      font-size: clamp(17px, 1.4vw, 22px);
      font-weight: 700;
      line-height: 1.15;
      white-space: nowrap;
    }

    .hero-price small {
      display: block;
      color: var(--muted);
      font-size: clamp(14px, 1.1vw, 18px);
      font-weight: 600;
    }

    .hero-media {
      position: absolute;
      top: 0;
      right: 0;
      bottom: -18px;
      left: 0;
      width: min(980px, 72vw);
      min-height: auto;
      margin: 0 auto;
      display: grid;
      place-items: end center;
      isolation: isolate;
      opacity: 1;
    }

    .hero-media::before {
      content: none;
    }

    .hero-media-video {
      width: auto;
      height: min(97vh, 965px);
      max-width: 100%;
      max-height: min(97vh, 965px);
      border-radius: 0;
      object-fit: contain;
      object-position: center;
      filter: none;
      transform: translateY(clamp(24px, 4vh, 48px));
      transform-origin: center;
    }

    .hero-product {
      display: none;
    }

    .pause {
      position: absolute;
      right: clamp(28px, 7vw, 92px);
      top: 22vh;
      z-index: 4;
      width: 46px;
      height: 46px;
      border: 0;
      border-radius: 50%;
      background: #e5e5e9;
      color: #6d6d72;
      font-size: 0;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      transition: background .2s ease, transform .2s ease, opacity .2s ease;
    }

    .pause::before,
    .pause::after {
      content: "";
      width: 6px;
      height: 18px;
      border-radius: 4px;
      background: currentColor;
    }

    .pause::before {
      transform: none;
    }

    .pause::after {
      transform: none;
    }

    .pause.is-paused::before {
      width: 0;
      height: 0;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      border-left: 17px solid currentColor;
      border-radius: 0;
      background: transparent;
      transform: translateX(2px);
    }

    .pause.is-paused::after {
      display: none;
    }

    .pause:hover {
      background: #dcdce1;
      transform: scale(1.04);
    }

    .section-wrap {
      width: min(1160px, 100%);
      margin: 0 auto;
      padding: 112px 24px;
    }

    .big-heading {
      margin: 0;
      color: var(--text);
      font-size: clamp(42px, 5vw, 74px);
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: 0;
    }

    .big-heading.gradient-title {
      background: var(--title-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .lead {
      color: var(--muted);
      font-size: 20px;
      font-weight: 600;
      line-height: 1.45;
      letter-spacing: 0;
    }

    .kicker {
      color: var(--text);
      font-size: 23px;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: 0;
    }

    .highlights {
      overflow: hidden;
      background: var(--bg);
      padding: 132px 0 92px;
    }

    .highlights .title {
      width: min(1160px, 100%);
      margin: 0 auto 78px;
      padding: 0 24px;
    }

    .highlights .big-heading {
      font-size: clamp(40px, 3.7vw, 60px);
      line-height: 1.02;
    }

    .swiper {
      padding-left: calc((100vw - min(1160px, 100vw)) / 2 + 24px);
      padding-right: 24px;
      cursor: grab;
    }

    .swiper:active {
      cursor: grabbing;
    }

    .swiper-slide {
      position: relative;
      overflow: hidden;
      width: min(1050px, 86vw);
      height: 660px;
      border-radius: 30px;
      background: var(--surface);
      box-shadow: var(--shadow-card);
      padding: 60px 66px;
    }

    .slide-title {
      position: relative;
      z-index: 2;
      max-width: 620px;
      margin: 0;
      font-size: clamp(24px, 2vw, 38px);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: 0;
    }

    .slide-img {
      position: absolute;
      left: 50%;
      bottom: 54px;
      width: auto;
      max-width: 76%;
      max-height: 420px;
      object-fit: contain;
      transform: translateX(-50%);
    }

    .slide-img.wide {
      max-width: 84%;
      max-height: 440px;
    }

    .slide-full {
      padding: 0;
      background: #fff;
    }

    .slide-full .slide-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      max-width: none;
      max-height: none;
      object-fit: cover;
      object-position: center;
      transform: none;
    }

    .slide-dark {
      background: #101014;
      color: #fff;
    }

    .swiper-controls {
      position: fixed;
      left: 50%;
      bottom: 28px;
      z-index: 8;
      transform: translateX(-50%) translateY(18px);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      width: max-content;
      margin: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s ease, transform .25s ease;
    }

    .highlights.controls-visible .swiper-controls {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .swiper-controls > * {
      pointer-events: auto;
    }

    .dots {
      display: flex;
      align-items: center;
      gap: 16px;
      border-radius: 999px;
      background: rgba(232, 232, 237, .92);
      padding: 20px 28px;
    }

    .dot {
      position: relative;
      overflow: hidden;
      width: 9px;
      height: 9px;
      border: 0;
      border-radius: 50%;
      background: #6d6d72;
      opacity: .9;
      transition: width .25s ease, background .25s ease, opacity .25s ease, box-shadow .25s ease;
    }

    .dot.active {
      width: 64px;
      border-radius: 20px;
      background: #75757b;
    }

    .dot.active::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: var(--dot-progress, 0%);
      border-radius: inherit;
      background: #2d2d2f;
    }

    .dot.active.is-static::before {
      width: 48%;
    }

    .play {
      width: 64px;
      height: 64px;
      border: 0;
      border-radius: 50%;
      background: rgba(232, 232, 237, .92);
      color: var(--text);
      display: grid;
      place-items: center;
      font-size: 0;
      transition: transform .2s ease, background .2s ease;
    }

    .play:hover {
      background: #dedee3;
      transform: scale(1.035);
    }

    .play::before {
      content: "";
      width: 0;
      height: 0;
      border-top: 11px solid transparent;
      border-bottom: 11px solid transparent;
      border-left: 17px solid #1d1d1f;
      transform: translateX(2px);
    }

    .play.is-playing {
      outline: 3px solid #0071e3;
      outline-offset: -3px;
    }

    .play.is-playing::before,
    .play.is-playing::after {
      content: "";
      width: 7px;
      height: 24px;
      border-radius: 4px;
      background: #1d1d1f;
      border: 0;
      transform: none;
    }

    .play.is-playing {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
    }

    .design {
      background: var(--bg);
    }

    .design-copy {
      max-width: 860px;
      margin: 0 0 70px;
    }

    .design-card,
    .two-card,
    .compare-card {
      border-radius: 28px;
      background: var(--surface);
      box-shadow: var(--shadow-card);
    }

    .design-card {
      position: relative;
      min-height: 650px;
      display: grid;
      grid-template-columns: 54px minmax(280px, 420px) minmax(0, 1fr);
      align-items: center;
      gap: 34px;
      overflow: hidden;
      padding: 62px 74px 62px 42px;
    }

    .feature-pills {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      z-index: 2;
    }

    .feature-pill {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      width: max-content;
      max-width: 100%;
      border: 0;
      border-radius: 26px;
      background: #ededf0;
      color: #333;
      padding: 12px 18px;
      font-weight: 700;
      line-height: 1.1;
      text-align: left;
      transition: width .28s ease, max-width .28s ease, padding .28s ease, background .28s ease, transform .28s ease;
    }

    .feature-pill:hover {
      background: #e7e7eb;
      transform: translateX(2px);
    }

    .feature-pill .feature-icon {
      width: 21px;
      height: 21px;
      flex: 0 0 21px;
      display: grid;
      place-items: center;
      border: 1px solid #777;
      border-radius: 50%;
      font-size: 15px;
      font-weight: 700;
    }

    .feature-pill .feature-icon::before {
      content: "+";
    }

    .feature-pill .feature-title {
      font-weight: 800;
    }

    .feature-pill .feature-copy {
      display: none;
      margin: 7px 0 0 32px;
      color: #3f3f43;
      font-size: 18px;
      font-weight: 500;
      line-height: 1.42;
    }

    .feature-pill.is-active {
      width: min(390px, 100%);
      align-items: flex-start;
      background: #ededf0;
      padding: 22px 24px;
      transform: none;
    }

    .feature-pill.is-active .feature-icon::before {
      content: "";
      width: 9px;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
    }

    .feature-pill.is-active .feature-copy {
      display: block;
    }

    .design-nav {
      display: flex;
      flex-direction: column;
      gap: 14px;
      z-index: 3;
    }

    .design-arrow,
    .design-close {
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 50%;
      background: #ededf0;
      color: var(--text);
      display: grid;
      place-items: center;
      transition: background .2s ease, transform .2s ease, outline .2s ease;
    }

    .design-arrow::before {
      content: "";
      width: 10px;
      height: 10px;
      border-top: 3px solid currentColor;
      border-left: 3px solid currentColor;
    }

    .design-arrow.prev::before {
      transform: translateY(3px) rotate(45deg);
    }

    .design-arrow.next::before {
      transform: translateY(-3px) rotate(225deg);
    }

    .design-arrow:hover,
    .design-close:hover {
      background: #dedee3;
      transform: scale(1.04);
    }

    .design-card.has-selection .design-arrow.next {
      outline: 3px solid var(--blue);
      outline-offset: -2px;
    }

    .design-close {
      position: absolute;
      top: 28px;
      right: 28px;
      z-index: 4;
      opacity: 0;
      pointer-events: none;
    }

    .design-card.has-selection .design-close {
      opacity: 1;
      pointer-events: auto;
    }

    .design-close::before,
    .design-close::after {
      content: "";
      position: absolute;
      width: 16px;
      height: 3px;
      border-radius: 3px;
      background: currentColor;
    }

    .design-close::before {
      transform: rotate(45deg);
    }

    .design-close::after {
      transform: rotate(-45deg);
    }

    .design-stage {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 50%;
      min-height: 530px;
      display: grid;
      place-items: center;
      overflow: hidden;
      border-radius: 0 28px 28px 0;
      background: url("../images/modelo-vertical.webp") center / cover no-repeat;
      transition: background-image .28s ease, opacity .28s ease;
    }

    .design-stage::before {
      content: "";
      position: absolute;
      inset: auto 8% 8% 8%;
      height: 90px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(0, 0, 0, .12), rgba(0, 0, 0, 0) 68%);
      filter: blur(12px);
      opacity: .35;
    }

    .design-card:not(.has-selection) .design-stage::before {
      inset: 0;
      height: auto;
      border-radius: inherit;
      background: linear-gradient(90deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0));
      filter: none;
      opacity: 1;
    }

    .design-img {
      position: relative;
      z-index: 1;
      width: min(720px, 100%);
      max-height: 540px;
      object-fit: contain;
      filter: drop-shadow(0 18px 20px rgba(0, 0, 0, .12));
      transition: opacity .28s ease, transform .34s ease;
    }

    .design-img {
      opacity: 0;
      pointer-events: none;
    }

    .design-stage.is-changing {
      opacity: .35;
    }

    .design-img.is-changing {
      opacity: 0;
      transform: translateY(16px) scale(.98);
    }

    .tech {
      overflow: hidden;
      background: #fff;
      text-align: center;
    }

    .tech .section-wrap {
      padding-bottom: 0;
    }

    .tech-img {
      width: min(960px, 92vw);
      margin: 52px auto 0;
      border-radius: 28px;
    }

    .dark-feature {
      min-height: 820px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: #050505;
      color: #fff;
    }

    .dark-feature .big-heading {
      color: #fff;
      font-size: clamp(40px, 4.2vw, 66px);
    }

    .dark-feature .lead {
      color: #b9b9bd;
    }

    .dark-grid {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(0, 1.28fr);
      align-items: center;
      gap: 56px;
    }

    .dark-img {
      width: 100%;
      border-radius: 24px;
      filter: drop-shadow(0 35px 40px rgba(0, 167, 225, .2));
    }

    .number {
      background: var(--title-gradient);
      -webkit-background-clip: text;
      color: transparent;
      font-size: clamp(84px, 10.5vw, 168px);
      font-weight: 850;
      line-height: .8;
      letter-spacing: 0;
    }

    .twoinone {
      background: var(--bg);
    }

    .two-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      align-items: center;
      gap: 36px;
      padding: 68px;
    }

    .two-card img {
      width: 100%;
      border-radius: 22px;
    }

    .proof {
      background: #fff;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 45px;
    }

    .proof-card {
      min-height: 230px;
      border-radius: 26px;
      background: var(--bg);
      padding: 35px;
    }

    .proof-card h3 {
      margin-bottom: 10px;
      font-weight: 800;
      letter-spacing: 0;
    }

    .proof-card p {
      margin: 0;
      color: var(--muted);
      font-weight: 600;
    }

    .compare {
      background: var(--bg);
    }

    .compare-card {
      max-width: 1080px;
      margin: auto;
      padding: 56px 64px;
    }

    .compare-row {
      display: grid;
      grid-template-columns: minmax(190px, .72fr) minmax(0, 1fr);
      align-items: center;
      gap: 34px;
      border-bottom: 1px solid #e5e5e8;
      padding: 22px 0;
      color: var(--text);
      font-size: 22px;
      line-height: 1.25;
    }

    .compare-row span:first-child {
      color: #4a4a4f;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .compare-row span:last-child {
      color: var(--text);
      font-weight: 750;
    }

    .compare-row:last-child {
      border-bottom: 0;
    }

    .manual-note {
      margin-top: 18px;
      border-top: 1px solid #e5e5e8;
      padding-top: 20px;
      color: var(--muted);
      font-size: 17px;
      font-weight: 650;
      line-height: 1.35;
    }

    .manual-note strong {
      color: var(--text);
      font-weight: 800;
    }

    .manual-note a {
      color: var(--blue);
      font-weight: 700;
    }

    .manual-note a:hover {
      text-decoration: underline;
    }

    .recommendations {
      margin-top: 22px;
      color: var(--muted);
      font-size: 16px;
      font-weight: 600;
      line-height: 1.55;
    }

    .recommendations h3 {
      margin: 0 0 12px;
      color: #3a3a3d;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .recommendations p {
      margin: 0 0 10px;
    }

    .recommendations em {
      color: #4a4a4f;
    }

    .final-cta {
      min-height: 860px;
      display: block;
      overflow: hidden;
      background: #fff;
    }

    .final-cta img {
      width: min(820px, 100%);
      margin: 0 auto;
      filter: drop-shadow(0 25px 30px rgba(0, 0, 0, .15));
    }

    .look-frame-section {
      background: #fff;
      overflow: hidden;
    }

    .look-frame {
      display: block;
      width: 100%;
      min-height: 920px;
      border: 0;
      background: transparent;
    }

    body.look-frame-modal-open {
      overflow: hidden;
    }

    .look-frame-section.is-modal-open {
      position: fixed;
      inset: 0;
      z-index: 2147483000;
      background: transparent;
      overflow: visible;
    }

    .look-frame-section.is-modal-open .look-frame {
      height: 100dvh !important;
      min-height: 100dvh;
    }

    .buy-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
      align-items: center;
      gap: 58px;
    }

    .buy-visual {
      text-align: center;
    }

    .buy-card {
      border: 1px solid rgba(0, 0, 0, .08);
      border-radius: 30px;
      background: rgba(245, 245, 247, .78);
      box-shadow: 0 24px 70px rgba(0, 0, 0, .08);
      padding: 34px;
      backdrop-filter: blur(18px) saturate(170%);
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 17px;
      font-weight: 700;
      text-decoration: none;
      width: fit-content;
    }

    .rating:hover {
      color: var(--text);
    }

    .stars {
      color: #ffcc32;
      letter-spacing: 1px;
    }

    .buy-title {
      margin: 0 0 22px;
      color: var(--text);
      font-size: clamp(30px, 3vw, 48px);
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: 0;
    }

    .price-row {
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 10px;
    }

    .current-price {
      color: #168200;
      font-size: clamp(38px, 4vw, 58px);
      font-weight: 850;
      line-height: 1;
    }

    .old-price {
      color: #777;
      font-size: 26px;
      font-weight: 700;
      text-decoration: line-through;
    }

    .installments {
      margin: 0 0 24px;
      color: #bb3c8f;
      font-size: 23px;
      font-weight: 800;
    }

    .buy-option {
      margin: 0 0 28px;
    }

    .buy-option-label {
      margin-bottom: 10px;
      color: #3a3a3d;
      font-size: 17px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .buy-option-label strong {
      color: var(--text);
    }

    .option-chip {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      border: 2px solid var(--blue);
      border-radius: 13px;
      background: #fff;
      padding: 12px 18px;
      color: var(--text);
      font-size: 17px;
      font-weight: 700;
    }

    .buy-button {
      width: 100%;
      min-height: 58px;
      font-size: 19px;
      font-weight: 800;
    }

    .buy-meta {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 18px;
    }

    .meta-item {
      min-height: 92px;
      border-radius: 20px;
      background: #fff;
      padding: 17px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 650;
      line-height: 1.28;
    }

    .meta-item strong {
      display: block;
      margin-bottom: 4px;
      color: var(--text);
      font-size: 16px;
      font-weight: 800;
    }

    .footer {
      border-top: 1px solid #ddd;
      background: #f5f5f7;
      color: #555;
    }

    .institutional-page {
      background: var(--bg);
    }

    .institutional-page .topbar {
      position: sticky;
      top: 0;
      background: rgba(255, 255, 255, .94);
      border-bottom: 1px solid rgba(0, 0, 0, .06);
    }

    .about-hero {
      padding: 118px 24px 42px;
      background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
      text-align: center;
    }

    .about-shell {
      width: min(980px, 100%);
      margin: 0 auto;
    }

    .about-kicker {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 17px;
      font-weight: 800;
      letter-spacing: 0;
    }

    .about-hero .gradient-title {
      font-size: clamp(56px, 7vw, 116px);
      line-height: .9;
    }

    .about-lead {
      max-width: 820px;
      margin: 28px auto 0;
      color: var(--muted);
      font-size: clamp(20px, 2.1vw, 28px);
      font-weight: 650;
      line-height: 1.35;
      letter-spacing: 0;
    }

    .about-section {
      padding: 46px 24px 108px;
      background: var(--bg);
    }

    .about-card {
      width: min(1120px, 100%);
      margin: 0 auto;
      border-radius: 32px;
      background: #fff;
      box-shadow: var(--shadow-card);
      padding: clamp(30px, 5vw, 68px);
    }

    .about-intro {
      max-width: 880px;
      padding-bottom: clamp(34px, 5vw, 64px);
      border-bottom: 1px solid #e8e8ed;
    }

    .about-intro h2 {
      margin: 0 0 22px;
      color: var(--text);
      font-size: clamp(42px, 4.8vw, 78px);
      font-weight: 800;
      line-height: .98;
      letter-spacing: 0;
    }

    .about-intro p {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: clamp(18px, 1.6vw, 22px);
      font-weight: 600;
      line-height: 1.55;
    }

    .about-intro p:last-child {
      margin-bottom: 0;
    }

    .about-values {
      padding-top: clamp(18px, 3vw, 32px);
    }

    .about-row {
      display: grid;
      grid-template-columns: minmax(150px, .34fr) minmax(0, 1fr);
      gap: clamp(20px, 4vw, 56px);
      align-items: start;
      border-bottom: 1px solid #e8e8ed;
      padding: 30px 0;
    }

    .about-row:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .about-row span {
      color: var(--text);
      font-size: 15px;
      font-weight: 850;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .about-row p {
      margin: 0;
      color: var(--text);
      font-size: clamp(19px, 1.8vw, 26px);
      font-weight: 650;
      line-height: 1.45;
    }

    .legal-card {
      width: min(980px, 100%);
    }

    .legal-content {
      color: var(--text);
    }

    .legal-updated {
      margin: 0 0 34px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
    }

    .legal-content h2 {
      margin: 38px 0 14px;
      color: var(--text);
      font-size: clamp(24px, 2.5vw, 36px);
      font-weight: 850;
      line-height: 1.12;
      letter-spacing: 0;
    }

    .legal-content h2:first-of-type {
      margin-top: 0;
    }

    .legal-content p {
      margin: 0 0 16px;
      color: #4f4f55;
      font-size: clamp(17px, 1.35vw, 20px);
      font-weight: 560;
      line-height: 1.68;
      letter-spacing: 0;
    }

.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(190px, 1.15fr)
    minmax(150px, 0.9fr)
    minmax(130px, 0.75fr)
    minmax(280px, 1.55fr)
    minmax(220px, 1.2fr);
  align-items: start;
  gap: 28px;
  font-size: 14px;
}

    .footer h4 {
      margin-bottom: 15px;
      color: var(--text);
      font-size: 15px;
      font-weight: 800;
    }

.footer a {
  display: block;
  margin-bottom: 11px;
  color: #555;
}

.footer-contact p {
  margin: 0 0 10px;
  color: #555;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.footer-contact strong {
  color: var(--text);
  font-weight: 800;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

    .footer-social-icon {
      width: 22px;
      height: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 22px;
      color: var(--text);
    }

    .footer-social-icon svg {
      width: 100%;
      height: 100%;
      fill: currentColor;
    }

    .copyright {
      margin-top: 35px;
      border-top: 1px solid #d2d2d7;
      padding-top: 18px;
      color: #777;
      font-size: 13px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(42px);
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
      }

      .reveal {
        opacity: 1;
        transform: translateY(clamp(72px, 8vh, 112px));
      }
    }

    @media (max-width: 980px) {
      .topbar-inner {
        gap: 12px;
      }

      .mobile-menu-toggle {
        display: inline-flex;
      }

      .mobile-menu {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        display: grid;
        padding: 10px 18px 18px;
        border-bottom: 1px solid var(--line);
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 20px 44px rgba(0, 0, 0, .08);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .24s ease, transform .24s ease;
      }

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

      .mobile-menu a {
        display: flex;
        align-items: center;
        min-height: 46px;
        border-bottom: 1px solid rgba(0, 0, 0, .06);
        color: var(--text);
        font-size: 18px;
        font-weight: 700;
      }

      .mobile-menu a:last-child {
        border-bottom: 0;
        color: var(--blue);
      }

      .nav-links {
        display: none;
      }

      .topbar .btn-pill:not(.btn-primary-pill) {
        display: none;
      }

      .hero {
        padding: var(--nav-height) 20px 44px;
      }

      .hero::after {
        height: 30vh;
      }

      .hero-inner {
        width: min(860px, 100%);
        min-height: calc(100svh - var(--nav-height) - 44px);
        text-align: left;
      }

      .hero-copy {
        width: min(100%, 620px);
      }

      .hero-media {
        top: 0;
        bottom: -12px;
        width: min(720px, 90vw);
        min-height: auto;
      }

      .hero-media-video {
        height: min(82vh, 760px);
        max-height: min(82vh, 760px);
        transform: translateY(clamp(72px, 8vh, 112px));
      }

      .hero-actions {
        right: auto;
        left: 0;
        bottom: 34px;
        min-height: 68px;
      }

      .dark-grid,
      .two-card {
        grid-template-columns: 1fr;
      }

      .design-card {
        grid-template-columns: 44px minmax(250px, 360px) minmax(0, 1fr);
        gap: 22px;
        padding: 44px 36px;
      }

      .two-card {
        padding: 42px;
      }

      .design-stage {
        min-height: 460px;
      }

      .feature-pill.is-active {
        width: min(340px, 100%);
      }

      .proof-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .dark-feature {
        min-height: auto;
      }

      .buy-layout {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .buy-card {
        width: min(640px, 100%);
        margin: 0 auto;
      }

    }

    @media (max-width: 640px) {
      :root {
        --nav-height: 46px;
      }

      .whatsapp-float {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
      }

      .whatsapp-float-icon {
        width: 30px;
        height: 30px;
      }

      .whatsapp-modal {
        align-items: center;
        padding: 14px;
      }

      .whatsapp-modal-card {
        width: 100%;
        max-height: calc(100dvh - 28px);
        overflow-y: auto;
      }

      .whatsapp-area-options {
        grid-template-columns: 1fr;
      }

      .brand-cluster {
        gap: 8px;
      }

      .mobile-menu-toggle {
        width: 34px;
        height: 34px;
        margin-left: -8px;
      }

      .topbar-inner {
        padding: 0 14px;
      }

      .topbar .btn-pill:not(.btn-primary-pill) {
        display: inline-flex;
      }

      .nav-actions {
        gap: 6px;
      }

      .nav-actions .btn-pill {
        min-height: 32px;
        padding: 7px 12px;
        font-size: 12px;
      }

      .nav-actions .btn-primary-pill {
        padding: 8px 15px;
        font-size: 13px;
      }

      .brand-logo {
        height: 22px;
      }

      .localnav {
        top: 8px;
        width: calc(100% - 24px);
        min-height: 58px;
        align-items: center;
        gap: 12px;
        padding: 9px 12px 9px 16px;
      }

      .localnav strong {
        max-width: none;
        white-space: nowrap;
        font-size: 17px;
      }

      .mini-actions {
        gap: 7px;
      }

      .mini-actions .btn-pill {
        min-height: 34px;
        padding: 7px 13px;
      }

      .mini-actions .btn-pill:first-child {
        display: none;
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 22px;
        row-gap: 44px;
      }

      .about-hero {
        padding: 78px 20px 30px;
        text-align: left;
      }

      .about-hero .gradient-title {
        font-size: clamp(46px, 15vw, 68px);
      }

      .about-lead {
        margin-top: 22px;
        font-size: 20px;
      }

      .about-section {
        padding: 28px 20px 72px;
      }

      .about-card {
        border-radius: 26px;
        padding: 26px 20px;
      }

      .about-intro {
        padding-bottom: 34px;
      }

      .about-intro h2 {
        font-size: 42px;
      }

      .about-intro p {
        font-size: 17px;
      }

      .about-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 24px 0;
      }

      .about-row p {
        font-size: 18px;
      }

      .legal-card {
        padding: 28px 22px;
      }

      .legal-updated {
        margin-bottom: 26px;
      }

      .legal-content h2 {
        margin-top: 32px;
        font-size: 25px;
      }

      .legal-content p {
        font-size: 16px;
        line-height: 1.62;
      }

      .hero {
        min-height: 100svh;
        padding: var(--nav-height) 20px 32px;
      }

      .hero::after {
        height: 34vh;
      }

      .hero-inner {
        min-height: calc(100svh - var(--nav-height) - 32px);
      }

      .hero-media {
        top: 32px;
        right: auto;
        bottom: auto;
        left: 50%;
        width: min(580px, 112vw);
        min-height: 75vh;
        place-items: center;
        transform: translateX(-50%);
      }

      .hero-media-video {
        height: 75vh;
        max-height: 75vh;
        transform: translateY(4px);
      }

      .pause {
        right: 34px;
        top: 136px;
        z-index: 6;
        width: 40px;
        height: 40px;
        font-size: 16px;
      }

      .eyebrow {
        margin-bottom: 8px;
        font-size: 21px;
      }

      .hero-copy {
        bottom: 112px;
      }

      .gradient-title {
        font-size: clamp(38px, 13.2vw, 56px);
        line-height: .88;
      }

      .hero-subcopy {
        margin-top: 16px;
        font-size: 17px;
      }

      .hero-actions {
        right: auto;
        left: 0;
        bottom: 8px;
        width: 100%;
        min-height: 0;
        justify-content: space-between;
        gap: 12px;
        border-radius: 26px;
        padding: 14px 14px 14px 18px;
      }

      .hero-price {
        flex-basis: auto;
        white-space: normal;
        font-size: 16px;
      }

      .hero-price small {
        font-size: 13px;
      }

      .section-wrap {
        padding: 76px 20px;
      }

      .big-heading {
        font-size: clamp(40px, 12vw, 52px);
      }

      .lead {
        font-size: 17px;
      }

      .highlights {
        padding: 78px 0 56px;
      }

      .highlights .title {
        margin-bottom: 40px;
      }

      .highlights .big-heading {
        font-size: clamp(38px, 10vw, 48px);
      }

      .tech .big-heading.gradient-title {
        font-size: clamp(32px, 8.8vw, 38px);
        line-height: .95;
      }

      .swiper {
        padding-left: 20px;
      }

  .swiper-slide {
    width: 86vw;
    height: auto;
    aspect-ratio: 1000 / 667;
    border-radius: 24px;
    padding: 32px;
  }

      .slide-full .slide-bg {
        object-fit: contain;
      }

      .slide-title {
        font-size: 24px;
      }

      .dots {
        padding: 15px 18px;
        gap: 12px;
      }

      .dot.active {
        width: 40px;
      }

      .play {
        width: 54px;
        height: 54px;
      }

      .swiper-controls {
        bottom: 18px;
      }

      .design-card,
      .two-card,
      .compare-card {
        border-radius: 24px;
        padding: 32px 24px;
      }

      .design-card {
        display: block;
        height: min(720px, 78svh);
        min-height: 580px;
        padding: 0;
        border-radius: 24px;
        background: #000;
      }

      .design-nav {
        position: absolute;
        inset: 0;
        z-index: 6;
        display: none;
        pointer-events: none;
      }

      .feature-pills {
        position: absolute;
        right: 0;
        bottom: 18px;
        left: 0;
        z-index: 5;
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        align-items: center;
        padding: 6px 20px 10px;
        scroll-padding-inline: 20px;
        scroll-snap-type: x proximity;
        touch-action: pan-x;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }

      .feature-pills::-webkit-scrollbar {
        display: none;
      }

      .feature-pill {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
        min-height: 58px;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 30px;
        background: rgba(35, 35, 38, .92);
        color: #fff;
        padding: 14px 20px;
        white-space: nowrap;
        scroll-snap-align: center;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
      }

      .feature-pill:hover {
        background: rgba(48, 48, 51, .96);
        transform: none;
      }

      .design-stage {
        position: absolute;
        inset: 0;
        width: 100%;
        min-height: 0;
        border-radius: 24px;
        background-position: center;
        background-size: cover;
      }

      .design-stage::after {
        content: "";
        position: absolute;
        inset: 45% 0 0;
        z-index: 2;
        background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .14) 52%, rgba(0, 0, 0, .56));
        pointer-events: none;
      }

      .design-card:not(.has-selection) .design-stage {
        min-height: 0;
      }

      .design-img {
        display: none;
      }

      .design-close {
        top: 16px;
        right: 16px;
        width: 46px;
        height: 46px;
        background: rgba(35, 35, 38, .9);
        color: #fff;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
      }

      .design-card.has-selection .design-nav {
        display: block;
      }

      .design-card.has-selection .feature-pills {
        right: 62px;
        bottom: 20px;
        left: 62px;
        overflow: visible;
        padding: 0;
      }

      .design-card.has-selection .feature-pill:not(.is-active) {
        display: none;
      }

      .design-card.has-selection .feature-pill.is-active {
        display: block;
        width: 100%;
        min-height: 0;
        border-radius: 24px;
        background: rgba(35, 35, 38, .94);
        color: #fff;
        padding: 18px 20px;
        white-space: normal;
        outline: 0;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
      }

      .design-card.has-selection .feature-pill.is-active:focus-visible {
        outline: 2px solid #fff;
        outline-offset: 2px;
      }

      .design-card.has-selection .feature-pill.is-active .feature-icon {
        display: none;
      }

      .design-card.has-selection .feature-pill.is-active .feature-title {
        display: inline;
        font-size: 17px;
      }

      .design-card.has-selection .feature-pill.is-active .feature-copy {
        display: inline;
        margin: 0;
        color: #f5f5f7;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.42;
      }

      .design-card.has-selection .design-arrow {
        position: absolute;
        bottom: 72px;
        display: grid;
        width: 48px;
        height: 48px;
        background: rgba(35, 35, 38, .92);
        color: #fff;
        pointer-events: auto;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
      }

      .design-card.has-selection .design-arrow.prev {
        left: 8px;
      }

      .design-card.has-selection .design-arrow.prev::before {
        transform: rotate(-45deg);
      }

      .design-card.has-selection .design-arrow.next {
        right: 8px;
        outline: 0;
      }

      .design-card.has-selection .design-arrow.next::before {
        transform: rotate(135deg);
      }

      .number {
        font-size: 110px;
      }

      .compare-card .big-heading {
        font-size: clamp(34px, 11vw, 48px);
        line-height: 1;
        overflow-wrap: anywhere;
      }

      .compare-row {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 18px 0;
        font-size: 18px;
      }

      .compare-row span:first-child {
        font-size: 12px;
      }

      .final-cta {
        min-height: auto;
      }

      .buy-card {
        border-radius: 24px;
        padding: 24px 20px;
      }

      .buy-title {
        font-size: 28px;
      }

      .current-price {
        font-size: 42px;
      }

      .old-price {
        font-size: 22px;
      }

      .installments {
        font-size: 20px;
      }

      .buy-meta {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .meta-item {
        min-height: auto;
        padding: 22px 24px;
        font-size: 16px;
        line-height: 1.38;
      }

      .meta-item strong {
        margin-bottom: 8px;
        font-size: 20px;
      }
    }

    @media (max-width: 380px) {
      .localnav {
        gap: 8px;
        padding-left: 14px;
      }

      .localnav strong {
        font-size: 15px;
      }

      .mini-actions .btn-pill {
        padding: 7px 11px;
      }
    }
