:root {
  --cream: #F8FAFC;
  --teal-700: #0F3B4C;
  --teal-600: #0F3B4C;
  --teal-500: #4F6D7A;
  --teal-400: #8FA4AE;
  --teal-300: #C5D2D8;
  --teal-200: #EEF3F6;
  --petroleum-900: #092C38;
  --petroleum-800: #0F3B4C;
  --petroleum-700: #4F6D7A;
  --brand-yellow: #F5C400;
  --brand-black: #000000;
  --ink: #263238;
  --muted: #60727A;
  --soft: #F8FAFC;
  --soft-2: #EEF3F6;
  --white: #FFFFFF;
  --line: #DCE5EA;
  --line-strong: #C5D2D8;
  --shadow: 0 22px 60px rgba(15, 59, 76, 0.1);
  --shadow-soft: 0 10px 28px rgba(15, 59, 76, 0.07);
  --radius: 18px;
  --pill: 999px;
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  color: inherit;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

iframe {
  border: 0;
}

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

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -90px;
  z-index: 90;
  padding: 12px 16px;
  color: var(--white);
  background: var(--teal-700);
  border-radius: var(--pill);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(16, 42, 48, 0.08);
  backdrop-filter: blur(24px);
}

.header-main {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: 66px;
  height: 46px;
  object-fit: contain;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-wordmark,
.brand > span:last-child {
  position: relative;
  display: grid;
  gap: 3px;
  padding-left: 16px;
}

.brand-wordmark::before,
.brand > span:last-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  border-radius: var(--pill);
  background: linear-gradient(180deg, var(--brand-black), var(--brand-yellow));
}

.brand-symbol {
  display: none;
}

.brand strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.28rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 2px;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  color: var(--muted);
  border-radius: var(--pill);
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
  background: var(--soft-2);
  outline: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta {
  min-height: 46px;
  padding: 11px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--petroleum-900), var(--petroleum-700));
  box-shadow: 0 14px 34px rgba(7, 63, 74, 0.26);
  white-space: nowrap;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--petroleum-900), var(--petroleum-700));
  box-shadow: 0 20px 46px rgba(7, 63, 74, 0.28);
}

.button-secondary {
  color: var(--white);
  background: linear-gradient(135deg, var(--petroleum-800), #267B87);
  border-color: rgba(7, 63, 74, 0.2);
  box-shadow: 0 16px 36px rgba(7, 63, 74, 0.2);
}

.button-ghost {
  color: var(--white);
  background: linear-gradient(135deg, rgba(7, 63, 74, 0.94), rgba(38, 123, 135, 0.92));
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 14px 32px rgba(7, 63, 74, 0.2);
  backdrop-filter: blur(16px);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  outline: 3px solid rgba(238, 243, 246, 0.74);
  outline-offset: 2px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--teal-700);
  font-family: Poppins, Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 700px;
  font-size: 4.75rem;
  font-weight: 700;
}

h2 {
  max-width: 850px;
  font-size: 3.35rem;
  font-weight: 700;
}

h3 {
  font-size: 1.14rem;
  font-weight: 700;
}

p {
  margin: 13px 0 0;
  color: var(--muted);
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--teal-700);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section {
  padding: 68px 0;
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: start;
  overflow: hidden;
  isolation: isolate;
  background: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

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

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.91) 35%, rgba(255, 255, 255, 0.38) 61%, rgba(255, 255, 255, 0.02) 84%),
    linear-gradient(180deg, rgba(238, 243, 246, 0.22), rgba(255, 255, 255, 0.1));
}

.hero-inner {
  padding: 72px 0 44px;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(2.95rem, 4.15vw, 3.52rem);
  line-height: 1.02;
}

.hero-copy {
  max-width: 560px;
  color: #3D5E66;
  font-size: 1.08rem;
  line-height: 1.38;
}

.hero-copy-secondary {
  max-width: 640px;
  margin-top: 10px;
  font-size: 1.05rem;
}

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

.hero .button {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 1.04rem;
}

.hero-facts,
.mini-stats,
.pill-list,
.payment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts {
  max-width: 660px;
  margin-top: 18px;
}

.hero-conversion-badges {
  width: min(100%, 790px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.hero-conversion-badges article {
  display: grid;
  gap: 4px;
  min-height: 82px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid rgba(255, 212, 0, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-conversion-badges strong {
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 0.88rem;
  line-height: 1.2;
}

.hero-conversion-badges span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.35;
}

.hero-facts span,
.mini-stats span,
.pill-list span,
.payment-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(15, 59, 76, 0.14);
  border-radius: var(--pill);
  color: var(--teal-700);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.photo-ribbon {
  position: relative;
  z-index: 3;
  margin-top: -64px;
  padding-bottom: 28px;
}

.conversion-band {
  position: relative;
  z-index: 4;
  margin-top: 0;
  padding: 0 0 28px;
}

.conversion-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 26px;
  border: 1px solid rgba(16, 42, 48, 0.08);
  border-left: 8px solid var(--brand-yellow);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 246, 0.82)),
    var(--white);
  box-shadow: var(--shadow);
}

.conversion-band span {
  display: block;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.conversion-band strong {
  display: block;
  max-width: 800px;
  margin-top: 4px;
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
}

.photo-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

figure {
  margin: 0;
}

.photo-ribbon figure,
.image-panel,
.review-panel,
.review-placeholder,
.appointment-form,
.diagnostic-form,
.diagnostic-question,
.diagnostic-result,
.map-frame,
.storefront-panel,
.diagnostic-preview article,
.faq-list details,
.service-grid article,
.difference-grid article,
.process-list li,
.gallery-grid article,
.privacy-note,
.schedule-list div,
.location-details div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.photo-ribbon figure {
  overflow: hidden;
  display: grid;
  grid-template-rows: 260px auto;
}

.photo-ribbon img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.photo-ribbon figcaption {
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  font-family: Poppins, Inter, sans-serif;
  font-weight: 750;
  min-height: 128px;
}

.photo-ribbon figcaption small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.split-layout,
.feature-layout,
.product-layout,
.reviews-layout,
.gallery-layout,
.appointment-layout,
.diagnostic-layout,
.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 68px;
  align-items: center;
}

.feature-layout {
  align-items: start;
}

.section-heading {
  max-width: 780px;
}

.wide-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

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

.text-stack {
  max-width: 590px;
}

.mini-stats {
  margin-top: 28px;
}

.highlight-quote {
  margin-top: 26px;
  padding: 18px 20px;
  color: var(--teal-700);
  border-left: 4px solid var(--teal-600);
  border-radius: var(--radius);
  background: rgba(238, 243, 246, 0.26);
  font-weight: 850;
}

.exam-note {
  margin-top: 22px;
  color: var(--ink);
  font-weight: 900;
}

.intro-section {
  padding: 26px 0 34px;
  background: var(--white);
}

.intro-section .split-layout {
  align-items: start;
  gap: 52px;
}

.intro-section .section-heading {
  padding-top: 2px;
}

.intro-section h2 {
  max-width: 610px;
  line-height: 1.04;
}

.intro-section .text-stack {
  max-width: 640px;
}

.intro-section .text-stack p {
  margin-top: 12px;
}

.intro-section .text-stack p:first-child {
  margin-top: 0;
}

.intro-section .mini-stats {
  margin-top: 18px;
}

.intro-section .highlight-quote {
  margin-top: 18px;
  margin-bottom: 0;
  padding: 16px 20px;
}

.visual-section,
.process-section,
.gallery-section,
.location-section {
  background: linear-gradient(180deg, var(--soft), var(--white));
}

.product-section,
.reviews-section,
.appointment-section,
.diagnostic-section {
  background: linear-gradient(135deg, rgba(238, 243, 246, 0.42), rgba(255, 255, 255, 0.96) 58%, rgba(238, 243, 246, 0.24));
}

.feature-copy,
.product-copy,
.location-copy,
.appointment-copy,
.diagnostic-copy {
  max-width: 610px;
}

.image-panel {
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-panel-product img {
  aspect-ratio: 16 / 10;
}

.image-panel span {
  display: block;
  padding: 12px 16px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.83rem;
  font-weight: 750;
}

.schedule-list,
.location-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.schedule-list div,
.location-details div {
  padding: 18px;
}

.schedule-list span,
.location-details span {
  display: block;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.schedule-list strong,
.location-details strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
}

.guidance-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.guidance-list strong {
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
}

.guidance-list p {
  position: relative;
  margin: 0;
  padding-left: 18px;
  font-size: 0.94rem;
}

.guidance-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-600);
}

.exam-section {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 24px 0;
  scroll-margin-top: var(--header-height);
}

.exam-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 18px 52px;
  align-items: center;
}

.exam-image img {
  aspect-ratio: 1.26 / 1;
}

.exam-copy {
  max-width: none;
}

.exam-copy .section-kicker {
  margin-bottom: 8px;
}

.exam-copy h2 {
  max-width: 650px;
  font-size: clamp(2.35rem, 3.35vw, 3rem);
  line-height: 1.03;
}

.exam-description p {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.42;
}

.exam-section .exam-note {
  margin-top: 12px;
  font-size: 0.92rem;
  line-height: 1.35;
}

.exam-footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(310px, 0.92fr) auto minmax(390px, 1.15fr);
  gap: 14px;
  align-items: stretch;
}

.exam-footer .schedule-list {
  margin: 0;
}

.exam-footer .schedule-list div {
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 14px 16px;
}

.exam-footer .button {
  align-self: center;
  min-height: 54px;
  padding-inline: 22px;
  white-space: nowrap;
}

.exam-footer .guidance-list {
  gap: 5px;
  min-height: 112px;
  margin-top: 0;
  padding: 13px 16px;
  box-shadow: none;
}

.exam-footer .guidance-list strong {
  font-size: 0.94rem;
}

.exam-footer .guidance-list p {
  padding-left: 15px;
  font-size: 0.78rem;
  line-height: 1.32;
}

.exam-footer .guidance-list p:nth-of-type(n + 2) {
  margin-right: 52px;
}

.exam-footer .guidance-list p::before {
  top: 0.58em;
  width: 6px;
  height: 6px;
}

.services-section {
  padding: 24px 0 30px;
  scroll-margin-top: var(--header-height);
}

.services-section .wide-heading {
  max-width: 920px;
  margin-bottom: 18px;
}

.services-section .section-kicker {
  margin-bottom: 6px;
  font-size: 0.72rem;
}

.services-section h2 {
  max-width: 820px;
  font-size: 2.45rem;
  line-height: 1.02;
}

.services-section .wide-heading > p:last-child {
  max-width: 900px;
  margin-top: 8px;
  font-size: 0.86rem;
  line-height: 1.38;
}

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

.service-grid article,
.difference-grid article,
.process-list li,
.gallery-grid article {
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-grid article:hover,
.difference-grid article:hover,
.process-list li:hover,
.gallery-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 109, 122, 0.34);
  box-shadow: var(--shadow);
}

.service-grid article > span,
.service-number,
.process-list li span,
.google-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  margin-bottom: 20px;
  padding: 0 10px;
  border-radius: var(--pill);
  color: var(--teal-700);
  background: linear-gradient(135deg, var(--teal-200), var(--cream));
  font-size: 0.78rem;
  font-weight: 900;
}

.service-number {
  color: var(--white);
  background: linear-gradient(90deg, var(--petroleum-900) 0%, var(--petroleum-700) 58%, rgba(255, 255, 255, 0.98) 100%);
  text-shadow: 0 1px 2px rgba(7, 63, 74, 0.24);
}

.service-grid article p,
.difference-grid article p,
.process-list li p,
.review-panel p,
.review-placeholder p {
  font-size: 0.96rem;
}

.visual-service-grid {
  align-items: stretch;
  gap: 10px;
}

.visual-service-grid .service-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
}

.service-media {
  position: relative;
  min-height: 150px;
  height: 150px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(238, 243, 246, 0.34), rgba(238, 243, 246, 0.2));
}

.service-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

.service-body {
  display: grid;
  align-content: start;
  padding: 12px;
}

.service-body .service-number {
  min-width: 32px;
  height: 24px;
  margin-bottom: 7px;
  padding-inline: 8px;
  font-size: 0.66rem;
}

.service-body h3 {
  font-size: 0.94rem;
  line-height: 1.16;
}

