/* ============================================================
   BAT FITNESS — MAIN STYLESHEET
   Brand Colors: Maroon #6B1A2A · Cream #F0E6D3 · Dark #0D0D0D
   Font: Outfit + Inter from Google Fonts
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --clr-brand: #7A1F2E;
  --clr-brand-light: #9B2A3D;
  --clr-brand-dark: #4E1020;
  --clr-cream: #F0E6D3;
  --clr-cream-dim: #C8B99A;
  --clr-gold: #C9933A;
  --clr-gold-light: #E5B05A;

  --clr-bg: #0D0D0D;
  --clr-bg-2: #121212;
  --clr-bg-3: #1A1A1A;
  --clr-bg-card: #161616;
  --clr-bg-card2: #1E1E1E;

  --clr-text: #F0F0F0;
  --clr-text-dim: #B0B0B0;
  --clr-text-muted: #707070;
  --clr-border: rgba(255, 255, 255, 0.07);
  --clr-border-glow: rgba(122, 31, 46, 0.4);

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-brand: 0 0 40px rgba(122, 31, 46, 0.35);

  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);

  --nav-h: 72px;
  --container: 1200px;
  --section-pad: 100px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

input,
select,
textarea {
  font-family: inherit;
}

::selection {
  background: var(--clr-brand);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--clr-brand-light);
  outline-offset: 3px;
}

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--clr-brand);
  border-radius: 3px;
}

/* ── UTILITY ────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-brand-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: rgba(201, 147, 58, 0.12);
  border: 1px solid rgba(201, 147, 58, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--clr-text);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--clr-text-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-brand), var(--clr-brand-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(122, 31, 46, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(122, 31, 46, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}

.btn-ghost:hover {
  border-color: var(--clr-brand-light);
  color: var(--clr-cream);
  background: rgba(122, 31, 46, 0.1);
}

.btn-xl {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(13, 13, 13, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(122, 31, 46, 0.5));
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--clr-cream);
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  display: block;
  color: var(--clr-text-muted);
  letter-spacing: 0.2em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  color: var(--clr-text-dim);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--clr-cream);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  margin-left: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 10;
}

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(122, 31, 46, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(201, 147, 58, 0.06) 0%, transparent 60%),
    var(--clr-bg);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(13, 13, 13, 0.95) 45%,
      rgba(13, 13, 13, 0.4) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 60px 24px 60px max(24px, calc((100vw - 1200px)/2 + 24px));
  box-sizing: content-box;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-gold);
  background: rgba(201, 147, 58, 0.1);
  border: 1px solid rgba(201, 147, 58, 0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-dim);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-subtitle strong {
  color: var(--clr-cream);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-cream);
  line-height: 1;
}

.stat-unit {
  font-size: 1rem;
  color: var(--clr-gold);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

.hero-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  z-index: 1;
  overflow: hidden;
}

.hero-image-glow {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(122, 31, 46, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(1.05) contrast(1.05);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, transparent 85%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, transparent 85%);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

/* ── PROBLEM SECTION ────────────────────────────────────────── */
.problem-section {
  padding: var(--section-pad) 0;
  background: var(--clr-bg-2);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.problem-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, background 0.2s;
}

.problem-point:hover {
  border-color: rgba(122, 31, 46, 0.35);
  background: var(--clr-bg-card2);
}

.problem-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-point p {
  font-size: 0.95rem;
  color: var(--clr-text-dim);
  margin: 0;
}

.problem-callout {
  border-left: 3px solid var(--clr-brand);
  padding: 16px 20px;
  background: rgba(122, 31, 46, 0.08);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.problem-callout p {
  font-style: italic;
  color: var(--clr-cream);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.problem-callout span {
  font-size: 0.8rem;
  color: var(--clr-gold);
  font-weight: 600;
}

.problem-image {
  position: relative;
}

.problem-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--shadow-brand);
}

.problem-img-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 13, 13, 0.9);
  border: 1px solid var(--clr-border);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  white-space: nowrap;
}

.problem-img-badge span {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--clr-gold);
}

.problem-img-badge small {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

/* ── STORY SECTION ──────────────────────────────────────────── */
.story-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.story-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 50%, rgba(122, 31, 46, 0.1), transparent),
    var(--clr-bg);
}

.story-section .container {
  position: relative;
  z-index: 1;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.story-images {
  position: relative;
  padding-bottom: 120px;
}

.story-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.story-img-main {
  width: 80%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.story-img-secondary {
  display: block;
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: top;
}

/* Before / After label wrappers */
.story-img-before-wrap {
  position: relative;
  display: block;
}

.story-img-after-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  border-radius: var(--radius-xl);
  border: 3px solid var(--clr-bg-3);
  box-shadow: var(--shadow-brand);
  overflow: hidden;
}

.story-img-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 3;
}

