/* ============================================================
   FULL-WIDTH RESET (يُلغي كل هوامش الثيم)
============================================================ */
html, body,
#page, #content, .site-content, .content-area, main, #main,
.site-main, .entry-content, article, .post-content, #primary,
.page-content, .wp-block-group, .wp-block-group__inner-container,
[class*="page-template"] .entry-content,
[class*="page-template"] article,
.site, .wrapper, .container, .site-header + * {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
    left: 0 !important;
    right: 0 !important;
}

body {
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.entry-header, .page-header, h1.entry-title, h1.page-title,
.site-footer, .sidebar {
    display: none !important;
}

/* ============================================================
   ROOT VARIABLES & RESET
============================================================ */
:root {
  --navy:       #0B1F4B;
  --navy-mid:   #1E3A8A;
  --navy-light: #2D52B0;
  --gold:       #F59E0B;
  --gold-light: #FCD34D;
  --orange:     #EA580C;
  --green:      #059669;
  --cream:      #FFFBF0;
  --white:      #FFFFFF;
  --off-white:  #F8F9FC;
  --text-dark:  #0B1120;
  --text-mid:   #374151;
  --text-light: #6B7280;
  --border:     #E5E9F2;
  --card-bg:    #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(11,31,75,0.07);
  --shadow-md:  0 8px 32px rgba(11,31,75,0.12);
  --shadow-lg:  0 24px 64px rgba(11,31,75,0.18);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

.aaa-page {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ============================================================
   HERO
============================================================ */
.aaa-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  width: 100%;
}

.aaa-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(245,158,11,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(45,82,176,0.3) 0%, transparent 60%);
}

.aaa-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-inner {
    padding: 0 1.25rem;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-pill span { font-size: 16px; }

.hero-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 820px;
}

.hero-h2 em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  font-weight: 400;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(234,88,12,0.4);
}

.btn-primary:hover {
  background: #C94E08;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(234,88,12,0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
}

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  width: 100%;
}

.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 768px) {
  .trust-inner {
    padding: 0 1.25rem;
    gap: 24px;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
}

.trust-item i { color: var(--gold); font-size: 16px; }

/* ============================================================
   SECTION COMMON
============================================================ */
.section { padding: 80px 0; width: 100%; }
.section-sm { padding: 56px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; width: 100%; }

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 1.25rem; }
}

.section-label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 640px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================================
   DISCLOSURE NOTICE
============================================================ */
.disclosure-bar {
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  font-size: 13px;
  color: #92400E;
}

.disclosure-bar i { color: #F59E0B; flex-shrink: 0; font-size: 15px; }

/* ============================================================
   FILTER BAR
============================================================ */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--navy-mid);
  color: var(--navy-mid);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11,31,75,0.25);
}

/* ============================================================
   TEACHERS GRID
============================================================ */
.teachers-section { background: var(--off-white); width: 100%; }

.teachers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) { .teachers-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .teachers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .teachers-grid { grid-template-columns: 1fr; } }

/* TEACHER CARD */
.teacher-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}

.teacher-card:hover {
  transform: translateY(-6px);
  border-color: var(--navy-light);
  box-shadow: var(--shadow-lg);
}

.teacher-card.hidden { display: none !important; }

/* Slide Show Area */
.card-slides-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--navy);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.active { opacity: 1; }