.visual-service-grid .service-card p {
  margin-top: 7px;
  font-size: 0.74rem;
  line-height: 1.34;
}

.service-mini-cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  margin-top: 9px;
  padding: 5px 10px;
  color: var(--white);
  border: 1px solid rgba(7, 63, 74, 0.2);
  border-radius: var(--pill);
  background: linear-gradient(135deg, var(--petroleum-900), var(--petroleum-700));
  box-shadow: 0 8px 20px rgba(7, 63, 74, 0.16);
  font-size: 0.68rem;
  font-weight: 900;
  text-decoration: none;
}

.transitions-tool-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(7, 63, 74, 0.24));
}

.transitions-tool-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--pill);
  background: rgba(7, 63, 74, 0.88);
  backdrop-filter: blur(6px);
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.transitions-light-scale {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 9px;
  left: 10px;
  display: grid;
  grid-template-columns: auto minmax(70px, 1fr) auto;
  gap: 7px;
  align-items: center;
  padding: 6px 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: rgba(7, 63, 74, 0.78);
  backdrop-filter: blur(6px);
  font-size: 0.56rem;
  font-weight: 850;
}

.transitions-light-scale i {
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--pill);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), #91B6B9 50%, #102A30);
}

.transitions-tool-link {
  min-height: 32px;
  margin-top: 10px;
  padding-inline: 12px;
}

.transitions-tool-link::after {
  content: "↗";
  margin-left: 7px;
  font-size: 0.82rem;
}

.transitions-tool-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.35;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0;
  margin: 9px 0 0;
  list-style: none;
}

.service-points li,
.vision-zones span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 7px;
  color: var(--teal-700);
  border: 1px solid rgba(15, 59, 76, 0.15);
  border-radius: var(--pill);
  background: rgba(238, 243, 246, 0.26);
  font-size: 0.64rem;
  font-weight: 900;
}

.vision-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}

.vision-zones span:nth-child(1) {
  background: rgba(238, 243, 246, 0.42);
}

.vision-zones span:nth-child(2) {
  background: rgba(255, 255, 255, 0.86);
}

.vision-zones span:nth-child(3) {
  background: rgba(238, 243, 246, 0.62);
}

.lens-thickness-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 9px;
  padding: 6px;
  border: 1px solid rgba(15, 59, 76, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(238, 243, 246, 0.25), rgba(255, 255, 255, 0.86));
}

.lens-thickness-group {
  min-width: 0;
  padding: 6px 5px 5px;
  border: 1px solid rgba(15, 59, 76, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.lens-thickness-group header {
  display: grid;
  gap: 1px;
  margin-bottom: 5px;
  text-align: center;
}

.lens-thickness-group header strong {
  color: var(--ink);
  font-size: 0.62rem;
  line-height: 1.1;
}

.lens-thickness-group header span {
  color: var(--muted);
  font-size: 0.49rem;
  font-weight: 800;
  line-height: 1.1;
}

.lens-profile-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 4px 5px rgba(15, 59, 76, 0.12));
}

.lens-profile-svg text {
  fill: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-anchor: middle;
}

.service-note {
  font-size: 0.64rem !important;
  line-height: 1.28 !important;
}

.diagram-media {
  display: grid;
  place-items: center;
  min-height: 236px;
}

.lens-demo {
  position: relative;
  width: min(86%, 300px);
  height: 188px;
}

.demo-lens {
  position: absolute;
  left: 47%;
  top: 26px;
  width: 58px;
  height: 132px;
  border: 2px solid rgba(15, 59, 76, 0.35);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(238, 243, 246, 0.48));
  box-shadow: inset 0 0 22px rgba(79, 109, 122, 0.18), 0 16px 36px rgba(15, 59, 76, 0.12);
  transform: translateX(-50%);
}

.demo-eye {
  position: absolute;
  right: 8px;
  top: 70px;
  width: 58px;
  height: 42px;
  border-radius: 100% 6px;
  border: 2px solid rgba(16, 42, 48, 0.28);
  background: rgba(255, 255, 255, 0.8);
  transform: rotate(-12deg);
}

.demo-eye::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal-700);
}

.glare-source {
  position: absolute;
  left: 8px;
  top: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFFFFF 0 26%, var(--cream) 27% 62%, rgba(238, 243, 246, 0.08) 63%);
  box-shadow: 0 0 44px rgba(238, 243, 246, 0.7);
}

.light-rays i,
.soft-rays i,
.blue-rays i,
.filtered-rays i,
.field-lines i {
  position: absolute;
  display: block;
  height: 4px;
  border-radius: var(--pill);
  transform-origin: left center;
}

.light-rays i {
  left: 54px;
  width: 120px;
  background: linear-gradient(90deg, rgba(238, 243, 246, 0.95), rgba(255, 255, 255, 0.1));
}

.light-rays i:nth-child(1) {
  top: 46px;
  transform: rotate(15deg);
}

.light-rays i:nth-child(2) {
  top: 78px;
}

.light-rays i:nth-child(3) {
  top: 108px;
  transform: rotate(-14deg);
}

.soft-rays i {
  left: 158px;
  width: 74px;
  background: linear-gradient(90deg, rgba(79, 109, 122, 0.5), rgba(79, 109, 122, 0.08));
}

.soft-rays i:nth-child(1) {
  top: 70px;
}

.soft-rays i:nth-child(2) {
  top: 98px;
}

.screen-shape {
  position: absolute;
  left: 6px;
  top: 42px;
  width: 74px;
  height: 102px;
  border-radius: 8px;
  background: linear-gradient(180deg, #092C38, #4F6D7A);
  box-shadow: 0 16px 34px rgba(79, 109, 122, 0.22);
}

.screen-shape::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 10px;
  height: 5px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.62);
}

.blue-rays i {
  left: 80px;
  width: 108px;
  background: linear-gradient(90deg, rgba(37, 97, 255, 0.86), rgba(37, 97, 255, 0.08));
}

.blue-rays i:nth-child(1) {
  top: 58px;
  transform: rotate(12deg);
}

.blue-rays i:nth-child(2) {
  top: 88px;
}

.blue-rays i:nth-child(3) {
  top: 118px;
  transform: rotate(-12deg);
}

.blue-lens {
  background: linear-gradient(135deg, rgba(238, 243, 246, 0.82), rgba(255, 255, 255, 0.74));
  box-shadow: inset 0 0 24px rgba(37, 97, 255, 0.2), 0 16px 36px rgba(15, 59, 76, 0.12);
}

.filtered-rays i {
  left: 158px;
  width: 76px;
  background: linear-gradient(90deg, rgba(134, 236, 240, 0.72), rgba(134, 236, 240, 0.08));
}

.filtered-rays i:nth-child(1) {
  top: 78px;
}

.filtered-rays i:nth-child(2) {
  top: 106px;
}

.photochromic-demo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.photo-lens {
  width: 82px;
  height: 122px;
  border: 2px solid rgba(15, 59, 76, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 26px rgba(255, 255, 255, 0.5), 0 18px 34px rgba(15, 59, 76, 0.12);
}

.clear-lens {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(238, 243, 246, 0.38));
}

.dark-lens {
  background: linear-gradient(145deg, rgba(14, 49, 58, 0.82), rgba(15, 59, 76, 0.66));
}

.sun-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFFFFF 0 20%, var(--cream) 21% 64%, rgba(238, 243, 246, 0.1) 65%);
  box-shadow: 0 0 38px rgba(238, 243, 246, 0.8);
}

.photochromic-demo span {
  position: absolute;
  bottom: 4px;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 900;
}

.photochromic-demo span:first-of-type {
  left: 0;
}

.photochromic-demo span:last-of-type {
  right: 30px;
}

.multifocal-demo {
  display: grid;
  place-items: center;
}

.multifocal-lens {
  position: relative;
  z-index: 1;
  width: 130px;
  height: 168px;
  overflow: hidden;
  display: grid;
  border: 2px solid rgba(15, 59, 76, 0.24);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(15, 59, 76, 0.14);
}

.multifocal-lens span {
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 900;
  text-align: center;
}

.multifocal-lens span:nth-child(1) {
  background: rgba(238, 243, 246, 0.74);
}

.multifocal-lens span:nth-child(2) {
  background: rgba(255, 255, 255, 0.86);
}

.multifocal-lens span:nth-child(3) {
  background: rgba(238, 243, 246, 0.76);
}

.field-lines i {
  left: 214px;
  width: 58px;
  background: linear-gradient(90deg, rgba(15, 59, 76, 0.42), rgba(15, 59, 76, 0));
}

.field-lines i:nth-child(1) {
  top: 54px;
}

.field-lines i:nth-child(2) {
  top: 90px;
}

.field-lines i:nth-child(3) {
  top: 128px;
}

.thin-lens-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
}

.thickness-item {
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.lens-edge {
  width: 78px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 246, 0.48), rgba(15, 59, 76, 0.18));
  border: 2px solid rgba(15, 59, 76, 0.25);
  box-shadow: 0 18px 34px rgba(15, 59, 76, 0.14);
}

.thick .lens-edge {
  height: 130px;
  transform: scaleX(0.82);
}

.thin .lens-edge {
  height: 130px;
  transform: scaleX(0.42);
}

.thickness-item strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.18rem;
}

.thickness-item span {
  color: var(--teal-700);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.pill-list,
.payment-pills {
  margin-top: 28px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 46px 0 0;
  list-style: none;
}

.reviews-layout {
  align-items: start;
}

.reviews-section {
  min-height: calc(100svh - var(--header-height) - 1px);
  display: grid;
  align-items: center;
  padding: 24px 0;
  scroll-margin-top: var(--header-height);
}

.reviews-section .reviews-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.reviews-section .section-kicker {
  margin-bottom: 7px;
}

.reviews-section h2 {
  max-width: 570px;
  font-size: 2.7rem;
  line-height: 1.03;
}

.reviews-section .section-heading > p {
  max-width: 570px;
  margin-top: 11px;
  font-size: 0.9rem;
  line-height: 1.42;
}

.reviews-section .review-status-copy {
  padding: 11px 14px;
  border-left: 4px solid var(--teal-600);
  border-radius: var(--radius);
  background: rgba(238, 243, 246, 0.25);
  color: var(--teal-700);
  font-size: 0.82rem;
  font-weight: 850;
}

.reviews-section .section-heading > .button {
  min-height: 48px;
  margin-top: 15px;
  padding: 11px 18px;
  font-size: 0.84rem;
}

.review-panel {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
}

.review-panel .google-label {
  height: 30px;
  margin-bottom: 0;
  font-size: 0.68rem;
}

.review-panel > strong {
  display: block;
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.review-panel > p {
  margin-top: 0;
  font-size: 0.84rem;
  line-height: 1.36;
}

.review-placeholder {
  padding: 14px;
  box-shadow: none;
}

.review-placeholder h3 {
  font-size: 0.96rem;
}

.review-placeholder p {
  margin-top: 6px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.review-placeholder.is-loaded {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 0.86fr);
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
}

.review-placeholder.is-loaded .google-review {
  scroll-snap-align: start;
}

.review-source-note {
  margin-top: 0;
  padding: 10px 12px;
  border: 1px solid rgba(15, 59, 76, 0.14);
  border-radius: var(--radius);
  background: rgba(238, 243, 246, 0.24);
  font-size: 0.78rem;
  font-weight: 800;
}

.gallery-layout {
  align-items: start;
}

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

.gallery-grid article {
  min-height: 178px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(238, 243, 246, 0.46)),
    linear-gradient(135deg, rgba(79, 109, 122, 0.08), rgba(238, 243, 246, 0.26));
}

.gallery-grid article:first-child {
  min-height: 230px;
  grid-row: span 2;
}

.gallery-grid span {
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-weight: 800;
}

.appointment-layout,
.diagnostic-layout {
  align-items: start;
}

.privacy-note {
  margin-top: 26px;
  padding: 18px;
  color: var(--teal-700);
  background: rgba(238, 243, 246, 0.28);
  font-weight: 800;
}

.appointment-form,
.diagnostic-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.92);
}

.diagnostic-form {
  gap: 18px;
  box-shadow: var(--shadow);
}

.diagnostic-form-head {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(135deg, rgba(238, 243, 246, 0.44), rgba(238, 243, 246, 0.36));
}

.diagnostic-form-head strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.22rem;
}