.story-img-label-before {
  background: rgba(13, 13, 13, 0.82);
  color: #f55;
  border: 1px solid rgba(255, 85, 85, 0.35);
}

.story-img-label-after {
  background: rgba(13, 13, 13, 0.82);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.35);
}

/* Author name above quote */
.story-author-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 10px;
}

.story-medal {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(201, 147, 58, 0.15), rgba(122, 31, 46, 0.15));
  border: 1px solid rgba(201, 147, 58, 0.3);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-gold);
}

.story-content {
  padding-top: 20px;
}

.story-quote {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--clr-cream);
  line-height: 1.65;
  border-left: 3px solid var(--clr-gold);
  padding: 16px 20px;
  margin-bottom: 28px;
  background: rgba(201, 147, 58, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.story-body {
  color: var(--clr-text-dim);
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.story-body strong {
  color: var(--clr-cream);
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  display: inline-block;
  padding: 7px 15px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-dim);
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* ── WHY SECTION ────────────────────────────────────────────── */
.why-section {
  padding: var(--section-pad) 0;
  background: var(--clr-bg-2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-left p {
  color: var(--clr-text-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.why-left em {
  color: var(--clr-cream);
  font-style: normal;
}

.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.why-reason {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, transform 0.2s;
}

.why-reason:hover {
  border-color: var(--clr-brand-light);
  transform: translateX(4px);
}

.why-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-reason strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.97rem;
  margin-bottom: 4px;
}

.why-reason p {
  color: var(--clr-text-dim);
  font-size: 0.88rem;
  margin: 0;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.mission-card,
.promise-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mission-card:hover,
.promise-card:hover {
  border-color: var(--clr-brand-light);
  box-shadow: var(--shadow-brand);
}

.mission-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.mission-card h3,
.promise-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-cream);
  margin-bottom: 10px;
}

.mission-card p {
  color: var(--clr-text-dim);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.mission-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mission-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--clr-text-dim);
}

.mission-list li span:first-child {
  font-size: 0.85rem;
  color: var(--clr-brand-light);
  font-weight: 700;
  width: 16px;
}

.mission-list li:nth-child(n+4) {
  color: var(--clr-cream);
}

.mission-list li:nth-child(n+4) span:first-child {
  color: #4CAF50;
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.promise-list li {
  font-size: 0.9rem;
  color: var(--clr-text-dim);
}

.promise-footer {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--clr-gold);
  border-top: 1px solid var(--clr-border);
  padding-top: 14px;
  margin: 0;
}

/* ── CERTIFICATIONS ─────────────────────────────────────────── */
.certifications-section {
  padding: var(--section-pad) 0;
  background: var(--clr-bg);
}

.cert-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.cert-badge:hover {
  border-color: var(--clr-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 147, 58, 0.15);
}

.cert-icon {
  font-size: 2rem;
}

.cert-info strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: var(--clr-cream);
  margin-bottom: 4px;
}

.cert-info span {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

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

.cert-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--clr-border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  aspect-ratio: 4/3;
}

.cert-img-card:hover {
  border-color: var(--clr-gold);
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.cert-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cert-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.cert-img-card:hover .cert-img-overlay {
  opacity: 1;
}

.cert-img-overlay span {
  background: var(--clr-brand);
  color: #fff;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── PLANS SECTION ──────────────────────────────────────────── */
.plans-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.plans-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(122, 31, 46, 0.1), transparent),
    var(--clr-bg-2);
}

.plans-section .container {
  position: relative;
  z-index: 1;
}

.plan-features-all {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.pfa-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.pfa-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.pfa-items span {
  font-size: 0.925rem;
  color: var(--clr-text-dim);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-brand), var(--clr-brand-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.plan-card:hover {
  border-color: var(--clr-brand-light);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), var(--shadow-brand);
}

.plan-card:hover::before {
  opacity: 1;
}

.plan-featured {
  background: linear-gradient(160deg, var(--clr-bg-card2), rgba(122, 31, 46, 0.12));
  border-color: var(--clr-brand);
  transform: scale(1.03);
  box-shadow: var(--shadow-brand);
}

.plan-featured::before {
  opacity: 1;
}

.plan-featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.plan-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-brand-light));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.plan-header {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 16px;
}

.plan-name {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-text);
}

.plan-name span {
  color: var(--clr-gold);
}

.plan-duration {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  padding-bottom: 4px;
}

