﻿:root {
  --white: #ffffff;
  --navy: #0f172a;
  --blue: #2563eb;
  --light: #f8fafc;
  --slate: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  --card-shadow: 0 18px 60px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.32);
  outline-offset: 3px;
}

.shell {
  width: min(100% - 2.5rem, 1216px);
  margin-inline: auto;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-content: center;
  gap: 1rem;
  background: var(--white);
  text-align: center;
  transition: opacity 450ms ease, visibility 450ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark,
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 1.35rem;
}

.loader-mark {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  animation: pulse 1.2s ease-in-out infinite;
}

.loader p {
  margin: 0;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 2rem;
}

.nav-links a {
  color: #334155;
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-actions {
  gap: 0.75rem;
}

.phone-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  font-weight: 750;
  transition: border-color 180ms ease, color 180ms ease;
}

.phone-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.85rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  border-color: var(--line);
  background: var(--white);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-dark {
  margin-top: 1.75rem;
  background: var(--navy);
  color: var(--white);
}

.menu-toggle,
.menu-close {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  background: rgba(15, 23, 42, 0);
  transition: background 240ms ease;
}

.mobile-menu.is-open {
  pointer-events: auto;
  background: rgba(15, 23, 42, 0.45);
}

.mobile-panel {
  width: min(84vw, 360px);
  min-height: 100vh;
  margin-left: auto;
  padding: 1.5rem;
  background: var(--white);
  box-shadow: var(--card-shadow);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.mobile-menu.is-open .mobile-panel {
  transform: translateX(0);
}

.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.mobile-panel a:not(.btn) {
  display: block;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  color: #334155;
  font-weight: 700;
}

.mobile-panel a:not(.btn):hover {
  background: var(--light);
}

.mobile-panel .btn {
  width: 100%;
  margin-top: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 9.5rem 0 5rem;
  background: linear-gradient(180deg, #eff6ff 0%, var(--white) 38%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.7rem;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.65rem 1rem;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

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

h1 {
  max-width: min(100%, 52rem);
  margin: 0;
  font-size: clamp(2.55rem, 4.25vw, 4.9rem);
  line-height: 1.01;
  letter-spacing: -0.055em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
  white-space: pre-line;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 42rem;
  margin: 1.8rem 0 0;
  color: #334155;
  font-size: 1.22rem;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem 1.5rem;
  margin-top: 2.5rem;
  color: #334155;
  font-size: 0.95rem;
}

.trust-list span {
  color: #334155;
}

.hero-media {
  position: relative;
  border-radius: 2rem;
  box-shadow: var(--card-shadow);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(58px);
}

.hero-media::before {
  width: 14rem;
  height: 14rem;
  left: -2rem;
  top: 2rem;
  background: rgba(147, 197, 253, 0.45);
}

.hero-media::after {
  width: 16rem;
  height: 16rem;
  right: 0;
  bottom: -2rem;
  background: rgba(203, 213, 225, 0.75);
}

.hero-media img {
  width: 100%;
  height: 520px;
  border-radius: 2rem;
  object-fit: cover;
}

.rating-card {
  position: absolute;
  inset: auto 1.4rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  padding: 1.2rem;
  backdrop-filter: blur(14px);
}

.rating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.rating-card strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 2rem;
}

.stars {
  color: #fbbf24;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
}

.stats-section,
.split-section,
.results-section,
.appointment-section {
  background: var(--light);
}

.stats-section {
  border-block: 1px solid #eef2f7;
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  border-radius: 1.6rem;
  background: var(--white);
  padding: 1.8rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.stat-card strong {
  display: block;
  font-size: 2.35rem;
  line-height: 1;
}

.stat-card span:last-child {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.section {
  padding: 7rem 0;
}

.section-heading {
  width: min(100% - 2.5rem, 760px);
  margin-inline: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin: 1.2rem 0 0;
  color: var(--slate);
  font-size: 1.12rem;
  line-height: 1.65;
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light p:last-child {
  color: #cbd5e1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

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

.service-card,
.feature-card,
.team-card,
.result-card,
.contact-card,
.booking-form,
.faq-item {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
}

.service-card {
  min-height: 260px;
  border-radius: 1.6rem;
  padding: 1.75rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.team-card:hover {
  transform: translateY(-8px);
  border-color: #bfdbfe;
  box-shadow: var(--card-shadow);
}

.icon,
.feature-card span,
.contact-card span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: #eff6ff;
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 900;
}

.service-card h3,
.feature-card h3 {
  margin-top: 1.5rem;
}

.service-card p,
.feature-card p,
.team-card p,
.split-grid p,
.appointment-grid p {
  color: var(--slate);
  line-height: 1.7;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.split-grid > div > p:not(.eyebrow),
.appointment-grid > div > p {
  margin-top: 1.5rem;
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-card {
  border-radius: 1.6rem;
  padding: 1.75rem;
}

.team-grid,
.results-grid,
.contact-grid,
.appointment-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

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

.team-card {
  overflow: hidden;
  border-radius: 1.6rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
}

.team-card div {
  padding: 1.65rem;
}

.team-card span {
  display: block;
  margin-top: 0.45rem;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.result-card {
  overflow: hidden;
  border: 0;
  border-radius: 1.6rem;
  box-shadow: var(--card-shadow);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  background: #e2e8f0;
}

.comparison-grid::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 1px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
  pointer-events: none;
  transform: translateX(-0.5px);
}

.comparison-half {
  position: relative;
  height: 320px;
  margin: 0;
  overflow: hidden;
}

.comparison-half img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.comparison-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  padding: 0.55rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-after .comparison-label {
  background: var(--blue);
}

.result-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
}

.result-card strong {
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
}

.testimonials-section,
.footer {
  background: var(--navy);
  color: var(--white);
}

.testimonial-window {
  margin-top: 3.5rem;
  overflow: hidden;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 1.75rem;
  animation: fadeUp 360ms ease both;
}

.testimonial-card .stars {
  font-size: 1.05rem;
}

.testimonial-card blockquote {
  margin: 1.5rem 0;
  color: #f8fafc;
  font-size: 1.08rem;
  line-height: 1.65;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 800;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 2rem;
}

.testimonial-dots button {
  width: 0.65rem;
  height: 0.65rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition: width 180ms ease, background 180ms ease;
}

.testimonial-dots button.is-active {
  width: 2.2rem;
  background: var(--white);
}

.faq-list {
  width: min(100% - 2.5rem, 760px);
  margin-top: 3rem;
}

.faq-item {
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 1.4rem;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.25rem 1.5rem;
  color: var(--navy);
  text-align: left;
  font-weight: 850;
}

.faq-item button span:last-child {
  flex: 0 0 auto;
  transition: transform 200ms ease;
}

.faq-item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--slate);
  line-height: 1.65;
  transition: max-height 240ms ease, padding 240ms ease;
}

.faq-item.is-open p {
  max-height: 220px;
  padding-bottom: 1.5rem;
}

.faq-item.is-open button span:last-child {
  transform: rotate(180deg);
  color: var(--blue);
}

.appointment-grid,
.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.appointment-notes {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  color: #334155;
  list-style: none;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border: 0;
  border-radius: 2rem;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
}

.booking-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.booking-form .full,
.form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--light);
  padding: 0.95rem 1rem;
  color: var(--navy);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.booking-form input:not([type="hidden"]),
.booking-form select {
  min-height: 3.35rem;
}

.appointment-slot {
  display: grid;
  gap: 1.1rem;
}

.calendar-picker,
.time-picker {
  display: grid;
  gap: 0.75rem;
}

.time-picker > span,
.calendar-head > span {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.calendar-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--light);
  padding: 0.25rem;
}

.calendar-nav strong {
  min-width: 9.5rem;
  color: var(--navy);
  font-size: 0.88rem;
  text-align: center;
  text-transform: capitalize;
}

.calendar-nav button {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.calendar-nav button:not(:disabled):hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.calendar-nav button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.calendar-weekdays {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid {
  border: 1px solid var(--line);
  border-radius: 1.45rem;
  background: linear-gradient(180deg, #f8fbff 0%, var(--light) 100%);
  padding: 0.7rem;
}

.calendar-empty,
.calendar-day {
  min-height: 3.25rem;
}

.calendar-day {
  border: 1px solid transparent;
  border-radius: 0.95rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.045);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
}

.calendar-day:not(:disabled):hover,
.calendar-day:not(:disabled):focus-visible {
  border-color: #bfdbfe;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.calendar-day.is-selected {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.28);
}

.calendar-day:disabled {
  cursor: not-allowed;
  background: #f1f5f9;
  color: #cbd5e1;
  box-shadow: none;
}

.time-selector {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.time-picker.is-visible .time-selector {
  display: grid;
}

.time-hint {
  margin: 0;
  border: 1px dashed #cbd5e1;
  border-radius: 1rem;
  background: var(--light);
  padding: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.time-card {
  min-height: 3.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--light);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.time-card:hover {
  border-color: #bfdbfe;
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.time-card.is-selected {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

textarea {
  min-height: 13.5rem;
  line-height: 1.6;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  outline: none;
}

.form-status {
  min-height: 1.3rem;
  margin: -0.15rem 0 0;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 750;
}

.form-status.is-success {
  position: relative;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  padding: 1rem 1rem 1rem 3rem;
  color: var(--navy);
  box-shadow: 0 14px 38px rgba(37, 99, 235, 0.1);
}

.form-status.is-success::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 50%;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.82rem;
  transform: translateY(-50%);
}

.booking-form .btn:disabled {
  cursor: wait;
  opacity: 0.82;
  transform: none;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1.2rem;
  border-radius: 1.6rem;
  padding: 1.5rem;
}

.contact-card p {
  margin: 0.35rem 0 0;
  color: var(--slate);
  line-height: 1.6;
}

.map-placeholder {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--light);
  box-shadow: var(--card-shadow);
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 420px;
  min-height: 420px;
  border: 0;
  border-radius: inherit;
}

.footer {
  padding: 3.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
  gap: 2.5rem;
}

.footer-brand .brand-mark {
  background: var(--white);
  color: var(--blue);
}

.footer p,
.footer a {
  color: #cbd5e1;
}

.footer p {
  max-width: 22rem;
  line-height: 1.7;
}

.footer h3 {
  margin-bottom: 1.2rem;
  color: var(--white);
}

.footer-grid > div:not(:first-child) a {
  display: block;
  margin-top: 0.8rem;
}

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

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-grid > div:not(:first-child) .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: 0;
  padding: 0;
  border: 1px solid rgba(226, 232, 240, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #e8eef8;
  font-size: 0;
  line-height: 0;
  text-align: center;
  vertical-align: middle;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.socials svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.social-instagram svg,
.social-x svg {
  stroke-width: 2.2;
}

.social-facebook svg {
  width: 22px;
  height: 22px;
}

.socials a:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(37, 99, 235, 0.2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.socials a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
  color: var(--white);
}

.copyright {
  margin-top: 1.7rem;
  font-size: 0.9rem;
}

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

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .menu-toggle,
  .menu-close {
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--navy);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    gap: 4px;
  }

  .menu-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .menu-close {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

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

  .hero {
    padding-top: 8rem;
  }

  .hero-media {
    max-width: 720px;
  }

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

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

@media (max-width: 760px) {
  .shell,
  .section-heading,
  .faq-list {
    width: min(100% - 2rem, 1216px);
  }

  .section {
    padding: 5rem 0;
  }

  .nav {
    height: 78px;
  }

  .hero {
    padding: 7.3rem 0 3.5rem;
  }

  h1 {
    font-size: clamp(2.25rem, 9.5vw, 4rem);
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-buttons,
  .hero-buttons .btn {
    width: 100%;
  }

  .trust-list {
    display: grid;
  }

  .hero-media img {
    height: 390px;
  }

  .rating-card {
    inset: auto auto 1rem 1rem;
    width: min(76%, 300px);
    max-width: calc(100% - 2rem);
    box-sizing: border-box;
    align-items: center;
    flex-direction: row;
    gap: 0.7rem;
    padding: 1rem;
    border-radius: 1.25rem;
  }

  .rating-card span {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .rating-card strong {
    margin-top: 0.15rem;
    font-size: 1.9rem;
    line-height: 1;
  }

  .rating-card .stars {
    flex-shrink: 0;
    font-size: 1.38rem;
    line-height: 1;
    letter-spacing: 0.025em;
  }

  .stats-grid,
  .services-grid,
  .feature-grid,
  .team-grid,
  .results-grid,
  .testimonial-track,
  .booking-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .appointment-slot {
    grid-template-columns: 1fr;
  }

  .calendar-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .calendar-nav {
    width: 100%;
    justify-content: space-between;
  }

  .calendar-nav strong {
    min-width: auto;
  }

  .calendar-grid {
    gap: 0.35rem;
    padding: 0.5rem;
  }

  .calendar-empty,
  .calendar-day {
    min-height: 2.85rem;
  }

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

  .testimonial-card {
    min-height: auto;
  }

  .result-card-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-half {
    height: 260px;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 1.12rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .badge {
    font-size: 0.82rem;
  }

  .hero-media img {
    height: 320px;
  }

  .section-heading {
    text-align: left;
  }
}








