/* =============================================
   YANIV SEGEV — מה בכיוון?
   MOBILE-FIRST PREMIUM REBUILD
   Targets: 320 / 375 / 390 / 414 / 640 / 768 / 1024 / 1280 / 1440+
   ============================================= */

/* ==========================================
   1. DESIGN TOKENS
   ========================================== */
:root {
  /* Colors */
  --white:        #ffffff;
  --off-white:    #f8f7f4;
  --blue:         #1a56d6;
  --blue-light:   #3b82f6;
  --blue-pale:    #eff6ff;
  --teal:         #0ea5e9;
  --gold:         #f59e0b;
  --dark:         #0f172a;
  --dark-soft:    #1e293b;
  --grey:         #64748b;
  --grey-light:   #e2e8f0;
  --grey-bg:      #f1f5f9;
  --green:        #25d366;

  /* Typography */
  --font-display: 'Frank Ruhl Libre', 'David Libre', serif;
  --font-body:    'Heebo', sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Section padding (mobile-first) */
  --section-pad: 4rem;

  /* Border radii */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-2xl:  48px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
  --shadow-xl:   0 24px 64px rgba(0,0,0,.15);
  --shadow-blue: 0 8px 32px rgba(26,86,214,.28);

  /* Nav */
  --nav-h: 60px;

  /* Easing */
  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-out:    cubic-bezier(0,0,.2,1);

  /* Touch target */
  --tap-min: 48px;
}

/* ==========================================
   2. GLOBAL RESET & BASE (mobile-first)
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Prevent text-size adjust on orientation change */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Prevent layout shift from scrollbar appearing */
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  direction: rtl;
  /* Only hide x overflow at body level */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Images never overflow */
img {
  display: block;
  max-width: 100%;
  height: auto;
  /* Prevent images from being selected */
  user-select: none;
  -webkit-user-drag: none;
}

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  /* Minimum touch target */
  min-height: var(--tap-min);
  /* Remove iOS tap highlight */
  -webkit-tap-highlight-color: transparent;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem; /* Prevents iOS auto-zoom (must be ≥ 16px) */
}

/* ==========================================
   3. LAYOUT
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

section {
  padding-block: var(--section-pad);
  overflow: hidden; /* prevent section-level x overflow */
}

/* ==========================================
   4. TYPOGRAPHY — clamp() all sizes
   ========================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: .35em 1em;
  border-radius: var(--r-full);
  margin-bottom: .85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: .85rem;
  /* Prevent orphaned words */
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: break-word;
}

.section-sub {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--grey);
  line-height: 1.7;
  max-width: 520px;
  overflow-wrap: break-word;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-header .section-sub {
  margin-inline: auto;
}

/* ==========================================
   5. BUTTONS — all meet 48px minimum
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  min-height: var(--tap-min);
  border-radius: var(--r-full);
  font-size: clamp(.875rem, 2vw, 1rem);
  font-weight: 700;
  cursor: pointer;
  transition: all .25s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  /* Prevent text overflow in buttons */
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #1346b8;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,86,214,.38);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--grey);
  border-color: var(--grey-light);
  min-height: var(--tap-min);
}
.btn-ghost:hover { background: var(--grey-light); }

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-whatsapp:hover { background: #1fb353; transform: translateY(-2px); }

.btn-youtube {
  background: #ff0000;
  color: var(--white);
  border-color: #ff0000;
}
.btn-youtube:hover { background: #cc0000; transform: translateY(-2px); }

.btn-lg { padding: 1rem 2rem; font-size: clamp(.95rem, 2.5vw, 1.1rem); }
.btn-full { width: 100%; }

/* ==========================================
   6. SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  will-change: opacity, transform;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* Stagger delays */
[data-delay="0"]  { transition-delay: 0s; }
[data-delay="1"]  { transition-delay: .08s; }
[data-delay="2"]  { transition-delay: .16s; }
[data-delay="3"]  { transition-delay: .24s; }
[data-delay="4"]  { transition-delay: .32s; }
[data-delay="5"]  { transition-delay: .4s; }
[data-delay="6"]  { transition-delay: .48s; }
[data-delay="7"]  { transition-delay: .56s; }
[data-delay="8"]  { transition-delay: .64s; }
[data-delay="9"]  { transition-delay: .72s; }
[data-delay="10"] { transition-delay: .8s; }
[data-delay="11"] { transition-delay: .88s; }

.delay-1 { transition-delay: .12s !important; }
.delay-2 { transition-delay: .24s !important; }
.delay-3 { transition-delay: .36s !important; }
.delay-4 { transition-delay: .48s !important; }
.delay-5 { transition-delay: .60s !important; }

/* ==========================================
   7. NAVIGATION — mobile-first
   ========================================== */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s var(--ease);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.10); }