.plan-price {
  margin-bottom: 10px;
}

.price-currency {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-cream);
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--clr-cream);
  line-height: 1;
}

.price-period {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-left: 4px;
}

.plan-tag {
  display: inline-block;
  background: rgba(122, 31, 46, 0.2);
  border: 1px solid rgba(122, 31, 46, 0.35);
  color: var(--clr-brand-light);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.plan-featured .plan-tag {
  background: rgba(201, 147, 58, 0.15);
  border-color: rgba(201, 147, 58, 0.35);
  color: var(--clr-gold);
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--clr-text-dim);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 24px;
}

.btn-plan {
  width: 100%;
  padding: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: var(--radius-md);
  background: var(--clr-bg-3);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-plan:hover {
  background: var(--clr-brand);
  border-color: var(--clr-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(122, 31, 46, 0.4);
}

.btn-plan-featured {
  background: linear-gradient(135deg, var(--clr-brand), var(--clr-brand-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(122, 31, 46, 0.4);
}

.btn-plan-featured:hover {
  box-shadow: 0 8px 30px rgba(122, 31, 46, 0.6);
}

.plans-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* ── RESULTS SECTION ────────────────────────────────────────── */
.results-section {
  padding: var(--section-pad) 0;
  background: var(--clr-bg);
}

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

.result-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.result-card:hover {
  border-color: var(--clr-brand-light);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.result-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.result-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.result-weight-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-border);
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.weight-before {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: #f55;
}

.weight-arrow {
  color: var(--clr-text-muted);
}

.weight-after {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: #4CAF50;
}

.result-info {
  padding: 20px 22px;
}

.result-plan-tag {
  display: inline-block;
  background: rgba(122, 31, 46, 0.2);
  border: 1px solid rgba(122, 31, 46, 0.35);
  color: var(--clr-brand-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.result-info h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-cream);
  margin-bottom: 8px;
}

.result-info p {
  font-size: 0.875rem;
  color: var(--clr-text-dim);
  line-height: 1.6;
  margin-bottom: 14px;
}

.result-info p strong {
  color: var(--clr-gold);
}

.result-stats {
  display: flex;
  gap: 16px;
}

.rs {
  text-align: center;
  flex: 1;
  background: var(--clr-bg-3);
  border-radius: var(--radius-md);
  padding: 10px;
}

.rs span {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--clr-gold);
}

.rs small {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.test-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(122, 31, 46, 0.1), transparent),
    var(--clr-bg-2);
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-carousel {
  position: relative;
  min-height: 240px;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.4s ease;
}

.testimonial-slide.active {
  display: flex;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.test-card {
  max-width: 680px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  position: relative;
}

.test-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 24px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--clr-brand);
  opacity: 0.3;
  line-height: 1;
}

.test-stars {
  color: var(--clr-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.test-quote {
  font-size: 1.0rem;
  color: var(--clr-text-dim);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-brand), var(--clr-brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.test-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--clr-cream);
}

.test-author span {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  font-size: 1.1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--clr-brand);
  border-color: var(--clr-brand);
  color: #fff;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--clr-brand);
  border-color: var(--clr-brand);
  transform: scale(1.3);
}

/* ── GALLERY CAROUSEL ───────────────────────────────────────── */
.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--clr-bg);
  overflow: hidden;
}

.gallery-carousel-track-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.gallery-carousel-track-wrap::before,
.gallery-carousel-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.gallery-carousel-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-bg), transparent);
}

.gallery-carousel-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-bg), transparent);
}

.gallery-carousel-track {
  display: flex;
  gap: 16px;
  animation: galleryScroll 30s linear infinite;
  width: max-content;
}

.gallery-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes galleryScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.gallery-carousel-item {
  flex-shrink: 0;
  width: 300px;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.gallery-carousel-item:hover {
  border-color: rgba(122, 31, 46, 0.5);
  box-shadow: var(--shadow-brand);
}

.gallery-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease, filter 0.3s;
}

.gallery-carousel-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.8);
}

/* ── APPLY SECTION ──────────────────────────────────────────── */
.apply-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.apply-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(122, 31, 46, 0.12), transparent),
    var(--clr-bg-2);
}

.apply-section .container {
  position: relative;
  z-index: 1;
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.apply-info p {
  color: var(--clr-text-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.apply-info p strong {
  color: var(--clr-cream);
}

.apply-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}

.aci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
}

.aci-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.aci-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 3px;
}

.aci-item a,
.aci-item span {
  font-size: 0.92rem;
  color: var(--clr-cream);
  transition: color 0.2s;
}

