@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Urbanist:wght@400;500;600;700;800&display=swap");

:root {
  --navy-950: #031a38;
  --navy-900: #05254d;
  --navy-800: #07366f;
  --blue-700: #075eb8;
  --blue-600: #0876d1;
  --cyan-500: #28b4e8;
  --cyan-300: #83d9f5;
  --gold-500: #d9ad55;
  --gold-300: #f2d391;
  --ink: #102643;
  --text: #516276;
  --muted: #718095;
  --line: #dce7f2;
  --ice: #eff7ff;
  --cloud: #f8fbff;
  --white: #ffffff;
  --success: #087f63;
  --danger: #b13f4a;
  --shadow-sm: 0 10px 30px rgba(5, 37, 77, 0.08);
  --shadow-md: 0 22px 60px rgba(5, 37, 77, 0.14);
  --shadow-lg: 0 30px 90px rgba(5, 37, 77, 0.2);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1220px;
  --header-height: 88px;
  --transition: 260ms cubic-bezier(.2, .7, .2, 1);
  --motion-ease: cubic-bezier(.16, 1, .3, 1);
  --fade-ease: cubic-bezier(.25, .1, .25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

.ui-icon {
  width: 1.08em;
  height: 1.08em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: "Urbanist", Helvetica, Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  margin-bottom: 22px;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  margin-bottom: 12px;
}

h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

::selection {
  color: var(--white);
  background: var(--blue-600);
}

:focus-visible {
  outline: 3px solid var(--cyan-500);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(calc(100% - 40px), 890px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-sm {
  padding: 74px 0;
}

.section-ice {
  background: var(--ice);
}

.section-cloud {
  background: var(--cloud);
}

.section-dark {
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-950);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  max-width: 650px;
  font-size: 1.08rem;
}

.section-heading.center p {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 25px;
  height: 2px;
  content: "";
  background: var(--gold-500);
}

.section-dark .eyebrow,
.hero .eyebrow,
.cta-panel .eyebrow {
  color: var(--cyan-300);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.8;
}

.text-blue {
  color: var(--blue-700);
}

.text-white {
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-700);
  border: 1px solid var(--blue-700);
  border-radius: 11px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  transition: color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  isolation: isolate;
}

.btn::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--navy-950);
  transform: translateX(-103%);
  transition: transform var(--transition);
}

.btn:hover {
  color: var(--white);
  border-color: var(--navy-950);
  box-shadow: 0 12px 30px rgba(5, 37, 77, 0.22);
  transform: translateY(-2px);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-light {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
}

.btn-light::before {
  background: var(--gold-500);
}

.btn-outline {
  color: var(--navy-900);
  background: transparent;
  border-color: rgba(5, 37, 77, 0.2);
}

.btn-outline::before {
  background: var(--navy-900);
}

.btn-outline:hover {
  border-color: var(--navy-900);
}

.btn-sm {
  min-height: 44px;
  padding: 10px 18px;
}

.btn-arrow {
  font-size: 1.2em;
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Header */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2100;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--cyan-500), var(--blue-600));
  box-shadow: 0 0 14px rgba(40, 180, 232, 0.65);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.topbar {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
  font-size: 0.78rem;
}

.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-location,
.topbar-contact {
  display: flex;
  align-items: center;
}

.topbar-location {
  min-width: 0;
  max-width: 52%;
  overflow: hidden;
  white-space: nowrap;
}

.topbar-location > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-contact {
  gap: 24px;
  margin-left: auto;
}

.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.topbar-contact strong {
  color: var(--white);
  font-weight: 800;
}

.topbar a {
  transition: color var(--transition);
}

.topbar a:hover {
  color: var(--white);
}

.topbar-icon {
  color: var(--cyan-300);
  margin-right: 6px;
}

.social-link {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid transparent;
  transition: height var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  height: 76px;
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(5, 37, 77, 0.08);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  width: 190px;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 172px;
  max-height: 68px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  color: var(--ink);
  border-radius: 8px;
  font-size: 0.89rem;
  font-weight: 700;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-700);
  background: var(--ice);
}

.nav-link.active::after {
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 2px;
  content: "";
  background: var(--gold-500);
}

