/* ============================================================
   Fix & Flow · רון סמרה · רפואה סינית
   style.css — v2.0 Premium Design System
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  /* Soft Pink Palette */
  --blush: #e8b4b0;
  --blush-light: #fdf0ee;
  --blush-mid: #f0d0cc;
  --blush-deep: #c47a74;
  --blush-dark: #9e5a54;
  --blush-glow: rgba(196, 122, 116, 0.18);

  /* Neutrals */
  --cream: #fdf6f4;
  --warm: #fff9f8;
  --white: #ffffff;

  /* Text */
  --text: #271a18;
  --text-mid: #7a4f4a;
  --text-soft: #b08480;

  /* Accents */
  --gold: #c9a87c;
  --gold-light: #f5ead8;
  --shadow-pink: 0 8px 40px rgba(196, 122, 116, 0.14);
  --shadow-deep: 0 20px 60px rgba(196, 122, 116, 0.22);

  /* Layout */
  --max-w: 1100px;
  --nav-h: 68px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 100px;

  /* Transitions */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Heebo', sans-serif;

  background: var(--cream);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--blush);
  border-radius: 10px;
}

/* ── Section Wrapper ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section Labels & Headings ── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--blush-deep);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--blush);
}

.section-head h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.section-head h2 em {
  color: var(--blush-deep);
  font-style: italic;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-label {
  justify-content: center;
}

.section-head.center .section-label::before {
  display: none;
}

.section-sub {
  font-size: 18px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.85;
  margin-top: 1rem;
  max-width: 580px;
}

.section-head.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

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

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(196, 122, 116, 0.4)
  }

  70% {
    box-shadow: 0 0 0 12px rgba(196, 122, 116, 0)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(253, 246, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--blush-mid);
  transition: all 0.35s var(--ease);
}

nav.scrolled {
  background: rgba(253, 246, 244, 0.99);
  box-shadow: 0 4px 24px rgba(196, 122, 116, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo img {
  height: 54px;
  width: auto;
}

.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink, #1a1a1a);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-brand-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.nav-brand-main {
  font-size: 1.3rem;
  color: var(--blush-dark);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav-brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--blush-deep);
  transition: width 0.25s var(--ease);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--blush-deep);
  color: #fff;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 18px rgba(196, 122, 116, 0.35);
}

.nav-cta:hover {
  background: var(--blush-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 122, 116, 0.45);
}

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  right: 0;
  left: 0;
  background: rgba(253, 246, 244, 0.98);
  backdrop-filter: blur(20px);
  z-index: 490;
  padding: 1.5rem 2rem 2rem;
  border-bottom: 1px solid var(--blush-mid);
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 0.9rem 0;
  font-size: 18px;
  color: var(--text);
  border-bottom: 1px solid var(--blush-mid);
  font-weight: 400;
  transition: color 0.2s;
}

.mobile-menu ul li a:hover {
  color: var(--blush-deep);
}

.mobile-menu .mobile-wa-btn {
  display: block;
  margin-top: 1.2rem;
  background: var(--blush-deep);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 18px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 2.5rem 4rem;
  background: var(--warm);
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -150px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 180, 176, 0.25) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 124, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Hero Text */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s ease both;
}

.hero-line {
  width: 32px;
  height: 1px;
  background: var(--blush);
}

.hero-eyebrow span {
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--blush-deep);
  text-transform: uppercase;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 em {
  color: var(--blush-deep);
  font-style: italic;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 2.2rem;
  font-weight: 300;
  max-width: 420px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush-deep);
  color: #fff;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.28s var(--ease);
  box-shadow: 0 8px 30px rgba(196, 122, 116, 0.38);
  animation: pulse 2.5s infinite;
}

.btn-wa-hero:hover {
  background: var(--blush-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(196, 122, 116, 0.5);
}

.btn-ghost {
  font-size: 18px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--blush-mid);
  padding-bottom: 3px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  color: var(--blush-deep);
  border-color: var(--blush-deep);
}

.hero-trust {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blush-mid);
  animation: fadeUp 0.7s 0.4s ease both;
}

.trust-num {

  font-size: 2rem;
  color: var(--blush-deep);
  font-weight: 600;
  line-height: 1;
}

