/* =========================================================
   AMAAN AL-SIYAM – Phoenix Medical Clinics
   Brand Color Palette – Exact Colors from Upload
   =========================================================
   Primary:  #8DC63F  (Lime Green)
   Secondary:#00C2CB  (Cyan / Turquoise)
   Dark:     #1B2E6B  (Deep Navy Blue)
   Grad 1:   #00C2CB → #1B2E6B  (Cyan to Navy)
   Grad 2:   #00C2CB → #8DC63F  (Cyan to Green)
   ========================================================= */

/* ---- CSS Variables – Exact Brand Palette ---- */
:root {
  /* BRAND PRIMARIES */
  --green:         #8DC63F;
  --green-dark:    #72A030;
  --green-light:   #A8D85A;
  --cyan:          #00C2CB;
  --cyan-dark:     #009AA3;
  --cyan-light:    #33D0D8;
  --navy:          #1B2E6B;
  --navy-dark:     #111E4A;
  --navy-light:    #2A4090;

  /* GRADIENTS */
  --grad-brand:    linear-gradient(135deg, #1B2E6B 0%, #00C2CB 100%);
  --grad-green:    linear-gradient(135deg, #00C2CB 0%, #8DC63F 100%);
  --grad-hero:     linear-gradient(150deg, #111E4A 0%, #1B2E6B 45%, #009AA3 100%);
  --grad-section:  linear-gradient(135deg, #00C2CB 0%, #1B2E6B 100%);

  /* NEUTRAL */
  --white:         #FFFFFF;
  --off-white:     #F5FAFA;
  --light-bg:      #EEF9FA;
  --border:        #D0EFF0;
  --mid-gray:      #B0C4C5;
  --text-dark:     #0E1A3A;
  --text-body:     #2C3E55;
  --text-muted:    #5E7A8A;

  /* SYSTEM */
  --success:       #27AE60;
  --warning:       #F39C12;
  --danger:        #E74C3C;

  --font-main:     'Cairo', 'Tajawal', sans-serif;

  --radius-xs:     4px;
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --radius-pill:   100px;

  --shadow-sm:     0 2px 12px rgba(27,46,107,0.08);
  --shadow:        0 6px 24px rgba(27,46,107,0.13);
  --shadow-lg:     0 12px 48px rgba(27,46,107,0.18);
  --shadow-cyan:   0 6px 24px rgba(0,194,203,0.25);
  --shadow-green:  0 6px 24px rgba(141,198,63,0.25);

  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* SPACING – mobile-first scale */
  --section-pad:   56px;
  --section-pad-lg:80px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  direction: rtl;
  text-align: right;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background: var(--cyan-dark);
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.top-bar i {
  margin-left: 5px;
  color: var(--cyan);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 16px rgba(27,46,107,0.10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Brand Logo */
.brand-logo { display: flex; align-items: center; }
.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Desktop Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-body);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--cyan-dark);
  background: var(--light-bg);
}

/* Nav CTA */
.btn-nav {
  background: var(--grad-green) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-pill) !important;
  font-size: 0.88rem !important;
  box-shadow: var(--shadow-green);
}
.btn-nav:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(141,198,63,0.35) !important;
}

/* Header scrolled state */
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(27,46,107,0.14);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.hamburger:hover { background: var(--light-bg); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--border);
  padding: 12px 20px 20px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-body);
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: var(--light-bg); color: var(--cyan-dark); }
.btn-mobile-cta {
  background: var(--grad-green) !important;
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius-pill) !important;
  margin-top: 10px;
  padding: 15px !important;
  font-size: 1.05rem !important;
  border-bottom: none !important;
  justify-content: center;
  display: flex;
  box-shadow: var(--shadow-green);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.97rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2.5px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.2px;
  -webkit-tap-highlight-color: transparent;
}

/* PRIMARY – Turquoise/Cyan (dominant CTA) */
.btn-primary {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}
.btn-primary:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,194,203,0.40);
}
.btn-primary:active { transform: translateY(0); }

/* SECONDARY – Cyan outline */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--white);
}

/* CYAN solid */
.btn-cyan {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}
.btn-cyan:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,194,203,0.38);
}