.nav-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  padding-block: .5rem;
  min-height: var(--tap-min);
  justify-content: center;
}
.logo-he {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 4vw, 1.4rem);
  font-weight: 900;
  color: var(--blue);
}
.logo-sub {
  font-size: .65rem;
  color: var(--grey);
  font-weight: 500;
  margin-top: 2px;
}

/* Hamburger toggle — always visible */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: var(--tap-min);
  height: var(--tap-min);
  padding: 12px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .32s var(--ease), opacity .2s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-links {
  position: fixed;
  inset-block-start: var(--nav-h);
  inset-inline: 0;
  /* Full height slide-in panel */
  max-height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.25rem 2rem;
  gap: .25rem;
  /* Hidden state */
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform .32s var(--ease),
    opacity .32s var(--ease),
    visibility .32s;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  border-top: 1px solid var(--grey-light);
}
.nav-links.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-links a {
  display: flex;
  align-items: center;
  min-height: var(--tap-min);
  padding-inline: 1rem;
  padding-block: .75rem;
  border-radius: var(--r-md);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-soft);
  transition: background .18s, color .18s;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--blue-pale);
  color: var(--blue);
}
.nav-links .nav-cta {
  background: var(--blue);
  color: var(--white);
  margin-top: .75rem;
  justify-content: center;
}
.nav-links .nav-cta:hover { background: #1346b8; }

/* ==========================================
   8. HERO — mobile-first, centered
   ========================================== */
.hero {
  position: relative;
  min-height: 100dvh; /* dynamic viewport height handles browser chrome */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,18,40,.88) 0%,
    rgba(26,86,214,.60) 55%,
    rgba(14,165,233,.35) 100%
  );
}
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .25;
}
.shape-1 {
  width: 300px; height: 300px;
  background: var(--blue-light);
  top: -80px; inset-inline-end: -80px;
  animation: float1 8s ease-in-out infinite;
}
.shape-2 {
  width: 250px; height: 250px;
  background: var(--teal);
  bottom: -60px; inset-inline-start: 10%;
  animation: float2 10s ease-in-out infinite;
}
.shape-3 {
  width: 180px; height: 180px;
  background: var(--gold);
  top: 45%; inset-inline-start: -60px;
  animation: float1 12s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.06); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(16px) scale(.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 3rem;
  /* Center on mobile */
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .5rem 1.1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  /* Mobile: 2.5rem → Desktop: 5rem */
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 1rem;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.title-accent { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.35rem);
  color: rgba(255,255,255,.92);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: .6rem;
  max-width: 520px;
  margin-inline: auto;
}
.hero-sub2 {
  font-size: clamp(.82rem, 2vw, .9rem);
  color: rgba(255,255,255,.6);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2.5rem;
  /* Center on mobile */
  align-items: center;
}
/* Both hero buttons full-width on mobile */
.hero-ctas .btn { width: 100%; max-width: 320px; }

.hero-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  color: rgba(255,255,255,.5);
  font-size: .78rem;
}
.scroll-line {
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.2); }
}

/* ==========================================
   9. ABOUT — mobile-first: single column
   ========================================== */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* Image stack: full-width on mobile */
.img-stack {
  position: relative;
  /* Constrain height on mobile */
  max-height: 420px;
}
.img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}
/* Secondary image hidden on mobile */
.img-secondary { display: none; }
.img-badge { display: none; }

.about-text { padding-bottom: 0; }
.about-lead {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: .85rem;
}
.about-body {
  font-size: clamp(.9rem, 2vw, 1rem);
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem .5rem;
  background: var(--blue-pale);
  border-radius: var(--r-lg);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.stat-suf { font-size: 1.2rem; font-weight: 900; color: var(--blue); }
.stat-label {
  font-size: .7rem;
  color: var(--grey);
  font-weight: 600;
  margin-top: .25rem;
  line-height: 1.3;
  text-align: center;
}

/* ==========================================
   10. STORY / TIMELINE — mobile-first
   ========================================== */
.story { background: var(--off-white); }

.timeline {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}
/* Vertical line — positioned on the RTL side (right in RTL = start) */
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  /* In RTL, "right" is the inline-start */
  inset-inline-start: 20px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--blue-pale),
    var(--blue),
    var(--teal),
    var(--blue-pale)
  );
}

