/* ============================================================
   COACH AHMED SAQR — MAIN STYLESHEET
   ============================================================ */

/* ========================
   ROOT VARIABLES
======================== */
:root {
  --gold:          #3B82F6;
  --gold-dark:     #1E40AF;
  --gold-light:    #93C5FD;
  --gold-grad:     linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #3B82F6 100%);
  --gold-glow:     0 0 40px rgba(59,130,246,0.35);

  --bg:            #06091A;
  --bg-2:          #080D1F;
  --bg-3:          #0B1228;
  --bg-card:       #0F1A35;
  --bg-card-h:     #172040;

  --white:         #FFFFFF;
  --light:         #CBD5E1;
  --muted:         #6B7FA0;
  --border:        rgba(59,130,246,0.15);
  --border-h:      rgba(59,130,246,0.40);

  --shadow:        0 20px 60px rgba(0,0,0,0.6);
  --shadow-gold:   0 8px 40px rgba(59,130,246,0.22);

  --radius:        16px;
  --radius-sm:     10px;
  --radius-xs:     6px;

  --ease:          all 0.3s ease;
  --nav-h:         80px;
  --font:          'Cairo', sans-serif;
}

/* ========================
   RESET
======================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  direction: rtl;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--ease);
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

/* ========================
   SCROLLBAR
======================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ========================
   UTILS
======================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.gold { color: var(--gold); }

.gradient-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
  border: none;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-gold {
  background: var(--gold-grad);
  color: #000;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 45px rgba(59,130,246,0.45);
}

.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #000;
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}

/* ========================
   SECTION HEADER
======================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-badge {
  display: inline-block;
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.30);
  color: var(--gold);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.25;
}

.section-desc {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ========================
   NAVBAR
======================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--ease);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-grad);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1rem;
  flex-shrink: 0;
}

.logo-icon.small { width: 32px; height: 32px; font-size: 0.85rem; }

.logo-text {
  font-size: 1.18rem;
  font-weight: 800;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 7px 13px;
  border-radius: var(--radius-xs);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--light);
  transition: var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-outline-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--light);
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-outline-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-primary-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--gold-grad);
  color: #000;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-primary-nav:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================
   LANG TOGGLE
======================== */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(59,130,246,0.10);
  border: 1.5px solid rgba(59,130,246,0.30);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.lang-toggle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

.lang-toggle i { font-size: 0.85rem; }

/* Nav mobile right group */
.nav-mobile-right {
  display: none;
  align-items: center;
  gap: 8px;
}

/* Mobile login icon button */
.btn-mobile-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--light);
  font-size: 0.9rem;
  transition: var(--ease);
  text-decoration: none;
  flex-shrink: 0;
}
.btn-mobile-login:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ========================
   HERO SECTION
======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  overflow: hidden;
}

/* Cover Image */
.hero-cover {
  position: absolute;
  inset: 0;
  background: url('../PNGS/Main Cover.png') center 18% / cover no-repeat;
  opacity: 0.28;
  z-index: 0;
  transform: scale(1.04);
  transition: opacity 0.6s ease;
}

.hero-cover-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(6,9,26,0.50)  0%,
      rgba(6,9,26,0.60) 35%,
      rgba(6,9,26,0.88) 70%,
      rgba(6,9,26,1.00) 100%),
    linear-gradient(to right,
      rgba(6,9,26,0.65) 0%,
      transparent       40%,
      transparent       60%,
      rgba(6,9,26,0.65) 100%);
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: rgba(59,130,246,0.10);
  top: -250px;
  right: -150px;
  animation: orbFloat1 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 450px;
  height: 450px;
  background: rgba(30,64,175,0.08);
  bottom: -120px;
  left: -120px;
  animation: orbFloat2 10s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 56px) 24px 80px;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.30);
  color: var(--gold);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeDown 0.7s ease 0.1s forwards;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: var(--muted);
  margin-bottom: 38px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.7s forwards;
}