/* WHATSAPP */
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #1ebe59; transform: translateY(-2px); }

/* Sizes */
.btn-lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm  { padding: 9px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* Touch-friendly min height */
.btn { min-height: 48px; }
.btn-lg { min-height: 56px; }

/* =========================================================
   SECTION BASE
   ========================================================= */
.section { padding: var(--section-pad) 0; }
.section-light { background: var(--off-white); }
.section-dark  { background: linear-gradient(160deg, #1B2E6B 0%, #0E5C64 100%); }
.section-cyan  { background: var(--grad-section); }
.section-accent { background: var(--light-bg); }
.section-pricing { background: linear-gradient(150deg, #009AA3 0%, #1B2E6B 100%); }
.section-cta   { background: var(--grad-green); }

/* Section Tag / Label */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,194,203,0.12);
  color: var(--cyan-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  border: 1.5px solid rgba(0,194,203,0.25);
}
.section-tag.light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.3);
}
.section-tag.green {
  background: rgba(141,198,63,0.12);
  color: var(--green-dark);
  border-color: rgba(141,198,63,0.3);
}

/* Section Title */
.section-title {
  font-size: clamp(1.55rem, 4vw, 2.3rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 36px;
  line-height: 1.3;
}
.section-title.light { color: var(--white); }
.section-title.cyan  { color: var(--cyan); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
}

/* Decorative circles */
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,203,0.12) 0%, transparent 70%);
  top: -150px; left: -150px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* Green accent blob */
.hero-blob {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141,198,63,0.1) 0%, transparent 70%);
  bottom: 80px; right: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 80px 0 120px;
  width: 100%;
}

/* Hero Logo Block */
.hero-logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.hero-logo-block img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* White version for dark hero background */
}
.hero-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  border-right: 2px solid rgba(0,194,203,0.5);
  padding-right: 16px;
}
.hero-logo-text .hl-main {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
}
.hero-logo-text .hl-sub {
  font-size: 0.75rem;
  color: var(--cyan-light);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(141,198,63,0.18);
  border: 1.5px solid rgba(141,198,63,0.4);
  color: var(--green-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

/* Hero Title */
.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--white);
}
.hero-title .highlight {
  color: var(--green);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -3px; right: 0; left: 0;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  opacity: 0.6;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  line-height: 1.8;
}
.hero-subtitle strong { color: var(--cyan-light); font-weight: 800; }

/* Doctor Tag */
.hero-doctor-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,194,203,0.15);
  border: 1.5px solid rgba(0,194,203,0.35);
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}
/* مسافة إضافية فوق تاج الطبيب لإيجاد فراغ بصري بعد جملة عدد الحالات */
.hero-doctor-tag--spaced {
  margin-top: 28px;
  margin-bottom: 20px;
}
.hero-doctor-tag i { color: var(--cyan); font-size: 1.1rem; }
.hero-doctor-tag strong { color: var(--cyan-light); }

/* Urgency */
.hero-urgency {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(141,198,63,0.12);
  border: 1.5px solid rgba(141,198,63,0.3);
  border-radius: var(--radius);
  padding: 11px 18px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-urgency i { color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* CTA Actions */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* أزرار الاتصال والواتساب – موحّدة مع نظام الأزرار الرئيسي */
.btn-hero-call {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-hero-call:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-hero-wa {
  background: transparent;
  color: #4be87f;
  border-color: rgba(37,211,102,0.6);
}
.btn-hero-wa:hover {
  background: rgba(37,211,102,0.14);
  border-color: #25D366;
  color: #25D366;
  transform: translateY(-2px);
}

/* Scroll arrow */
.hero-scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 2px solid rgba(0,194,203,0.5);
  border-radius: 50%;
  color: var(--cyan);
  animation: bounceDown 2.2s infinite;
}
.hero-scroll a:hover { border-color: var(--cyan); }
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* =========================================================
   WHY SUPERVISION
   ========================================================= */
.intro-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 1.08rem;
  color: var(--text-body);
  line-height: 1.85;
}
.intro-text strong { color: var(--cyan-dark); font-weight: 800; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 4px;
  background: var(--grad-green);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: right;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--border); }
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 56px; height: 56px;
  background: var(--grad-brand);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: var(--shadow-cyan);
}
.why-card h3 {
  font-size: 1rem; font-weight: 800;
  color: var(--cyan-dark); margin-bottom: 9px;
}
.why-card p { color: var(--text-body); font-size: 0.88rem; line-height: 1.75; }