.timeline-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: start;
}
.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px var(--blue-pale);
  position: relative;
  z-index: 1;
}
.timeline-content {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  transition: transform .3s, box-shadow .3s;
}
.timeline-content:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.timeline-year {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: .35rem;
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.3rem);
  margin-bottom: .5rem;
}
.timeline-content p {
  font-size: clamp(.85rem, 2vw, .95rem);
  color: var(--grey);
  line-height: 1.7;
}

/* ==========================================
   11. INSIGHTS — mobile: 1 col → desktop: 3
   ========================================== */
.insights { background: var(--white); }

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.insight-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
  transition: all .35s var(--ease);
  overflow: hidden;
}
.insight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-pale), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}
.insight-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg);
}
.insight-card:hover::before { opacity: 1; }
.insight-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--grey-light);
  line-height: 1;
  margin-bottom: .35rem;
  font-family: var(--font-display);
}
.insight-icon { font-size: 1.75rem; margin-bottom: .85rem; }
.insight-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.15rem);
  margin-bottom: .6rem;
  color: var(--dark);
}
.insight-card p {
  font-size: clamp(.85rem, 2vw, .92rem);
  color: var(--grey);
  line-height: 1.7;
}

/* ==========================================
   12. 12-STEP MODEL — mobile: 1 col
   ========================================== */
.model {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-soft) 100%);
}
.model .section-title,
.model .section-sub { color: var(--white); }
.model .section-label { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }

.model-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.model-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.25rem;
  transition: all .3s var(--ease);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.model-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(59,130,246,.5);
  transform: translateY(-3px);
}
.model-num {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--blue-light);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: .6rem;
  display: block;
}
.model-card h4 {
  color: var(--white);
  font-size: clamp(.9rem, 2.5vw, 1rem);
  font-weight: 600;
  margin-bottom: .35rem;
}
.model-card p {
  font-size: clamp(.78rem, 2vw, .85rem);
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* ==========================================
   13. COMPASS — mobile-first responsive
   ========================================== */
.compass-section { background: var(--off-white); }

.compass-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Compass size: responsive with clamp */
.compass-container {
  position: relative;
  /* Clamp so it fits on 320px without overflow */
  width: min(300px, 80vw);
  height: min(300px, 80vw);
  flex-shrink: 0;
}

.compass-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring-outer {
  width: 92%; height: 92%;
  border-color: rgba(26,86,214,.15);
  animation: compassSpin 30s linear infinite;
  background: conic-gradient(from 0deg, rgba(26,86,214,.03), rgba(14,165,233,.06), rgba(26,86,214,.03));
}
.ring-middle {
  width: 68%; height: 68%;
  border-color: rgba(26,86,214,.2);
  border-style: dashed;
  animation: compassSpin 20s linear infinite reverse;
}
@keyframes compassSpin {
  to { transform: translate(-50%,-50%) rotate(360deg); }
}

.compass-body {
  position: absolute;
  width: 46%; height: 46%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 30px rgba(26,86,214,.2), 0 0 0 10px rgba(26,86,214,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: compassFloat 6s ease-in-out infinite;
}
@keyframes compassFloat {
  0%,100% { transform: translate(-50%,-50%) rotate(0deg); }
  25%      { transform: translate(-50%,-50%) rotate(4deg); }
  75%      { transform: translate(-50%,-50%) rotate(-4deg); }
}

.compass-needle-wrap {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  pointer-events: none;
}
.compass-needle {
  position: absolute;
  top: 50%; left: 50%;
  width: 3px; height: 36%;
  margin-left: -1.5px;
  margin-top: -34%;
  background: linear-gradient(to bottom, var(--blue), rgba(26,86,214,.2));
  border-radius: 2px;
  transform-origin: bottom center;
  animation: needleWaver 4s ease-in-out infinite;
}
.compass-needle::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 10px solid var(--blue);
}
@keyframes needleWaver {
  0%,100% { transform: rotate(0deg); }
  30%      { transform: rotate(12deg); }
  70%      { transform: rotate(-8deg); }
}

.compass-center { z-index: 1; text-align: center; }
.compass-logo {
  font-family: var(--font-display);
  font-size: clamp(.7rem, 2vw, .9rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
}

/* Direction buttons — absolutely positioned */
.compass-dir {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .6rem .7rem;
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease-spring);
  min-width: 68px;
  min-height: var(--tap-min);
  -webkit-tap-highlight-color: transparent;
}
.compass-dir:hover,
.compass-dir.active {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  background: var(--blue-pale);
}
/* Positions relative to container */
.dir-top    { top: -8px; left: 50%; transform: translateX(-50%); }
.dir-top:hover, .dir-top.active { transform: translateX(-50%) scale(1.06); }
.dir-bottom { bottom: -8px; left: 50%; transform: translateX(-50%); }
.dir-bottom:hover, .dir-bottom.active { transform: translateX(-50%) scale(1.06); }
.dir-right  { right: -8px; top: 50%; transform: translateY(-50%); }
.dir-right:hover, .dir-right.active { transform: translateY(-50%) scale(1.06); }
.dir-left   { left: -8px; top: 50%; transform: translateY(-50%); }
.dir-left:hover, .dir-left.active { transform: translateY(-50%) scale(1.06); }

.dir-icon  { font-size: 1.25rem; line-height: 1; }
.dir-label { font-size: .68rem; font-weight: 700; color: var(--dark); white-space: nowrap; }

/* Insight box */
.compass-insight {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-light);
  transition: all .4s var(--ease);
}
.insight-inner { text-align: center; }
.insight-emoji { font-size: 2.5rem; margin-bottom: .75rem; }
#insightTitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.4rem);
  margin-bottom: .75rem;
  color: var(--blue);
}
#insightText {
  font-size: clamp(.88rem, 2vw, .95rem);
  color: var(--grey);
  line-height: 1.75;
}