/* slide bg variants per card */
.card-slides-wrap[data-color="navy"] .slide   { background: linear-gradient(145deg, #0B1F4B, #1E3A8A); }
.card-slides-wrap[data-color="teal"] .slide   { background: linear-gradient(145deg, #0F4C3A, #1D9E75); }
.card-slides-wrap[data-color="purple"] .slide { background: linear-gradient(145deg, #3C1F6E, #7C3AED); }
.card-slides-wrap[data-color="rose"] .slide   { background: linear-gradient(145deg, #7F1D1D, #DC2626); }
.card-slides-wrap[data-color="indigo"] .slide { background: linear-gradient(145deg, #1E1B4B, #4338CA); }
.card-slides-wrap[data-color="emerald"] .slide{ background: linear-gradient(145deg, #064E3B, #059669); }
.card-slides-wrap[data-color="orange"] .slide { background: linear-gradient(145deg, #431407, #EA580C); }
.card-slides-wrap[data-color="slate"] .slide  { background: linear-gradient(145deg, #0F172A, #334155); }

.slide-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.25);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.slide-hi {
  font-size: 22px;
  margin-bottom: 8px;
}

.slide-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.slide-text {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.slide-text strong {
  color: var(--gold);
  font-weight: 600;
}

/* Progress dots */
.slide-progress {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
}

.prog-dot {
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  transition: all 0.4s ease;
  cursor: pointer;
}

.prog-dot.active {
  background: rgba(255,255,255,0.9);
  width: 20px !important;
}

/* Card badge */
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(245,158,11,0.92);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 4;
  backdrop-filter: blur(4px);
}

/* Card body */
.card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.card-uni {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
  flex: 1;
}

.ctag {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--off-white);
  color: var(--text-mid);
  border: 1px solid var(--border);
  font-weight: 500;
}

.card-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.card-link {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid;
  transition: all 0.2s;
}

.card-link.quran  { color: #1D9E75; border-color: #1D9E75; }
.card-link.kids   { color: #7C3AED; border-color: #7C3AED; }
.card-link.msa    { color: var(--navy-mid); border-color: var(--navy-mid); }
.card-link.egypt  { color: var(--orange); border-color: var(--orange); }
.card-link.biz    { color: #334155; border-color: #334155; }

.card-link:hover { opacity: 0.7; }

.btn-view-profile {
  width: 100%;
  padding: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-view-profile:hover { background: var(--navy-light); }

/* ============================================================
   STATS BAND
============================================================ */
.stats-band {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
  width: 100%;
}

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

@media (max-width: 800px) { .stats-band-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-band-grid { grid-template-columns: 1fr; } }

.stat-band-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.stat-band-item:last-child { border-right: none; }

.stat-band-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-band-lbl {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-band-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   MATCHING SECTION
============================================================ */
.matching-section { background: var(--cream); width: 100%; }

.matching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 900px) { .matching-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .matching-grid { grid-template-columns: 1fr; } }

.match-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.25s ease;
}

.match-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(245,158,11,0.15);
  transform: translateY(-3px);
}

.match-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--gold);
}

.match-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.match-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   VIDEO TESTIMONIALS
============================================================ */
.video-section { background: var(--white); width: 100%; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

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

.video-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: all 0.25s ease;
}

.video-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.video-thumb {
  height: 200px;
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.play-btn {
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  transition: transform 0.2s ease;
  box-shadow: 0 0 0 12px rgba(234,88,12,0.2);
}

.video-card:hover .play-btn { transform: scale(1.1); }

.video-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

.video-info {
  padding: 18px 20px;
}

.video-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.video-country {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.video-quote {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic;
}

.video-course-tag {
  display: inline-block;
  margin-top: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section {
  background: linear-gradient(to bottom, #FFFBF0, #FEF3C7);
  width: 100%;
}

.trustpilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #00B67A;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  margin: 16px 0 40px;
}

.trustpilot-badge .stars { font-size: 18px; letter-spacing: 2px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 960px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .testimonials-grid { grid-template-columns: 1fr; } }

.tcard {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.tcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.tcard-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.tcard-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 18px;
  flex: 1;
}

.tcard-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.tcard-location {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.tcard-course {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

.reviews-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 32px;
  font-style: italic;
}

/* ============================================================
   MODAL / POPUP
============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,31,75,0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes scaleIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}

.modal-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.modal-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.modal-close {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover { background: var(--off-white); color: var(--text-dark); }

.modal-body { padding: 32px 28px; }

.modal-avatar-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--navy-mid), var(--shadow-md);
}

.modal-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: var(--navy);
  margin-bottom: 4px;
}

.modal-title {
  text-align: center;
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 6px;
}

.modal-uni {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

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

.modal-fact {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.modal-fact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.modal-fact-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.modal-bio-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

@media (max-width: 500px) { .modal-bio-section { grid-template-columns: 1fr; } }

.bio-lang-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.bio-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

.modal-strengths {
  margin-bottom: 28px;
}

.modal-strengths-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

.strength-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}

.stag i { color: var(--navy-mid); font-size: 11px; }

.modal-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}

.modal-cta-msg {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.5;
}

.modal-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}

.modal-cta-btn:hover { background: var(--gold-light); }

.modal-cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}

.modal-avatar-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 16px;
  font-style: italic;
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #C94E08 100%);
  padding: 80px 0;
  text-align: center;
  width: 100%;
}

.cta-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
}

.cta-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--orange);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.cta-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.cta-guarantees {
  margin-top: 20px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.cta-guarantees span { display: flex; align-items: center; gap: 6px; }

/* ============================================================
   RESPONSIVE HELPERS
============================================================ */
@media (max-width: 768px) {
  .hero-stats { gap: 32px; }
  .hero-stat-num { font-size: 2.2rem; }
  .trust-inner { gap: 24px; }
  .stat-band-num { font-size: 2.2rem; }
  .stat-band-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-band-item:last-child { border-bottom: none; }
}