.diagnostic-form-head span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.diagnostic-preview {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.diagnostic-preview article {
  overflow: hidden;
  display: grid;
  grid-template-columns: 136px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.88);
}

.diagnostic-preview img {
  grid-row: 1 / 3;
  width: 136px;
  height: 112px;
  object-fit: cover;
}

.diagnostic-preview strong,
.diagnostic-preview span {
  grid-column: 2;
  display: block;
  padding-right: 16px;
}

.diagnostic-preview strong {
  align-self: end;
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.04rem;
}

.diagnostic-preview span {
  align-self: start;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-row {
  display: grid;
  gap: 7px;
}

label,
.consent-check {
  font-weight: 800;
}

.diagnostic-question {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.diagnostic-question legend {
  width: 100%;
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.question-helper {
  margin: -6px 0 0;
  color: var(--teal-700);
  font-size: 0.86rem;
  font-weight: 850;
}

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

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

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

.option-stack {
  display: grid;
  gap: 8px;
}

.option-grid label,
.option-stack label,
.checkbox-grid label {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid rgba(16, 42, 48, 0.12);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.option-grid input,
.option-stack input,
.checkbox-grid input {
  width: 18px;
  height: 18px;
  min-height: auto;
  padding: 0;
  accent-color: var(--teal-600);
  flex: 0 0 auto;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(16, 42, 48, 0.16);
  border-radius: var(--radius);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal-600);
  outline: 4px solid rgba(238, 243, 246, 0.58);
}

.consent-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.94rem;
}

.consent-check input {
  width: 20px;
  height: 20px;
  min-height: auto;
  margin-top: 4px;
  accent-color: var(--teal-600);
}

.form-submit,
.form-whatsapp-link {
  width: 100%;
}

.form-status {
  min-height: 28px;
  margin: 0;
  font-weight: 900;
}

.form-status.is-error {
  color: #A33131;
}

.form-status.is-success {
  color: #0F3B4C;
}

.diagnostic-result {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 246, 0.24));
  box-shadow: var(--shadow-soft);
}

.diagnostic-result h3 {
  font-size: 1.45rem;
}

.result-summary {
  margin: 0;
  padding: 16px 18px;
  color: var(--ink);
  border-left: 5px solid var(--teal-600);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 750;
}

.result-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.result-tags,
.result-columns {
  display: grid;
  gap: 12px;
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
}

.result-tags span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 11px;
  color: var(--teal-700);
  border-radius: var(--pill);
  background: linear-gradient(135deg, var(--teal-200), rgba(238, 243, 246, 0.68));
  font-size: 0.82rem;
  font-weight: 900;
}

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

.result-columns div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.result-columns strong {
  display: block;
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 0.95rem;
}

.result-columns ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 64px;
  background:
    radial-gradient(circle at 12% 12%, rgba(238, 243, 246, 0.58), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(238, 243, 246, 0.76), transparent 34%),
    linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 62%, #FFFFFF 100%);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
}

.blog-hero h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5vw, 4.35rem);
}

.blog-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 700;
}

.blog-hero-media {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.blog-hero-media figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.blog-article {
  max-width: 850px;
}

.blog-article h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.45rem);
}

.blog-article h3 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.55rem;
}

.blog-article p,
.blog-card p,
.blog-closing p {
  color: var(--muted);
  font-weight: 700;
}

.blog-callout {
  display: grid;
  gap: 8px;
  margin: 32px 0;
  padding: 22px;
  border-left: 5px solid var(--brand-yellow);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(238, 243, 246, 0.66), rgba(238, 243, 246, 0.38));
}

.blog-callout strong {
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.1rem;
}

.blog-callout span {
  color: var(--muted);
  font-weight: 800;
}

.blog-aside {
  position: sticky;
  top: 140px;
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.blog-aside img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.blog-aside div {
  padding: 20px;
}

.blog-aside strong {
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.05rem;
}

.blog-aside ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.blog-list-section {
  background:
    linear-gradient(180deg, rgba(238, 243, 246, 0.18), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.blog-card {
  overflow: hidden;
  display: grid;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.blog-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.blog-card div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.blog-meta {
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.32rem;
  line-height: 1.2;
}

.blog-card p {
  margin: 0;
  font-size: 0.96rem;
}

.blog-card a {
  color: var(--teal-700);
  font-weight: 900;
  text-decoration: none;
}

.blog-card a:hover {
  text-decoration: underline;
}

.blog-closing {
  background: linear-gradient(135deg, rgba(16, 42, 48, 0.96), rgba(15, 59, 76, 0.9));
}

.blog-closing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: var(--white);
}

.blog-closing h2,
.blog-closing p,
.blog-closing .section-kicker {
  color: var(--white);
}

.blog-closing p {
  max-width: 740px;
  opacity: 0.9;
}

.blog-closing-actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.location-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.location-media-stack {
  display: grid;
  gap: 10px;
}

.storefront-panel {
  overflow: hidden;
  background: #092C38;
}

.storefront-panel img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.storefront-panel figcaption {
  padding: 9px 12px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
}

.location-map-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 12px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--petroleum-800);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.location-map-link:hover {
  color: var(--white);
  background: var(--petroleum-900);
  transform: translateY(-1px);
}

address {
  margin-top: 20px;
  color: var(--ink);
  font-style: normal;
  font-size: 1.22rem;
  font-weight: 850;
}

.map-frame {
  overflow: hidden;
  min-height: 380px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 380px;
}

.location-section {
  min-height: 0;
  display: grid;
  align-items: center;
  padding: 34px 0;
}

.location-copy .section-kicker {
  margin-bottom: 7px;
  font-size: 0.74rem;
}

.location-copy h2 {
  font-size: clamp(2.65rem, 4vw, 3.45rem);
  line-height: 1.04;
}

.location-copy > p {
  margin-top: 12px;
  font-size: 0.96rem;
  line-height: 1.5;
}

.location-copy address {
  margin-top: 14px;
  font-size: 1.1rem;
  line-height: 1.35;
}

.location-copy .location-details {
  gap: 10px;
  margin: 15px 0 0;
}

.location-copy .location-details div {
  padding: 12px;
}

.location-copy .location-details span {
  font-size: 0.68rem;
}

.location-copy .location-details strong {
  margin-top: 3px;
  font-size: 0.82rem;
  line-height: 1.28;
}

.location-copy .location-details p {
  margin-top: 3px;
  font-size: 0.75rem;
  line-height: 1.25;
}

.location-copy .payment-pills {
  gap: 6px;
  margin-top: 13px;
}

.location-copy .payment-pills span {
  min-height: 30px;
  padding: 5px 10px;
  font-size: 0.72rem;
}

.location-copy .hero-actions {
  gap: 8px;
  margin-top: 10px;
}

.location-copy .button {
  min-height: 40px;
  padding: 8px 15px;
  font-size: 0.76rem;
}

.location-section .map-frame,
.location-section .map-frame iframe {
  min-height: 174px;
  height: 174px;
}

.faq-list {
  max-width: 940px;
  display: grid;
  gap: 6px;
  margin: 14px auto 0;
}

.faq-section {
  padding: 18px 0 24px;
}

.faq-section .section-kicker {
  margin-bottom: 3px;
  font-size: 0.66rem;
}

.faq-section h2 {
  font-size: clamp(2rem, 3.4vw, 2.45rem);
  line-height: 1.02;
}

.faq-list details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

.faq-list summary {
  min-height: 46px;
  padding: 10px 16px;
  cursor: pointer;
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.16;
}

.faq-list details[open] summary {
  color: var(--teal-700);
  background: var(--soft-2);
}

.faq-list p {
  margin-top: 8px;
  padding: 0 16px 14px;
  font-size: 0.8rem;
  line-height: 1.4;
}

.final-cta {
  padding: 64px 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(238, 243, 246, 0.78), rgba(238, 243, 246, 0.92)),
    var(--teal-200);
}

.final-inner {
  max-width: 880px;
  text-align: center;
}

.final-inner p {
  color: #315760;
}

.final-inner .hero-actions {
  justify-content: center;
}

.final-map-frame {
  width: min(100%, 560px);
  height: 170px;
  min-height: 170px;
  margin: 8px auto 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  background: #FFFFFF;
}

.final-map-frame iframe {
  display: block;
  width: 100%;
  height: 170px;
  min-height: 170px;
  border: 0;
}

.final-cta h2 {
  margin: 0 auto;
  color: #FFFFFF;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.site-footer {
  padding: 32px 0 78px;
  color: rgba(255, 255, 255, 0.84);
  background: #102A30;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(180px, 0.7fr) minmax(160px, 0.5fr);
  gap: 28px;
  align-items: start;
}

.footer-grid strong {
  display: block;
  color: var(--white);
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.2rem;
}

.footer-grid p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.38;
}