/* =========================================================
   PROGRAM LEAD TEXT
   ========================================================= */
.program-lead-text {
  font-size: 1.12rem;
  color: var(--text-body);
  line-height: 2;
  max-width: 640px;
}
.program-lead-text strong { color: var(--cyan-dark); }

/* =========================================================
   STEP NOTE (inside step content)
   ========================================================= */
.step-note {
  font-size: 0.87rem;
  color: var(--cyan-dark);
  font-weight: 700;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

/* =========================================================
   SECTION INLINE CTA
   ========================================================= */
.section-cta-inline {
  margin-top: 40px;
  text-align: center;
}

/* =========================================================
   WHO LIST (new layout replacing who-grid)
   ========================================================= */
.who-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  max-width: 960px;
}
.who-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--transition);
}
.who-item:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-sm);
  transform: translateX(-3px);
}
.who-item i {
  color: var(--green);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.who-item p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.75;
  flex: 1;
}

/* =========================================================
   PRICING INCLUDES LABEL
   ========================================================= */
.pricing-includes-label {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  text-align: center;
  margin-bottom: 28px;
  padding: 14px 20px;
  background: rgba(0,194,203,0.12);
  border: 1.5px solid rgba(0,194,203,0.3);
  border-radius: var(--radius);
}

/* =========================================================
   POLICY BLOCK (inside FAQ section)
   ========================================================= */
.policy-block {
  margin-top: 40px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(0,194,203,0.3);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}
.policy-block h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.policy-block p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}

/* =========================================================
   WHY SUPERVISION – STATEMENTS LAYOUT
   ========================================================= */
.why-intro-block {
  max-width: 760px;
  margin: 0 auto 36px;
}
.why-intro-text {
  font-size: 1.06rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 18px;
}
.why-intro-text strong { color: var(--cyan-dark); font-weight: 800; }
.doctor-name-highlight { color: var(--cyan-dark); font-weight: 900; font-size: 1.05em; }

.why-statements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 860px;
}
.why-statement-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}
.why-statement-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.why-statement-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--grad-brand);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.25rem;
  box-shadow: var(--shadow-cyan);
}
.why-statement-card p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.8;
  flex: 1;
}

/* =========================================================
   DOCTOR SECTION
   ========================================================= */
.doctor-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 52px;
  align-items: start;
}
.doctor-image-block { text-align: center; }

/* Real photo styling */
.doctor-photo {
  width: 260px;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(0,194,203,0.5);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 0 6px rgba(0,194,203,0.12);
  margin: 0 auto 20px;
  display: block;
  transition: var(--transition);
}
.doctor-photo:hover {
  box-shadow: 0 12px 52px rgba(0,0,0,0.35), 0 0 0 8px rgba(0,194,203,0.18);
  transform: translateY(-3px);
}

/* Legacy avatar fallback (hidden when photo present) */
.doctor-avatar {
  display: none;
}

.doctor-name-badge {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(0,194,203,0.3);
  border-radius: var(--radius);
  padding: 14px;
  backdrop-filter: blur(8px);
}
.doctor-name-badge span {
  display: block;
  font-size: 1.15rem; font-weight: 800;
  color: var(--cyan);
  margin-bottom: 6px;
}
.doctor-name-badge small {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  display: block;
  line-height: 1.55;
  margin-bottom: 2px;
}

.doctor-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.85;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
}
.credential-block {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(0,194,203,0.2);
  border-radius: var(--radius);
  padding: 18px;
  transition: var(--transition);
}
.credential-block:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(0,194,203,0.4);
}
.credential-block h4 {
  font-size: 0.87rem; font-weight: 800;
  color: var(--cyan);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.credential-block ul { display: flex; flex-direction: column; gap: 8px; }
.credential-block li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.82);
  padding-right: 14px;
  position: relative; line-height: 1.55;
}
.credential-block li::before {
  content: '';
  position: absolute; right: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.badge-tag {
  display: inline-block;
  background: rgba(141,198,63,0.2);
  color: var(--green);
  font-size: 0.7rem; font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(141,198,63,0.35);
}

/* =========================================================
   PROGRAM STEPS
   ========================================================= */
.program-overview-text {
  max-width: 700px;
  font-size: 1rem; color: var(--text-body);
  line-height: 1.85; margin-bottom: 40px;
}

.program-steps { display: flex; flex-direction: column; gap: 20px; }

.step-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.step-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--cyan);
  transform: translateX(-4px);
}

