:root {
  --blue-950: #06132f;
  --blue-900: #09245a;
  --blue-800: #0e3b82;
  --blue-700: #1454ad;
  --blue-600: #1f70d1;
  --aqua: #16b8d8;
  --teal: #12a2a4;
  --gold: #c7a24b;
  --ink: #0e1d33;
  --text: #25364d;
  --muted: #64748b;
  --line: #dbe7f5;
  --soft-line: #edf4fb;
  --surface: #ffffff;
  --mist: #f5f9ff;
  --ice: #edf6fb;
  --shadow-soft: 0 12px 34px rgba(9, 36, 90, 0.1);
  --shadow-strong: 0 24px 70px rgba(6, 19, 47, 0.18);
  --radius: 8px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

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

button {
  cursor: pointer;
}

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

.narrow-container {
  width: min(860px, calc(100% - 40px));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(20px, calc((100% - 1160px) / 2));
  background: #ffffff;
  border-bottom: 1px solid rgba(219, 231, 245, 0.85);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 34px rgba(9, 36, 90, 0.12);
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(219, 231, 245, 0.9);
  box-shadow: 0 10px 30px rgba(22, 184, 216, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.28);
}

.brand-text {
  display: grid;
  line-height: 1.1;
  min-width: 0;
}

.brand-text strong {
  color: var(--blue-950);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

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

.desktop-nav a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 650;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--blue-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: var(--blue-800);
  font-size: 0.88rem;
  font-weight: 750;
}

.header-call svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-900);
  background: white;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  position: fixed;
  z-index: 45;
  top: var(--header-height);
  left: 0;
  right: 0;
  display: none;
  padding: 14px 20px 22px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a {
  padding: 14px 4px;
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid var(--soft-line);
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.mobile-menu-cta {
  margin-top: 10px;
  padding: 14px 18px !important;
  color: white !important;
  text-align: center;
  border-radius: 999px;
  background: #19b65f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

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

.btn-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.88rem;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-700), var(--aqua));
  box-shadow: 0 14px 32px rgba(31, 112, 209, 0.28);
}

.btn-light {
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(6, 19, 47, 0.14);
}

.btn-whatsapp {
  color: white;
  background: #19b65f;
  box-shadow: 0 14px 32px rgba(25, 182, 95, 0.24);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  padding: 100px 0 42px;
  color: white;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 19, 47, 0.96) 0%, rgba(6, 19, 47, 0.86) 37%, rgba(6, 19, 47, 0.36) 70%, rgba(6, 19, 47, 0.12) 100%),
    linear-gradient(180deg, rgba(6, 19, 47, 0.2), rgba(6, 19, 47, 0.38));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content > * {
  max-width: 690px;
}

.eyebrow,
.section-kicker,
.mini-label {
  margin: 0 0 12px;
  color: var(--aqua);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: white;
  font-size: 4.28rem;
  line-height: 1;
  font-weight: 800;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero-subtext {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.13rem;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.trust-line svg {
  width: 17px;
  height: 17px;
  color: var(--aqua);
}

.lead-strip {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: white;
}

.lead-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  min-height: 98px;
}

.lead-point {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-weight: 800;
}

.lead-point svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--aqua);
}

.lead-point span {
  line-height: 1.25;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 640px;
}

.section-heading h2,
.split-layout h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.45rem;
  line-height: 1.12;
  font-weight: 800;
  text-wrap: balance;
}

.section-heading p:not(.section-kicker),
.section-copy p,
.section-lead,
.contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.about-section {
  background: white;
}

.section-copy {
  padding-top: 8px;
}

.section-copy p:first-child {
  margin-top: 0;
}

.doctor-profile-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, var(--mist));
  box-shadow: var(--shadow-soft);
}

.doctor-profile-card img {
  width: 92px;
  height: 112px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: var(--radius);
}

.doctor-profile-card div {
  display: grid;
  gap: 3px;
}

.doctor-profile-card strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.doctor-profile-card span {
  color: var(--blue-700);
  font-size: 0.9rem;
  font-weight: 800;
}

.doctor-profile-card small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.doctor-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.doctor-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.doctor-points svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--blue-700);
}

.services-section,
.testimonials-section {
  background: var(--mist);
}

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

.feature-card,
.lens-grid article,
.testimonial-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 218px;
  padding: 28px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.feature-card:hover,
.lens-grid article:hover,
.testimonial-grid figure:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 184, 216, 0.65);
  box-shadow: var(--shadow-strong);
}

.feature-card > svg,
.lens-grid article > svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  color: var(--blue-700);
  background: var(--ice);
  border-radius: var(--radius);
}

.feature-card h3,
.lens-grid h3,
.treatment-row h3 {
  margin: 20px 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.3;
}

.feature-card p,
.lens-grid p,
.treatment-row p,
.testimonial-grid blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-card a {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue-700);
  font-size: 0.9rem;
  font-weight: 800;
}

.feature-card a::after {
  content: ">";
  margin-left: 8px;
}

.choose-section {
  color: white;
  background: linear-gradient(135deg, #06132f 0%, #0e3b82 100%);
}

.choose-section .section-heading h2,
.contact-section h2 {
  color: white;
}

.choose-section .section-kicker,
.contact-section .section-kicker {
  color: var(--aqua);
}

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

.reason-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.reason-item svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--aqua);
}

.reason-item span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
  line-height: 1.35;
}

.treatments-section {
  background: white;
}

.treatment-list {
  border-top: 1px solid var(--line);
}

.treatment-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.treatment-row > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--blue-800);
  font-weight: 800;
  background: var(--mist);
}