.nav-caret {
  font-size: 0.75rem;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 230px;
  margin: 0;
  padding: 10px;
  list-style: none;
  visibility: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.dropdown-open .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 8px;
  font-size: 0.87rem;
  font-weight: 650;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  color: var(--blue-700);
  background: var(--ice);
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.header-call {
  display: none;
  min-width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--blue-700);
  background: var(--ice);
  border: 1px solid rgba(8, 118, 209, 0.12);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 850;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.header-call:hover {
  color: var(--white);
  background: var(--blue-700);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--ice);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

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

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

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

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

.mobile-panel {
  position: fixed;
  inset: calc(38px + var(--header-height)) 0 0;
  z-index: 999;
  padding: 24px 20px 40px;
  visibility: hidden;
  background: var(--white);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  overflow-y: auto;
}

.mobile-panel.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.mobile-nav a.active {
  color: var(--blue-700);
}

.mobile-contact {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 20px;
  background: var(--ice);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

/* Home hero */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #eaf5ff;
  background-image: linear-gradient(90deg, rgba(3, 26, 56, 0.98) 0%, rgba(5, 37, 77, 0.9) 37%, rgba(5, 37, 77, 0.25) 68%, rgba(5, 37, 77, 0.04) 100%), url("../images/orion/hero.png");
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(circle at 10% 80%, rgba(40, 180, 232, 0.24), transparent 32%), linear-gradient(120deg, transparent 50%, rgba(255, 255, 255, 0.08));
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.04), 0 0 0 140px rgba(255, 255, 255, 0.025);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(680px, 60%);
  padding: 110px 0 140px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.25rem, 6.4vw, 6.15rem);
  line-height: 0.99;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  margin-left: -7px;
  color: var(--navy-950);
  background: var(--cyan-300);
  border: 2px solid var(--navy-900);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.trust-avatars span:first-child {
  margin-left: 0;
  background: var(--gold-300);
}

.hero-ribbon-wrap {
  position: relative;
  z-index: 10;
  margin-top: -63px;
}

.hero-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-950);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.ribbon-item {
  display: flex;
  min-height: 126px;
  align-items: center;
  gap: 16px;
  padding: 25px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ribbon-item:last-child {
  border-right: 0;
}

.ribbon-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-950);
  background: var(--cyan-300);
  border-radius: 14px;
  font-size: 1.25rem;
  font-weight: 900;
}

.ribbon-item:nth-child(2) .ribbon-icon {
  background: var(--gold-300);
}

.ribbon-item h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.04rem;
  letter-spacing: -0.01em;
}

.ribbon-item p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
}

/* Shared grids and cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 285px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  content: "";
  background: var(--ice);
  border-radius: 50%;
  transition: background var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: rgba(8, 118, 209, 0.32);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.service-card:hover::before {
  background: rgba(40, 180, 232, 0.14);
  transform: scale(1.12);
}

.service-icon {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin-bottom: 26px;
  background: var(--ice);
  border-radius: 18px;
}

.service-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.34rem;
}

.service-card p {
  margin-bottom: 22px;
  font-size: 0.93rem;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: 0.86rem;
  font-weight: 800;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(5px);
}

.about-visual {
  position: relative;
  min-height: 590px;
}

.about-image-main {
  position: absolute;
  inset: 0 70px 0 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-small {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: 46%;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about-image-small img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: 36px;
  right: 7px;
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  color: var(--white);
  background: var(--blue-700);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.experience-badge strong {
  font-size: 1.9rem;
  line-height: 1;
}

.experience-badge span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 15px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 36px;
  color: var(--ink);
  font-weight: 650;
}

.feature-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: var(--white);
  content: "✓";
  background: var(--blue-700);
  border-radius: 50%;
  font-size: 0.73rem;
}

.stats-band {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}

.stats-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("../images/orion/pattern.png");
  background-position: center;
  background-size: cover;
  opacity: 0.045;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 48px 25px;
  color: rgba(255, 255, 255, 0.68);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-family: "Urbanist", Helvetica, Arial, sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat span {
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.why-card {
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.why-number {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
}

.image-frame {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-frame > img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.image-frame-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(3, 26, 56, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.image-frame-overlay h3 {
  color: var(--white);
}

/* Before/after */
.comparison {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  --position: 50%;
}

.comparison img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-after {
  clip-path: inset(0 0 0 var(--position));
}

.comparison-label {
  position: absolute;
  top: 18px;
  z-index: 3;
  padding: 6px 11px;
  color: var(--white);
  background: rgba(3, 26, 56, 0.78);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.label-before {
  left: 18px;
}

.label-after {
  right: 18px;
}

.comparison-slider {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.comparison-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 3;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: var(--position);
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy-950);
  content: "↔";
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(3, 26, 56, 0.28);
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-weight: 900;
}

/* Testimonials */
.testimonial-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  overflow: hidden;
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.testimonial-art {
  position: relative;
  min-height: 550px;
  overflow: hidden;
}

.testimonial-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--navy-950));
}