.aci-item a:hover {
  color: var(--clr-gold);
}

.apply-social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

/* FORM */
.apply-form-wrap {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-cream);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--clr-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
  min-width: 0;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-dim);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--clr-text);
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  text-overflow: ellipsis;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23707070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--clr-bg-3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-brand-light);
  box-shadow: 0 0 0 3px rgba(122, 31, 46, 0.15);
}

.form-group input::placeholder {
  color: var(--clr-text-muted);
}

.form-group input.invalid,
.form-group select.invalid {
  border-color: #f55;
}

.form-consent {
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  user-select: none;
}

/* Hide native checkbox, replace with custom styled one */
.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: var(--clr-bg-3);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

/* Tick mark using ::after pseudo-element */
.checkbox-label input[type="checkbox"]::after {
  content: '';
  position: absolute;
  display: none;
  left: 50%;
  top: 45%;
  width: 6px;
  height: 12px;
  border: 2.5px solid #fff;
  border-top: none;
  border-left: none;
  transform: translate(-50%, -50%) rotate(45deg);
}

.checkbox-label input[type="checkbox"]:checked {
  background: var(--clr-brand);
  border-color: var(--clr-brand-light);
  box-shadow: 0 0 0 3px rgba(122, 31, 46, 0.25);
}

.checkbox-label input[type="checkbox"]:checked::after {
  display: block;
}

.checkbox-label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--clr-brand-light);
  outline-offset: 2px;
}

.checkbox-label input[type="checkbox"].invalid {
  border-color: #f55 !important;
  box-shadow: 0 0 0 3px rgba(255, 85, 85, 0.2);
}

.checkbox-label:hover input[type="checkbox"]:not(:checked) {
  border-color: rgba(122, 31, 46, 0.6);
  background: rgba(122, 31, 46, 0.08);
}

.form-error {
  color: #f55;
  font-size: 0.85rem;
  padding: 10px 14px;
  background: rgba(255, 85, 85, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 85, 85, 0.2);
  margin-bottom: 12px;
  display: none;
}

.form-error:not(:empty) {
  display: block;
}

.form-success {
  color: #4CAF50;
  font-size: 0.9rem;
  padding: 14px 18px;
  background: rgba(76, 175, 80, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(76, 175, 80, 0.25);
  margin-bottom: 12px;
  display: none;
  text-align: center;
}

.form-success:not(:empty) {
  display: block;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 12px;
}

/* ── CONTACT SECTION ────────────────────────────────────────── */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--clr-bg);
}

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

.contact-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  border-color: var(--clr-brand-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
}

.contact-icon {
  font-size: 2.2rem;
}

.contact-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-cream);
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.contact-card strong {
  font-size: 0.9rem;
  color: var(--clr-gold);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-dim);
}

.social-btn:hover {
  background: rgba(195, 60, 120, 0.15);
  border-color: rgba(195, 60, 120, 0.4);
  color: #E1306C;
}

.social-btn-yt:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.3);
  color: #FF0000;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: #090909;
  border-top: 1px solid var(--clr-border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--clr-border);
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.87rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text-muted);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--clr-brand);
  border-color: var(--clr-brand);
  color: #fff;
}