.treatment-row h3 {
  margin-top: 0;
}

.treatment-row a {
  color: var(--blue-700);
  font-weight: 800;
  white-space: nowrap;
}

.diagnostics-section {
  background: linear-gradient(180deg, var(--mist), white);
}

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

.diagnostic-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 24px rgba(9, 36, 90, 0.07);
}

.diagnostic-grid svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--blue-700);
}

.diagnostic-grid span {
  color: var(--ink);
  font-weight: 800;
}

.optical-section {
  background: white;
}

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

.lens-grid article {
  min-height: 184px;
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.lens-grid h3 {
  margin-top: 18px;
}

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

.testimonial-grid figure {
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
}

.testimonial-grid blockquote {
  font-style: normal;
}

.testimonial-grid figcaption {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 800;
}

.faq-section {
  background: white;
}

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

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

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 0 22px;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
  background: white;
  border: 0;
}

.faq-item button svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  color: var(--blue-700);
  transition: transform 160ms ease;
}

.faq-item.open button svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  padding: 0 22px;
}

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

.faq-item.open .faq-answer p {
  padding-bottom: 22px;
}

.contact-section {
  color: white;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 64px;
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-details div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.contact-details svg {
  grid-row: span 3;
  width: 24px;
  height: 24px;
  align-self: center;
  color: var(--aqua);
}

.contact-details span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details strong {
  color: white;
  font-size: 1rem;
}

.contact-details small {
  color: rgba(255, 255, 255, 0.64);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.appointment-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(6, 19, 47, 0.28);
}

.appointment-form h3 {
  margin: 0;
  color: white;
  font-size: 1.45rem;
  line-height: 1.2;
}

.appointment-form > p {
  margin: -8px 0 4px;
  color: rgba(255, 255, 255, 0.68);
}

.appointment-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.appointment-form textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--aqua);
  background: rgba(255, 255, 255, 0.12);
}

.appointment-form option {
  color: var(--ink);
  background: white;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.site-footer {
  padding: 30px 0 110px;
  color: rgba(255, 255, 255, 0.58);
  background: #040d22;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer .brand-text strong {
  color: white;
}

.site-footer .brand-text span {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer p {
  margin: 0;
  text-align: right;
  font-size: 0.9rem;
}

.mobile-sticky-actions {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 55;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(6, 19, 47, 0.2);
}

.mobile-sticky-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  color: var(--blue-900);
  font-size: 0.86rem;
  font-weight: 800;
}

.mobile-sticky-actions a:nth-child(2) {
  color: #118447;
}

.mobile-sticky-actions svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 4.15rem;
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 0 20px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

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

  .hero {
    min-height: 86svh;
    padding: 94px 0 38px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 19, 47, 0.94), rgba(6, 19, 47, 0.72)),
      linear-gradient(180deg, rgba(6, 19, 47, 0.2), rgba(6, 19, 47, 0.48));
  }

  .hero h1 {
    font-size: 3.2rem;
    line-height: 1.02;
  }

  .hero-subtext {
    font-size: 1.02rem;
  }

  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .lead-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    min-height: auto;
    padding: 18px 0;
  }

  .split-layout,
  .contact-layout {
    gap: 34px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .split-layout h2,
  .contact-copy h2 {
    font-size: 2.05rem;
  }

  .treatment-row {
    grid-template-columns: 56px 1fr;
  }

  .treatment-row a {
    grid-column: 2;
    justify-self: start;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .container,
  .narrow-container {
    width: min(100% - 32px, 1160px);
  }

  .brand-text strong {
    font-size: 0.82rem;
  }

  .brand-text span {
    font-size: 0.7rem;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 42px;
  }

  .eyebrow,
  .section-kicker,
  .mini-label {
    font-size: 0.75rem;
  }

  .hero h1 {
    font-size: 2.08rem;
    line-height: 1.08;
    text-wrap: wrap;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 390px;
    gap: 10px;
    margin-top: 26px;
  }

  .hero-actions .btn:first-child {
    grid-column: auto;
  }

  .hero-actions .btn:last-child {
    grid-column: 1 / -1;
  }

  .hero-actions .btn {
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .trust-line {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 5px;
    margin-top: 22px;
    padding-top: 16px;
    overflow: visible;
  }

  .trust-line span {
    min-height: 28px;
    padding: 0;
    font-size: 0.82rem;
    background: transparent;
    border: 0;
  }

  .lead-strip-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }

  .lead-point {
    width: 100%;
    min-height: auto;
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: transparent;
    contain: layout paint;
  }

  .lead-point:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 0;
  }

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

  .section-heading h2,
  .split-layout h2,
  .contact-copy h2 {
    font-size: 1.78rem;
  }

  .card-grid,
  .diagnostic-grid,
  .lens-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .reason-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .reason-item {
    min-height: auto;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: transparent;
    contain: layout paint;
  }

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

  .doctor-points {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
    padding: 24px;
  }

  .treatment-row {
    gap: 18px;
    padding: 22px 0;
  }

  .treatment-row > span {
    width: 44px;
    height: 44px;
  }

  .appointment-form {
    padding: 22px;
  }

  .contact-buttons .btn {
    width: 100%;
  }

  .mobile-sticky-actions {
    display: none;
  }

  .mobile-sticky-actions.is-visible {
    display: grid;
  }
}

@media (max-width: 390px) {
  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 1.72rem;
    line-height: 1.1;
  }

  .hero-actions .btn {
    font-size: 0.8rem;
  }

  .hero-actions .btn svg {
    width: 17px;
    height: 17px;
  }
}

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