:root {
  --navy: #1a285e;
  --navy-deep: #111c49;
  --blue: #346eb2;
  --cyan: #2fc1df;
  --orange: #f3a000;
  --orange-deep: #d98400;
  --ink: #1a285e;
  --muted: #5d6680;
  --line: #dfe3ee;
  --soft: #f7f8fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(26, 40, 94, 0.13);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", Avenir, Montserrat, Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 84px;
  padding: 0 3.5rem;
  border-bottom: 1px solid rgba(26, 40, 94, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(26, 40, 94, 0.05);
  backdrop-filter: blur(18px);
}

.company-logo {
  display: inline-flex;
  align-items: center;
  width: 205px;
}

.company-logo img {
  width: 100%;
  height: auto;
}

.header-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.2rem, 3vw, 2.6rem);
}

.header-navigation nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.header-navigation nav a {
  position: relative;
  padding: 0.6rem 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 650;
  white-space: nowrap;
}

.header-navigation nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  transition: transform 180ms ease;
}

.header-navigation nav a:hover::after,
.header-navigation nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(26, 40, 94, 0.18);
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(52, 110, 178, 0.24);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  min-height: calc(100vh - 84px);
  padding: clamp(4rem, 8vw, 7.5rem) max(3.5rem, calc((100vw - 1320px) / 2));
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f7f8fb 55%, #eff7fb 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.hero h1,
.difference-heading h2,
.benefits-heading h2 {
  margin: 0;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.6vw, 6rem);
  font-weight: 420;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--navy);
  font-weight: 780;
}

.hero-copy > p {
  max-width: 650px;
  margin: 2rem 0 2.2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.7;
}

.button--primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 15px 36px rgba(243, 160, 0, 0.28);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--orange-deep);
  box-shadow: 0 18px 42px rgba(217, 132, 0, 0.3);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 570px);
  justify-self: end;
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 0.84;
  overflow: hidden;
  border-radius: 46% 46% 18% 18% / 32% 32% 15% 15%;
  box-shadow: var(--shadow);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(26, 40, 94, 0.14));
}

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

.hero-orbit {
  position: absolute;
  z-index: -1;
  inset: -6% -7% 4% 3%;
  border: 1px solid rgba(47, 193, 223, 0.34);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.hero-dot-grid {
  position: absolute;
  z-index: -1;
  right: -6%;
  bottom: 8%;
  width: 145px;
  height: 145px;
  opacity: 0.65;
  background-image: radial-gradient(var(--orange) 1.8px, transparent 1.8px);
  background-size: 16px 16px;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-glow--one {
  top: -22%;
  right: 12%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(47, 193, 223, 0.23), rgba(47, 193, 223, 0));
}

.hero-glow--two {
  bottom: -35%;
  left: -8%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(243, 160, 0, 0.12), rgba(243, 160, 0, 0));
}

.difference-section {
  padding: clamp(5rem, 9vw, 9rem) max(3.5rem, calc((100vw - 1320px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 4% 6%, rgba(47, 193, 223, 0.14), transparent 24rem),
    var(--navy);
}

.difference-heading,
.benefits-heading {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}

.difference-heading h2,
.benefits-heading h2 {
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 380;
  line-height: 1;
}

.difference-heading strong,
.benefits-heading strong {
  display: block;
  font-weight: 780;
}

.difference-heading {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.difference-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: stretch;
}

.difference-visual {
  position: relative;
  min-height: 640px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2.2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
}

.difference-visual::after {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  width: 115px;
  height: 115px;
  content: "";
  opacity: 0.55;
  background-image: radial-gradient(var(--orange) 1.7px, transparent 1.7px);
  background-size: 14px 14px;
}

.difference-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 614px;
  object-fit: cover;
  border-radius: 1.45rem;
  box-shadow: 0 28px 55px rgba(5, 13, 49, 0.35);
}

.difference-orbit {
  position: absolute;
  z-index: 2;
  top: 7%;
  right: -8%;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(47, 193, 223, 0.48);
  border-radius: 50%;
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: rgba(255, 255, 255, 0.13);
}

.difference-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 1rem;
  align-items: start;
  min-height: 180px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--navy);
}

.difference-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.6;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--cyan);
  font-size: 1.1rem;
  font-weight: 900;
}

.benefits-section {
  padding: clamp(5rem, 9vw, 9rem) max(3.5rem, calc((100vw - 1320px) / 2));
  background: var(--soft);
}