/* Stats Box */
.hero-stats {
  display: inline-flex;
  align-items: center;
  background: rgba(59,130,246,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 36px;
  backdrop-filter: blur(16px);
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.9s forwards;
}

.hero-stat {
  text-align: center;
  padding: 0 36px;
}

.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 0.7s ease 1.4s forwards;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(201,168,76,0.35);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding: 5px 0;
}

.scroll-mouse span {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.6s ease infinite;
}

/* ========================
   FEATURES STRIP
======================== */
.features-strip {
  background: rgba(59,130,246,0.05);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}

.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--light);
}

.strip-item i {
  color: var(--gold);
  font-size: 1.05rem;
}

.strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-h);
  flex-shrink: 0;
}

/* ========================
   TRANSFORMATIONS
======================== */
.trans-section { background: var(--bg); }

/* ---- Stats Bar ---- */
.trans-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(30,64,175,0.08);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 16px;
  padding: 22px 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.ts-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 36px;
  text-align: center;
}

.ts-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}

.ts-plus, .ts-unit {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  vertical-align: super;
  margin-right: 1px;
}

.ts-minus { color: #F87171; }
.ts-gold { color: var(--gold); }

.ts-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

.ts-sep {
  width: 1px;
  height: 48px;
  background: rgba(59,130,246,0.20);
  flex-shrink: 0;
}

/* ---- Cards Grid ---- */
.transforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
  align-items: start;
}

/* ---- Card Base ---- */
.tc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.45);
  box-shadow: 0 16px 48px rgba(59,130,246,0.18), 0 4px 16px rgba(0,0,0,0.4);
}

/* ---- Featured Card ---- */
.tc-featured {
  border-color: rgba(59,130,246,0.40);
  box-shadow: 0 8px 32px rgba(59,130,246,0.15);
}

.tc-featured-crown {
  background: var(--gold-grad);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

/* ---- Visual (before/after area) ---- */
.tc-visual {
  position: relative;
  display: flex;
  height: 220px;
  overflow: hidden;
}

.tc-side {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tc-before {
  background: linear-gradient(160deg, #0d0f24 0%, #11142e 100%);
}

.tc-after {
  background: linear-gradient(160deg, #0a1a3a 0%, #0d2255 100%);
}

.tc-after::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(59,130,246,0.20) 0%, transparent 70%);
}

/* ---- Full-size transformation photos ---- */
.tc-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ---- Avatars (fallback icons when no image) ---- */
.tc-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  z-index: 2;
  overflow: hidden;
}

.tc-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  display: block;
}

.tc-avatar-before {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.25);
}

.tc-avatar-after {
  background: rgba(59,130,246,0.15);
  border: 2px solid rgba(59,130,246,0.50);
  color: rgba(59,130,246,0.90);
}

.tc-glow-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(59,130,246,0.35);
  animation: glowPulse 2.4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

/* ---- Side labels (قبل / بعد) ---- */
.tc-side-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.60);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.75);
  font-size: 0.70rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.tc-side-label-after {
  right: auto;
  left: 12px;
  color: rgba(147,197,253,0.90);
  background: rgba(30,64,175,0.55);
}

/* ---- VS Divider ---- */
.tc-divider-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tc-vs-badge {
  width: 38px;
  height: 38px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.70rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 18px rgba(59,130,246,0.55);
  border: 2px solid rgba(6,9,26,0.60);
}

