:root {
  --background: #f5f7fb;
  --surface: rgba(255, 255, 255, 0.46);
  --surface-strong: rgba(255, 255, 255, 0.72);
  --surface-soft: rgba(255, 255, 255, 0.32);
  --border: rgba(255, 255, 255, 0.78);
  --border-dark: rgba(127, 148, 170, 0.22);
  --text-primary: #12151c;
  --text-secondary: #5d6472;
  --muted: #7a8495;
  --accent-blue: #b8dcf4;
  --accent-lilac: #c7b9f5;
  --accent-pink: #f2c7e4;
  --accent-mint: #bce8e1;
  --accent-ink: #35465d;
  --shadow: 0 26px 70px rgba(92, 107, 138, 0.18);
  --shadow-soft: 0 14px 40px rgba(97, 112, 144, 0.12);
  --blur: blur(22px);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(242, 199, 228, 0.48), transparent 30vw),
    radial-gradient(circle at 88% 12%, rgba(184, 220, 244, 0.62), transparent 30vw),
    radial-gradient(circle at 48% 70%, rgba(188, 232, 225, 0.36), transparent 34vw),
    linear-gradient(135deg, #f8fbff 0%, #f3f5fb 52%, #eef5f7 100%);
  color: var(--text-primary);
  font-family: var(--font);
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: auto;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  min-width: 320px;
  min-height: 320px;
  border-radius: 999px;
  content: "";
  filter: blur(56px);
  opacity: 0.58;
  pointer-events: none;
}

body::before {
  top: 18vh;
  left: -18vw;
  background: rgba(199, 185, 245, 0.48);
}

body::after {
  right: -12vw;
  bottom: 8vh;
  background: rgba(184, 220, 244, 0.55);
}

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

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

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

.glass-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow-soft);
  backdrop-filter: var(--blur);
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.glass-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.92);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 16px;
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.95), transparent 38%),
    linear-gradient(135deg, rgba(184, 220, 244, 0.78), rgba(199, 185, 245, 0.7));
  box-shadow: inset 0 1px 10px rgba(255, 255, 255, 0.75), 0 10px 26px rgba(105, 133, 166, 0.24);
  color: #314158;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1;
}

.brand-caption {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.nav-links a,
.glass-pill {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.nav-links a {
  padding: 12px 13px;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.55);
  color: var(--text-primary);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--accent-ink);
}

.glass-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    linear-gradient(135deg, rgba(184, 220, 244, 0.5), rgba(199, 185, 245, 0.44));
  box-shadow: inset 0 1px 12px rgba(255, 255, 255, 0.78), 0 14px 34px rgba(111, 130, 160, 0.22);
  color: var(--text-primary);
  font-size: 0.86rem;
  font-weight: 750;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.glass-button:hover,
.glass-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 14px rgba(255, 255, 255, 0.9), 0 18px 42px rgba(111, 130, 160, 0.28);
  outline: none;
}

.glass-button.secondary {
  background: rgba(255, 255, 255, 0.42);
  color: var(--accent-ink);
}

.page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 114px);
  padding-top: 18px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent-ink);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.48;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1,
.page-title {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8.4rem);
  font-weight: 500;
  line-height: 0.88;
  color: var(--text-primary);
}

.hero p,
.lead {
  max-width: 700px;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.stat-card,
.glass-card,
.service-card,
.doctor-card,
.review-card,
.form-panel,
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: var(--blur);
}

.stat-card {
  padding: 16px;
}

.stat-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.hero-image-card {
  position: absolute;
  inset: 5% 0 0 4%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 42px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: var(--blur);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) brightness(1.02);
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: min(260px, 48%);
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  backdrop-filter: var(--blur);
  animation: float-soft 7s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.floating-card span {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.45;
}

.floating-card.one {
  top: 10%;
  right: -2%;
}

.floating-card.two {
  left: -1%;
  bottom: 18%;
  animation-delay: -2s;
}

.floating-card.three {
  right: 8%;
  bottom: 4%;
  animation-delay: -4s;
}

@keyframes float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.section {
  margin-top: 82px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 500;
  line-height: 0.92;
}

.section-heading p {
  color: var(--text-secondary);
  line-height: 1.65;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

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

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

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

.service-card,
.doctor-card,
.review-card,
.glass-card,
.price-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.service-card:hover,
.doctor-card:hover,
.review-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.98);
  background: rgba(255, 255, 255, 0.6);
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(184, 220, 244, 0.76), rgba(242, 199, 228, 0.52));
  box-shadow: inset 0 1px 10px rgba(255, 255, 255, 0.8);
  color: var(--accent-ink);
  font-weight: 800;
}

.service-card h3,
.doctor-card h3,
.review-card h3,
.price-card h3,
.glass-card h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.service-card p,
.doctor-card p,
.review-card p,
.price-card p,
.glass-card p,
.fine-print {
  color: var(--text-secondary);
  line-height: 1.6;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--accent-ink);
  font-size: 0.74rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent-ink);
  font-weight: 800;
}

.quick-panel {
  margin-top: 34px;
  padding: 22px;
}

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

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