.benefits-heading {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}

.benefits-visual {
  min-height: 720px;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow);
  background: var(--white);
}

.benefits-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-visual--poster {
  padding: 0.75rem;
}

.benefits-visual--poster img {
  object-fit: cover;
  object-position: center;
  border-radius: 1.4rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border: 1px solid rgba(26, 40, 94, 0.08);
  border-radius: 1.5rem;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(26, 40, 94, 0.06);
}

.benefit-card--accent {
  color: var(--white);
  background: var(--navy);
}

.benefit-card--wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.6rem;
  border-radius: 14px;
  color: var(--navy);
  background: #e1f9fd;
}

.benefit-card--accent .benefit-icon {
  color: var(--navy);
  background: var(--orange);
}

.benefit-card--wide .benefit-icon {
  margin-bottom: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.benefit-card h3 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  line-height: 1.2;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.benefit-card--accent p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 540px;
  place-items: center;
  padding: clamp(5rem, 9vw, 8rem) 2rem;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(17, 28, 73, 0.96), rgba(26, 40, 94, 0.98)),
    var(--navy);
}

.final-cta::before {
  position: absolute;
  z-index: -1;
  inset: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  content: "";
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 930px;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 6rem);
  font-weight: 380;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.final-cta h2 strong {
  display: block;
  font-weight: 780;
}

.final-cta p {
  max-width: 720px;
  margin: 2rem auto 2.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.final-cta-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(7px);
}

.final-cta-glow--one {
  top: -45%;
  right: -8%;
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(47, 193, 223, 0.28), rgba(47, 193, 223, 0));
}

.final-cta-glow--two {
  bottom: -60%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(243, 160, 0, 0.2), rgba(243, 160, 0, 0));
}