.step-num {
  background: var(--grad-brand);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; font-weight: 900;
  writing-mode: vertical-rl;
  letter-spacing: -2px;
  flex-shrink: 0;
  min-height: 120px;
}

.step-content { padding: 24px 28px; }
.step-content h3 {
  font-size: 1.08rem; font-weight: 800;
  color: var(--cyan-dark); margin-bottom: 8px;
}
.step-content > p {
  color: var(--text-body); font-size: 0.9rem;
  margin-bottom: 14px; line-height: 1.75;
}
.step-content ul { display: flex; flex-direction: column; gap: 6px; }
.step-content li {
  font-size: 0.85rem; color: var(--text-body);
  padding-right: 18px; position: relative; line-height: 1.6;
}
.step-content li::before {
  content: '';
  position: absolute; right: 0; top: 8px;
  width: 7px; height: 7px;
  background: var(--cyan); border-radius: 50%;
}

/* =========================================================
   WHO IS THIS FOR
   ========================================================= */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.who-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
}
.who-card.ideal  { border-color: var(--green);  border-top-width: 4px; }
.who-card.caution{ border-color: var(--warning); border-top-width: 4px; }
.who-card:hover  { box-shadow: var(--shadow); }

.who-header {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.97rem; font-weight: 800;
  margin-bottom: 18px; color: var(--text-dark);
}
.ideal  .who-header i { color: var(--green);   font-size: 1.2rem; }
.caution.who-header i { color: var(--warning); font-size: 1.2rem; }
.caution .who-header i { color: var(--warning); }

.who-card ul { display: flex; flex-direction: column; gap: 10px; }
.who-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-body); line-height: 1.6;
}
.ideal li i   { color: var(--green);   flex-shrink: 0; margin-top: 3px; }
.caution li i { color: var(--warning); flex-shrink: 0; margin-top: 3px; }

.caution-note {
  margin-top: 18px; padding: 12px 14px;
  background: rgba(243,156,18,0.08);
  border: 1.5px solid rgba(243,156,18,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.83rem; color: var(--text-body);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.6;
}
.caution-note i { color: var(--warning); margin-top: 2px; flex-shrink: 0; }

/* =========================================================
   EXECUTION OPTIONS
   ========================================================= */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.option-card {
  background: var(--white);
  border: 2.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 26px 28px;
  position: relative;
  transition: var(--transition);
  text-align: center;
}
.option-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.option-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
}
.option-card.featured:hover { border-color: var(--green-dark); }

.option-badge-top {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--grad-green);
  color: var(--white); font-size: 0.78rem; font-weight: 800;
  padding: 5px 18px; border-radius: var(--radius-pill);
  white-space: nowrap; box-shadow: var(--shadow-green);
}