.footer-links h4,
.footer-plans h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.footer-links ul,
.footer-plans ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-plans a {
  font-size: 0.87rem;
  color: var(--clr-text-muted);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-plans a:hover {
  color: var(--clr-cream);
}

.footer-contact p {
  font-size: 0.87rem;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--clr-text-muted);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--clr-cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom strong {
  color: var(--clr-text-dim);
}

/* ── PAYMENT MODAL ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-box {
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  animation: slideUp 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-dim);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--clr-brand);
  color: #fff;
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.modal-header h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-cream);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--clr-gold);
  font-weight: 700;
}

.payment-summary {
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 16px 0;
}

.ps-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--clr-text-dim);
  border-bottom: 1px solid var(--clr-border);
}

.ps-row:last-child {
  border-bottom: none;
}

.ps-row span:last-child {
  font-weight: 600;
  color: var(--clr-cream);
}

.ps-total {
  padding-top: 10px;
}

.ps-total span:first-child {
  font-weight: 700;
  color: var(--clr-text);
}

.ps-total span:last-child {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-gold);
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.payment-methods span {
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}

.lightbox-close:hover {
  background: var(--clr-brand);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: var(--clr-brand);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-pad: 60px;
  }

  .hero-content {
    padding-left: 24px;
    max-width: 500px;
  }

  .hero-image-wrap {
    width: 48%;
  }

  .problem-grid {
    gap: 40px;
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
  }

  .nav-container {
    gap: 12px;
    justify-content: space-between;
  }

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

  .nav-logo {
    gap: 6px;
    flex-shrink: 1;
    min-width: 0;
  }

  .logo-text {
    font-size: 1rem;
    white-space: normal;
  }

  .hamburger {
    display: flex !important;
    margin-left: auto;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
    padding: 20px 24px;
    gap: 4px;
    z-index: 100;
  }

  .nav-links.open .nav-link {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .nav-cta.open-cta {
    display: flex;
    width: calc(100% - 48px);
    margin: 8px 24px;
    position: absolute;
    top: calc(var(--nav-h) + 220px);
    left: 0;
    z-index: 101;
    border-radius: var(--radius-md);
    justify-content: center;
  }

  .hero {
    flex-direction: column;
    min-height: 100svh;
    padding-bottom: 40px;
  }

  .hero-content {
    padding: 40px 24px 20px;
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
  }

  .hero-image-wrap {
    position: relative;
    width: 100%;
    height: 360px;
    z-index: 1;
  }

  .hero-img {
    object-position: center top;
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  }

  .hero-bg-overlay {
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.5) 100%);
  }

  .scroll-indicator {
    display: none;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .problem-image {
    order: -1;
  }

  .problem-img {
    aspect-ratio: 4/3;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-images {
    order: -1;
    padding-bottom: 120px;
  }

  .story-img-secondary {
    display: block;
  }

  .story-img-main {
    width: 75%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
  }

  .story-img-after-wrap {
    width: 50%;
    bottom: 0;
    right: 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-right {
    position: static;
  }

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

  .cert-images {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .plan-featured {
    transform: none;
  }

  .plan-featured:hover {
    transform: translateY(-6px);
  }

  .results-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

  .gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  .apply-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .apply-info p {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .apply-contact-info {
    width: 100%;
  }

  .aci-item {
    width: 100%;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .aci-item>div {
    min-width: 0;
    flex: 1;
  }

  .aci-item a,
  .aci-item span {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .apply-form-wrap {
    padding: 24px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
  }

  .pfa-items {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: flex-start;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-divider {
    display: none;
  }

  .modal-box {
    padding: 28px 20px;
    margin: 16px;
  }
}

@media (max-width: 480px) {
  .plans-grid {
    max-width: 100%;
  }

  .results-grid {
    max-width: 100%;
  }

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

  .apply-social-links {
    flex-direction: column;
    width: 100%;
  }

  .social-btn {
    width: 100%;
  }

  .cert-badges {
    grid-template-columns: 1fr;
  }

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

  .gallery-item-wide {
    grid-column: 1;
  }

  /* hero-stats sizes are managed by the 768px breakpoint */
}

/* ── FAQ SECTION ─────────────────────────────────────────────── */
.faq-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(122, 31, 46, 0.1), transparent),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(201, 147, 58, 0.06), transparent),
    var(--clr-bg-2);
  z-index: 0;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 56px;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: rgba(122, 31, 46, 0.35);
}

.faq-item.faq-open {
  border-color: rgba(201, 147, 58, 0.4);
  box-shadow: 0 0 28px rgba(201, 147, 58, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.4;
  transition: color 0.2s, background 0.2s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--clr-cream);
}

.faq-item.faq-open .faq-question {
  color: var(--clr-gold);
  background: rgba(201, 147, 58, 0.05);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--clr-text-dim);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s, color 0.3s, border-color 0.3s;
  line-height: 1;
}

.faq-item.faq-open .faq-icon {
  transform: rotate(45deg);
  background: rgba(201, 147, 58, 0.15);
  border-color: rgba(201, 147, 58, 0.4);
  color: var(--clr-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.faq-open .faq-answer {
  max-height: 400px;
  padding: 0 22px 20px;
}

.faq-answer p {
  font-size: 0.93rem;
  color: var(--clr-text-dim);
  line-height: 1.75;
  margin: 0;
  border-top: 1px solid var(--clr-border);
  padding-top: 16px;
}

.faq-answer p strong {
  color: var(--clr-cream);
  font-weight: 600;
}

.faq-cta {
  text-align: center;
  padding: 40px 24px;
  background: rgba(122, 31, 46, 0.06);
  border: 1px solid rgba(122, 31, 46, 0.15);
  border-radius: var(--radius-xl);
}

.faq-cta p {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--clr-text-dim);
  margin-bottom: 20px;
}

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

@media (max-width: 480px) {
  .faq-question {
    font-size: 0.9rem;
    padding: 16px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.faq-open .faq-answer {
    padding: 0 16px 16px;
  }
}