.tc-divider-line {
  width: 2px;
  height: 220px;
  background: linear-gradient(to bottom, transparent, rgba(59,130,246,0.40) 30%, rgba(59,130,246,0.40) 70%, transparent);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

/* ---- Program Tag ---- */
.tc-prog-tag {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 800;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 5;
}

.tc-prog-burn {
  background: rgba(180,30,30,0.85);
  border: 1px solid rgba(239,68,68,0.70);
  color: #fff;
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.tc-prog-muscle {
  background: rgba(20,70,180,0.88);
  border: 1px solid rgba(59,130,246,0.70);
  color: #fff;
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.tc-prog-transform {
  background: rgba(100,30,160,0.88);
  border: 1px solid rgba(168,85,247,0.70);
  color: #fff;
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* ---- Card Body ---- */
.tc-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* ---- Result Row ---- */
.tc-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tc-result-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
}

.tc-result-minus {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.30);
  color: #FCA5A5;
}

.tc-result-plus {
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.35);
  color: #93C5FD;
}

.tc-stars {
  font-size: 0.88rem;
  color: #FCD34D;
  letter-spacing: 1px;
}

/* ---- Name & Quote ---- */
.tc-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.tc-quote {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.65;
  margin: 0;
  border-right: 3px solid rgba(59,130,246,0.35);
  padding-right: 10px;
}

/* ---- Meta Row ---- */
.tc-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.tc-time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.tc-time-badge i { color: var(--gold); }

.tc-pkg-badge {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.22);
  padding: 3px 10px;
  border-radius: 50px;
}

.section-cta {
  text-align: center;
}

/* ========================
   PACKAGES
======================== */
.packages-section {
  background: var(--bg-2);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--ease);
}

.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--border-h);
}

.pkg-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #0A1430 0%, #0F1A35 60%);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
  z-index: 1;
}

.pkg-featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.pkg-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: #fff;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

/* Duration tabs */
.pkg-duration-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 10px;
}

.dur-tab {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dur-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.dur-tab.dur-active {
  background: var(--gold-grad);
  border-color: transparent;
  color: #fff;
}

.dur-save {
  background: rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 1px 7px;
  font-size: 0.68rem;
}

.dur-tab:not(.dur-active) .dur-save {
  background: rgba(212,175,55,0.15);
  color: var(--gold);
}

.pkg-total {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
  display: none;
}

.pkg-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pkg-icon {
  width: 60px;
  height: 60px;
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
  color: var(--gold);
}

.pkg-icon-gold {
  background: var(--gold-grad);
  border-color: transparent;
  color: #fff;
}

.pkg-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.pkg-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.price-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--muted);
  line-height: 1;
}

.price-num.gold { color: var(--gold); }

.price-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-cur {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.price-per {
  font-size: 0.78rem;
  color: var(--muted);
}

.pkg-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.feat-yes {
  color: var(--light);
}

.feat-yes i {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.75rem;
}

.feat-no {
  color: rgba(136,136,136,0.45);
}

.feat-no i {
  color: rgba(136,136,136,0.4);
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* ========================
   ABOUT
======================== */
.about-section {
  background: var(--bg-3);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.about-img-ph {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--bg-card) 0%, #0A1428 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(59,130,246,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9rem;
  color: rgba(59,130,246,0.20);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.50), 0 0 0 1px rgba(59,130,246,0.15);
}

.coach-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius);
}

.about-badge-1,
.about-badge-2 {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-h);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.about-badge-1 {
  bottom: 30px;
  left: -20px;
}

.about-badge-2 {
  top: 30px;
  right: -20px;
}

.about-badge-1 i,
.about-badge-2 i {
  color: var(--gold);
}

.about-exp-box {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gold-grad);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.exp-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #000;
  line-height: 1;
}

.exp-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(0,0,0,0.75);
  line-height: 1.3;
}

.about-content .section-badge { margin-bottom: 12px; }
.about-content .section-title { text-align: right; margin-bottom: 20px; }

.about-p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 18px;
  line-height: 1.85;
}

.certs-list {
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.cert-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--light);
}