.field.span-2 {
  grid-column: span 2;
}

.field.span-3 {
  grid-column: span 3;
}

.field.span-6 {
  grid-column: 1 / -1;
}

label {
  color: var(--accent-ink);
  font-size: 0.74rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--text-primary);
  padding: 0 15px;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(86, 129, 171, 0.45);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 0 0 4px rgba(184, 220, 244, 0.32);
}

.error-text {
  min-height: 18px;
  color: #a24661;
  font-size: 0.74rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 28px;
  align-items: end;
  padding: 52px 0 26px;
}

.page-hero .glass-card {
  padding: 24px;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.toolbar input {
  flex: 1 1 280px;
}

.filter-button {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: var(--accent-ink);
  padding: 0 15px;
  font-weight: 750;
}

.filter-button.is-active {
  background: rgba(199, 185, 245, 0.38);
  border-color: rgba(255, 255, 255, 0.98);
}

.doctor-portrait {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  margin: -4px -4px 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.92), transparent 18%),
    radial-gradient(circle at 44% 36%, rgba(199, 185, 245, 0.42), transparent 20%),
    linear-gradient(135deg, rgba(184, 220, 244, 0.52), rgba(242, 199, 228, 0.34));
  color: rgba(53, 70, 93, 0.78);
  font-family: var(--serif);
  font-size: 3.8rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: 18px;
}

.list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.list li {
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--text-secondary);
  line-height: 1.45;
}

.timeline {
  display: grid;
  gap: 12px;
  counter-reset: item;
}

.timeline li {
  position: relative;
  padding-left: 56px;
  list-style: none;
}

.timeline li::before {
  position: absolute;
  left: 0;
  top: 8px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 8px rgba(255, 255, 255, 0.85);
  counter-increment: item;
  content: counter(item);
  color: var(--accent-ink);
  font-weight: 800;
}

.before-after {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.smile-compare {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(93, 100, 114, 0.28) var(--position, 50%), transparent var(--position, 50%)),
    radial-gradient(circle at 35% 46%, rgba(255, 255, 255, 0.94), transparent 14%),
    radial-gradient(circle at 48% 46%, rgba(255, 255, 255, 0.94), transparent 14%),
    radial-gradient(circle at 61% 46%, rgba(255, 255, 255, 0.94), transparent 14%),
    linear-gradient(135deg, rgba(184, 220, 244, 0.5), rgba(242, 199, 228, 0.38));
}

.smile-compare::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--border);
  content: "";
}

.range {
  accent-color: #8cbfe0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px;
  color: var(--text-primary);
  text-align: left;
  font-weight: 800;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.rating-bars {
  display: grid;
  gap: 9px;
}

.bar {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.bar-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-lilac));
}

.video-placeholder,
.map-card {
  display: grid;
  min-height: 210px;
  place-items: center;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.12)),
    radial-gradient(circle at 32% 28%, rgba(184, 220, 244, 0.6), transparent 22%),
    radial-gradient(circle at 68% 60%, rgba(199, 185, 245, 0.46), transparent 24%);
  color: var(--accent-ink);
  font-weight: 800;
}

.appointment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(280px, 0.35fr);
  gap: 18px;
}

.stepper {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.step-dot {
  flex: 1;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.step-dot.is-active,
.step-dot.is-complete {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-lilac));
}

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

.choice {
  min-height: 88px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.44);
  padding: 16px;
  text-align: left;
}

.choice.is-selected {
  border-color: rgba(91, 137, 178, 0.42);
  background: rgba(184, 220, 244, 0.34);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(49, 57, 73, 0.18);
  backdrop-filter: blur(14px);
}

.modal {
  width: min(640px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  color: var(--accent-ink);
  font-weight: 900;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 44;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast-region {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100% - 36px));
}

.toast {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  color: var(--accent-ink);
  font-weight: 750;
  backdrop-filter: var(--blur);
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 20px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-soft);
  backdrop-filter: var(--blur);
}

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

.footer-grid h3 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-grid a,
.footer-grid li,
.footer-grid p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links.is-open {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
    backdrop-filter: var(--blur);
  }

  .hero,
  .page-hero,
  .split,
  .appointment-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 540px;
  }

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

@media (max-width: 760px) {
  .glass-navbar,
  .page,
  .site-footer {
    width: min(100% - 20px, var(--max));
  }

  .nav-inner {
    grid-template-columns: auto auto;
  }

  .brand-caption,
  .nav-actions .glass-button {
    display: none;
  }

  .nav-actions {
    justify-content: end;
  }

  .page {
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(3.1rem, 18vw, 5.8rem);
  }

  .trust-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .field.span-2,
  .field.span-3,
  .field.span-6 {
    grid-column: 1;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-image-card {
    inset: 0;
  }

  .floating-card {
    position: relative;
    inset: auto !important;
    width: auto;
    margin-top: 10px;
    animation: none;
  }

  .hero-visual {
    display: grid;
    gap: 10px;
  }

  .hero-image-card {
    position: relative;
    min-height: 290px;
  }

  .floating-contact,
  .back-top {
    right: 12px;
  }
}