.trust-label {
  font-size: 16px;
  color: var(--text-soft);
  letter-spacing: 0.07em;
  margin-top: 4px;
}

/* Hero Visual — Photo Card */
.hero-visual {
  position: relative;
  height: 520px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hv-photo-card {
  position: absolute;
  width: 80%;
  height: 440px;
  top: 0;
  left: 10%;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.hv-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(1.03) contrast(1.02);
  transition: transform 0.6s var(--ease);
}

.hv-photo-card:hover img {
  transform: scale(1.04);
}

/* Credibility badge */
.hv-badge {
  position: absolute;
  bottom: 20px;
  right: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--blush-light);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}

.hv-badge-icon {
  font-size: 1.6rem;
}

.hv-badge-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.hv-badge-text span {
  font-size: 0.72rem;
  color: var(--text-soft);
}

/* Rating pill */
.hv-rating-pill {
  position: absolute;
  top: 20px;
  right: -24px;
  background: var(--blush-deep);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(196, 122, 116, 0.35);
  animation: float 4s 1.5s ease-in-out infinite;
}

/* ── MARQUEE STRIP ── */
.marquee-wrap {
  background: var(--blush-deep);
  padding: 13px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

/* ── PAIN / SERVICES SECTION ── */
.pain {
  padding: 8rem 2.5rem;
  background: var(--cream);
}

.pain .section-head {
  margin-bottom: 3.5rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--blush-mid);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--blush-deep);
  transition: width 0.4s var(--ease);
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-pink);
  border-color: var(--blush);
}

.pain-card:hover::before {
  width: 100%;
}

.pain-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pain-card h4 {

  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.pain-card p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--blush-deep) 0%, #d4908a 100%);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 400;
}

.btn-strip {
  background: #fff;
  color: var(--blush-dark);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.btn-strip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

/* ── HOW IT WORKS ── */
.how {
  padding: 8rem 2.5rem;
  background: var(--warm);
}

.how .section-head {
  margin-bottom: 4rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.how-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--blush-mid);
  z-index: 0;
}

.how-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem 1rem;
}

.how-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blush-light);
  border: 1px solid var(--blush-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;

  font-size: 1.3rem;
  color: var(--blush-deep);
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

.how-card:hover .how-num {
  background: var(--blush-deep);
  color: #fff;
  border-color: var(--blush-deep);
  transform: scale(1.1);
}

.how-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.how-card p {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ── ABOUT SECTION ── */
.about {
  padding: 8rem 2.5rem;
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text .section-label {
  margin-bottom: 0.8rem;
}

.about-text h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.about-lead {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 1rem;
  font-style: italic;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1rem;
}

.about-creds {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.cred-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blush-deep);
  flex-shrink: 0;
  margin-top: 5px;
}

/* About Right Side */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--blush-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-card-photo {
  position: relative;
}

.about-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: var(--radius-md);
  transition: transform 0.5s var(--ease);
}

.about-card-photo:hover .about-photo {
  transform: scale(1.03);
}

.about-quote {
  background: var(--blush-light);
  border: 1px solid var(--blush-mid);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  position: relative;
}

.about-quote::before {
  content: '"';

  font-size: 5rem;
  color: var(--blush-mid);
  position: absolute;
  top: -10px;
  right: 16px;
  line-height: 1;
}

.about-quote p {

  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 0.8rem;
}

.about-quote cite {
  font-size: 0.75rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
}

/* Why Ron items */
.why-ron {
  background: var(--white);
  border: 1px solid var(--blush-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.wr-item {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--blush-light);
}

.wr-item:last-child {
  border-bottom: none;
}

.wr-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blush-deep);
  margin-bottom: 0.3rem;
}

.wr-desc {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 8rem 2.5rem;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--cream) 100%);
}

.testimonials .section-head {
  margin-bottom: 3.5rem;
}

.testi-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: stretch;
}

.testi-img-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 480px;
  box-shadow: var(--shadow-deep);
  flex-shrink: 0;
}

.testi-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.tgrid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.tcard {
  background: var(--white);
  border: 1px solid var(--blush-mid);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  transition: all 0.3s var(--ease);
}