.cert-icon {
  width: 30px;
  height: 30px;
  background: rgba(59,130,246,0.10);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ========================
   TESTIMONIALS
======================== */
.testimonials-section {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: var(--ease);
}

.testi-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testi-stars i {
  color: var(--gold);
  font-size: 0.85rem;
}

.quote-icon {
  font-size: 1.6rem;
  color: rgba(201,168,76,0.15);
  margin-bottom: 10px;
}

.testi-text {
  color: var(--light);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-av {
  width: 44px;
  height: 44px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #000;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-author h4 {
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}

/* ========================
   CTA BANNER
======================== */
.cta-banner {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: var(--bg-2);
}

.cta-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(59,130,246,0.10);
  top: -200px;
  right: -100px;
}

.cta-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(30,64,175,0.08);
  bottom: -150px;
  left: 10%;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.cta-text p {
  color: var(--muted);
  font-size: 1rem;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ========================
   FAQ
======================== */
.faq-section {
  background: var(--bg-3);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: var(--border-h);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  text-align: right;
  transition: color 0.3s ease;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: var(--ease);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a p {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ========================
   CONTACT
======================== */
.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.c-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.whatsapp-icon  { background: rgba(37,211,102,0.1);  color: #25D366;  border-color: rgba(37,211,102,0.25); }
.insta-icon     { background: rgba(225,48,108,0.1);   color: #E1306C;  border-color: rgba(225,48,108,0.25); }
.mail-icon      { background: rgba(59,130,246,0.10);  color: var(--gold); border-color: var(--border); }
.snap-icon      { background: rgba(255,252,0,0.08);   color: #FFFC00;  border-color: rgba(255,252,0,0.2); }

.contact-item h4 {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-item a {
  color: var(--light);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-item a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: var(--ease);
  resize: none;
  direction: rtl;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(59,130,246,0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136,136,136,0.6);
}

/* ========================
   FOOTER
======================== */
.footer {
  background: #040810;
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo span {
  font-size: 1.18rem;
  font-weight: 800;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.soc-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  transition: var(--ease);
}

.soc-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--ease);
}

.footer-links a i {
  font-size: 0.65rem;
  opacity: 0.5;
}

.footer-links a:hover {
  color: var(--gold);
  padding-right: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p,
.footer-made {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ========================
   FLOATING BUTTONS
======================== */
.wa-float {
  position: fixed;
  bottom: 88px;
  left: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--ease);
  z-index: 999;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,0.65);
}

.wa-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: pulse 2s ease infinite;
}

.back-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: var(--ease);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

.back-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ========================
   SCROLL ANIMATIONS
======================== */
[data-ani] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-ani="fade-up"]    { transform: translateY(36px); }
[data-ani="fade-down"]  { transform: translateY(-36px); }
[data-ani="fade-left"]  { transform: translateX(36px); }
[data-ani="fade-right"] { transform: translateX(-36px); }

[data-ani].in-view {
  opacity: 1;
  transform: none;
}

/* ========================
   KEYFRAMES
======================== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-30px, 20px) scale(1.05); }
}

@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px, -30px) scale(1.08); }
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ========================
   HOW IT WORKS
======================== */
.how-works-section {
  background: var(--bg-2);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.how-grid::before {
  content: '';
  position: absolute;
  top: 54px;
  right: 25%;
  left: 25%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
  pointer-events: none;
}

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--ease);
}

.how-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-grad);
  opacity: 0;
  transition: var(--ease);
}

.how-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.how-card:hover::before { opacity: 1; }

.how-num {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(59,130,246,0.07);
  position: absolute;
  top: 10px;
  right: 16px;
  line-height: 1;
  letter-spacing: -3px;
  user-select: none;
}

.how-icon {
  width: 72px;
  height: 72px;
  background: var(--gold-grad);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  margin: 0 auto 22px;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
}

.how-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.how-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ========================
   PRICE DISPLAY (USD)
======================== */
.price-symbol {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--muted);
  align-self: flex-start;
  margin-top: 6px;
}

.price-symbol.blue { color: var(--gold); }

/* ========================
   RESPONSIVE — TABLET (1024px)
======================== */
/* ========================
   RESPONSIVE — TABLET (1024px)
======================== */
@media (max-width: 1024px) {
  .transforms-grid { grid-template-columns: 1fr 1fr; }
  .tc-featured { grid-column: span 2; max-width: 520px; margin: 0 auto; width: 100%; }

  .packages-grid { grid-template-columns: 1fr 1fr; }
  .pkg-featured { transform: none; grid-column: span 2; max-width: 420px; margin: 0 auto; }
  .pkg-featured:hover { transform: translateY(-5px); }

  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-visual { max-width: 380px; margin: 0 auto; }
  .about-content .section-title,
  .about-content .section-badge { text-align: center; }
  .about-actions { justify-content: center; }
  .certs-list { max-width: 420px; margin: 24px auto 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
}

/* ========================
   RESPONSIVE — MOBILE (768px)
   Full mobile-first overhaul
======================== */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  html, body { overflow-x: hidden; max-width: 100%; }

  /* ── UTILS ─────────────────────────────────────── */
  .section        { padding: 48px 0; }
  .container      { padding: 0 16px; }
  .section-header { margin-bottom: 26px; }
  .section-title  { font-size: clamp(1.5rem, 6.5vw, 2rem); line-height: 1.25; margin-bottom: 10px; }
  .section-desc   { font-size: 0.87rem; line-height: 1.65; }
  .section-badge  { font-size: 0.74rem; padding: 4px 13px; margin-bottom: 10px; }

  /* ── NAVBAR ─────────────────────────────────────── */
  .nav-container  { padding: 0 14px; gap: 10px; }
  .nav-actions    { display: none; }
  .hamburger      { display: flex; }
  .nav-mobile-right { display: flex; }
  .logo-text      { font-size: 1rem; }
  .logo-icon      { width: 32px; height: 32px; font-size: 0.82rem; }
  .lang-toggle    { padding: 5px 9px; font-size: 0.74rem; gap: 4px; }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    right: 0; left: 0;
    background: rgba(6,9,26,0.98);
    backdrop-filter: blur(28px);
    flex-direction: column;
    padding: 8px 12px 14px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.75);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-link       { padding: 11px 14px; font-size: 0.88rem; border-radius: 8px; width: 100%; }

  /* ── HERO ─────────────────────────────────────── */
  .hero           { min-height: 100svh; }
  .hero-content   { padding: calc(var(--nav-h) + 26px) 16px 48px; max-width: 100%; }
  .hero-badge     { font-size: 0.73rem; padding: 5px 13px; margin-bottom: 14px; gap: 5px; }
  .hero-title     { font-size: clamp(1.8rem, 8vw, 2.5rem); line-height: 1.18; margin-bottom: 12px; }
  .hero-subtitle  { font-size: 0.87rem; line-height: 1.62; margin-bottom: 22px; }
  .hero-buttons   {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 330px;
    margin: 0 auto 28px;
    flex-direction: unset; align-items: unset;
  }
  .hero-buttons .btn { padding: 12px 8px; font-size: 0.83rem; justify-content: center; width: 100%; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 13px 8px;
    width: 100%;
    gap: 0;
    border-radius: 12px;
    flex-direction: unset;
  }
  .hero-stat          { padding: 5px 0; text-align: center; border-left: 1px solid var(--border); }
  .hero-stat:last-child { border-left: none; }
  .hero-stat-divider  { display: none; }
  .stat-number        { font-size: 1.7rem; }
  .stat-plus          { font-size: 1rem; }
  .stat-label         { font-size: 0.65rem; margin-top: 3px; }
  .hero-scroll        { display: none; }
  .hero-orb-1         { width: 380px; height: 380px; }
  .hero-orb-2         { width: 260px; height: 260px; }

  /* ── FEATURES STRIP ─────────────────────────────── */
  .features-strip { padding: 14px 0; }
  .strip-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 14px;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .strip-inner::-webkit-scrollbar { display: none; }
  .strip-item  { flex-shrink: 0; padding: 5px 15px; font-size: 0.8rem; scroll-snap-align: start; }
  .strip-item i { font-size: 0.9rem; }
  .strip-dot   { display: none; }

  /* ── HOW IT WORKS ─────────────────────────────── */
  .how-grid         { grid-template-columns: 1fr; gap: 10px; }
  .how-grid::before { display: none; }
  .how-card         { padding: 22px 18px 18px; text-align: center; }
  .how-num          { font-size: 3.5rem; top: 6px; right: 12px; }
  .how-icon         { width: 56px; height: 56px; font-size: 1.3rem; border-radius: 14px; margin-bottom: 14px; }
  .how-card h3      { font-size: 0.96rem; margin-bottom: 7px; }
  .how-card p       { font-size: 0.82rem; line-height: 1.7; }

  /* ── TRANSFORMATIONS ─────────────────────────── */
  .transforms-grid  { grid-template-columns: 1fr; gap: 12px; }
  .tc-featured      { grid-column: auto; max-width: 100%; }
  .tc-visual        { height: 172px; }
  .tc-avatar        { width: 66px; height: 66px; font-size: 1.9rem; }
  .tc-body          { padding: 15px 17px 17px; gap: 9px; }
  .tc-name          { font-size: 0.95rem; }
  .tc-quote         { font-size: 0.79rem; line-height: 1.6; }
  .tc-result-pill   { font-size: 0.78rem; padding: 5px 11px; }
  .tc-time-badge    { font-size: 0.74rem; }
  .tc-pkg-badge     { font-size: 0.7rem; }
  .trans-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    gap: 0;
    margin-bottom: 22px;
    border-radius: 12px;
    overflow: hidden;
  }
  .ts-item {
    padding: 13px 10px;
    border-bottom: 1px solid rgba(59,130,246,0.12);
  }
  .ts-item:nth-child(1),
  .ts-item:nth-child(3) { border-right: 1px solid rgba(59,130,246,0.12); }
  .ts-sep  { display: none; }
  .ts-num  { font-size: 1.5rem; }
  .ts-label { font-size: 0.72rem; }

  /* ── PACKAGES — horizontal snap scroll ──────── */
  .packages-section { overflow: hidden; }
  /* Fade hint on left edge → tells user more cards exist */
  .packages-section .container { position: relative; }
  .packages-section .container::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 48px;
    background: linear-gradient(to right, var(--bg-2), transparent);
    pointer-events: none;
    z-index: 2;
  }
  .packages-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 13px;
    /* negative margin to break out of .container padding and go edge-to-edge */
    margin: 0 -16px;
    padding: 8px 16px 22px;
    align-items: stretch;
  }
  .packages-grid::-webkit-scrollbar { display: none; }

  /* Each card is ~83vw wide, capped at 300px — user sees 1 card + peek of next */
  .pkg-card {
    flex: 0 0 83vw;
    max-width: 300px;
    min-width: 240px;
    scroll-snap-align: start;
    padding: 24px 18px;
    border-radius: 14px;
    /* remove hover transforms on mobile touch */
    transform: none !important;
  }
  .pkg-card:hover { transform: none !important; }

  /* Featured card slightly wider, shown first via order */
  .pkg-featured {
    flex: 0 0 86vw;
    max-width: 310px;
    order: -1;
    transform: none !important;
    box-shadow: 0 6px 30px rgba(59,130,246,0.22);
  }
  .pkg-featured:hover { transform: none !important; }
  .pkg-featured-badge { font-size: 0.72rem; padding: 4px 16px; top: -12px; }

  .pkg-header         { margin-bottom: 16px; padding-bottom: 16px; }
  .pkg-icon           { width: 48px; height: 48px; font-size: 1.15rem; border-radius: 11px; margin-bottom: 10px; }
  .pkg-header h3      { font-size: 1rem; margin-bottom: 10px; }
  .price-num          { font-size: 2.05rem; }
  .price-symbol       { font-size: 1.25rem; margin-top: 5px; }
  .price-cur, .price-per { font-size: 0.76rem; }
  .pkg-features       { margin-bottom: 18px; gap: 8px; }
  .pkg-features li    { font-size: 0.83rem; gap: 8px; }
  .feat-yes i, .feat-no i { font-size: 0.68rem; }

  /* ── ABOUT ─────────────────────────────────────── */
  .about-grid               { grid-template-columns: 1fr; gap: 26px; }
  .about-visual             { max-width: 230px; margin: 0 auto; }
  .about-img-ph             { font-size: 6rem; }
  .about-badge-1, .about-badge-2, .about-exp-box { display: none; }
  .about-content .section-title,
  .about-content .section-badge { text-align: center; }
  .about-content .section-title { margin-bottom: 12px; }
  .about-p                  { font-size: 0.87rem; margin-bottom: 12px; line-height: 1.75; }
  .certs-list               { margin: 16px 0 18px; gap: 9px; }
  .cert-row                 { font-size: 0.83rem; }
  .cert-icon                { width: 26px; height: 26px; font-size: 0.68rem; }
  .about-actions            { justify-content: center; flex-wrap: wrap; gap: 10px; }

  /* ── TESTIMONIALS ────────────────────────────── */
  .testimonials-grid  { grid-template-columns: 1fr; gap: 10px; }
  .testi-card         { padding: 20px 16px; }
  .testi-text         { font-size: 0.85rem; line-height: 1.7; margin-bottom: 15px; }
  .testi-stars        { margin-bottom: 10px; }
  .testi-stars i      { font-size: 0.8rem; }
  .quote-icon         { font-size: 1.25rem; margin-bottom: 8px; }
  .testi-author h4    { font-size: 0.87rem; }
  .testi-author span  { font-size: 0.74rem; }
  .author-av          { width: 38px; height: 38px; font-size: 0.95rem; }

  /* ── CTA ─────────────────────────────────────── */
  .cta-banner   { padding: 48px 0; }
  .cta-inner    { flex-direction: column; text-align: center; gap: 18px; }
  .cta-text h2  { font-size: clamp(1.35rem, 5.5vw, 1.85rem); margin-bottom: 8px; }
  .cta-text p   { font-size: 0.87rem; }
  .cta-btns     { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .cta-btns .btn { padding: 12px 20px; font-size: 0.86rem; }

  /* ── FAQ ─────────────────────────────────────── */
  .faq-list  { gap: 7px; }
  .faq-q     { font-size: 0.86rem; padding: 12px 15px; gap: 12px; }
  .faq-a p   { padding: 0 15px 13px; font-size: 0.83rem; line-height: 1.7; }
  .faq-icon  { width: 26px; height: 26px; font-size: 0.68rem; }

  /* ── CONTACT ─────────────────────────────────── */
  .contact-grid       { grid-template-columns: 1fr; gap: 22px; }
  .contact-form-wrap  { padding: 20px 15px; }
  .form-row           { grid-template-columns: 1fr; gap: 12px; }
  .c-icon             { width: 42px; height: 42px; font-size: 1rem; }
  .contact-item h4    { font-size: 0.76rem; }
  .contact-item a     { font-size: 0.84rem; }
  .contact-info       { gap: 14px; }

  /* ── FOOTER ─────────────────────────────────── */
  .footer-top   { padding: 36px 0 22px; }
  .footer-grid  {
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
  }
  /* Brand spans full width on top */
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p    { font-size: 0.83rem; line-height: 1.65; margin-bottom: 14px; }
  .footer-logo       { margin-bottom: 9px; }
  .footer-logo span  { font-size: 1rem; }
  .social-links      { gap: 6px; }
  .soc-link          { width: 34px; height: 34px; font-size: 0.8rem; border-radius: 8px; }
  .footer-links h4   { font-size: 0.82rem; font-weight: 800; margin-bottom: 12px; }
  .footer-links ul   { gap: 8px; }
  .footer-links a    { font-size: 0.78rem; }
  .footer-bottom     { flex-direction: column; gap: 5px; text-align: center; padding: 15px 0; }
  .footer-bottom p, .footer-made { font-size: 0.74rem; }

  /* ── FLOATING BTNS ───────────────────────────── */
  .wa-float   { bottom: 66px; left: 12px; width: 46px; height: 46px; font-size: 1.1rem; box-shadow: 0 4px 18px rgba(37,211,102,0.4); }
  .back-top   { bottom: 14px; left: 12px; width: 38px; height: 38px; border-radius: 9px; }
}