/* ==========================================
   14. QUIZ — mobile-first
   ========================================== */
.quiz-section { background: var(--white); }

.quiz-card {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--grey-light);
  overflow: hidden;
}

/* Progress bar */
.quiz-progress {
  background: var(--grey-bg);
  padding: 1.25rem 1.25rem .85rem;
  position: relative;
}
.quiz-progress-bar {
  position: absolute;
  top: 0; inset-inline: 0;
  height: 4px;
  background: linear-gradient(to right, var(--blue), var(--teal));
  border-radius: 0 var(--r-full) var(--r-full) 0;
  transition: width .4s var(--ease);
  width: 0%;
}
.quiz-progress-text {
  font-size: .8rem;
  color: var(--grey);
  font-weight: 600;
}

/* Questions */
.quiz-questions {
  padding: 1.5rem 1.25rem .75rem;
}
.quiz-question { display: none; }
.quiz-question.active {
  display: block;
  animation: slideIn .3s var(--ease-out);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: none; }
}

.q-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Options: 1 column on mobile */
.q-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
}
.q-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-min);
  padding: .85rem 1rem;
  border: 2px solid var(--grey-light);
  border-radius: var(--r-md);
  font-size: clamp(.88rem, 2.5vw, .95rem);
  font-weight: 500;
  color: var(--dark-soft);
  background: var(--white);
  cursor: pointer;
  transition: all .18s var(--ease);
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.q-opt:hover { border-color: var(--blue-light); background: var(--blue-pale); color: var(--blue); }
.q-opt.selected {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

/* Scale (Q4) */
.q-scale { padding: .25rem 0; }
.scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--grey);
  margin-bottom: .75rem;
}
.scale-btns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .4rem;
}
.scale-btn {
  min-height: var(--tap-min);
  border-radius: var(--r-sm);
  border: 2px solid var(--grey-light);
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark-soft);
  background: var(--white);
  cursor: pointer;
  transition: all .18s;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.scale-btn:hover { border-color: var(--blue-light); background: var(--blue-pale); }
.scale-btn.selected { border-color: var(--blue); background: var(--blue); color: var(--white); }

/* Nav buttons */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding: 1.1rem 1.25rem;
  border-top: 1px solid var(--grey-light);
}
.quiz-nav .btn { min-width: 100px; }