.testimonial-content {
  position: relative;
  display: flex;
  min-height: 550px;
  flex-direction: column;
  justify-content: center;
  padding: 60px 70px 60px 38px;
  color: rgba(255, 255, 255, 0.76);
}

.quote-mark {
  color: var(--cyan-500);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.6;
}

.testimonial-track {
  display: grid;
}

.testimonial-slide {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  transform: translateX(25px);
  transition: opacity 420ms ease, transform 420ms ease, visibility 420ms ease;
}

.testimonial-slide.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.testimonial-slide blockquote {
  margin: 20px 0 28px;
  color: var(--white);
  font-family: "Urbanist", Helvetica, Arial, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
}

.testimonial-author span {
  color: var(--cyan-300);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
}

.slider-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.slider-button:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.slider-dots {
  display: flex;
  gap: 7px;
  margin-left: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.32);
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  transition: width var(--transition), background var(--transition);
}

.slider-dot.active {
  width: 25px;
  background: var(--cyan-300);
}

/* CTA */
.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 380px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue-700);
  border-radius: var(--radius-lg);
}

.cta-copy {
  position: relative;
  z-index: 2;
  padding: 70px;
}

.cta-copy h2 {
  color: var(--white);
}

.cta-image {
  position: relative;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-image::before {
  display: none;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 13px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 750;
}

.faq-plus {
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 12px;
  left: 5px;
  width: 15px;
  height: 2px;
  content: "";
  background: var(--blue-700);
  transition: transform var(--transition);
}

.faq-plus::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-plus::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 24px 22px;
  margin: 0;
  font-size: 0.94rem;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

/* Interior page heroes */
.page-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy-900);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(90deg, rgba(3, 26, 56, 0.99), rgba(3, 26, 56, 0.8) 58%, rgba(3, 26, 56, 0.42)), url("../images/dentia/dental-treatment.webp");
  background-position: center;
  background-size: cover;
}

.page-hero::after {
  position: absolute;
  right: -85px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.035), 0 0 0 130px rgba(255, 255, 255, 0.02);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 75px 0;
}

.page-hero h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5rem);
}

.btn-outline.text-white {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--cyan-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--white);
}

.page-intro {
  max-width: 870px;
  margin-inline: auto;
  text-align: center;
}

.page-intro p {
  font-size: 1.12rem;
}

/* Services page */
.service-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.catalog-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.catalog-card:hover {
  border-color: rgba(8, 118, 209, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.catalog-number {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: var(--blue-700);
  background: var(--ice);
  border-radius: 19px;
  font-family: "Urbanist", Helvetica, Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.catalog-card h3 {
  font-size: 1.22rem;
}

.catalog-card p {
  margin: 0;
  font-size: 0.9rem;
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--navy-950);
  border-radius: var(--radius-lg);
}

.service-feature-image {
  min-height: 560px;
}

.service-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px;
  color: rgba(255, 255, 255, 0.72);
}

.service-feature-copy h2,
.service-feature-copy h3 {
  color: var(--white);
}

.service-feature-copy .feature-list li {
  color: rgba(255, 255, 255, 0.88);
}

/* About, values, team */
.story-card {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.story-card.blue {
  color: rgba(255, 255, 255, 0.75);
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.story-card.blue h3,
.story-card.blue h4 {
  color: var(--white);
}

.doctor-feature {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  background: var(--ice);
  border-radius: var(--radius-lg);
}

.doctor-portrait {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(145deg, #dff2ff, #b5dcf6);
}

.doctor-portrait::after {
  position: absolute;
  right: -110px;
  bottom: -160px;
  width: 400px;
  height: 400px;
  content: "";
  border: 50px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.doctor-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.doctor-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
}

.credential-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 30px;
}

.credential-pill {
  padding: 7px 11px;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

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

.team-count {
  padding: 30px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
}

.team-count strong {
  display: block;
  color: var(--blue-700);
  font-size: 2.15rem;
  line-height: 1;
}

.team-count span {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--ice);
  border: 0;
  border-radius: 16px;
  cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  position: absolute;
  inset: auto 15px 15px auto;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  content: "+";
  background: rgba(3, 26, 56, 0.78);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.value-card {
  position: relative;
  min-height: 255px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-card::after {
  position: absolute;
  right: -25px;
  bottom: -40px;
  color: rgba(8, 118, 209, 0.06);
  content: attr(data-letter);
  font-family: "Urbanist", Helvetica, Arial, sans-serif;
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
}

.value-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 25px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 13px;
  font-weight: 900;
}

.mission-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.mission-panel {
  padding: 55px;
  background: var(--white);
}

.mission-panel:nth-child(2) {
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy-900);
}

.mission-panel:nth-child(2) h2,
.mission-panel:nth-child(2) h3 {
  color: var(--white);
}

/* Community */
.scholarship-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.scholarship-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.scholarship-card .number {
  display: inline-grid;
  width: 47px;
  height: 47px;
  place-items: center;
  margin-bottom: 23px;
  color: var(--navy-950);
  background: var(--gold-300);
  border-radius: 13px;
  font-weight: 900;
}

.community-programs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.community-programs span {
  padding: 8px 13px;
  color: var(--blue-700);
  background: var(--ice);
  border: 1px solid rgba(8, 118, 209, 0.12);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 800;
}

.community-image {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-parallax] {
  overflow: hidden;
}

[data-parallax] > img {
  transform: scale(1.055) translate3d(0, var(--parallax-y, 0), 0);
  transform-origin: center;
  transition: transform 90ms linear;
  will-change: transform;
}

.image-frame[data-parallax]:hover > img,
.community-image[data-parallax]:hover > img {
  transform: scale(1.085) translate3d(0, var(--parallax-y, 0), 0);
}

/* Forms */
.form-shell {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(8, 118, 209, 0.1);
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: var(--danger);
}

.field-help {
  font-size: 0.75rem;
}

.form-actions {
  display: flex;
  margin-top: 22px;
  align-items: center;
  gap: 16px;
}

.form-status {
  min-height: 24px;
  margin-top: 15px;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.form-note {
  margin-top: 18px;
  padding: 14px 16px;
  color: var(--muted);
  background: var(--ice);
  border-radius: 10px;
  font-size: 0.79rem;
}

.contact-cards {
  display: grid;
  gap: 15px;
}

.contact-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 23px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.contact-card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 900;
}

.contact-card p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-map {
  min-height: 480px;
  overflow: hidden;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

/* Footer */
.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.62);
  background: var(--navy-950);
  overflow: hidden;
}

.site-footer::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025), 0 0 0 120px rgba(255, 255, 255, 0.015);
}