.footer-links,
.footer-grid div:last-child {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.footer-links {
  justify-items: start;
}

.footer-links .js-whatsapp-link::before {
  display: none;
  content: none;
}

.footer-social {
  justify-items: end;
}

.footer-grid a {
  color: var(--white);
  font-weight: 850;
  font-size: 0.92rem;
  line-height: 1.25;
}

.footer-grid a:hover {
  color: #F5C400;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 54px;
  padding: 0 20px;
  color: var(--white);
  background: #1F9E62;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(31, 158, 98, 0.28);
  font-weight: 900;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float span {
  font-size: 0.94rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 72;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(620px, calc(100% - 32px));
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 0;
  font-weight: 800;
}

.google-review {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.google-review__author {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 850;
}

.google-review__author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.google-review a {
  color: var(--teal-700);
  font-weight: 850;
}

.legal-section {
  background: linear-gradient(135deg, rgba(238, 243, 246, 0.42), rgba(255, 255, 255, 0.96) 58%, rgba(238, 243, 246, 0.24));
}

.legal-content {
  max-width: 900px;
}

.legal-content h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: 4rem;
}

.legal-content h2 {
  margin-top: 36px;
  font-size: 1.48rem;
}

.legal-content .updated {
  color: var(--teal-700);
  font-weight: 850;
}

.legal-content .button {
  margin-top: 30px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-inner,
  .photo-ribbon figure,
  .section-heading,
  .feature-copy,
  .product-copy,
  .appointment-form,
  .diagnostic-form {
    animation: fade-up 520ms ease both;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1120px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .header-main {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 12px 0;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .split-layout,
  .feature-layout,
  .product-layout,
  .reviews-layout,
  .gallery-layout,
  .appointment-layout,
  .diagnostic-layout,
  .location-layout,
  .blog-hero-grid,
  .blog-article-layout,
  .blog-closing-panel {
    grid-template-columns: 1fr;
  }

  .exam-layout {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: 16px 30px;
  }

  .exam-copy h2 {
    font-size: clamp(2.05rem, 4.2vw, 2.65rem);
  }

  .exam-description p {
    margin-top: 8px;
    font-size: 0.82rem;
    line-height: 1.36;
  }

  .exam-section .exam-note {
    margin-top: 9px;
    font-size: 0.84rem;
  }

  .exam-footer {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .exam-footer .guidance-list {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .service-grid,
  .difference-grid,
  .process-list,
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .blog-aside {
    position: static;
  }

  .blog-closing-actions {
    width: 100%;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header {
    backdrop-filter: blur(18px);
  }

  .container {
    width: min(100% - 30px, var(--container));
  }

  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 8px;
    min-height: auto;
    padding: 6px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 48px;
    height: 34px;
  }

  .brand-wordmark,
  .brand > span:last-child {
    gap: 1px;
    padding-left: 10px;
  }

  .brand-wordmark::before,
  .brand > span:last-child::before {
    width: 3px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-height: 38px;
    padding: 8px 13px;
    font-size: 0.78rem;
  }

  .header-main .nav-cta {
    min-height: 38px;
    padding: 8px 13px;
  }

  .main-nav {
    grid-column: 1 / -1;
    margin-inline: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .main-nav a {
    min-height: 30px;
    padding: 4px 8px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: max(520px, calc(100svh - 96px));
    align-items: start;
    padding: 16px 0 22px;
  }

  .hero-media img {
    object-position: 54% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 54%, rgba(255, 255, 255, 0) 100%),
      linear-gradient(180deg, rgba(238, 243, 246, 0.08), rgba(255, 255, 255, 0.08));
  }

  .hero-inner {
    width: min(60vw, 238px);
    min-height: min(60vw, 238px);
    margin-left: 15px;
    margin-right: auto;
    padding: 14px;
    border: 1px solid rgba(16, 42, 48, 0.1);
    border-left: 4px solid var(--brand-yellow);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
  }

  .hero .section-kicker {
    margin-bottom: 6px;
    font-size: 0.58rem;
    line-height: 1.1;
  }

  h1 {
    max-width: 100%;
    font-size: 2.42rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.08rem, 5.25vw, 1.28rem);
    line-height: 1.05;
  }

  h2 {
    font-size: 2.2rem;
  }

  .legal-content h1 {
    font-size: 2.55rem;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 7px;
    font-size: 0.66rem;
    line-height: 1.22;
  }

  .hero-actions,
  .final-inner .hero-actions {
    display: grid;
    gap: 7px;
    margin-top: 10px;
  }

  .hero .hero-actions {
    max-width: 100%;
  }

  .hero .button {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 0.68rem;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 42px 0;
    scroll-margin-top: 88px;
  }

  .faq-section {
    padding: 14px 0 20px;
  }

  .faq-section h2 {
    font-size: 1.45rem;
  }

  .faq-section .faq-list {
    gap: 5px;
    margin-top: 10px;
  }

  .faq-section .faq-list summary {
    min-height: 42px;
    padding: 9px 11px;
    font-size: 0.72rem;
  }

  .faq-section .faq-list p {
    padding: 0 11px 11px;
    font-size: 0.68rem;
  }

  .photo-ribbon {
    margin-top: 0;
    padding: 14px 0 26px;
  }

  .hero-conversion-badges,
  .conversion-band-inner {
    grid-template-columns: 1fr;
  }

  .hero-conversion-badges {
    margin-top: 22px;
  }

  .hero-conversion-badges article {
    min-height: auto;
  }

  .conversion-band {
    margin-top: 0;
    padding: 12px 0;
  }

  .conversion-band-inner {
    padding: 20px;
  }

  .conversion-band strong {
    font-size: 1.06rem;
  }

  .intro-section {
    padding: 18px 0 24px;
  }

  .intro-section .split-layout {
    gap: 14px;
  }

  .intro-section .section-kicker {
    margin-bottom: 7px;
    font-size: 0.68rem;
  }

  .intro-section h2 {
    max-width: 100%;
    font-size: clamp(1.78rem, 8.2vw, 2.08rem);
    line-height: 1.04;
  }

  .intro-section .text-stack p {
    margin-top: 8px;
    font-size: 0.88rem;
    line-height: 1.36;
  }

  .intro-section .mini-stats {
    gap: 6px;
    margin-top: 12px;
  }

  .intro-section .mini-stats span {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 0.74rem;
  }

  .intro-section .highlight-quote {
    margin-top: 12px;
    padding: 12px 14px;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .exam-section {
    min-height: calc(100svh - 88px);
    padding: 7px 0 8px;
  }

  .exam-layout {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .exam-image img {
    height: 126px;
    aspect-ratio: auto;
    object-position: center 43%;
  }

  .exam-copy .section-kicker {
    margin-bottom: 4px;
    font-size: 0.64rem;
  }

  .exam-copy h2 {
    max-width: 100%;
    font-size: clamp(1.55rem, 7vw, 1.82rem);
    line-height: 1.02;
  }

  .exam-description {
    columns: 2;
    column-gap: 14px;
  }

  .exam-description p {
    break-inside: avoid;
    margin-top: 6px;
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .exam-section .exam-note {
    margin-top: 7px;
    font-size: 0.74rem;
    line-height: 1.28;
  }

  .exam-footer {
    grid-template-columns: 1fr auto;
    gap: 7px;
  }

  .exam-footer .schedule-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .exam-footer .schedule-list div {
    min-height: 54px;
    padding: 8px 9px;
  }

  .exam-footer .schedule-list span {
    font-size: 0.57rem;
  }

  .exam-footer .schedule-list strong {
    margin-top: 1px;
    font-size: 0.76rem;
  }

  .exam-footer .button {
    width: auto;
    min-height: 42px;
    padding: 8px 13px;
    font-size: 0.74rem;
  }

  .exam-footer .guidance-list {
    gap: 3px;
    padding: 9px 11px;
  }

  .exam-footer .guidance-list strong {
    font-size: 0.78rem;
  }

  .exam-footer .guidance-list p {
    padding-left: 13px;
    font-size: 0.66rem;
    line-height: 1.28;
  }

  .services-section {
    padding: 16px 0 22px;
  }

  .services-section .wide-heading {
    margin-bottom: 12px;
  }

  .services-section .section-kicker {
    margin-bottom: 4px;
    font-size: 0.62rem;
  }

  .services-section h2 {
    font-size: 1.65rem;
    line-height: 1.03;
  }

  .services-section .wide-heading > p:last-child {
    margin-top: 5px;
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .services-section .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .services-section .service-media {
    height: 92px;
    min-height: 92px;
  }

  .services-section .service-body {
    padding: 9px;
  }

  .services-section .service-body .service-number {
    min-width: 28px;
    height: 21px;
    margin-bottom: 5px;
    font-size: 0.58rem;
  }

  .services-section .service-body h3 {
    font-size: 0.78rem;
    line-height: 1.16;
  }

  .services-section .service-card p {
    margin-top: 5px;
    font-size: 0.62rem;
    line-height: 1.28;
  }

  .services-section .service-card .service-body > p:not(.service-note) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .services-section .service-mini-cta {
    min-height: 24px;
    margin-top: 6px;
    padding: 4px 7px;
    font-size: 0.58rem;
  }

  .services-section .service-points,
  .services-section .vision-zones {
    gap: 3px;
    margin-top: 6px;
  }

  .services-section .service-points li,
  .services-section .vision-zones span {
    min-height: 20px;
    padding: 3px 5px;
    font-size: 0.54rem;
  }

  .services-section .lens-thickness-guide {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 6px;
    padding: 4px;
  }

  .services-section .lens-thickness-group {
    padding: 4px 3px;
  }

  .services-section .lens-thickness-group header {
    margin-bottom: 3px;
  }

  .services-section .lens-thickness-group header strong {
    font-size: 0.5rem;
  }

  .services-section .lens-thickness-group header span {
    font-size: 0.4rem;
  }

  .services-section .lens-profile-svg text {
    font-size: 14px;
  }

  .services-section .service-note {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.54rem !important;
    line-height: 1.22 !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .services-section .service-card:last-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    grid-template-rows: 1fr;
  }

  .services-section .service-card:last-child .service-media {
    height: 100%;
    min-height: 132px;
  }

  .reviews-section {
    min-height: calc(100svh - 88px);
    padding: 10px 0 12px;
  }

  .reviews-section .reviews-layout {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .reviews-section .section-kicker {
    margin-bottom: 4px;
    font-size: 0.62rem;
  }

  .reviews-section h2 {
    max-width: 100%;
    font-size: 1.65rem;
    line-height: 1.03;
  }

  .reviews-section .section-heading > p {
    max-width: 100%;
    margin-top: 6px;
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .reviews-section .review-status-copy {
    padding: 7px 10px;
    border-left-width: 3px;
    font-size: 0.66rem;
  }

  .reviews-section .section-heading > .button {
    width: auto;
    min-height: 38px;
    margin-top: 8px;
    padding: 8px 12px;
    font-size: 0.68rem;
  }

  .reviews-section .review-panel {
    gap: 6px;
    padding: 11px;
  }

  .reviews-section .review-panel .google-label {
    height: 24px;
    font-size: 0.58rem;
  }

  .reviews-section .review-panel > strong {
    font-size: 1rem;
  }

  .reviews-section .review-panel > p {
    font-size: 0.66rem;
    line-height: 1.28;
  }

  .reviews-section .review-source-note {
    padding: 7px 9px;
  }

  .reviews-section .review-placeholder {
    padding: 9px;
  }

  .reviews-section .review-placeholder h3 {
    font-size: 0.8rem;
  }

  .reviews-section .review-placeholder p {
    margin-top: 4px;
    font-size: 0.64rem;
    line-height: 1.28;
  }

  .photo-ribbon-grid,
  .service-grid,
  .difference-grid,
  .process-list,
  .schedule-list,
  .location-details,
  .blog-card-grid,
  .question-pair,
  .option-grid,
  .option-grid-compact,
  .checkbox-grid,
  .result-columns,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .photo-ribbon img,
  .photo-ribbon figure:first-child img,
  .image-panel img,
  .image-panel-product img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .exam-image img {
    height: 126px;
    aspect-ratio: auto;
  }

  .gallery-grid article:first-child {
    grid-row: auto;
  }

  .appointment-form,
  .diagnostic-form {
    padding: 22px;
  }

  .blog-hero {
    padding: 58px 0 48px;
  }

  .blog-hero-media img,
  .blog-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .blog-article-layout {
    gap: 28px;
  }

  .blog-card div,
  .blog-aside div {
    padding: 18px;
  }

  .blog-closing-actions {
    min-width: 0;
  }

  .diagnostic-preview article {
    grid-template-columns: 112px 1fr;
  }

  .diagnostic-preview img {
    width: 112px;
    height: 104px;
  }

  .diagnostic-question {
    padding: 16px;
  }

  .diagnostic-result h3 {
    font-size: 1.18rem;
  }

  .result-summary {
    font-size: 0.94rem;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }

  .storefront-panel img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .location-section {
    min-height: 0;
    padding: 20px 0 22px;
  }

  .location-section .location-layout {
    gap: 9px;
  }

  .location-copy .section-kicker {
    margin-bottom: 4px;
    font-size: 0.62rem;
  }

  .location-copy h2 {
    font-size: 2.1rem;
    line-height: 1.06;
  }

  .location-copy > p {
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .location-copy address {
    margin-top: 9px;
    font-size: 0.86rem;
    line-height: 1.3;
  }

  .location-copy .location-map-link {
    min-height: 32px;
    margin-top: 8px;
    padding: 6px 10px;
    font-size: 0.66rem;
  }

  .location-copy .location-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 7px;
  }

  .location-copy .location-details div {
    padding: 7px;
  }

  .location-copy .location-details span {
    font-size: 0.58rem;
  }

  .location-copy .location-details strong {
    font-size: 0.68rem;
  }

  .location-copy .location-details p {
    font-size: 0.64rem;
  }

  .location-copy .payment-pills {
    gap: 4px;
    margin-top: 7px;
  }

  .location-copy .payment-pills span {
    min-height: 26px;
    padding: 4px 8px;
    font-size: 0.62rem;
  }

  .location-copy .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 7px;
  }

  .location-copy .button {
    min-height: 32px;
    padding: 6px 8px;
    font-size: 0.61rem;
  }

  .location-media-stack {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .location-section .storefront-panel img {
    height: 280px;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .location-section .storefront-panel figcaption {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 0.62rem;
    line-height: 1.24;
  }

  .location-section .map-frame,
  .location-section .map-frame iframe {
    min-height: 188px;
    height: 188px;
  }

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

  .footer-grid div:last-child {
    justify-items: start;
  }

  .footer-social {
    justify-items: start;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 108px;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 999px;
  }

  .whatsapp-float span {
    font-size: 0.88rem;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-cta,
  .button {
    min-height: 52px;
    padding-inline: 18px;
  }
}

/* Guided visual consultation */
.diagnostic-section {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 22px 0;
  scroll-margin-top: var(--header-height);
}

.diagnostic-section .diagnostic-layout {
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
  gap: 38px;
  align-items: center;
}

.diagnostic-section .diagnostic-copy {
  position: relative;
  align-self: stretch;
  min-height: 500px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(238, 243, 246, 0.18);
  border-radius: var(--radius);
  background: var(--petroleum-900);
  box-shadow: 0 24px 58px rgba(7, 63, 74, 0.24);
}

.diagnostic-section .diagnostic-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 43, 51, 1) 0%, rgba(7, 43, 51, 0.98) 43%, rgba(7, 43, 51, 0.7) 57%, rgba(7, 43, 51, 0.04) 100%),
    linear-gradient(0deg, rgba(7, 43, 51, 1) 0%, rgba(7, 43, 51, 0.98) 34%, rgba(7, 43, 51, 0.3) 61%, rgba(7, 43, 51, 0) 100%);
  pointer-events: none;
}

.diagnostic-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 59%;
  height: 61%;
  margin: 0;
}

.diagnostic-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.diagnostic-copy-content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-content: stretch;
  padding: 26px;
}

.diagnostic-intro {
  max-width: 56%;
}

.diagnostic-section .diagnostic-copy .section-kicker {
  color: var(--teal-300);
}

.diagnostic-section .diagnostic-copy h2 {
  max-width: 360px;
  color: var(--white);
  font-size: 1.74rem;
  line-height: 1.08;
}

.diagnostic-intro > p:not(.section-kicker) {
  max-width: 360px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  line-height: 1.46;
}

.diagnostic-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: end;
  gap: 8px;
  margin-top: 18px;
}

.diagnostic-benefits article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 52px;
  padding: 8px 10px;
  color: var(--white);
  border: 1px solid rgba(238, 243, 246, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.diagnostic-benefits strong {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--petroleum-900);
  background: linear-gradient(135deg, var(--cream), var(--white));
  font-size: 0.68rem;
}

.diagnostic-benefits b {
  display: block;
  color: var(--white);
  font-size: 0.78rem;
  line-height: 1.28;
}

.diagnostic-section .privacy-note {
  max-width: none;
  margin-top: 9px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.76);
  border-color: rgba(238, 243, 246, 0.14);
  border-left: 3px solid var(--cream);
  background: rgba(7, 43, 51, 0.58);
  box-shadow: none;
  font-size: 0.66rem;
  line-height: 1.38;
}

.diagnostic-start {
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  color: var(--petroleum-900);
  background: linear-gradient(90deg, var(--cream), #FFFBD0);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.diagnostic-start:hover {
  color: var(--petroleum-900);
  background: linear-gradient(90deg, #FFF36A, var(--white));
}

.diagnostic-form {
  height: min(620px, calc(100svh - var(--header-height) - 44px));
  min-height: 500px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 10px;
  overflow: hidden;
  padding: 18px;
}

.diagnostic-form-head {
  gap: 9px;
  padding: 12px 14px;
}

.diagnostic-form-head > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
}

.diagnostic-form-head strong {
  font-size: 1rem;
}

.diagnostic-form-head span {
  flex: 0 0 auto;
  font-size: 0.76rem;
}

.wizard-progress {
  height: 7px;
  overflow: hidden;
  border-radius: var(--pill);
  background: rgba(16, 42, 48, 0.1);
}

.wizard-progress span {
  width: 7.14%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-600), var(--teal-300), var(--brand-yellow));
  transition: width 220ms ease;
}

.wizard-viewport {
  min-height: 0;
  display: grid;
}

.wizard-viewport[hidden],
.wizard-actions[hidden] {
  display: none;
}

.wizard-step {
  min-width: 0;
  min-height: 0;
  display: none;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  padding: 18px 4px 12px;
  border: 0;
  box-shadow: none;
}

.wizard-step.is-active {
  display: grid;
}

.wizard-step:focus {
  outline: 0;
}

.wizard-step-number {
  width: 36px;
  height: 27px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--pill);
  color: var(--teal-700);
  background: linear-gradient(135deg, var(--teal-200), rgba(238, 243, 246, 0.82));
  font-size: 0.72rem;
  font-weight: 900;
}

.wizard-step legend {
  width: 100%;
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.2;
}

.wizard-step .question-helper {
  margin: -4px 0 2px;
  font-size: 0.8rem;
  line-height: 1.4;
}

.wizard-step .option-grid label,
.wizard-step .option-stack label,
.wizard-step .checkbox-grid label,
.avatar-options label {
  min-height: 42px;
  padding: 8px 11px;
  border-color: rgba(16, 42, 48, 0.14);
  font-size: 0.82rem;
  line-height: 1.25;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.wizard-step .option-grid label:has(input:checked),
.wizard-step .option-stack label:has(input:checked),
.wizard-step .checkbox-grid label:has(input:checked),
.avatar-options label:has(input:checked) {
  color: var(--ink);
  border-color: var(--teal-600);
  background: rgba(238, 243, 246, 0.34);
}

.wizard-step .option-grid label:hover,
.wizard-step .option-stack label:hover,
.wizard-step .checkbox-grid label:hover,
.avatar-options label:hover {
  border-color: var(--teal-500);
  transform: translateY(-1px);
}

.wizard-step input,
.wizard-step select,
.wizard-step textarea {
  min-height: 48px;
}

.wizard-step input[type="radio"],
.wizard-step input[type="checkbox"],
.avatar-options input {
  width: 18px;
  height: 18px;
  min-height: auto;
}

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

.avatar-options label {
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(16, 42, 48, 0.14);
  border-radius: var(--radius);
  background: var(--white);
}

.wizard-actions {
  display: grid;
  grid-template-columns: auto minmax(180px, 0.42fr);
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.wizard-actions:has(.wizard-back:disabled) {
  grid-template-columns: 1fr;
}

.wizard-actions:has(.wizard-back:disabled) .wizard-back {
  display: none;
}

.wizard-back,
.result-restart {
  min-height: 44px;
  padding: 8px 13px;
  color: var(--teal-700);
  border: 0;
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.wizard-back:disabled {
  opacity: 0.38;
  cursor: default;
}

.wizard-next {
  width: 100%;
  min-height: 46px;
  padding: 10px 18px;
  font-size: 0.86rem;
}

.diagnostic-form .form-status {
  min-height: 0;
  font-size: 0.76rem;
  line-height: 1.25;
}

.diagnostic-form .form-status.is-error {
  padding: 8px 11px;
  color: #8A2525;
  background: #FFF0F0;
  border-left: 3px solid #C94B4B;
  border-radius: 6px;
}

.diagnostic-form .form-status:empty {
  display: none;
}

.diagnostic-in-view .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.diagnostic-result[hidden] {
  display: none;
}

.diagnostic-form.is-showing-result {
  grid-template-rows: auto auto minmax(0, 1fr);
}

.diagnostic-form.is-showing-result .diagnostic-form-head {
  padding-block: 9px;
}

.diagnostic-form.is-showing-result .wizard-progress {
  display: none;
}

.diagnostic-result {
  min-height: 0;
  gap: 11px;
  overflow-y: auto;
  padding: 16px;
  scrollbar-width: thin;
}

.result-report-sheet {
  overflow: hidden;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  min-height: 368px;
  border: 1px solid rgba(16, 42, 48, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(16, 42, 48, 0.11);
}

.result-report-identity {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 16px 13px;
  color: var(--white);
  background: linear-gradient(155deg, var(--petroleum-900), #145B66);
}

.result-report-brand {
  font-family: Poppins, Inter, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.result-report-label {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.54rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.result-report-identity .result-avatar {
  margin: auto auto 12px;
}

.result-report-person {
  display: grid;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.result-report-person strong {
  overflow-wrap: anywhere;
  font-family: Poppins, Inter, sans-serif;
  font-size: 0.72rem;
  line-height: 1.25;
}

.result-report-person span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.55rem;
}

.result-report-content {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
}

.result-report-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

.result-report-profile,
.result-report-recommendation {
  min-width: 0;
  padding: 15px 14px 12px;
}

.result-report-recommendation {
  border-left: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(232, 250, 250, 0.5), rgba(255, 248, 216, 0.35));
}

.result-report-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-700);
  font-size: 0.56rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result-report-profile h3 {
  display: inline-flex;
  max-width: 100%;
  margin: 0;
  padding: 6px 9px;
  color: var(--white);
  border-radius: 5px;
  background: #174B80;
  font-size: 0.78rem;
  line-height: 1.2;
}

.result-report-profile p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.35;
}

.result-report-recommendation > strong {
  display: block;
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 0.72rem;
  line-height: 1.3;
}

.result-report-profile ul,
.result-report-recommendation ul {
  display: grid;
  gap: 5px;
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}

.result-report-profile li,
.result-report-recommendation li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 0.59rem;
  font-weight: 700;
  line-height: 1.28;
}

.result-report-profile li::before,
.result-report-recommendation li::before {
  content: "";
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: #4F6D7A;
  box-shadow: 0 0 0 1px #4F6D7A;
}

.result-report-benefits {
  padding: 10px 13px 12px;
  border-top: 1px solid var(--line);
  background: #F8FAFC;
}

.result-report-benefits > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  text-align: center;
  font-family: Poppins, Inter, sans-serif;
  font-size: 0.68rem;
}

.result-report-benefits > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.result-report-benefits article {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  min-width: 0;
  padding: 6px;
  border: 1px solid rgba(16, 42, 48, 0.1);
  border-radius: 6px;
  background: var(--white);
}

.result-report-benefits article > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--petroleum-900);
  border-radius: 50%;
  background: var(--brand-yellow-soft);
  font-size: 0.5rem;
  font-weight: 900;
}

.result-report-benefits article div {
  min-width: 0;
}

.result-report-benefits article strong,
.result-report-benefits article small {
  display: block;
}

.result-report-benefits article strong {
  color: var(--ink);
  font-size: 0.54rem;
  line-height: 1.15;
}

.result-report-benefits article small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.48rem;
  line-height: 1.2;
}

.result-avatar {
  position: relative;
  width: 112px;
  height: 112px;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: rgba(238, 243, 246, 0.3);
  box-shadow: var(--shadow-soft);
}

.result-avatar img {
  position: absolute;
  top: -50%;
  width: 200%;
  max-width: none;
  height: 200%;
  object-fit: cover;
}

.result-avatar img.is-female {
  left: 0;
}

.result-avatar img.is-male {
  left: -100%;
}

.result-avatar img.is-neutral {
  inset: 10%;
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.result-profile-cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 44%);
  gap: 10px;
  min-height: 308px;
  overflow-x: auto;
  padding: 1px 1px 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--teal-500) transparent;
}

.result-profile-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 104px 1fr;
  height: 298px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(16, 42, 48, 0.08);
  scroll-snap-align: start;
}