/* Result */
.quiz-result {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  display: none;
}
.quiz-result.active {
  display: block;
  animation: slideIn .5s var(--ease-out);
}

.result-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  padding: 2.5rem 1.5rem;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  text-align: center;
  color: var(--white);
}
.result-emoji { font-size: 3rem; margin-bottom: .75rem; }
.result-type {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 900;
  margin-bottom: .6rem;
}
.result-msg {
  font-size: clamp(.9rem, 2.5vw, 1rem);
  opacity: .9;
  line-height: 1.7;
  max-width: 440px;
  margin-inline: auto;
}

.result-body {
  background: var(--white);
  padding: 1.5rem;
  border: 1px solid var(--grey-light);
  border-top: none;
}
.result-rec, .result-insight { margin-bottom: 1.5rem; }
.result-rec h4, .result-insight h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: .6rem;
}
.result-rec p {
  font-size: clamp(.88rem, 2vw, .95rem);
  color: var(--dark-soft);
  line-height: 1.7;
}
.result-insight blockquote {
  font-family: var(--font-display);
  font-size: clamp(.95rem, 2.5vw, 1.05rem);
  font-style: italic;
  color: var(--dark);
  padding: 1rem 1.25rem;
  background: var(--blue-pale);
  border-radius: var(--r-md);
  border-inline-end: 4px solid var(--blue);
  line-height: 1.65;
}

.result-closing {
  text-align: center;
  font-size: clamp(.82rem, 2vw, .9rem);
  color: var(--grey);
  padding: .5rem 1.5rem;
  font-style: italic;
}
.result-cta-card {
  background: var(--off-white);
  padding: 1.75rem 1.5rem;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  text-align: center;
  border: 1px solid var(--grey-light);
  border-top: none;
}
.result-cta-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  margin-bottom: .4rem;
}
.result-cta-card p { color: var(--grey); margin-bottom: 1.25rem; font-size: .9rem; }
.result-cta-btns {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: stretch;
  margin-bottom: 1rem;
}
.result-cta-btns .btn { width: 100%; }
.quiz-restart {
  display: block;
  margin: .75rem auto 0;
  font-size: .82rem;
  min-height: 40px;
}

/* ==========================================
   15. YOUTUBE — mobile: 1 col
   ========================================== */
.youtube { background: var(--off-white); }

.youtube-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}
.yt-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
}
.yt-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.yt-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.yt-card:hover .yt-thumb img { transform: scale(1.05); }
.yt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.28);
  transition: background .3s;
}
.yt-card:hover .yt-overlay { background: rgba(0,0,0,.42); }
.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #ff0000;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--ease-spring);
}
.yt-card:hover .yt-play { transform: translate(-50%,-50%) scale(1.15); }
.yt-info { padding: 1rem 1.1rem; }
.yt-info h4 { font-size: clamp(.88rem, 2.5vw, 1rem); font-weight: 700; margin-bottom: .25rem; }
.yt-info p  { font-size: clamp(.78rem, 2vw, .85rem); color: var(--grey); }
.youtube-cta { text-align: center; }

/* ==========================================
   16. GALLERY STRIP
   ========================================== */
.gallery {
  overflow: hidden;
  background: var(--dark);
  padding-block: 1.75rem;
}
.gallery-strip { overflow: hidden; }
.gallery-track {
  display: flex;
  gap: 12px;
  animation: galleryScroll 28s linear infinite;
  width: max-content;
}
.gallery-track img {
  height: 160px;
  width: auto;
  border-radius: var(--r-md);
  object-fit: cover;
  opacity: .72;
  transition: opacity .3s;
  flex-shrink: 0;
}
.gallery-track img:hover { opacity: 1; }
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================
   17. TESTIMONIALS
   ========================================== */
.testimonials { background: var(--white); }
.testimonials-slider { position: relative; overflow: hidden; }