.newsletter {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.newsletter h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.newsletter p {
  margin: 0;
}

.footer-cta-actions {
  justify-content: flex-end;
}

.newsletter-form {
  display: flex;
  padding: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
}

.newsletter-form input {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 1.1fr;
  gap: 42px;
  padding: 70px 0 55px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 22px;
  padding: 8px;
  background: var(--white);
  border-radius: 10px;
}

.footer-about p {
  max-width: 325px;
}

.footer-title {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-contact a {
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
}

.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}

.footer-social .social-link {
  width: 38px;
  height: 38px;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

/* Lightbox and floating UI */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 30px;
  background: rgba(3, 16, 34, 0.94);
  opacity: 0;
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.open {
  visibility: visible;
  opacity: 1;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  width: 50px;
  height: 38px;
  visibility: hidden;
  place-items: center;
  color: var(--white);
  background: var(--blue-700);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition), background var(--transition);
  font-size: 0.75rem;
  font-weight: 700;
}

.back-to-top.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy-950);
}

/* Animation */
.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 46px, 0);
  transition: opacity 1200ms var(--fade-ease), transform 1050ms var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.motion-staging [data-reveal] {
  transition: none !important;
}

.motion-ready [data-reveal="fade"] {
  transform: none;
}

.motion-ready [data-reveal="rise"] {
  transform: translate3d(0, 32px, 0) scale(0.985);
}

.motion-ready [data-reveal="left"] {
  transform: translate3d(-48px, 12px, 0);
}

.motion-ready [data-reveal="right"] {
  transform: translate3d(48px, 12px, 0);
}

.motion-ready [data-reveal="zoom"] {
  transform: translate3d(0, 30px, 0) scale(0.95);
}

.motion-ready [data-reveal].revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.service-card[data-reveal].revealed:hover {
  transform: translate3d(0, -8px, 0) scale(1);
}

.catalog-card[data-reveal].revealed:hover {
  transform: translate3d(0, -5px, 0) scale(1);
}