/* ========================
   RESPONSIVE — SMALL PHONES (480px)
======================== */
@media (max-width: 480px) {
  :root { --nav-h: 58px; }

  .container      { padding: 0 13px; }
  .section        { padding: 38px 0; }
  .section-header { margin-bottom: 22px; }
  .section-title  { font-size: clamp(1.3rem, 7.5vw, 1.7rem); }
  .section-desc   { font-size: 0.84rem; }

  /* Hero */
  .hero-content   { padding: calc(var(--nav-h) + 20px) 13px 42px; }
  .hero-title     { font-size: clamp(1.65rem, 9vw, 2.1rem); margin-bottom: 10px; }
  .hero-subtitle  { font-size: 0.84rem; margin-bottom: 20px; }
  .hero-buttons   { max-width: 300px; gap: 8px; }
  .hero-buttons .btn { padding: 12px 10px; font-size: 0.81rem; }
  .stat-number    { font-size: 1.5rem; }
  .stat-label     { font-size: 0.61rem; }
  .hero-stats     { padding: 12px 6px; }

  /* Packages — narrower cards on small phones */
  .packages-grid  { margin: 0 -13px; padding: 6px 13px 20px; gap: 11px; }
  .pkg-card       { flex: 0 0 86vw; max-width: 280px; padding: 20px 15px; }
  .pkg-featured   { flex: 0 0 89vw; max-width: 290px; }
  .price-num      { font-size: 1.85rem; }
  .pkg-features li { font-size: 0.8rem; gap: 7px; }
  .pkg-header h3  { font-size: 0.95rem; }
  .pkg-icon       { width: 44px; height: 44px; font-size: 1.05rem; }

  /* How it works */
  .how-card  { padding: 18px 15px 16px; }
  .how-icon  { width: 50px; height: 50px; font-size: 1.15rem; margin-bottom: 12px; }
  .how-num   { font-size: 3rem; }

  /* Transformations */
  .tc-visual { height: 155px; }
  .tc-body   { padding: 13px 15px 15px; }

  /* About */
  .about-visual { max-width: 200px; }

  /* CTA */
  .cta-btns .btn { padding: 12px 16px; font-size: 0.83rem; }

  /* Footer — single column on small phones */
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-top  { padding: 28px 0 18px; }
  .footer-brand { grid-column: auto; }

  /* Floating */
  .wa-float { width: 44px; height: 44px; font-size: 1.05rem; }
}

/* ========================
   TINY PHONES (360px)
======================== */
@media (max-width: 360px) {
  :root { --nav-h: 56px; }
  html  { font-size: 14px; }  /* scale everything down via root font size */
  .container      { padding: 0 11px; }
  .section        { padding: 34px 0; }
  .hero-title     { font-size: 1.55rem; }
  .packages-grid  { margin: 0 -11px; padding: 6px 11px 18px; }
  .pkg-card       { flex: 0 0 90vw; padding: 17px 13px; }
  .pkg-featured   { flex: 0 0 92vw; }
  .price-num      { font-size: 1.65rem; }
  .stat-number    { font-size: 1.35rem; }
  .stat-label     { font-size: 0.58rem; }
  .section-title  { font-size: clamp(1.2rem, 8vw, 1.5rem); }
  .how-card       { padding: 15px 12px 14px; }
  .testi-card     { padding: 17px 14px; }
  .hero-badge     { font-size: 0.68rem; padding: 4px 10px; }
  .hero-subtitle  { font-size: 0.81rem; }
  .hero-buttons .btn { font-size: 0.78rem; padding: 10px 8px; }
}