@media (max-width: 1120px) {
  .site-header {
    padding-inline: 2rem;
  }

  .company-logo {
    width: 180px;
  }

  .header-navigation {
    gap: 1rem;
  }

  .header-navigation nav {
    gap: 1rem;
  }

  .header-navigation nav a,
  .header-cta {
    font-size: 0.82rem;
  }

  .hero,
  .difference-section,
  .benefits-section,
  .final-cta {
    padding-inline: 2.5rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 3rem;
  }

  .difference-showcase,
  .benefits-layout {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .company-logo {
    width: 185px;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .header-navigation {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 1.4rem 2rem 2rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 34px rgba(26, 40, 94, 0.12);
  }

  .header-navigation.is-open {
    display: flex;
    flex-direction: column;
  }

  .header-navigation nav {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .header-navigation nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .header-cta {
    margin-top: 0.8rem;
    font-size: 0.95rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 5rem;
  }

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

  .hero-visual {
    width: min(100%, 620px);
    justify-self: center;
  }

  .hero-image-frame {
    aspect-ratio: 1.1;
    border-radius: 2rem;
  }

  .difference-showcase,
  .benefits-layout {
    grid-template-columns: 1fr;
  }

  .difference-visual {
    min-height: 500px;
  }

  .difference-visual img {
    min-height: 474px;
  }

  .benefits-visual {
    min-height: 0;
    max-height: 760px;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 1.1rem;
  }

  .company-logo {
    width: 158px;
  }

  .hero,
  .difference-section,
  .benefits-section,
  .final-cta {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .hero {
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .button {
    width: 100%;
  }

  .hero-image-frame {
    aspect-ratio: 0.94;
  }

  .difference-heading,
  .benefits-heading {
    flex-direction: column;
  }

  .difference-list,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .difference-visual {
    min-height: 390px;
    padding: 0.75rem;
  }

  .difference-visual img {
    min-height: 364px;
  }

  .difference-orbit {
    right: -3%;
    width: 105px;
    height: 105px;
  }

  .difference-list li {
    min-height: auto;
  }

  .benefits-visual {
    aspect-ratio: 4 / 5;
  }

  .benefit-card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .benefit-card--wide .benefit-icon {
    margin-bottom: 1.6rem;
  }

  .final-cta {
    min-height: 510px;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .final-cta::before {
    inset: 1rem;
    border-radius: 1.4rem;
  }
}

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

/* Header aligned to imagenesdigitales.com.do */
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  min-height: 74px;
  padding: 8px clamp(15px, 5vw, 80px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  font-family: Montserrat, sans-serif;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  border-color: #c3c3c3;
  background: #ffffff;
  box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
}

.company-logo {
  position: relative;
  z-index: 3;
  display: inline-flex;
  width: auto;
  height: 58px;
  align-items: flex-start;
  padding: 6px 0;
}

.company-logo img {
  width: auto;
  height: 50px;
}

.company-logo .logo-color {
  display: none;
}

.site-header.is-scrolled .logo-white,
.site-header.menu-open .logo-white {
  display: none;
}

.site-header.is-scrolled .logo-color,
.site-header.menu-open .logo-color {
  display: block;
}

.header-navigation {
  position: absolute;
  inset: 0 clamp(15px, 5vw, 80px);
  display: block;
  pointer-events: none;
}

.header-navigation nav {
  position: absolute;
  top: 20px;
  left: 50%;
  display: flex;
  gap: clamp(0.65rem, 1.5vw, 1.5rem);
  align-items: center;
  transform: translateX(-50%);
  pointer-events: auto;
}

.header-navigation nav a {
  padding: 5px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-navigation nav a::after {
  display: none;
}

.header-navigation nav a:hover,
.header-navigation nav a:focus-visible,
.site-header.is-scrolled .header-navigation nav a:hover,
.site-header.is-scrolled .header-navigation nav a:focus-visible {
  color: #016fcc;
}

.site-header.is-scrolled .header-navigation nav a {
  color: #000000;
}

.header-cta {
  position: absolute;
  top: 8px;
  right: 0;
  min-height: 34px;
  padding: 7px 34px;
  border-radius: 22px;
  color: #ffffff;
  background: #016fcc;
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 600;
  pointer-events: auto;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: #ffffff;
  background: #0466b8;
  box-shadow: none;
  transform: none;
}

.hero {
  min-height: 100vh;
  padding-top: clamp(8rem, 12vw, 11rem);
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 20%, rgba(47, 193, 223, 0.2), transparent 28rem),
    linear-gradient(132deg, #0e3183 0%, #1a285e 54%, #111c49 100%);
}

.hero h1,
.hero h1 span {
  color: #ffffff;
}

.hero-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-glow--one {
  background: radial-gradient(circle, rgba(47, 193, 223, 0.32), rgba(47, 193, 223, 0));
}

.hero-glow--two {
  background: radial-gradient(circle, rgba(243, 160, 0, 0.17), rgba(243, 160, 0, 0));
}

.hero-orbit {
  border-color: rgba(255, 255, 255, 0.3);
}

.difference-heading,
.benefits-heading {
  display: block;
}

.difference-showcase {
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.difference-visual {
  min-height: 0;
  aspect-ratio: 3 / 2;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 1.8rem;
  background: transparent;
}

.difference-visual::after {
  right: -2.2rem;
  bottom: -2.2rem;
}

.difference-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 1.8rem;
}

.difference-orbit {
  top: -2.5rem;
  right: -2.5rem;
  width: 140px;
  height: 140px;
}

.difference-list {
  display: block;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.difference-list li {
  grid-template-columns: 52px 1fr;
  gap: 1.15rem;
  min-height: 0;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  transition: padding 180ms ease, background 180ms ease;
}

.difference-list li:hover {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  background: rgba(255, 255, 255, 0.045);
}

.difference-list p {
  align-self: center;
  font-size: 1.02rem;
}

.difference-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 193, 223, 0.38);
  border-radius: 14px;
  color: var(--navy);
  background: var(--cyan);
}

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

.benefits-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(47, 193, 223, 0.12), transparent 25rem),
    var(--soft);
}

.benefits-grid--full {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.benefits-grid--full .benefit-card {
  grid-column: span 6;
  min-height: 285px;
}

.benefits-grid--full .benefit-card:nth-child(3) {
  grid-column: span 5;
}

.benefits-grid--full .benefit-card:nth-child(4) {
  grid-column: span 7;
}

.benefits-grid--full .benefit-card--wide {
  display: block;
  grid-column: 2 / 12;
}

.benefits-grid--full .benefit-card--wide .benefit-icon {
  margin-bottom: 1.6rem;
}

.benefit-card {
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(47, 193, 223, 0.22);
  border-radius: 50%;
  content: "";
}

.final-cta h2 strong {
  color: var(--cyan);
}

@media (min-width: 1600px) {
  .site-header {
    padding-right: max(20px, calc((100vw - 1600px) / 2 + 20px));
    padding-left: max(20px, calc((100vw - 1600px) / 2 + 20px));
  }

  .header-navigation {
    right: max(20px, calc((100vw - 1600px) / 2 + 20px));
    left: max(20px, calc((100vw - 1600px) / 2 + 20px));
  }

  .company-logo img {
    height: 62px;
  }

  .company-logo {
    height: 68px;
  }

  .site-header {
    min-height: 82px;
  }

  .header-navigation nav {
    top: 26px;
  }

  .header-cta {
    top: 13px;
    font-size: 1rem;
  }
}

@media (max-width: 1200px) {
  .site-header {
    padding-right: 15px;
    padding-left: 15px;
  }

  .header-navigation {
    right: 15px;
    left: 15px;
  }

  .header-navigation nav {
    gap: 0.6rem;
  }

  .header-navigation nav a {
    font-size: 0.82rem;
  }

  .header-cta {
    padding-right: 24px;
    padding-left: 24px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .site-header {
    min-height: 74px;
  }

  .company-logo {
    height: 58px;
  }

  .company-logo img {
    height: 50px;
  }

  .menu-toggle {
    position: absolute;
    z-index: 4;
    top: 14px;
    right: 15px;
    display: block;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    border-radius: 0;
    background: #ffffff;
  }

  .site-header.is-scrolled .menu-toggle span,
  .site-header.menu-open .menu-toggle span {
    background: #016fcc;
  }

  .header-navigation {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    padding: 0.8rem 1rem 1.25rem;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    background: #ffffff;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    pointer-events: auto;
  }

  .header-navigation.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .header-navigation nav {
    position: static;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    transform: none;
  }

  .header-navigation nav a,
  .site-header.is-scrolled .header-navigation nav a {
    padding: 12px 5px;
    border-bottom: 1px solid #eeeeee;
    color: #000000;
    font-size: 0.94rem;
  }

  .header-cta {
    position: static;
    align-self: flex-start;
    min-height: 38px;
    margin-top: 0.9rem;
    padding: 7px 26px;
    font-size: 0.9rem;
  }

  .site-header.menu-open {
    position: fixed;
    border-color: #c3c3c3;
    background: #ffffff;
    box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
  }

  .hero {
    padding-top: 9rem;
  }

  .difference-showcase {
    grid-template-columns: 1fr;
  }

  .difference-visual {
    width: 100%;
    max-width: 780px;
    justify-self: center;
  }

  .benefits-grid--full .benefit-card,
  .benefits-grid--full .benefit-card:nth-child(3),
  .benefits-grid--full .benefit-card:nth-child(4) {
    grid-column: span 6;
  }

  .benefits-grid--full .benefit-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .header-navigation nav a,
  .site-header.is-scrolled .header-navigation nav a {
    font-size: 0.88rem;
  }

  .difference-orbit {
    top: -1.25rem;
    right: -0.25rem;
    width: 92px;
    height: 92px;
  }

  .difference-visual::after {
    right: -0.5rem;
    bottom: -1.3rem;
  }

  .difference-list li {
    grid-template-columns: 46px 1fr;
    gap: 0.9rem;
  }

  .difference-icon {
    width: 42px;
    height: 42px;
  }

  .benefits-grid--full .benefit-card,
  .benefits-grid--full .benefit-card:nth-child(3),
  .benefits-grid--full .benefit-card:nth-child(4),
  .benefits-grid--full .benefit-card--wide {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

/* Refinements requested after the first branded-header pass */
@media (min-width: 1025px) {
  .header-cta {
    top: 50%;
    transform: translateY(-50%);
  }

  .header-cta:hover,
  .header-cta:focus-visible {
    transform: translateY(-50%);
  }
}

.difference-section {
  color: var(--navy);
  background:
    radial-gradient(circle at 5% 10%, rgba(47, 193, 223, 0.1), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.difference-visual {
  aspect-ratio: 6 / 5;
  overflow: hidden;
  background: #f7f8fb;
}

.difference-visual::after,
.difference-orbit {
  display: none;
}

.difference-visual img {
  min-height: 0;
  object-fit: cover;
  border-radius: 1.8rem;
  box-shadow: 0 24px 60px rgba(26, 40, 94, 0.11);
}

.difference-list {
  border-top-color: rgba(26, 40, 94, 0.14);
}

.difference-list li {
  border-bottom-color: rgba(26, 40, 94, 0.14);
}

.difference-list li:hover {
  background: rgba(47, 193, 223, 0.07);
}

.difference-list p {
  color: var(--muted);
}

.benefits-grid--full {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.benefits-grid--full .benefit-card,
.benefits-grid--full .benefit-card:nth-child(3),
.benefits-grid--full .benefit-card:nth-child(4),
.benefits-grid--full .benefit-card--wide {
  display: block;
  flex: 1 1 0;
  grid-column: auto;
  min-width: 0;
  min-height: 0;
}

.benefits-grid--full .benefit-card--wide .benefit-icon {
  margin-bottom: 1.6rem;
}

@media (max-width: 1280px) and (min-width: 801px) {
  .benefits-grid--full .benefit-card,
  .benefits-grid--full .benefit-card:nth-child(3),
  .benefits-grid--full .benefit-card:nth-child(4),
  .benefits-grid--full .benefit-card--wide {
    flex: 0 1 calc((100% - 2.5rem) / 3);
  }
}

@media (max-width: 800px) and (min-width: 641px) {
  .benefits-grid--full .benefit-card,
  .benefits-grid--full .benefit-card:nth-child(3),
  .benefits-grid--full .benefit-card:nth-child(4),
  .benefits-grid--full .benefit-card--wide {
    flex: 0 1 calc((100% - 1.25rem) / 2);
  }
}

/* Doctor-focused content */
.section-eyebrow,
.hero-copy > .hero-eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-copy > .hero-eyebrow {
  color: var(--cyan);
}

.practice-section,
.cases-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(5rem, 9vw, 9rem) max(3.5rem, calc((100vw - 1320px) / 2));
}

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

.practice-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.practice-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(17, 28, 73, 0.22));
}

.practice-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.practice-badge {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 320px;
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  color: var(--white);
  background: rgba(17, 28, 73, 0.9);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.practice-copy h2,
.cases-copy h2 {
  margin: 0;
  font-size: clamp(2.65rem, 4.7vw, 5.2rem);
  font-weight: 380;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.practice-copy h2 strong,
.cases-copy h2 strong {
  display: block;
  font-weight: 780;
}

.practice-copy > p:not(.section-eyebrow),
.cases-copy > p:not(.section-eyebrow) {
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.practice-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(26, 40, 94, 0.14);
}

.practice-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 40, 94, 0.14);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.practice-list span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--cyan);
  font-size: 0.9rem;
  font-weight: 900;
}

.difference-section {
  background:
    radial-gradient(circle at 5% 10%, rgba(47, 193, 223, 0.13), transparent 26rem),
    linear-gradient(180deg, #f3f7fb 0%, #f8fbfd 100%);
}

.cases-section {
  grid-template-columns: minmax(300px, 0.76fr) minmax(540px, 1.24fr);
  background: var(--white);
}

.cases-copy h2 strong {
  color: var(--orange);
}

.cases-copy > .cases-note {
  color: var(--navy);
  font-weight: 800;
}

.cases-visual {
  position: relative;
  aspect-ratio: 1.37;
  overflow: hidden;
  border-radius: 2rem;
  background: #f5f6f8;
  box-shadow: 0 24px 70px rgba(26, 40, 94, 0.12);
}

.cases-visual img {
  width: 100%;
  height: auto;
  max-width: none;
  transform: translateY(-35.6%);
}

@media (max-width: 1120px) {
  .practice-section,
  .cases-section {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }

  .cases-section {
    grid-template-columns: minmax(280px, 0.8fr) minmax(460px, 1.2fr);
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .practice-section,
  .cases-section {
    grid-template-columns: 1fr;
  }

  .practice-copy {
    order: -1;
  }

  .practice-visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .practice-visual img {
    min-height: 0;
  }

  .cases-visual {
    width: 100%;
    max-width: 780px;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .practice-section,
  .cases-section {
    gap: 2.5rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .practice-copy h2,
  .cases-copy h2 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .practice-visual {
    aspect-ratio: 0.95;
    border-radius: 1.4rem;
  }

  .practice-badge {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.96rem;
  }

  .cases-visual {
    border-radius: 1.4rem;
  }
}

@media (max-width: 640px) {
  .difference-visual {
    aspect-ratio: 6 / 5;
    min-height: 0;
    padding: 0;
  }

  .benefits-grid--full .benefit-card,
  .benefits-grid--full .benefit-card:nth-child(3),
  .benefits-grid--full .benefit-card:nth-child(4),
  .benefits-grid--full .benefit-card--wide {
    flex: 0 1 100%;
  }
}

/* Real-photo compositions */
.hero-composition {
  position: relative;
  min-height: 660px;
  isolation: isolate;
}

.hero-image-frame--clinical {
  position: absolute;
  inset: 4% 0 9% 11%;
  aspect-ratio: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2.5rem;
  box-shadow: 0 32px 80px rgba(5, 13, 49, 0.34);
}

.hero-image-frame--clinical::after {
  background:
    linear-gradient(180deg, rgba(17, 28, 73, 0.04), rgba(17, 28, 73, 0.42)),
    linear-gradient(90deg, rgba(14, 49, 131, 0.38), transparent 52%);
}

.hero-image-frame--clinical img {
  transform: scale(1.045);
  filter: blur(2.2px) saturate(0.88) brightness(0.9);
  object-position: center;
}

.hero-aligner-card {
  position: absolute;
  z-index: 4;
  bottom: 1%;
  left: 0;
  width: min(82%, 470px);
  height: 36%;
  padding: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.8rem;
  transform: rotate(-2.5deg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(5, 13, 49, 0.38);
  backdrop-filter: blur(16px);
}

.hero-aligner-card::after {
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgba(47, 193, 223, 0.28);
  border-radius: 1.25rem;
  content: "";
  pointer-events: none;
}

.hero-aligner-card img {
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  object-position: center 57%;
}

.hero-composition .hero-orbit {
  z-index: 1;
  inset: -1% -7% 3% 4%;
}

.hero-composition .hero-dot-grid {
  z-index: 5;
  right: -8%;
  bottom: 17%;
}

.practice-collage {
  min-height: 650px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.practice-collage::after {
  z-index: -2;
  inset: 8% 1% 1% 8%;
  border-radius: 2.5rem;
  background:
    radial-gradient(circle at 85% 16%, rgba(47, 193, 223, 0.24), transparent 15rem),
    linear-gradient(145deg, #eef6fb, #f8fafc);
}

.practice-collage::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 1rem;
  width: 145px;
  height: 145px;
  content: "";
  opacity: 0.62;
  background-image: radial-gradient(var(--orange) 1.7px, transparent 1.7px);
  background-size: 14px 14px;
}

.practice-photo {
  position: absolute;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(26, 40, 94, 0.16);
}

.practice-photo--main {
  z-index: 1;
  inset: 3rem 4.5rem 5.5rem 0;
  border-radius: 2rem;
}

.practice-photo--detail {
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 43%;
  padding: 0.6rem;
  border: 1px solid rgba(26, 40, 94, 0.08);
  border-radius: 1.7rem;
  transform: rotate(2deg);
}

.practice-photo img,
.practice-visual .practice-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: inherit;
  object-fit: cover;
}

.practice-photo--main img {
  object-position: 51% center;
}

.practice-photo--detail img {
  border-radius: 1.15rem;
  object-position: center;
}

.practice-collage .practice-badge {
  z-index: 4;
  right: auto;
  bottom: 6.8rem;
  left: 1.5rem;
  max-width: 255px;
}

@media (min-width: 901px) {
  .hero-copy {
    margin-right: -2.75rem;
  }
}

@media (max-width: 900px) {
  .hero-composition {
    min-height: 590px;
  }

  .hero-image-frame--clinical {
    aspect-ratio: auto;
  }

  .practice-collage {
    min-height: 620px;
    aspect-ratio: auto;
  }
}

@media (max-width: 640px) {
  .hero-composition {
    min-height: 500px;
  }

  .hero-image-frame--clinical {
    inset: 2% 0 12% 7%;
    aspect-ratio: auto;
    border-radius: 1.7rem;
  }

  .hero-aligner-card {
    width: 86%;
    height: 34%;
    border-radius: 1.3rem;
  }

  .hero-aligner-card img,
  .hero-aligner-card::after {
    border-radius: 0.9rem;
  }

  .hero-composition .hero-dot-grid {
    right: -12%;
    bottom: 19%;
    width: 105px;
    height: 105px;
  }

  .practice-collage {
    min-height: 525px;
    aspect-ratio: auto;
  }

  .practice-photo--main {
    inset: 2.25rem 1.8rem 5.5rem 0;
    border-radius: 1.5rem;
  }

  .practice-photo--detail {
    width: 65%;
    height: 40%;
    padding: 0.4rem;
    border-radius: 1.25rem;
  }

  .practice-collage .practice-badge {
    right: auto;
    bottom: 5.2rem;
    left: 0.75rem;
    max-width: 215px;
    padding: 0.9rem 1rem;
  }

}