.motion-card[data-reveal].revealed.is-tilting {
  z-index: 2;
  box-shadow: 0 22px 55px rgba(5, 37, 77, 0.16);
  transform: perspective(950px) translate3d(0, -4px, 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 150ms ease-out, box-shadow 220ms ease;
  will-change: transform;
}

.stagger > [data-reveal]:nth-child(2) { --reveal-delay: 100ms; }
.stagger > [data-reveal]:nth-child(3) { --reveal-delay: 200ms; }
.stagger > [data-reveal]:nth-child(4) { --reveal-delay: 300ms; }
.stagger > [data-reveal]:nth-child(5) { --reveal-delay: 400ms; }
.stagger > [data-reveal]:nth-child(6) { --reveal-delay: 500ms; }

.motion-in-view .eyebrow::before {
  animation: orion-line-in 850ms var(--motion-ease) both;
}

.motion-ready .hero-inner.revealed > *,
.motion-ready .page-hero-content.revealed > * {
  animation: orion-rise-in 900ms var(--motion-ease) both;
}

.motion-ready .hero-inner.revealed > :nth-child(1),
.motion-ready .page-hero-content.revealed > :nth-child(1) { animation-delay: 80ms; }
.motion-ready .hero-inner.revealed > :nth-child(2),
.motion-ready .page-hero-content.revealed > :nth-child(2) { animation-delay: 160ms; }
.motion-ready .hero-inner.revealed > :nth-child(3),
.motion-ready .page-hero-content.revealed > :nth-child(3) { animation-delay: 240ms; }
.motion-ready .hero-inner.revealed > :nth-child(4),
.motion-ready .page-hero-content.revealed > :nth-child(4) { animation-delay: 320ms; }
.motion-ready .hero-inner.revealed > :nth-child(5),
.motion-ready .page-hero-content.revealed > :nth-child(5) { animation-delay: 400ms; }

@keyframes orion-rise-in {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes orion-line-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 78px;
  }

  .topbar-location {
    display: none;
  }

  .topbar-contact {
    width: 100%;
    justify-content: flex-end;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 680px;
    background-position: 58% center;
  }

  .hero-inner {
    width: min(690px, 72%);
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 820px) {
  .section {
    padding: 84px 0;
  }

  .motion-ready [data-reveal="left"],
  .motion-ready [data-reveal="right"] {
    transform: translate3d(0, 30px, 0);
  }

  .topbar {
    display: none;
  }

  .header-call {
    display: inline-flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .mobile-panel {
    inset: var(--header-height) 0 0;
  }

  .brand {
    width: 155px;
  }

  .brand img {
    width: 145px;
    max-height: 59px;
  }

  .hero {
    min-height: 700px;
    background-image: linear-gradient(90deg, rgba(3, 26, 56, 0.98) 0%, rgba(5, 37, 77, 0.88) 58%, rgba(5, 37, 77, 0.5) 100%), url("../images/orion/hero.png");
    background-position: 68% center;
  }

  .hero-inner {
    width: 100%;
    padding: 85px 0 135px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(3rem, 11vw, 5rem);
  }

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

  .hero-ribbon {
    grid-template-columns: 1fr;
  }

  .ribbon-item {
    min-height: 105px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ribbon-item:last-child {
    border-bottom: 0;
  }

  .grid-2,
  .testimonial-shell,
  .cta-panel,
  .service-feature,
  .doctor-feature,
  .mission-split,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    gap: 42px;
  }

  .appointment-layout .appointment-form {
    order: -1;
  }

  .service-catalog,
  .scholarship-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 520px;
  }

  .testimonial-art {
    min-height: 350px;
  }

  .testimonial-art::after {
    background: linear-gradient(0deg, var(--navy-950), transparent 55%);
  }

  .testimonial-content {
    min-height: 500px;
    padding: 35px 35px 55px;
  }

  .cta-copy,
  .doctor-copy,
  .service-feature-copy {
    padding: 48px 36px;
  }

  .cta-image {
    min-height: 300px;
  }

  .doctor-portrait {
    min-height: 560px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }

  .newsletter {
    gap: 24px;
  }

  .newsletter-form {
    max-width: 600px;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .container,
  .container-narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

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

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.15rem);
  }

  .hero {
    min-height: 690px;
    background-position: 72% center;
  }

  .hero::after,
  .hero-trust {
    display: none;
  }

  .hero-inner {
    padding: 70px 0 125px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13.5vw, 4.2rem);
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
  }

  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
  }

  .hero-ribbon-wrap {
    margin-top: -45px;
  }

  .ribbon-item {
    padding: 22px;
  }

  .service-grid,
  .value-grid,
  .grid-3,
  .grid-4,
  .stats-grid,
  .team-counts,
  .why-grid,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .about-visual {
    min-height: 440px;
  }

  .about-image-main {
    right: 30px;
  }

  .experience-badge {
    top: 18px;
    right: -4px;
    width: 100px;
    height: 100px;
  }

  .about-image-small {
    width: 48%;
    right: -3px;
    bottom: 25px;
    border-width: 5px;
  }

  .comparison {
    aspect-ratio: 4 / 3;
  }

  .testimonial-content {
    padding: 30px 24px 45px;
  }

  .testimonial-slide blockquote {
    font-size: 1.35rem;
  }

  .cta-copy,
  .doctor-copy,
  .service-feature-copy,
  .mission-panel {
    padding: 38px 24px;
  }

  .page-hero {
    min-height: 340px;
  }

  .page-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .doctor-portrait {
    min-height: 465px;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
    gap: 9px;
  }

  .form-shell {
    padding: 25px 18px;
  }

  .field.full {
    grid-column: auto;
  }

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

  .form-actions .btn {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-main {
    gap: 34px;
  }

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

@media (max-width: 420px) {
  .nav-wrap {
    gap: 10px;
  }

  .nav-actions {
    gap: 8px;
  }

  .header-call {
    width: 46px;
    padding: 0;
  }

  .header-call span {
    display: none;
  }
}

@media (max-width: 360px) {
  .hero .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }
}

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

  .motion-ready [data-reveal] {
    opacity: 0;
    filter: none;
    transform: none;
    transition: opacity 900ms var(--fade-ease);
  }

  .motion-ready [data-reveal].revealed {
    opacity: 1;
  }

  [data-parallax] > img {
    transform: none !important;
  }

  .motion-ready .hero-inner.revealed > *,
  .motion-ready .page-hero-content.revealed > *,
  .motion-in-view .eyebrow::before {
    animation: none !important;
  }
}