.slider-track {
  display: flex;
  gap: 1.25rem;
  transition: transform .5s var(--ease);
  /* Prevent overflow bleed */
  will-change: transform;
}
.testi-card {
  /* 1 card visible on mobile (90% + gap) */
  flex: 0 0 calc(100% - 1.5rem);
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  border: 1px solid var(--grey-light);
  transition: box-shadow .3s;
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-light); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: .85rem; }
.testi-card blockquote {
  font-size: clamp(.88rem, 2.5vw, .95rem);
  color: var(--dark-soft);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testi-author { display: flex; align-items: center; gap: .85rem; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-size: .9rem; font-weight: 700; }
.testi-role { font-size: .75rem; color: var(--grey); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.slider-btn {
  width: var(--tap-min);
  height: var(--tap-min);
  border-radius: 50%;
  border: 2px solid var(--grey-light);
  background: var(--white);
  font-size: 1.1rem;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  -webkit-tap-highlight-color: transparent;
}
.slider-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

.slider-dots { display: flex; gap: .45rem; align-items: center; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grey-light);
  cursor: pointer;
  transition: all .3s;
  -webkit-tap-highlight-color: transparent;
  /* Larger tap area */
  padding: 8px;
  background-clip: content-box;
  box-sizing: content-box;
}
.dot.active { background: var(--blue); width: 22px; border-radius: 4px; }

/* ==========================================
   18. CTA SECTION
   ========================================== */
.cta-section { background: var(--off-white); }
.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--blue) 0%, #0c3fa8 40%, var(--teal) 100%);
  border-radius: var(--r-2xl);
  padding: 3rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.12), transparent 65%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-emoji { font-size: 2.5rem; margin-bottom: .85rem; }
.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: .85rem;
  text-wrap: balance;
}
.cta-card p {
  color: rgba(255,255,255,.82);
  font-size: clamp(.9rem, 2.5vw, 1.05rem);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  align-items: center;
}
.cta-btns .btn { width: 100%; max-width: 320px; }
.cta-btns .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.cta-btns .btn-outline:hover { background: rgba(255,255,255,.15); }

/* ==========================================
   19. CONTACT — mobile: 1 col
   ========================================== */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.contact-info .section-title { margin-bottom: .75rem; }
.contact-info > p {
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: clamp(.9rem, 2vw, 1rem);
}
.contact-methods { display: flex; flex-direction: column; gap: .85rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  min-height: var(--tap-min);
  background: var(--off-white);
  border-radius: var(--r-md);
  border: 1px solid var(--grey-light);
  transition: all .25s;
  -webkit-tap-highlight-color: transparent;
}
.contact-method:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-sm);
  /* RTL-correct hover nudge */
  transform: translateX(4px);
}
.method-icon { font-size: 1.4rem; flex-shrink: 0; }
.method-label { font-size: .72rem; color: var(--grey); font-weight: 500; }
.method-val { font-size: clamp(.88rem, 2.5vw, 1rem); font-weight: 700; color: var(--dark); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-light);
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark-soft);
}
.form-field input,
.form-field textarea {
  width: 100%;
  /* 16px prevents iOS auto-zoom */
  font-size: 1rem;
  padding: .85rem 1rem;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--r-md);
  color: var(--dark);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  text-align: right;
  direction: rtl;
  /* Prevent resize from breaking layout */
  max-width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,86,214,.12);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  background: #ecfdf5;
  color: #065f46;
  padding: 1rem;
  border-radius: var(--r-md);
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
  border: 1px solid #a7f3d0;
}
.form-success.visible {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

/* ==========================================
   20. FOOTER
   ========================================== */
.footer { background: var(--dark); color: rgba(255,255,255,.65); }
.footer-top { padding-block: 3.5rem 2.5rem; }

/* Mobile: single column */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: .35rem;
}
.footer-tagline {
  font-size: .82rem;
  color: var(--blue-light);
  font-weight: 600;
  margin-bottom: .6rem;
}
.footer-desc { font-size: .82rem; line-height: 1.7; }

.footer-links-col h4,
.footer-contact-col h4 {
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer-links-col ul li { margin-bottom: .5rem; }
.footer-links-col a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links-col a:hover { color: var(--white); }
.footer-contact-col { display: flex; flex-direction: column; gap: .45rem; }
.footer-contact-col a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-contact-col a:hover { color: var(--white); }

.footer-bottom {
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.footer-dedication {
  color: rgba(255,255,255,.88);
  font-size: clamp(.88rem, 2.5vw, .95rem);
  font-weight: 500;
  margin-bottom: .35rem;
}
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.3); }

/* ==========================================
   21. FLOATING CTA
   ========================================== */