.tcard:hover {
  transform: translateX(-6px);
  box-shadow: var(--shadow-pink);
  border-color: var(--blush);
}

.tcard-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.tcard p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
}

.tcard-name {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--blush-deep);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.t-google-row {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--blush-mid);
  color: var(--text-mid);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.btn-google:hover {
  border-color: var(--blush-deep);
  color: var(--blush-deep);
  transform: translateY(-2px);
}

/* ── PROCESS ── */
.process {
  padding: 8rem 2.5rem;
  background: var(--cream);
}

.process .section-head {
  margin-bottom: 4rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--blush-mid);
  z-index: 0;
}

.pstep {
  text-align: center;
  position: relative;
  z-index: 1;
}

.pstep-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blush-light);
  border: 1px solid var(--blush-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;

  font-size: 1.3rem;
  color: var(--blush-deep);
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

.pstep:hover .pstep-num {
  background: var(--blush-deep);
  color: #fff;
  border-color: var(--blush-deep);
}

.pstep h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pstep p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── FAQ ── */
.faq {
  padding: 8rem 2.5rem;
  background: var(--warm);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.faq .section-head {
  margin-bottom: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--blush-mid);
}

.faq-q {
  width: 100%;
  text-align: right;
  padding: 1.3rem 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blush-deep);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-q {
  color: var(--blush-deep);
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-q:hover {
  color: var(--blush-deep);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.2rem;
}

.faq-a p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ── PRICING ── */
.pricing {
  padding: 8rem 2.5rem;
  background: var(--cream);
}

.pricing .section-head {
  margin-bottom: 3.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--blush-mid);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: all 0.35s var(--ease);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.price-card.featured {
  border-color: var(--blush-deep);
  background: linear-gradient(145deg, var(--blush-light), var(--white));
}

.price-badge {
  display: inline-block;
  background: var(--blush-deep);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.price-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 0.3rem;
}

.price-sub {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

.price-amount {

  font-size: 3rem;
  color: var(--blush-deep);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.price-amount span {
  font-size: 1.5rem;
}

.price-dur {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-bottom: 1.4rem;
}

.price-list {
  margin-bottom: 1.8rem;
}

.price-list li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--blush-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-list li::before {
  content: '✓';
  color: var(--blush-deep);
  font-size: 16px;
}

.btn-price {
  display: block;
  text-align: center;
  background: var(--blush-deep);
  color: #fff;
  padding: 13px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}

.btn-price:hover {
  background: var(--blush-dark);
  transform: translateY(-2px);
}

.btn-price.secondary {
  background: transparent;
  color: var(--blush-deep);
  border: 1px solid var(--blush-mid);
}

.btn-price.secondary:hover {
  background: var(--blush-light);
  border-color: var(--blush-deep);
}

/* Packages */
.packages {
  text-align: center;
}

.pkg-title-main {
  font-size: 24px;
  margin: 0.5rem 0;
}

.pkg-note-main {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
}

.pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.pkg-card {
  background: var(--white);
  border: 1px solid var(--blush-mid);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s var(--ease);
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
}

.pkg-card.popular {
  border-color: var(--blush-deep);
}

.pkg-popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blush-deep);
  color: #fff;
  font-size: 0.68rem;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pkg-for {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-bottom: 0.6rem;
}

.pkg-name {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.pkg-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blush-deep);
}

.pkg-price span {
  font-size: 18px;
}

.pkg-saving {
  font-size: 0.75rem;
  color: var(--gold);
  margin: 0.4rem 0 1.2rem;
}

.btn-pkg {
  display: block;
  background: var(--blush-light);
  color: var(--blush-dark);
  padding: 10px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.25s;
}

.btn-pkg:hover {
  background: var(--blush-deep);
  color: #fff;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 8rem 2.5rem;
  background: linear-gradient(145deg, var(--blush-deep) 0%, #c47a74 50%, #d4908a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '针';
  position: absolute;
  font-size: 28rem;
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: serif;
  color: #fff;
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta .section-label {
  color: rgba(255, 255, 255, 0.7);
  justify-content: center;
}

.final-cta .section-label::before {
  background: rgba(255, 255, 255, 0.4);
}

.final-cta h2 {

  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.final-cta h2 em {
  font-style: italic;
  opacity: 0.85;
}

.fcta-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-fcta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--blush-dark);
  padding: 18px 40px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.28s var(--ease);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.btn-fcta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.fcta-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.fcta-details span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.fcta-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.4rem 2.5rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.fcta-price-item {
  text-align: center;
}

.fpi-name {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fpi-amount {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
}

.fpi-note {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.fcta-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
}

.fcta-legal {
  margin-top: 2rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── CONTACT / INFO CARDS ── */
.contact {
  padding: 5rem 2.5rem;
  background: var(--cream);
}

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

.ccard {
  background: var(--white);
  border: 1px solid var(--blush-mid);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  transition: all 0.3s var(--ease);
}

.ccard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
}

.ccard-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--blush-deep);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.ccard-val {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.ccard-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 3px;
}

/* ── DISCLAIMER ── */
.disclaimer {
  background: var(--blush-light);
  padding: 1.5rem 2rem;
}

.disclaimer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.disclaimer p {
  font-size: 0.75rem;
  color: var(--text-soft);
  line-height: 1.7;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 2.2rem;
  font-size: 0.78rem;
  line-height: 1.8;
}

footer span {
  color: var(--blush);
}

footer a {
  color: var(--blush);
  text-decoration: none;
}

footer a:hover {
  color: var(--blush-mid);
}

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: all 0.3s var(--ease);
  animation: pulse 2.5s 1s infinite;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

.wa-float-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: var(--text);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.wa-float:hover .wa-float-tooltip {
  opacity: 1;
}

/* ── CLINIC GALLERY ── */
.clinic {
  padding: 8rem 2.5rem;
  background: var(--cream);
}

.clinic .section-head {
  margin-bottom: 3.5rem;
}

.clinic-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.cg-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-pink);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: all 0.35s var(--ease);
}

.cg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.cg-item:hover img {
  transform: scale(1.05);
}

.cg-item:hover {
  box-shadow: var(--shadow-deep);
}

/* ── LIGHTBOX ── */
.lightbox {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lb-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
  background: none;
  border: none;
}

.lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .how-grid::before {
    display: none;
  }

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

  .process-steps::before {
    display: none;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .testi-layout {
    grid-template-columns: 1fr;
  }

  .testi-img-col {
    max-height: 300px;
  }
}

/* ════════════════════════════════════════
    SITE FOOTER (PREMIUM CLINIC)
════════════════════════════════════════ */

.site-footer {
  background-color: #111;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 2rem 2rem;
  direction: rtl;
  text-align: right;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  width: 100%;
}

.footer-copy p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copy a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .site-footer {
    padding: 2.5rem 1.5rem 1.5rem;
  }
}

/* ════════════════════════════════════════
    LEGAL PAGES (PRIVACY, TERMS, ETC.)
════════════════════════════════════════ */

.legal-page {
  padding-top: calc(var(--nav-h, 68px) + 3rem);
  padding-bottom: 4rem;
  min-height: 60vh;
  background-color: var(--bg, #faf9f6);
}

.legal-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-wrapper h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink, #1a1a1a);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.legal-updated {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-wrapper section {
  margin-bottom: 2.5rem;
}

.legal-wrapper h2 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink, #1a1a1a);
  margin-bottom: 0.8rem;
}