/* Dentia template design language */
:root {
  --navy-950: #000a5b;
  --navy-900: #071630;
  --navy-800: #10244b;
  --blue-700: #4a7cd2;
  --blue-600: #4a7cd2;
  --cyan-500: #6ca6e8;
  --cyan-300: #b8d6f5;
  --gold-500: #eaa638;
  --gold-300: #f2ce8d;
  --ink: #10244b;
  --text: #667487;
  --muted: #7f8b99;
  --line: rgba(16, 36, 75, 0.14);
  --ice: rgba(74, 124, 210, 0.1);
  --cloud: #f8f9fa;
  --shadow-sm: none;
  --shadow-md: 0 18px 45px rgba(16, 36, 75, 0.1);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 20px;
  --transition: 500ms ease;
  --motion-ease: cubic-bezier(.2, .7, .3, 1);
  --fade-ease: cubic-bezier(.2, .7, .3, 1);
}

body {
  color: var(--text);
  font-family: "Inter", Helvetica, Arial, sans-serif;
  line-height: 1.9;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: "Urbanist", Helvetica, Arial, sans-serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 5.5vw, 4.75rem);
  letter-spacing: -0.027em;
  line-height: 1.15;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.625rem);
  letter-spacing: 0;
  line-height: 1.45;
}

h4 {
  font-size: 1.25rem;
  letter-spacing: 0;
  line-height: 1.6;
}

.section {
  padding: 100px 0;
}

.section-heading {
  margin-bottom: 48px;
}