.floating-cta {
  position: fixed;
  /* Bottom-left for RTL — doesn't conflict with watermark (bottom-right) */
  bottom: 20px;
  inset-inline-start: 16px;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  z-index: 900;
  /* Hidden by default, JS shows after scroll */
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.float-btn {
  display: flex;
  align-items: center;
  gap: .65rem;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 700;
  transition: all .3s var(--ease-spring);
  box-shadow: var(--shadow-lg);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
/* WhatsApp — circle icon only */
.float-wa {
  width: 52px; height: 52px;
  background: var(--green);
  color: var(--white);
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.4); }

/* Phone — circle icon only on mobile (text added on desktop) */
.float-phone {
  width: 52px; height: 52px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
.float-phone span { display: none; } /* Hidden on mobile */
.float-phone:hover { transform: scale(1.1); box-shadow: var(--shadow-blue); }

/* ==========================================
   22. WATERMARK
   ========================================== */
.watermark {
  position: fixed;
  bottom: 10px;
  inset-inline-end: 14px;
  font-size: .58rem;
  font-weight: 500;
  color: rgba(0,0,0,.18);
  letter-spacing: .06em;
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
  user-select: none;
}

/* ==========================================
   23. ACCESSIBILITY & FOCUS
   ========================================== */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip to main content (screen readers) */
.skip-link {
  position: absolute;
  top: -100%;
  right: 0;
  background: var(--blue);
  color: var(--white);
  padding: .75rem 1.5rem;
  z-index: 9999;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-weight: 700;
}
.skip-link:focus { top: 0; }

/* High-contrast color check:
   --blue #1a56d6 on white = 5.2:1 ✅ AA
   --grey #64748b on white = 4.6:1 ✅ AA
   white on --blue = 5.2:1 ✅ AA */

/* ==========================================
   24. REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .gallery-track { animation: none; }
  .compass-body, .ring-outer, .ring-middle, .compass-needle { animation: none; }
}

/* ==========================================
   25. BREAKPOINT: 480px (large phones)
   ========================================== */
@media (min-width: 480px) {
  :root { --section-pad: 5rem; }

  .hero-ctas { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .hero-ctas .btn { width: auto; min-width: 180px; }

  .q-options { grid-template-columns: 1fr 1fr; }
  .scale-btns { grid-template-columns: repeat(10, 1fr); }

  .timeline-item { grid-template-columns: 48px 1fr; gap: 1.5rem; }
  .timeline-dot  { width: 48px; height: 48px; }

  .compass-container { width: min(340px, 85vw); height: min(340px, 85vw); }
}

/* ==========================================
   26. BREAKPOINT: 640px
   ========================================== */
@media (min-width: 640px) {
  .insights-grid  { grid-template-columns: 1fr 1fr; }
  .model-grid     { grid-template-columns: 1fr 1fr; }
  .youtube-grid   { grid-template-columns: 1fr 1fr; }

  .about-stats { display: flex; gap: 2rem; }
  .stat { flex-direction: column; align-items: center; background: none; padding: 0; }

  .testi-card { flex: 0 0 calc(50% - .65rem); }

  .result-cta-btns { flex-direction: row; justify-content: center; }
  .result-cta-btns .btn { width: auto; }

  .cta-btns { flex-direction: row; }
  .cta-btns .btn { width: auto; }

  .hero-content { text-align: start; }
  .hero-subtitle { margin-inline: 0; }
  .hero-ctas { justify-content: flex-start; }
}

/* ==========================================
   27. BREAKPOINT: 768px (tablets)
   ========================================== */
@media (min-width: 768px) {
  :root {
    --nav-h: 68px;
    --section-pad: 6rem;
  }

  /* Nav: show desktop links, hide hamburger */
  .nav-toggle { display: none; }
  .nav-links {
    /* Reset mobile drawer styles */
    position: static;
    max-height: none;
    overflow: visible;
    background: transparent;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    gap: .2rem;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
  }
  .nav-links a {
    font-size: .83rem;
    font-weight: 500;
    min-height: auto;
    padding: .4rem .7rem;
    border-radius: var(--r-full);
  }
  .nav-links .nav-cta { padding: .5rem 1.1rem; margin-top: 0; }

  /* About: two columns */
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }
  .img-stack { max-height: none; }
  .img-main { aspect-ratio: 3/4; }
  .img-secondary {
    display: block;
    position: absolute;
    bottom: -30px;
    inset-inline-start: -30px;
    width: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
  }
  .img-badge {
    display: block;
    position: absolute;
    top: 28px;
    inset-inline-start: -16px;
    background: var(--gold);
    color: var(--dark);
    padding: .85rem 1.1rem;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    line-height: 1.1;
  }
  .badge-num { display: block; font-size: 1.5rem; font-weight: 900; }
  .badge-text { font-size: .68rem; font-weight: 600; }
  .about-text { padding-bottom: 40px; }

  /* Contact: two columns */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
  .contact-form-wrap { padding: 2.25rem; }

  /* Footer: 2×2 grid */
  .footer-grid { grid-template-columns: 2fr 1fr; gap: 2.5rem; }
  .footer-top { padding-block: 5rem 3.5rem; }

  /* Insights: 2 col */
  .insights-grid { grid-template-columns: repeat(2, 1fr); }

  /* Timeline bigger dots */
  .timeline-item { grid-template-columns: 56px 1fr; gap: 2rem; }
  .timeline-dot  { width: 56px; height: 56px; font-size: .8rem; }
  .timeline::before { inset-inline-start: 28px; }

  /* Compass: side-by-side */
  .compass-wrapper { flex-direction: row; gap: 3rem; }
  .compass-container { width: 360px; height: 360px; }
  .compass-insight { max-width: 360px; }

  /* Results: side-by-side buttons */
  .result-body { padding: 2rem; }
  .result-header { padding: 2.5rem 2rem; }
  .result-cta-card { padding: 2rem; }

  /* Scale: all 10 in a row */
  .scale-btns { grid-template-columns: repeat(10, 1fr); }

  /* Gallery images: taller */
  .gallery-track img { height: 200px; }

  /* Floating phone: expand on tablet+ */
  .float-phone {
    width: auto;
    height: 52px;
    border-radius: var(--r-full);
    padding: 0 1.25rem 0 .9rem;
  }
  .float-phone span { display: inline; }
}

/* ==========================================
   28. BREAKPOINT: 1024px (desktop)
   ========================================== */
@media (min-width: 1024px) {
  :root { --section-pad: 7.5rem; }
  .container { padding-inline: 2rem; }

  .insights-grid  { grid-template-columns: repeat(3, 1fr); }
  .model-grid     { grid-template-columns: repeat(3, 1fr); }
  .youtube-grid   { grid-template-columns: repeat(3, 1fr); }
  .footer-grid    { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }

  /* Testimonials: 3 visible */
  .testi-card { flex: 0 0 calc(33.333% - .85rem); }

  /* Hero: align left (RTL: right) */
  .hero-content { text-align: start; }
  .hero-ctas { justify-content: flex-start; }
  .hero-ctas .btn { width: auto; }

  /* About: larger gap */
  .about-grid { gap: 5rem; }

  /* Compass: larger */
  .compass-container { width: 420px; height: 420px; }
  .compass-insight { max-width: 400px; }

  /* CTA card: bigger padding */
  .cta-card { padding: 5rem 4rem; }
  .cta-btns { flex-direction: row; }

  /* Contact: larger gap */
  .contact-grid { gap: 5rem; }

  /* Q options: 2 cols on desktop quiz */
  .q-options { grid-template-columns: 1fr 1fr; }

  /* Model: 4 cols */
  .model-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================
   29. BREAKPOINT: 1280px (large desktop)
   ========================================== */
@media (min-width: 1280px) {
  :root { --section-pad: 8rem; }

  .model-grid { grid-template-columns: repeat(4, 1fr); }
  .insights-grid { grid-template-columns: repeat(5, 1fr); }

  /* Hero layout: image pushed right, text left */
  .hero-title { font-size: clamp(3.5rem, 5vw, 5rem); }

  /* Shape sizes: larger for big screens */
  .shape-1 { width: 500px; height: 500px; }
  .shape-2 { width: 350px; height: 350px; }
  .shape-3 { width: 250px; height: 250px; }

  .gallery-track img { height: 220px; }
}

/* ==========================================
   30. BREAKPOINT: 1440px+
   ========================================== */
@media (min-width: 1440px) {
  :root { --section-pad: 9rem; }
  .container { padding-inline: 2.5rem; }
  .model-grid { grid-template-columns: repeat(4, 1fr); }
}