.legal-wrapper p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

.legal-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.legal-wrapper ul li {
  position: relative;
  padding-right: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}

.legal-wrapper ul li::before {
  content: '·';
  position: absolute;
  right: 0;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent, #b8860b);
  line-height: 1.5;
}

.legal-wrapper a {
  color: var(--accent, #b8860b);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.legal-wrapper a:hover {
  opacity: 0.7;
}

.legal-wrapper strong {
  color: var(--ink, #1a1a1a);
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal-wrapper h1 {
    font-size: 1.8rem;
  }

  .legal-wrapper h2 {
    font-size: 1.2rem;
  }

  .legal-wrapper p,
  .legal-wrapper ul li {
    font-size: 1rem;
  }
}

/* ════════════════════════════════════════
    ACCESSIBILITY WIDGET (INJECTED)
════════════════════════════════════════ */

.a11y-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background-color: #f1c40f;
  color: #111;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.a11y-btn:hover {
  transform: scale(1.08);
  background-color: #ffd700;
}

.a11y-btn svg {
  width: 32px;
  height: 32px;
}

.a11y-panel {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 320px;
  max-width: calc(100vw - 40px);
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.a11y-header {
  background-color: #f1c40f;
  color: #111;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.a11y-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.a11y-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #111;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: transform 0.2s ease;
}

.a11y-close:hover {
  transform: scale(1.1);
}

.a11y-content {
  padding: 10px 0;
  max-height: 60vh;
  overflow-y: auto;
}

.a11y-toggle {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  text-align: right;
  padding: 14px 20px;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
  position: relative;
}

.a11y-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}

.a11y-toggle::before {
  content: '';
  display: inline-block;
  width: 44px;
  height: 24px;
  background-color: #444;
  border-radius: 12px;
  position: absolute;
  left: 20px;
  transition: background-color 0.3s ease;
}

.a11y-toggle::after {
  content: '';
  position: absolute;
  left: 23px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.a11y-toggle[aria-pressed="true"]::before {
  background-color: #f1c40f;
}

.a11y-toggle[aria-pressed="true"]::after {
  transform: translateX(20px);
}

/* ════════════════════════════════════════
    ACCESSIBILITY GLOBAL OVERRIDES
════════════════════════════════════════ */

.a11y-keyboard-nav *:focus-visible {
  outline: 4px solid #f1c40f !important;
  outline-offset: 2px !important;
}

.a11y-no-animations * {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

.a11y-high-contrast {
  background-color: #000 !important;
  color: #fff !important;
}

.a11y-high-contrast section,
.a11y-high-contrast div,
.a11y-high-contrast header,
.a11y-high-contrast footer,
.a11y-high-contrast p,
.a11y-high-contrast span {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
  box-shadow: none !important;
}

.a11y-high-contrast a,
.a11y-high-contrast button {
  background-color: #ffff00 !important;
  color: #000 !important;
  border: 2px solid #fff !important;
}

.a11y-high-contrast .a11y-panel,
.a11y-high-contrast .a11y-panel * {
  background-color: #1a1a1a !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.a11y-high-contrast .a11y-header,
.a11y-high-contrast .a11y-header * {
  background-color: #f1c40f !important;
  color: #000 !important;
}

.a11y-high-contrast .a11y-toggle[aria-pressed="true"]::before {
  background-color: #f1c40f !important;
}

html.a11y-text-1 {
  font-size: 110% !important;
}

html.a11y-text-2 {
  font-size: 125% !important;
}

html.a11y-text-3 {
  font-size: 140% !important;
}

.a11y-readable-font * {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
  font-weight: bold !important;
  letter-spacing: 0.1em !important;
}

.a11y-highlight-headings h1,
.a11y-highlight-headings h2,
.a11y-highlight-headings h3,
.a11y-highlight-headings h4,
.a11y-highlight-headings h5,
.a11y-highlight-headings h6 {
  text-decoration: underline solid #f1c40f 4px !important;
  background-color: rgba(241, 196, 15, 0.1) !important;
}

.a11y-highlight-links a,
.a11y-highlight-links button {
  outline: 3px solid #f1c40f !important;
  outline-offset: 2px !important;
  background-color: #111 !important;
  color: #f1c40f !important;
}

.a11y-highlight-links .a11y-btn,
.a11y-highlight-links .a11y-close,
.a11y-highlight-links .a11y-toggle {
  outline: none !important;
  background-color: transparent !important;
  color: inherit !important;
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  /* ── Mobile Nav: GIF logo LEFT, hamburger RIGHT ── */
  nav#main-nav {
    padding: 0 1.4rem !important;
    justify-content: space-between !important;
    flex-direction: row !important;
    background: transparent !important;
    box-shadow: none !important;
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 70px;
  }

  /* Show GIF logo, hide PNG logo on mobile */
  .nav-logo-desktop {
    display: none !important;
  }

  .nav-logo-mobile {
    display: block !important;
    max-height: 40px !important;
    width: auto !important;
    opacity: 0.95;
  }

  .nav-logo {
    order: unset;
  }

  .nav-logo-text {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    order: unset;
  }

  .nav-hamburger span {
    background-color: #fff !important;
  }

  /* ══ MOBILE HERO — BACKGROUND IMAGE ══ */
  .desktop-hero-content {
    display: none !important;
  }

  .hero {
    padding: 0 !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('images/hero-mobile.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #0a0a0a !important;
  }

  /* Hide the old GIF img element if present */
  .mobile-hero-video {
    display: none !important;
  }

  .mobile-hero-wrapper {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    text-align: center;
    z-index: 10;
  }

  /* ── Warm Dark Overlay ── */
  .mobile-hero-overlay {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      170deg,
      rgba(15, 12, 10, 0.25) 0%,
      rgba(10, 8, 6, 0.45) 50%,
      rgba(5, 4, 3, 0.60) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  /* ── Hero Content — No Card, Open Air ── */
  .hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 2rem;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;

    /* No glass card */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;

    /* Entry Animation */
    opacity: 0;
    animation: heroFadeUp 1.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes heroFadeUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ── Brand Name ── */
  .mh-headline {
    font-family: 'Heebo', sans-serif;
    font-size: 3.2rem;
    font-weight: 200;
    letter-spacing: 0.18em;
    line-height: 1;
    margin: 0 0 0.3rem;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  }

  /* ── רון סמרה ── */
  .mh-name {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 1.6rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  }

  /* ── Thin Divider Line ── */
  .mh-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto 1.6rem;
  }

  /* ── Tagline ── */
  .mh-tagline {
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1.2rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  }

  /* ── Supporting Text ── */
  .mh-desc {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 300px;
    margin: 0 0 2.4rem;
    color: rgba(255, 255, 255, 0.68);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  }

  .mh-sub {
    display: none;
  }

  /* ── Premium CTA Button ── */
  .mh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-top: 0;
    width: auto;
    max-width: none;

    /* Warm brand tone */
    background: rgba(193, 154, 107, 0.85);
    border: 1px solid rgba(193, 154, 107, 0.5);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(193, 154, 107, 0.25);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    animation: ctaPulse 4s ease-in-out infinite;
  }

  @keyframes ctaPulse {
    0%, 100% {
      box-shadow: 0 4px 20px rgba(193, 154, 107, 0.25);
    }
    50% {
      box-shadow: 0 4px 28px rgba(193, 154, 107, 0.40);
    }
  }

  .mh-btn:hover,
  .mh-btn:active {
    background: rgba(193, 154, 107, 1);
    box-shadow: 0 6px 30px rgba(193, 154, 107, 0.45);
    transform: translateY(-1px);
  }

  /* ══ MOBILE INTRO & CONTACT STRIP ══ */
  .marquee-wrap {
    display: none !important;
  }

  .mobile-intro-section {
    display: block !important;
    background-color: var(--stone);
    padding: 6rem 2rem;
    text-align: center;
  }

  .mobile-intro-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .mobile-intro-inner h2 {
    font-size: 2.2rem;
    margin: 0;
    color: var(--text);
  }

  .mobile-intro-inner h3 {
    font-size: 1.6rem;
    margin: 0;
    color: var(--text-light);
  }

  .mobile-intro-inner p {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text);
  }

  .mobile-contact-strip {
    display: flex !important;
    justify-content: center;
    gap: 1rem;
    padding: 2.5rem 1.5rem;
    background-color: var(--bg);
  }

  .mcs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 400;
    flex: 1;
    max-width: 180px;
    transition: var(--trans);
  }

  .mcs-wa {
    background-color: #25D366;
    color: white;
  }

  .mcs-call {
    background-color: var(--blush-deep);
    color: white;
  }

  .mcs-icon {
    font-size: 1.2rem;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 2.5rem;
  }

  .clinic-gallery {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

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

  .cta-strip {
    flex-direction: column;
    text-align: center;
  }

  .fcta-prices {
    flex-direction: column;
    gap: 1.5rem;
  }

  .fcta-divider {
    width: 60px;
    height: 1px;
  }

  .fcta-details {
    flex-direction: column;
    gap: 0.8rem;
  }

  .pain,
  .how,
  .about,
  .clinic,
  .testimonials,
  .process,
  .faq,
  .pricing,
  .contact {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .how-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 1.2rem;
  }

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