.result-profile-heading {
  min-height: 54px;
  padding: 8px 11px;
  color: var(--white);
  background: var(--profile-accent, var(--petroleum-800));
}

.result-profile-heading h4 {
  margin: 0;
  color: inherit;
  font-size: 0.78rem;
  line-height: 1.15;
}

.result-profile-heading span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.6rem;
  font-weight: 750;
  line-height: 1.2;
}

.result-profile-card img {
  width: 100%;
  height: 104px;
  object-fit: cover;
}

.result-profile-body {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 10px 11px 12px;
}

.result-profile-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.35;
}

.result-profile-body strong {
  color: var(--profile-accent, var(--petroleum-800));
  font-size: 0.64rem;
  text-transform: uppercase;
}

.result-profile-body ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-profile-body li {
  position: relative;
  padding-left: 17px;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 750;
  line-height: 1.25;
}

.result-profile-body li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--profile-accent, var(--petroleum-800));
  font-size: 0.48rem;
  font-weight: 900;
}

.result-profile-card.is-digital,
.result-profile-card.is-distance {
  --profile-accent: #174B80;
}

.result-profile-card.is-driver {
  --profile-accent: #4F6D7A;
}

.result-profile-card.is-sun {
  --profile-accent: #C06B08;
}

.result-profile-card.is-multifocal,
.result-profile-card.is-near,
.result-profile-card.is-precision {
  --profile-accent: #68558A;
}

.result-profile-card.is-thin {
  --profile-accent: #0F3B4C;
}

.result-profile-card.is-balanced {
  --profile-accent: var(--petroleum-800);
}

.result-comparison-guide {
  display: grid;
  gap: 9px;
  min-height: 302px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(232, 250, 250, 0.94), rgba(255, 248, 216, 0.72));
}

.result-comparison-guide[hidden] {
  display: none;
}

.result-comparison-heading span {
  color: var(--teal-700);
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result-comparison-heading h4 {
  margin: 2px 0 0;
  font-size: 0.86rem;
  line-height: 1.2;
}

.result-comparison-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 82%);
  gap: 10px;
  min-height: 236px;
  overflow-x: auto;
  padding: 1px 1px 7px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--teal-500) transparent;
}

.result-comparison-card {
  --comparison-accent: var(--petroleum-800);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 0.58fr);
  grid-template-rows: auto 1fr;
  height: 228px;
  min-height: 228px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(16, 42, 48, 0.08);
  scroll-snap-align: start;
}