.option-icon {
  width: 70px; height: 70px;
  background: var(--grad-brand);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem; color: var(--white);
  box-shadow: var(--shadow-cyan);
}
.option-card h3 {
  font-size: 1.15rem; font-weight: 800;
  color: var(--cyan-dark); margin-bottom: 10px;
}
.option-card > p {
  font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 18px; line-height: 1.75;
}
.option-card ul {
  text-align: right; display: flex; flex-direction: column;
  gap: 8px; margin-bottom: 20px;
}
.option-card li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.87rem; color: var(--text-body);
}
.option-card li i { color: var(--green); flex-shrink: 0; }
.option-badge {
  display: inline-block;
  background: var(--light-bg);
  color: var(--cyan-dark);
  font-size: 0.78rem; font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
}
.option-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 8px;
  font-style: italic;
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing-wrapper { max-width: 560px; margin: 0 auto; }
.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 2.5px solid rgba(141,198,63,0.5);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  backdrop-filter: blur(10px);
  text-align: center;
  box-shadow: 0 0 60px rgba(141,198,63,0.1);
}
.pricing-label {
  font-size: 0.95rem; font-weight: 700;
  color: rgba(255,255,255,0.7); margin-bottom: 16px;
}
.pricing-amount {
  display: flex; align-items: baseline;
  justify-content: center; gap: 10px; margin-bottom: 20px;
}
.price-num {
  font-size: clamp(3.5rem, 9vw, 5.5rem);
  font-weight: 900; color: var(--green);
  line-height: 1;
}
.price-currency {
  font-size: 1.15rem; font-weight: 700;
  color: rgba(255,255,255,0.65);
}
.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,194,203,0.4), transparent);
  margin: 20px 0;
}
.pricing-includes { text-align: right; margin-bottom: 22px; }
.pricing-includes h4 {
  font-size: 0.92rem; font-weight: 800;
  color: var(--cyan); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.pricing-includes ul { display: flex; flex-direction: column; gap: 10px; }
.pricing-includes li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.9);
}
.pricing-includes li i { color: var(--green); flex-shrink: 0; }
.pricing-urgency {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(141,198,63,0.12);
  border: 1.5px solid rgba(141,198,63,0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: 0.83rem;
  color: rgba(255,255,255,0.88); margin-bottom: 22px;
}
.pricing-urgency i { color: var(--green); }
.pricing-note {
  margin-top: 18px; display: flex; align-items: flex-start; gap: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 14px; text-align: right;
}
.pricing-note i { color: var(--cyan); flex-shrink: 0; margin-top: 3px; }
.pricing-note p { font-size: 0.83rem; color: rgba(255,255,255,0.7); line-height: 1.65; }

/* =========================================================
   REGISTRATION FORM
   ========================================================= */
.form-subtitle {
  color: var(--text-muted); font-size: 0.97rem;
  margin-bottom: 36px; max-width: 600px; line-height: 1.7;
}
.form-wrapper { max-width: 680px; }
.reg-form { display: flex; flex-direction: column; gap: 22px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.9rem; font-weight: 700; color: var(--text-dark);
}
.required { color: var(--danger); }
.optional { color: var(--text-muted); font-weight: 500; font-size: 0.8rem; }

.input-wrapper { position: relative; }
.input-icon {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted); font-size: 0.88rem; pointer-events: none;
}
.input-icon-top { top: 16px; transform: none; }

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 13px 42px 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--white);
  direction: rtl; text-align: right;
  transition: var(--transition);
  outline: none;
  min-height: 52px;
}
.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,194,203,0.15);
}
.input-wrapper input.error,
.input-wrapper textarea.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}
.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder { color: var(--mid-gray); }
.textarea-wrapper textarea { padding-top: 44px; resize: vertical; min-height: 120px; }

.field-error {
  font-size: 0.79rem; color: var(--danger);
  display: flex; align-items: center; gap: 4px; min-height: 18px;
}

/* Radio Group */
.radio-group { display: flex; flex-direction: column; gap: 12px; }
.radio-option {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer; transition: var(--transition);
  background: var(--white); min-height: 56px;
}
.radio-option:hover { border-color: var(--cyan); background: rgba(0,194,203,0.04); }
.radio-option input[type="radio"] { display: none; }

.radio-custom {
  width: 22px; height: 22px;
  border: 2.5px solid var(--mid-gray);
  border-radius: 50%; flex-shrink: 0;
  position: relative; transition: var(--transition);
}
.radio-option input:checked ~ .radio-custom {
  border-color: var(--cyan);
  background: var(--cyan);
}
.radio-option input:checked ~ .radio-custom::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  background: var(--white); border-radius: 50%;
}
.radio-option:has(input:checked) {
  border-color: var(--cyan);
  background: rgba(0,194,203,0.05);
}
.radio-content {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-body); transition: var(--transition);
}
.radio-option:has(input:checked) .radio-content { color: var(--navy); }
.radio-content i { font-size: 1.1rem; color: var(--cyan); }