.eyebrow {
  gap: 0;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.eyebrow::before {
  display: none;
}

.section-dark .eyebrow,
.cta-panel .eyebrow {
  color: var(--cyan-300);
}

.btn {
  min-height: 44px;
  padding: 8px 20px;
  border-radius: 8px;
  box-shadow: none;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  transform: none;
}

.btn:hover {
  box-shadow: none;
  transform: none;
}

.btn-sm {
  min-height: 42px;
  padding: 7px 18px;
}

.btn-arrow,
.mobile-nav a > span:last-child,
.text-link > span {
  display: none;
}

.text-link {
  gap: 0;
  padding-bottom: 2px;
  color: var(--ink);
  border-bottom: 1px solid rgba(16, 36, 75, 0.32);
  font-size: 0.9375rem;
  font-weight: 700;
}

.service-card .text-link {
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  justify-content: center;
  overflow: hidden;
  color: transparent;
  border: 1px solid rgba(16, 36, 75, 0.3);
  border-radius: 50%;
  transition: width var(--transition), color var(--transition), background var(--transition);
}

.service-card .text-link::before {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 12px;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: translateY(-50%);
}

.service-card .text-link::after {
  position: absolute;
  top: 11px;
  left: 16px;
  width: 2px;
  height: 12px;
  content: "";
  background: var(--ink);
}

.service-card .text-link:hover {
  width: 126px;
  justify-content: flex-end;
  padding-right: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.topbar {
  background: var(--navy-900);
}

.nav-link,
.nav-dropdown a {
  font-size: 0.9375rem;
  font-weight: 600;
}

.nav-link.active::after {
  display: none;
}

/* Dentia homepage 6-style split hero with a real landscape template image */
.hero {
  min-height: 0;
  padding: 54px 0;
  background: var(--white);
}

.hero::before,
.hero::after {
  display: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 46px;
  align-items: center;
  padding: 44px;
  background: var(--ice);
  border-radius: var(--radius);
}

.hero-inner {
  width: 100%;
  padding: 28px 0;
}

.hero .eyebrow {
  color: var(--blue-700);
}

.hero h1 {
  max-width: 610px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(3.2rem, 5vw, 4.65rem);
  line-height: 1.08;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: 1.04rem;
}

.hero-media {
  height: 500px;
  min-height: 0;
  overflow: hidden;
  background: var(--cloud);
  border-radius: var(--radius);
}

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

.hero-trust {
  color: var(--text);
}

.trust-avatars span {
  border-color: var(--white);
}

.hero-ribbon-wrap {
  margin-top: 0;
}

.hero-ribbon {
  border-radius: var(--radius);
  box-shadow: none;
}

.ribbon-item {
  min-height: 118px;
}

/* The original Dentia cards are flat, softly tinted and rounded 20px. */
.service-card {
  min-height: 0;
  padding: 40px;
  background: var(--ice);
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
  transition: background var(--transition);
}

.service-card::before {
  display: none;
}

.service-card:hover,
.service-card[data-reveal].revealed:hover {
  background: rgba(74, 124, 210, 0.16);
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.service-icon {
  display: block;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  background: transparent;
  border-radius: 0;
}

.service-icon img {
  width: 70px;
  height: 70px;
}

.service-card h3 {
  font-size: 1.25rem;
  line-height: 1.5;
}

.service-card p {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.catalog-card,
.why-card,
.story-card,
.value-card,
.scholarship-card,
.contact-card,
.team-count {
  background: var(--ice);
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
}

.catalog-card {
  padding: 32px;
}

.catalog-card:hover,
.catalog-card[data-reveal].revealed:hover {
  background: rgba(74, 124, 210, 0.16);
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.catalog-number {
  color: var(--blue-700);
  background: var(--white);
  border-radius: var(--radius);
  font-family: "Urbanist", Helvetica, Arial, sans-serif;
  font-weight: 600;
}

.why-card,
.value-card,
.scholarship-card {
  padding: 32px;
}

.why-number,
.scholarship-card .number {
  color: var(--blue-700);
  background: transparent;
  font-family: "Urbanist", Helvetica, Arial, sans-serif;
  font-weight: 600;
}

.value-card::after {
  display: none;
}

.value-icon,
.contact-card-icon {
  color: var(--blue-700);
  background: var(--white);
  border-radius: 12px;
}

.contact-card {
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
}

.contact-card > div:last-child {
  min-width: 0;
}

.contact-card-icon {
  width: 46px;
  height: 46px;
}

.contact-card .text-link,
.footer-contact a,
.mobile-contact a {
  overflow-wrap: anywhere;
}

.story-card.blue {
  color: rgba(255, 255, 255, 0.76);
  background: var(--blue-700);
}

.section-ice .service-card,
.section-ice .catalog-card,
.section-ice .story-card,
.section-ice .value-card,
.section-ice .scholarship-card,
.section-ice .contact-card,
.section-ice .team-count,
.section-cloud .service-card,
.section-cloud .catalog-card,
.section-cloud .story-card,
.section-cloud .value-card,
.section-cloud .scholarship-card,
.section-cloud .contact-card,
.section-cloud .team-count {
  background: var(--white);
}

.section-ice .story-card.blue,
.section-cloud .story-card.blue {
  color: rgba(255, 255, 255, 0.76);
  background: var(--blue-700);
}

.section-ice .story-card.blue h3,
.section-cloud .story-card.blue h3 {
  color: var(--white);
}

.form-shell {
  background: var(--cloud);
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
}

.field input,
.field select,
.field textarea {
  background: var(--white);
}

.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

/* Dentia's interior pages use a restrained, centered, light subheader. */
.page-hero {
  min-height: 330px;
  color: var(--text);
  background: var(--ice);
  text-align: center;
}

.page-hero::before,
.page-hero::after {
  display: none;
}

.page-hero-content {
  max-width: 900px;
  margin-inline: auto;
  padding: 72px 0;
}

.page-hero h1 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.8rem, 5vw, 4.25rem);
}

.breadcrumb {
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.breadcrumb a:hover {
  color: var(--ink);
}

.contact-map {
  border: 0;
  border-radius: var(--radius);
}

.home-location .contact-map,
.home-location .contact-map iframe {
  min-height: 430px;
}

/* Template-style WOW motion: simple fade-up and scale, without card tilt or parallax. */
.motion-ready [data-reveal],
.motion-ready [data-reveal="left"],
.motion-ready [data-reveal="right"],
.motion-ready [data-reveal="rise"] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 900ms var(--motion-ease), transform 900ms var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal="fade"] {
  transform: none;
}

.motion-ready [data-reveal="zoom"] {
  transform: scale(0.96);
}

.motion-ready [data-reveal].revealed,
.motion-ready [data-reveal="left"].revealed,
.motion-ready [data-reveal="right"].revealed,
.motion-ready [data-reveal="rise"].revealed,
.motion-ready [data-reveal="zoom"].revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-card[data-reveal].revealed.is-tilting {
  box-shadow: none;
  transform: none;
}

[data-parallax] > img,
.image-frame[data-parallax]:hover > img,
.community-image[data-parallax]:hover > img {
  transform: none;
  transition: transform 700ms ease;
}

.image-frame:hover > img,
.community-image:hover > img,
.gallery-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 32px;
    padding: 34px;
  }

  .hero-media {
    height: 450px;
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }

  .hero {
    padding: 26px 0 40px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .hero-media {
    order: -1;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 0;
  }

  .hero-inner {
    padding: 38px 34px 42px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.85rem, 10.5vw, 4rem);
  }

  .hero-ribbon-wrap {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: 0;
    background: var(--white);
  }

  .hero-inner {
    padding: 30px 22px 34px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .hero-copy {
    margin-bottom: 24px;
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .hero-ribbon {
    grid-template-columns: 1fr;
  }

  .ribbon-item {
    min-height: 92px;
    padding: 18px 20px;
  }

  .ribbon-item:nth-child(3) {
    display: none;
  }

  .ribbon-item p {
    display: none;
  }

  .service-card,
  .catalog-card,
  .why-card,
  .story-card,
  .value-card,
  .scholarship-card {
    padding: 28px;
  }

  .page-hero {
    min-height: 280px;
  }

  .page-hero-content {
    padding: 56px 0;
  }

  .page-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.3rem);
  }

  .home-location .contact-map,
  .home-location .contact-map iframe {
    min-height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready [data-reveal],
  .motion-ready [data-reveal="left"],
  .motion-ready [data-reveal="right"],
  .motion-ready [data-reveal="rise"],
  .motion-ready [data-reveal="zoom"] {
    transform: none;
    transition: opacity 700ms ease;
  }
}

/* Homepage refinements from the visual review. */
.hero-media img {
  object-position: center 47%;
}

.ribbon-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.ribbon-icon .ui-icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.service-card .text-link,
.service-card .text-link:hover {
  position: static;
  width: auto;
  height: auto;
  justify-content: flex-start;
  padding: 0 0 3px;
  overflow: visible;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(16, 36, 75, 0.35);
  border-radius: 0;
  transition: color var(--transition), border-color var(--transition);
}

.service-card .text-link::before,
.service-card .text-link::after {
  display: none;
}

.service-card .text-link:hover {
  color: var(--blue-700);
  border-bottom-color: var(--blue-700);
}

.testimonial-shell {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  height: 440px;
  background: var(--navy-900);
  box-shadow: 0 18px 45px rgba(3, 26, 56, 0.13);
}

.testimonial-art,
.testimonial-content {
  height: 100%;
  min-height: 0;
}

.testimonial-art img {
  object-position: center 66%;
}

.testimonial-art::after {
  display: none;
}

.testimonial-content {
  padding: 46px 56px;
}

.quote-mark {
  font-size: 4.5rem;
}

.testimonial-slide blockquote {
  max-width: 670px;
  margin: 14px 0 24px;
  font-size: clamp(1.3rem, 1.85vw, 1.7rem);
  line-height: 1.48;
}

.slider-controls {
  margin-top: 26px;
}

@media (max-width: 820px) {
  .testimonial-shell {
    grid-template-columns: 1fr;
    height: auto;
  }

  .testimonial-art {
    height: 300px;
    min-height: 0;
  }

  .testimonial-content {
    height: auto;
    min-height: 0;
    padding: 36px 34px 40px;
  }
}

@media (max-width: 620px) {
  .hero-media img {
    object-position: 58% 47%;
  }

  .testimonial-art {
    height: 220px;
  }

  .testimonial-content {
    padding: 32px 26px 34px;
  }

  .quote-mark {
    font-size: 3.8rem;
  }

  .testimonial-slide blockquote {
    font-size: 1.22rem;
    line-height: 1.5;
  }
}