.result-comparison-card h5 {
  grid-column: 1 / -1;
  margin: 0;
  padding: 9px 12px;
  color: var(--white);
  background: var(--comparison-accent);
  font-size: 0.76rem;
  line-height: 1.2;
}

.result-comparison-card > img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

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

.result-comparison-columns > div {
  padding: 10px;
}

.result-comparison-columns > div + div {
  border-left: 1px solid var(--line);
  background: rgba(238, 243, 246, 0.13);
}

.result-comparison-columns strong {
  display: block;
  color: var(--comparison-accent);
  font-size: 0.62rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.result-comparison-columns ul {
  display: grid;
  gap: 7px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.result-comparison-columns li {
  position: relative;
  padding-left: 12px;
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.3;
}

.result-comparison-columns li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--comparison-accent);
}

.result-comparison-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.54rem;
  line-height: 1.3;
}

.result-comparison-card.is-digital {
  --comparison-accent: #174B80;
}

.result-comparison-card.is-driver {
  --comparison-accent: #4F6D7A;
}

.result-comparison-card.is-sun {
  --comparison-accent: #C06B08;
}

.result-comparison-card.is-multifocal {
  --comparison-accent: #68558A;
}

.result-comparison-card.is-thin {
  --comparison-accent: #0F3B4C;
}

.diagnostic-result .result-summary,
.result-primary {
  margin: 0;
  padding: 11px 13px;
  font-size: 0.8rem;
  line-height: 1.4;
}

.result-primary {
  border-left: 5px solid var(--brand-yellow);
  border-radius: var(--radius);
  background: rgba(238, 243, 246, 0.28);
}

.result-primary strong {
  display: block;
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 0.78rem;
}

.result-primary p {
  margin-top: 5px;
  font-size: 0.78rem;
  line-height: 1.4;
}

.diagnostic-result .result-columns {
  gap: 8px;
}

.diagnostic-result .result-columns div {
  padding: 11px;
}

.diagnostic-result .result-columns strong {
  font-size: 0.76rem;
}

.diagnostic-result .result-columns ul {
  gap: 5px;
  margin-top: 7px;
  font-size: 0.72rem;
  line-height: 1.35;
}

.diagnostic-result .result-disclaimer {
  font-size: 0.68rem;
  line-height: 1.35;
}

.result-callout {
  margin: 0;
  color: var(--ink);
  text-align: center;
  font-family: Poppins, Inter, sans-serif;
  font-size: 0.86rem;
  font-weight: 850;
}

.diagnostic-result .form-whatsapp-link {
  min-height: 46px;
  padding: 10px 16px;
  font-size: 0.84rem;
}

.result-restart {
  justify-self: center;
  min-height: 34px;
  padding: 4px 10px;
  font-size: 0.72rem;
}

@media (max-width: 1120px) {
  .diagnostic-section .diagnostic-layout {
    grid-template-columns: minmax(240px, 0.68fr) minmax(480px, 1.32fr);
    gap: 24px;
  }

  .diagnostic-section .diagnostic-copy h2 {
    font-size: 1.58rem;
  }
}