/* Checkbox */
.checkbox-option {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
}
.checkbox-option input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 24px; height: 24px;
  border: 2.5px solid var(--mid-gray);
  border-radius: var(--radius-xs);
  flex-shrink: 0; position: relative;
  transition: var(--transition);
}
.checkbox-option input:checked ~ .checkbox-custom {
  background: var(--green); border-color: var(--green);
}
.checkbox-option input:checked ~ .checkbox-custom::after {
  content: '✓';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white); font-size: 0.78rem; font-weight: 800;
}
.checkbox-label { font-size: 0.9rem; color: var(--text-body); line-height: 1.55; }

/* Submit */
#submitBtn { position: relative; }
.btn-loader { display: inline-flex; margin-right: 4px; }

/* Success */
.success-message {
  text-align: center;
  padding: 56px 32px;
  background: linear-gradient(135deg, rgba(141,198,63,0.06), rgba(0,194,203,0.06));
  border: 2.5px solid var(--green);
  border-radius: var(--radius-xl);
}
.success-icon { font-size: 4rem; color: var(--green); margin-bottom: 20px; }
.success-message h3 {
  font-size: 1.5rem; font-weight: 900;
  color: var(--cyan-dark); margin-bottom: 12px;
}
.success-message p {
  color: var(--text-body); font-size: 0.97rem;
  line-height: 1.75; margin-bottom: 8px;
}
.success-note { font-size: 0.85rem; color: var(--text-muted); font-style: italic; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
  display: flex; flex-direction: column;
  gap: 10px; max-width: 860px; margin: 0 auto;
}
.faq-item {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.faq-item.open {
  background: rgba(255,255,255,0.1);
  border-color: var(--cyan);
}
.faq-question {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  font-family: var(--font-main); font-size: 0.97rem; font-weight: 700;
  color: var(--white); text-align: right;
  background: none; cursor: pointer; transition: var(--transition);
  min-height: 58px;
}
.faq-question:hover { background: rgba(255,255,255,0.06); }
.faq-icon { flex-shrink: 0; color: var(--cyan); transition: transform 0.35s ease; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--green); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 350px; padding: 0 22px 20px; }
.faq-answer p {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem; line-height: 1.85;
  border-top: 1px solid rgba(0,194,203,0.2);
  padding-top: 16px;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--cyan);
}
.contact-icon {
  width: 56px; height: 56px;
  background: var(--grad-brand);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem; color: var(--white);
  box-shadow: var(--shadow-cyan);
}
.contact-card h4 {
  font-size: 0.97rem; font-weight: 800;
  color: var(--cyan-dark); margin-bottom: 7px;
}
.contact-card p {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 12px;
}
.contact-card .btn { margin: 0 auto; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.cta-content {
  text-align: center; max-width: 640px; margin: 0 auto;
}
.cta-icon {
  font-size: 3.5rem; margin-bottom: 18px;
  color: rgba(255,255,255,0.35); display: block;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900; color: var(--white); margin-bottom: 14px;
}
.cta-content > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 22px; line-height: 1.75;
}
.cta-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.18);
  padding: 9px 22px; border-radius: var(--radius-pill);
  font-size: 0.87rem; color: rgba(255,255,255,0.9);
  margin-bottom: 28px; font-weight: 700;
}
.cta-content .btn-primary {
  background: var(--white) !important;
  border-color: var(--white) !important;
  color: var(--cyan-dark) !important;
  font-size: 1.08rem;
  font-weight: 900;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.cta-content .btn-primary:hover {
  background: rgba(255,255,255,0.92) !important;
  border-color: rgba(255,255,255,0.92) !important;
  color: var(--navy) !important;
  transform: translateY(-3px) !important;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer-bottom {
  background: linear-gradient(135deg, #0a1530 0%, #0e3a40 100%);
  color: rgba(255,255,255,0.65);
  padding: 36px 0;
}
.footer-inner {
  text-align: center; display: flex;
  flex-direction: column; gap: 14px; align-items: center;
}
.footer-logo img {
  height: 48px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  margin: 0 auto;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-disclaimer {
  font-size: 0.76rem; color: rgba(255,255,255,0.3);
  max-width: 540px; line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}

/* =========================================================
   FLOATING CTA
   ========================================================= */
.floating-cta {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  width: calc(100% - 40px);
  max-width: 420px;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.btn-floating {
  width: 100%; border-radius: var(--radius-pill);
  font-size: 1rem; padding: 16px 28px;
  box-shadow: 0 8px 32px rgba(27,46,107,0.3);
  background: var(--grad-green);
  color: var(--white); border: none;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(27,46,107,0.4);
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE – MOBILE FIRST
   ========================================================= */

/* Large Tablet */
@media (max-width: 960px) {
  .doctor-layout { grid-template-columns: 1fr; }
  .doctor-image-block { max-width: 280px; margin: 0 auto 28px; }
  .doctor-photo { width: 240px; height: 295px; }
}

/* Tablet / Small Desktop */
@media (max-width: 768px) {
  :root { --section-pad: 52px; }

  /* Nav */
  .site-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; align-items: flex-start; }
  .hero-content { padding: 64px 0 110px; }
  .hero-logo-block { gap: 12px; margin-bottom: 24px; }
  .hero-logo-block img { height: 60px; }
  .hero-logo-text .hl-main { font-size: 1.2rem; }
  /* Hero actions: صفان في الموبايل */
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
  }
  /* الأزرار الرئيسية تملأ صفاً كاملاً بنفسها */
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    flex: 1 1 100%;
    justify-content: center;
  }
  /* أزرار الاتصال والواتساب تملأ الصف بالتساوي مع بعضهما */
  .hero-actions .btn-hero-call,
  .hero-actions .btn-hero-wa {
    flex: 1 1 auto;
    justify-content: center;
  }
  .hero-urgency { font-size: 0.82rem; }

  /* Step Cards */
  .step-card { grid-template-columns: 1fr; }
  .step-num {
    writing-mode: horizontal-tb;
    min-height: auto;
    padding: 12px 24px;
    font-size: 1.1rem;
    justify-content: flex-start;
    letter-spacing: 0;
    border-radius: 0;
  }
  .step-content { padding: 20px 22px; }

  /* Options */
  .options-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-card { padding: 32px 22px; }
  .price-num { font-size: 4rem; }

  /* Form */
  .reg-form { gap: 18px; }
  .radio-group { gap: 10px; }

  /* FAQ */
  .faq-question { font-size: 0.92rem; padding: 16px 18px; }

  /* Contact */
  .contact-grid { grid-template-columns: repeat(2, 1fr); }

  /* Top bar */
  .top-bar .container { gap: 14px; font-size: 0.74rem; }

  .section-title { margin-bottom: 28px; }
}

/* Mobile */
@media (max-width: 480px) {
  :root { --section-pad: 44px; }

  .container { padding: 0 16px; }

  /* Hero */
  .hero-logo-block { flex-direction: column; align-items: flex-start; gap: 0; }
  .hero-logo-text { border-right: none; border-top: 1.5px solid rgba(0,194,203,0.4); padding-right: 0; padding-top: 10px; margin-top: 8px; }

  .hero-title { font-size: 1.85rem; }
  .hero-subtitle { font-size: 0.97rem; }
  .hero-doctor-tag { font-size: 0.85rem; padding: 10px 14px; }

  /* Grids → single column */
  .why-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .who-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-statements { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-card { padding: 28px 18px; }
  .price-num { font-size: 3.5rem; }
  .pricing-includes li { font-size: 0.85rem; }

  /* Form */
  .input-wrapper input,
  .input-wrapper textarea { font-size: 1rem; } /* prevent iOS zoom */
  .btn-full { font-size: 1rem; padding: 15px 20px; }

  /* Section title smaller */
  .section-title { font-size: 1.45rem; }

  /* Doctor photo on mobile */
  .doctor-photo { width: 210px; height: 260px; }
  .doctor-image-block { max-width: 240px; }

  /* Floating CTA */
  .floating-cta { bottom: 16px; width: calc(100% - 32px); }
}

/* Very small screens */
@media (max-width: 360px) {
  :root { --section-pad: 36px; }
  .hero-title { font-size: 1.65rem; }
  .btn-lg { padding: 14px 22px; font-size: 0.95rem; }
}

/* Safe area for notched phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .floating-cta { bottom: calc(24px + env(safe-area-inset-bottom)); }
}