@media (max-width: 900px) {
  .diagnostic-section {
    min-height: calc(100svh - 96px);
    padding: 10px 0;
  }

  .diagnostic-section .diagnostic-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .diagnostic-section .diagnostic-copy {
    display: none;
  }

  .diagnostic-form {
    height: calc(100svh - 116px);
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .diagnostic-section .container {
    width: min(100% - 20px, var(--container));
  }

  .whatsapp-float {
    bottom: 82px;
  }

  .diagnostic-form {
    height: calc(100svh - 104px);
    min-height: 510px;
    gap: 7px;
    padding: 11px;
  }

  .diagnostic-form-head {
    padding: 9px 11px;
  }

  .diagnostic-form-head strong {
    font-size: 0.88rem;
  }

  .diagnostic-form-head span {
    font-size: 0.68rem;
  }

  .wizard-step {
    gap: 9px;
    padding: 8px 2px;
  }

  .wizard-step-number {
    width: 32px;
    height: 24px;
  }

  .wizard-step legend {
    font-size: 1.12rem;
  }

  .wizard-step .option-grid,
  .wizard-step .option-stack,
  .wizard-step .checkbox-grid {
    gap: 6px;
  }

  .wizard-step .option-grid label,
  .wizard-step .option-stack label,
  .wizard-step .checkbox-grid label,
  .avatar-options label {
    min-height: 38px;
    padding: 7px 9px;
    font-size: 0.77rem;
  }

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

  .avatar-options {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .wizard-actions {
    grid-template-columns: auto minmax(160px, 0.62fr);
    padding-top: 6px;
  }

  .wizard-back,
  .wizard-next {
    min-height: 42px;
  }

  .result-report-sheet {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .result-report-identity {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    gap: 2px 11px;
    padding: 11px 13px;
  }

  .result-report-brand {
    grid-column: 2;
    grid-row: 1;
  }

  .result-report-label {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
  }

  .result-report-identity .result-avatar {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 64px;
    height: 64px;
    margin: 0;
  }

  .result-report-person {
    grid-column: 2;
    grid-row: 3;
    align-self: end;
    padding-top: 5px;
  }

  .result-report-profile,
  .result-report-recommendation {
    padding: 12px;
  }

  .result-report-profile p {
    font-size: 0.6rem;
  }

  .result-report-benefits {
    padding: 9px 11px 11px;
  }

  .diagnostic-result .result-summary,
  .result-primary,
  .result-primary p {
    font-size: 0.74rem;
  }
}

@media (max-width: 420px) {
  .wizard-step .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .diagnostic-result .result-columns {
    grid-template-columns: 1fr;
  }

  .result-report-panels {
    grid-template-columns: 1fr;
  }

  .result-report-recommendation {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .result-report-benefits > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-profile-cards {
    grid-auto-columns: minmax(230px, 88%);
  }

  .result-comparison-track {
    grid-auto-columns: minmax(280px, 96%);
    min-height: 310px;
  }

  .result-comparison-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 140px auto;
    height: 302px;
  }

  .result-comparison-card h5 {
    grid-column: 1;
  }

  .result-comparison-card > img {
    min-height: 140px;
  }
}

/* Blog editorial */
.blog-page {
  color: var(--ink);
  background: #F8FAFC;
}

.blog-page .blog-hero {
  min-height: 500px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.blog-page .blog-hero-grid {
  min-height: 416px;
  position: relative;
  display: grid;
  align-items: center;
  padding: 42px 0;
}

.blog-page .blog-hero-copy {
  max-width: 600px;
  position: relative;
  z-index: 2;
  padding: 12px 0;
}

.blog-page .blog-hero h1 {
  max-width: 590px;
  margin: 10px 0 18px;
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.blog-page .blog-hero-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 0;
  color: #49656B;
  font-size: 1.08rem;
  line-height: 1.65;
}

.blog-page .blog-hero-media {
  position: absolute;
  inset: 0 calc((100vw - min(100vw - 32px, var(--container))) / -2);
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-page .blog-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

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

.blog-page .blog-hero-media figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.blog-hero-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.blog-hero-topics span {
  padding: 7px 11px;
  color: var(--petroleum-900);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 139, 153, 0.18);
  border-radius: var(--pill);
  font-size: 0.8rem;
  font-weight: 800;
}

.blog-page .blog-hero .hero-actions {
  margin-top: 24px;
}

.blog-toolbar {
  padding: 18px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.blog-toolbar-inner {
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.blog-search {
  display: grid;
  gap: 6px;
  color: var(--petroleum-900);
  font-size: 0.78rem;
  font-weight: 850;
}

.blog-search input {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  color: var(--ink);
  background: #F8FAFC;
  border: 1px solid #DCE5EA;
  border-radius: 8px;
  font: inherit;
  font-size: 0.9rem;
}

.blog-search input:focus {
  outline: 3px solid rgba(79, 109, 122, 0.2);
  border-color: var(--teal-600);
}

.blog-start-section {
  padding: 44px 0 12px;
  background: #F8FAFC;
}

.blog-start-heading {
  margin-bottom: 20px;
}

.blog-start-heading h2 {
  max-width: 760px;
  margin: 6px 0 0;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

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

.blog-start-tile {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: #092C38;
  box-shadow: 0 18px 36px rgba(7, 58, 67, 0.1);
}

.blog-start-tile img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 200ms ease;
}

.blog-start-tile span {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 4px;
  padding: 18px;
  background: rgba(7, 43, 51, 0.92);
}

.blog-start-tile small {
  color: #DCE5EA;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-start-tile strong {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.35;
}

.blog-start-tile:hover img {
  transform: scale(1.025);
}

.blog-start-tile:focus-visible {
  outline: 3px solid #F5C400;
  outline-offset: 3px;
}

.blog-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.blog-filter {
  min-height: 38px;
  padding: 7px 13px;
  color: #3D5A60;
  background: var(--white);
  border: 1px solid #DCE5EA;
  border-radius: var(--pill);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
}

.blog-filter:hover,
.blog-filter:focus-visible,
.blog-filter.is-active {
  color: var(--white);
  background: var(--petroleum-900);
  border-color: var(--petroleum-900);
}

.blog-result-count {
  margin: 0 0 11px;
  color: #5D7479;
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

.blog-page .blog-feature,
.blog-page .blog-list-section {
  padding: 58px 0;
}

.blog-page .blog-list-section {
  background: #EEF3F6;
}

.blog-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.blog-section-heading h2 {
  max-width: 760px;
  margin: 6px 0 0;
  font-size: 2.15rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.blog-section-heading > p {
  margin: 0;
  color: #5B7378;
  font-size: 0.94rem;
  line-height: 1.65;
}

.blog-featured-article {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 38px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid #DCE5EA;
  border-bottom: 1px solid #DCE5EA;
}

.blog-featured-article figure {
  min-width: 0;
  margin: 0;
}

.blog-featured-article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.blog-featured-copy h3 {
  margin: 8px 0 14px;
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.blog-featured-copy > p {
  margin: 0 0 12px;
  color: #526C72;
  font-size: 0.96rem;
  line-height: 1.65;
}

.blog-check-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.blog-check-list li {
  position: relative;
  padding-left: 25px;
  color: #29464C;
  font-size: 0.9rem;
  line-height: 1.5;
}

.blog-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-700);
  font-weight: 900;
}

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

.blog-page .blog-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 210px minmax(0, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid #DCE5EA;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 42, 48, 0.07);
}

.blog-page .blog-card[hidden] {
  display: none;
}

.blog-page .blog-card > img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
}

.blog-page .blog-card > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.blog-page .blog-meta {
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-page .blog-card h3 {
  margin: 8px 0 10px;
  font-size: 1.08rem;
  line-height: 1.32;
  letter-spacing: 0;
}

.blog-page .blog-card > div > p {
  margin: 0;
  color: #60777C;
  font-size: 0.86rem;
  line-height: 1.55;
}

.blog-page .blog-card details {
  margin-top: auto;
  padding-top: 16px;
}

.blog-page .blog-card summary {
  color: var(--petroleum-900);
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.blog-page .blog-card details[open] summary {
  margin-bottom: 12px;
}

.blog-card-expanded {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #DCE5EA;
}

.blog-card-expanded p {
  margin: 0;
  color: #526A70;
  font-size: 0.82rem;
  line-height: 1.55;
}

.blog-page .blog-card .blog-card-expanded a {
  width: fit-content;
  margin-top: 4px;
  color: var(--teal-700);
  font-size: 0.82rem;
  font-weight: 900;
}

.blog-empty-state {
  padding: 40px 20px;
  text-align: center;
  background: var(--white);
  border: 1px dashed #AFCACC;
  border-radius: 8px;
}

.blog-empty-state strong {
  font-size: 1.2rem;
}

.blog-empty-state p {
  margin: 8px 0 0;
  color: #60777C;
}

.blog-page .blog-closing {
  padding: 48px 0;
  background: var(--petroleum-900);
}

.blog-page .blog-closing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-page .blog-closing h2 {
  margin: 6px 0 10px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.blog-page .blog-closing p {
  max-width: 760px;
  margin: 0;
  color: #DCE5EA;
  line-height: 1.6;
}

.blog-page .blog-closing .section-kicker {
  color: var(--teal-200);
}

.blog-page .blog-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.blog-page .blog-closing .button-primary {
  color: var(--petroleum-900);
  background: var(--brand-yellow);
}

.blog-page .blog-closing .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.blog-page .site-footer {
  border-top: 0;
}

.blog-page.blog-hero-in-view .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

@media (max-width: 980px) {
  .blog-start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-toolbar-inner {
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  }

  .blog-result-count {
    grid-column: 1 / -1;
    margin: 0;
  }

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

  .blog-page .blog-closing-panel {
    grid-template-columns: 1fr;
  }

  .blog-page .blog-closing-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .blog-page .blog-hero {
    min-height: 0;
    padding: 0 0 30px;
  }

  .blog-page .blog-hero-grid {
    min-height: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    padding: 0;
  }

  .blog-page .blog-hero-media {
    width: calc(100% + 32px);
    position: relative;
    inset: auto;
    margin: 0 -16px;
  }

  .blog-page .blog-hero-media img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-position: 67% center;
  }

  .blog-page .blog-hero-copy {
    max-width: none;
    padding: 0;
  }

  .blog-page .blog-hero h1 {
    margin: 8px 0 14px;
    font-size: 2.04rem;
  }

  .blog-page .blog-hero-copy > p:not(.section-kicker) {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .blog-hero-topics {
    margin-top: 16px;
  }

  .blog-page .blog-hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .blog-page .blog-hero .button {
    min-width: 0;
    min-height: 54px;
    padding: 9px 8px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .blog-toolbar {
    padding: 16px 0;
  }

  .blog-toolbar-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blog-filter-group {
    gap: 6px;
  }

  .blog-filter {
    min-height: 36px;
    padding: 6px 11px;
    font-size: 0.74rem;
  }

  .blog-start-section {
    padding: 34px 0 6px;
  }

  .blog-start-heading h2 {
    font-size: 1.65rem;
  }

  .blog-start-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 86%);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 0 3px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .blog-start-tile {
    min-height: 220px;
    scroll-snap-align: start;
  }

  .blog-page .blog-feature,
  .blog-page .blog-list-section {
    padding: 40px 0;
  }

  .blog-section-heading,
  .blog-featured-article {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-section-heading {
    margin-bottom: 22px;
  }

  .blog-section-heading h2 {
    font-size: 1.72rem;
  }

  .blog-featured-article {
    padding: 20px 0;
  }

  .blog-featured-copy h3 {
    font-size: 1.45rem;
  }

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

  .blog-page .blog-card {
    grid-template-rows: 220px minmax(0, 1fr);
  }

  .blog-page .blog-card > img {
    height: 220px;
  }

  .blog-page .blog-closing {
    padding: 38px 0;
  }

  .blog-page .blog-closing h2 {
    font-size: 1.68rem;
  }

  .blog-page .blog-closing-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Atara visual identity refresh: calm petroleum blue, light neutrals and restrained gold. */
.site-header {
  background: rgba(248, 250, 252, 0.94);
  border-bottom-color: #DCE5EA;
  box-shadow: 0 4px 18px rgba(15, 59, 76, 0.04);
}

.brand,
.main-nav a,
.section-kicker,
.highlight-quote,
.faq-list details[open] summary {
  color: #0F3B4C;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #4F6D7A;
  background: #EEF3F6;
}

.nav-cta,
.button-primary,
.location-map-link {
  color: #FFFFFF;
  background: #0F3B4C;
  border-color: #0F3B4C;
  box-shadow: 0 10px 24px rgba(15, 59, 76, 0.16);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.location-map-link:hover,
.location-map-link:focus-visible {
  color: #FFFFFF;
  background: #092C38;
  border-color: #092C38;
}

.button-secondary,
.button-ghost {
  color: #0F3B4C;
  background: #FFFFFF;
  border-color: #0F3B4C;
  box-shadow: 0 8px 20px rgba(15, 59, 76, 0.08);
  backdrop-filter: none;
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  color: #092C38;
  background: #EEF3F6;
  border-color: #092C38;
}

.button,
.nav-cta {
  font-weight: 700;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  outline-color: rgba(79, 109, 122, 0.34);
}

.section,
.intro-section,
.blog-toolbar {
  background: #FFFFFF;
}

.visual-section,
.process-section,
.gallery-section,
.location-section,
.faq-section,
.blog-start-section,
.blog-list-section {
  background: #F8FAFC;
}

.product-section,
.reviews-section,
.appointment-section,
.diagnostic-section,
.blog-feature {
  background: #EEF3F6;
}

.photo-ribbon figure,
.image-panel,
.review-panel,
.review-placeholder,
.appointment-form,
.diagnostic-form,
.diagnostic-question,
.diagnostic-result,
.map-frame,
.storefront-panel,
.diagnostic-preview article,
.faq-list details,
.service-grid article,
.difference-grid article,
.process-list li,
.gallery-grid article,
.privacy-note,
.schedule-list div,
.location-details div,
.blog-card,
.blog-featured-article {
  background: #FFFFFF;
  border-color: #DCE5EA;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 59, 76, 0.06);
}

.service-grid article:hover,
.blog-card:hover {
  border-color: #C5D2D8;
  box-shadow: 0 14px 32px rgba(15, 59, 76, 0.1);
}

.highlight-quote,
.review-status-copy,
.review-source-note,
.service-note,
.result-primary {
  border-color: #F5C400;
  background: #FFFBE6;
}

.service-number,
.service-body .service-number,
.blog-meta,
.google-label,
.payment-pills span,
.vision-zones span {
  color: #0F3B4C;
  background: #EEF3F6;
  border-color: #DCE5EA;
}

.faq-list details:hover,
.faq-list details[open] {
  background: #EEF3F6;
}

.faq-list summary::marker {
  color: #4F6D7A;
}

.diagnostic-section .diagnostic-copy,
.blog-page .blog-closing {
  background: #0F3B4C;
  border-color: #092C38;
  box-shadow: 0 18px 42px rgba(9, 44, 56, 0.18);
}

.diagnostic-section .diagnostic-copy::after {
  background:
    linear-gradient(90deg, rgba(9, 44, 56, 1) 0%, rgba(9, 44, 56, 0.98) 43%, rgba(9, 44, 56, 0.7) 57%, rgba(9, 44, 56, 0.04) 100%),
    linear-gradient(0deg, rgba(9, 44, 56, 1) 0%, rgba(9, 44, 56, 0.98) 34%, rgba(9, 44, 56, 0.3) 61%, rgba(9, 44, 56, 0) 100%);
}

.diagnostic-section .diagnostic-copy .section-kicker,
.blog-page .blog-closing .section-kicker {
  color: #DCE5EA;
}

.diagnostic-start {
  color: #FFFFFF;
  background: #0F3B4C;
  border: 1px solid #0F3B4C;
}

.diagnostic-start:hover {
  color: #FFFFFF;
  background: #092C38;
}

.result-profile-card.is-driver,
.result-comparison-card.is-driver {
  --profile-accent: #4F6D7A;
  --comparison-accent: #4F6D7A;
}

.result-profile-card.is-thin,
.result-comparison-card.is-thin {
  --profile-accent: #0F3B4C;
  --comparison-accent: #0F3B4C;
}

.form-status.is-success {
  color: #0F3B4C;
}

.final-cta {
  color: #FFFFFF;
  background: #0F3B4C;
}

.final-inner p {
  color: #DCE5EA;
}

.final-cta .button-primary {
  color: #092C38;
  background: #F5C400;
  border-color: #F5C400;
}

.final-cta .button-primary:hover,
.final-cta .button-primary:focus-visible {
  color: #092C38;
  background: #E0B200;
  border-color: #E0B200;
}

.site-footer {
  background: #0F3B4C;
}

.footer-grid p {
  color: #DCE5EA;
}

.footer-grid a {
  color: #FFFFFF;
}

.footer-grid a:hover {
  color: #F5C400;
}

/* The WhatsApp control intentionally retains its official green identity. */
.whatsapp-float {
  background: #1F9E62;
}

/* WhatsApp controls share a single icon treatment across the site. */
.js-whatsapp-link:not(.whatsapp-float)::before {
  content: "";
  flex: 0 0 auto;
  width: 1.08em;
  height: 1.08em;
  margin-right: 0.48em;
  background: currentColor;
  -webkit-mask: url("../assets/whatsapp-icon.svg") center / contain no-repeat;
  mask: url("../assets/whatsapp-icon.svg") center / contain no-repeat;
}

.button.js-whatsapp-link,
.nav-cta.js-whatsapp-link,
.service-mini-cta.js-whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float {
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  padding: 0;
  color: #FFFFFF;
  background: #25D366;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
}

.whatsapp-float::before {
  content: "";
  width: 30px;
  height: 30px;
  background: currentColor;
  -webkit-mask: url("../assets/whatsapp-icon.svg") center / contain no-repeat;
  mask: url("../assets/whatsapp-icon.svg") center / contain no-repeat;
}

/* Atara Inspira: editorial magazine layout. */
.magazine-page { background: #F8FAFC; }
.magazine-hero { padding: 76px 0 54px; background: linear-gradient(135deg, #FFFFFF 0%, #EEF3F6 65%, #F8FAFC 100%); border-bottom: 1px solid #DCE5EA; }
.magazine-hero-inner { max-width: 880px; }
.magazine-hero h1 { margin-top: 6px; font-size: clamp(3.1rem, 7vw, 5.5rem); }
.magazine-hero > .container > p:not(.section-kicker) { max-width: 720px; font-size: 1.18rem; }
.magazine-search { max-width: 700px; margin-top: 30px; }
.magazine-search > label { display: block; margin-bottom: 8px; color: #0F3B4C; font-size: .92rem; font-weight: 700; }
.magazine-search > div { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 7px; background: #FFFFFF; border: 1px solid #DCE5EA; border-radius: 18px; box-shadow: 0 12px 24px rgba(15, 59, 76, .08); }
.magazine-search input { width: 100%; min-height: 48px; padding: 0 14px; color: #263238; background: transparent; border: 0; outline: 0; }
.magazine-search button { min-height: 48px; padding: 0 20px; color: #FFFFFF; background: #0F3B4C; border: 0; border-radius: 12px; font-weight: 700; cursor: pointer; }
.magazine-feature { padding: 46px 0; }
.magazine-feature-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .85fr); gap: 24px; }
.magazine-lead-card, .magazine-secondary-card, .magazine-article-card, .magazine-quick-grid article, .magazine-guide-grid a { overflow: hidden; background: #FFFFFF; border: 1px solid #DCE5EA; border-radius: 18px; box-shadow: 0 10px 28px rgba(15, 59, 76, .06); }
.magazine-lead-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .92fr); min-height: 470px; }
.magazine-lead-card > img { width: 100%; height: 100%; object-fit: cover; }
.magazine-lead-card > div { display: flex; flex-direction: column; justify-content: center; padding: 34px; }
.magazine-category, .magazine-article-card span, .magazine-secondary-card span, .magazine-quick-grid span { display: inline-flex; width: fit-content; padding: 5px 10px; color: #0F3B4C; background: #FFF8D8; border-radius: 999px; font-size: .77rem; font-weight: 700; }
.magazine-reading, .magazine-secondary-card small, .magazine-article-card small { margin: 9px 0 0; color: #60727A; font-size: .85rem; }
.magazine-lead-card h2 { margin-top: 14px; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.magazine-link, .magazine-article-card a, .magazine-quick-grid a { display: inline-flex; width: fit-content; margin-top: 18px; color: #0F3B4C; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.magazine-secondary-grid { display: grid; gap: 24px; }
.magazine-secondary-card { display: grid; grid-template-columns: 158px 1fr; min-height: 223px; }
.magazine-secondary-card img { width: 100%; height: 100%; object-fit: cover; }
.magazine-secondary-card > div { padding: 21px; }
.magazine-secondary-card h2 { margin-top: 10px; font-size: 1.2rem; }
.magazine-secondary-card p { margin-top: 6px; font-size: .93rem; line-height: 1.45; }
.magazine-secondary-card .magazine-link { margin-top: 9px; font-size: .9rem; }
.magazine-filter-section { padding: 10px 0 30px; background: #FFFFFF; }
.magazine-filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.magazine-filter { min-height: 42px; padding: 0 15px; color: #0F3B4C; background: #FFFFFF; border: 1px solid #DCE5EA; border-radius: 999px; font-weight: 700; cursor: pointer; }
.magazine-filter:hover, .magazine-filter:focus-visible, .magazine-filter.is-active { color: #FFFFFF; background: #0F3B4C; border-color: #0F3B4C; outline: 0; }
.magazine-result-count { margin: 16px 0 0; color: #60727A; font-size: .9rem; }
.magazine-articles { padding-top: 54px; }
.magazine-section-heading { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 28px; }
.magazine-section-heading h2 { margin-top: 6px; font-size: clamp(2rem, 4vw, 3.1rem); }
.magazine-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.magazine-article-card { display: flex; flex-direction: column; min-height: 100%; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.magazine-article-card:hover { border-color: #C5D2D8; box-shadow: 0 16px 34px rgba(15, 59, 76, .11); transform: translateY(-4px); }
.magazine-article-card[hidden] { display: none; }
.magazine-article-card img { width: 100%; aspect-ratio: 1.55; object-fit: cover; }
.magazine-article-card > div { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.magazine-article-card h3 { margin-top: 12px; font-size: 1.2rem; line-height: 1.22; }
.magazine-article-card p { margin-top: 9px; font-size: .94rem; line-height: 1.5; }
.magazine-article-card a { margin-top: auto; padding-top: 18px; }
.magazine-guides { background: #EEF3F6; }
.magazine-guide-grid, .magazine-quick-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.magazine-guide-grid a { display: flex; min-height: 205px; flex-direction: column; padding: 23px; color: #263238; text-decoration: none; }
.magazine-guide-grid span { color: #F5C400; font-size: 1.7rem; }.magazine-guide-grid strong { margin-top: 18px; color: #0F3B4C; font-size: 1.1rem; }.magazine-guide-grid small { margin-top: 7px; color: #60727A; }.magazine-guide-grid b { margin-top: auto; color: #0F3B4C; font-size: .9rem; }
.magazine-quick { background: #FFFFFF; }.magazine-quick-grid article { padding: 21px; }.magazine-quick-grid h3 { margin-top: 14px; font-size: 1.13rem; }
.magazine-newsletter { background: #EEF3F6; }.magazine-newsletter-inner { display: grid; grid-template-columns: 1fr minmax(360px, .9fr); gap: 32px; align-items: center; }.magazine-newsletter form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; align-items: end; padding: 18px; background: #FFFFFF; border: 1px solid #DCE5EA; border-radius: 18px; }.magazine-newsletter label { color: #0F3B4C; font-size: .84rem; font-weight: 700; }.magazine-newsletter input { width: 100%; min-height: 44px; margin-top: 5px; padding: 0 10px; border: 1px solid #DCE5EA; border-radius: 9px; }.newsletter-status { grid-column: 1 / -1; margin: 0; font-size: .84rem; }
.article-layout { padding: 42px 0 66px; background: #FFFFFF; }.article-container { max-width: 1050px; }.article-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: #60727A; font-size: .9rem; }.article-breadcrumb a { color: #0F3B4C; }.article-header { max-width: 820px; margin: 28px auto 24px; }.article-header h1 { margin-top: 14px; font-size: clamp(2.4rem, 5vw, 4rem); }.article-header > p { font-size: 1.17rem; }.article-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; color: #60727A; font-size: .9rem; }.article-cover { width: 100%; max-height: 500px; object-fit: cover; border: 1px solid #DCE5EA; border-radius: 18px; }.article-content-grid { display: grid; grid-template-columns: 190px minmax(0, 720px); gap: 50px; justify-content: center; margin-top: 44px; }.article-toc { position: sticky; top: 110px; align-self: start; display: grid; gap: 9px; font-size: .9rem; }.article-toc strong, .article-toc a { color: #0F3B4C; }.article-content { max-width: 75ch; }.article-content h2 { margin-top: 0; padding-top: 8px; font-size: 2rem; }.article-content section + section { margin-top: 38px; }.article-content h3 { margin-top: 20px; }.article-content li { color: #60727A; margin: 8px 0; }.article-notice { margin: 28px 0; padding: 17px; color: #263238; background: #FFF8D8; border-left: 4px solid #F5C400; border-radius: 10px; font-size: .94rem; }.article-faq details { padding: 13px 0; border-bottom: 1px solid #DCE5EA; }.article-faq summary { color: #0F3B4C; cursor: pointer; font-weight: 700; }.article-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }.article-related { margin: 70px auto 0; padding-top: 34px; border-top: 1px solid #DCE5EA; }.article-related h2 { margin-top: 8px; font-size: 2rem; }.article-related > div { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }.article-related a { padding: 10px 13px; color: #0F3B4C; background: #EEF3F6; border-radius: 10px; font-weight: 700; }
@media (max-width: 900px) { .magazine-feature-grid, .magazine-newsletter-inner { grid-template-columns: 1fr; }.magazine-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.magazine-guide-grid, .magazine-quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.article-content-grid { grid-template-columns: 1fr; }.article-toc { position: static; grid-template-columns: repeat(3, minmax(0, 1fr)); }.article-toc strong { grid-column: 1 / -1; } }
@media (max-width: 620px) { .magazine-hero { padding: 46px 0 36px; }.magazine-search > div { grid-template-columns: 1fr; }.magazine-feature-grid { gap: 16px; }.magazine-lead-card, .magazine-secondary-card { grid-template-columns: 1fr; }.magazine-lead-card img { aspect-ratio: 1.45; height: auto; }.magazine-secondary-card img { aspect-ratio: 1.7; height: auto; }.magazine-card-grid, .magazine-guide-grid, .magazine-quick-grid { grid-template-columns: 1fr; }.magazine-section-heading { display: block; }.magazine-newsletter form { grid-template-columns: 1fr; }.article-layout { padding-top: 26px; }.article-content-grid { gap: 24px; margin-top: 28px; }.article-toc { grid-template-columns: 1fr; }.article-toc strong { grid-column: auto; }.article-actions { display: grid; }.article-actions .button { width: 100%; }.magazine-feature { padding: 28px 0; } }
@media (prefers-reduced-motion: reduce) { .magazine-article-card { transition: none; }.magazine-article-card:hover { transform: none; } }

/* Educational photochromic lens demonstration. */
.photochromic-section { background: #EEF3F6; }
.photochromic-heading { max-width: 760px; margin-bottom: 28px; }
.photochromic-simulator { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); overflow: hidden; background: #FFFFFF; border: 1px solid #DCE5EA; border-radius: 20px; box-shadow: 0 18px 42px rgba(15, 59, 76, .09); }
.photochromic-stage { position: relative; min-height: 0; aspect-ratio: 1717 / 916; overflow: hidden; background: #FFFFFF; }
.photochromic-stage > img { width: 100%; height: 100%; object-fit: contain; }
.photochromic-lens { position: absolute; z-index: 1; background: var(--photochromic-tint, #52606A); opacity: var(--photochromic-opacity, .06); mix-blend-mode: multiply; pointer-events: none; transition: opacity 520ms ease, background-color 520ms ease; }
.photochromic-lens-left { top: 27.1%; left: 30.2%; width: 3.3%; height: 4%; clip-path: polygon(5% 28%, 24% 7%, 73% 2%, 98% 28%, 95% 74%, 70% 96%, 22% 91%, 2% 62%); }
.photochromic-lens-right { top: 27.3%; left: 33.8%; width: 3.4%; height: 4%; clip-path: polygon(5% 30%, 26% 5%, 76% 4%, 98% 29%, 94% 75%, 68% 97%, 20% 91%, 2% 61%); }
.photochromic-stage-label { position: absolute; z-index: 2; right: 18px; bottom: 18px; padding: 8px 12px; color: #FFFFFF; background: rgba(9, 44, 56, .84); border-radius: 999px; font-size: .88rem; font-weight: 700; }
.photochromic-controls { padding: 34px; }.photochromic-control-block { margin: 0; padding: 0 0 26px; border: 0; }.photochromic-control-block label, .photochromic-control-block legend { display: block; margin-bottom: 12px; color: #0F3B4C; font-weight: 700; }.photochromic-control-block legend { padding: 0; }
.photochromic-control-block input[type="range"] { width: 100%; accent-color: #0F3B4C; cursor: pointer; }
.photochromic-light-labels { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; margin-top: 7px; color: #60727A; font-size: .7rem; line-height: 1.25; text-align: center; }
.photochromic-light-labels span:first-child { text-align: left; }.photochromic-light-labels span:last-child { text-align: right; }
.photochromic-swatches { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.photochromic-swatch { display: grid; grid-template-columns: 17px 1fr; gap: 7px; align-items: center; min-height: 44px; padding: 7px; color: #0F3B4C; background: #FFFFFF; border: 1px solid #DCE5EA; border-radius: 11px; font-size: .82rem; font-weight: 700; cursor: pointer; }.photochromic-swatch i { width: 17px; height: 17px; background: var(--swatch); border: 1px solid rgba(9, 44, 56, .22); border-radius: 50%; }.photochromic-swatch:hover, .photochromic-swatch:focus-visible, .photochromic-swatch.is-selected { border-color: #0F3B4C; background: #EEF3F6; outline: 0; }.photochromic-swatch.is-selected::after { content: "Selecionada"; grid-column: 1 / -1; color: #4F6D7A; font-size: .68rem; text-align: left; }
.photochromic-note { padding: 13px 14px; margin: 0; color: #60727A; background: #F8FAFC; border-left: 3px solid #F5C400; border-radius: 8px; font-size: .81rem; line-height: 1.45; }.photochromic-actions { display: grid; gap: 10px; margin-top: 20px; }.photochromic-actions .button { width: 100%; }
@media (max-width: 820px) { .photochromic-simulator { grid-template-columns: 1fr; }.photochromic-controls { padding: 26px; } }
@media (max-width: 520px) { .photochromic-controls { padding: 20px; }.photochromic-swatches { grid-template-columns: repeat(2, minmax(0, 1fr)); }.photochromic-light-labels { font-size: .62rem; }.photochromic-stage-label { right: 12px; bottom: 12px; font-size: .78rem; } }
@media (prefers-reduced-motion: reduce) { .photochromic-lens { transition: none; } }

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #25D366;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.38);
}

@media (max-width: 760px) {
  .whatsapp-float {
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
  }

  .whatsapp-float::before {
    width: 28px;
    height: 28px;
  }
}

/* Neutralize legacy aqua decoration while keeping the WhatsApp brand control green. */
.visual-stage,
.visual-card,
.lens-illustration,
.lens-comparison,
.lens-graphic,
.diagnostic-preview,
.diagnostic-result .result-visual,
.blog-page .blog-hero {
  --aqua-wash: #EEF3F6;
  --aqua-line: #C5D2D8;
  --aqua-strong: #4F6D7A;
}

.article-sources {
  margin: 1.5rem 0;
  border: 1px solid #DCE5EA;
  border-radius: 14px;
  background: #FFFFFF;
}

.article-sources summary {
  padding: 1rem 1.15rem;
  color: #0F3B4C;
  font-weight: 700;
  cursor: pointer;
}

.article-sources ul { padding: 0 1.15rem 1rem 2.35rem; }

.article-guide-cta {
  padding: 1rem 1.15rem;
  border-left: 4px solid #F5C400;
  background: #EEF3F6;
  color: #0F3B4C;
  font-weight: 700;
}

/* Consistent image areas across the presentation and service card grids. */
.photo-ribbon figure { grid-template-rows: 260px auto; }
.photo-ribbon img { height: 260px; object-fit: cover; }
.service-media { height: 290px; min-height: 290px; }
.service-media img { height: 100%; aspect-ratio: auto; object-fit: cover; }

.location-media-stack .map-frame {
  min-height: 220px;
  overflow: hidden;
  border: 1px solid #DCE5EA;
  border-radius: 16px;
  background: #FFFFFF;
}

.location-media-stack .map-frame iframe {
  display: block;
  width: 100%;
  min-height: 220px;
  height: 220px;
  border: 0;
}

@media (max-width: 700px) {
  .photo-ribbon figure { grid-template-rows: 220px auto; }
  .photo-ribbon img { height: 220px; }
  .service-media { height: 220px; min-height: 220px; }

  .location-section .location-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(120px, 0.85fr);
    align-items: start;
    gap: 8px;
  }

  .location-section .storefront-panel img {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .location-section .storefront-panel figcaption {
    min-height: 0;
    padding: 5px 6px;
    font-size: 0.55rem;
  }
}
