/* ===================================================
   HEALTHY LIFE AND SPORT: Main Stylesheet
   Coach: Nikola Manolov
   =================================================== */

/* 1. CSS VARIABLES */
:root {
  --oxblood: #3e92cc;          /* primary accent: logo blue */
  --orange: #f46036;           /* tiger-flame: secondary accent (logo orange) */
  --black-cherry: #0d3b66;
  --rich-mahogany: #051a30;
  --black: #000009;
  --blue-bell: #f46036;        /* was red: replaced with tiger-flame orange */
  /* logo palette */
  --tiger-flame: #f46036;
  --teal: #1b998b;             /* verdigris: positive / included accents */
  --lime: #c5d86d;             /* lime-cream: subtle highlight */
  --indigo: #2e294e;           /* space-indigo: deep tint */
  --crimson: #d7263d;
  --white: #ffffff;
  --text-light: #edf1f5;
  --text-muted: #bcc4cc;   /* body copy: was #9a9a9a, too dim to read comfortably */
  --card-bg: rgba(62, 146, 204, 0.06);
  --card-bg-hover: rgba(62, 146, 204, 0.12);
  --card-border: rgba(62, 146, 204, 0.25);
  --card-border-hover: rgba(62, 146, 204, 0.6);
  --nav-height: 80px;
  --container-max: 1200px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --radius-lg: 8px;
}

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

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

body {
  background-color: var(--black);
  color: var(--text-light);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* 3. TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { color: var(--text-light); line-height: 1.75; }

.text-blue { color: var(--blue-bell); }
.text-red { color: var(--oxblood); }
.text-muted { color: var(--text-muted); font-size: 0.875rem; }
.text-center { text-align: center; }

/* 4. LAYOUT */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bell);
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 60px;
}

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto 60px; }

/* 5. NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(0, 0, 9, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(62, 146, 204, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;              /* guarantees space between menu and the language switch */
  width: 100%;
}
/* give the nav a little more width than page content so the 8-item menu + logo fit */
.navbar .container { max-width: 1280px; }

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.nav-logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.nav-logo-company {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3e92cc;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;   /* push the menu to the right, away from the logo/company */
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--oxblood);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

/* Language Switcher */
/* same shape as the recipe filter chips */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  overflow: hidden;
}

.lang-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 7px 13px;
  transition: var(--transition);
  background: transparent;
}

.lang-btn.active {
  background: var(--oxblood);
  color: var(--white);
}

.lang-btn:hover:not(.active) {
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

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

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(0, 0, 9, 0.98);
  backdrop-filter: blur(20px);
  padding: 32px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid rgba(62, 146, 204, 0.3);
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
}

.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 10px 0;
  /* a border cannot hold a gradient, so the separator is a 1px background
     line pinned to the bottom edge */
  border-bottom: none;
  background-image: linear-gradient(90deg,
    var(--oxblood), var(--orange), rgba(244,96,54,0));
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: var(--transition);
}
/* the CTA is a button, not a list row: it keeps its own ring */
.mobile-nav a.nav-cta { background-image: none; }
.mobile-nav a:last-of-type { background-image: none; }

.mobile-nav a:hover { color: var(--white); padding-left: 8px; }

/* 6. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--oxblood);
  color: var(--white);
  border: 2px solid var(--oxblood);
}

.btn-primary:hover {
  background: var(--black-cherry);
  border-color: var(--black-cherry);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(62, 146, 204, 0.4);
}

/* secondary and outline get the same turning ring as the primary button;
   the gradients themselves live with the rest of the ring rules below */
.btn-secondary,
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid transparent;
}

.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-lg { padding: 18px 42px; font-size: 1rem; }

/* 7. HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;   /* subject sits mid-frame in this shot */
  background-repeat: no-repeat;
  animation: heroZoom 22s ease-in-out infinite alternate;
  transform-origin: center center;
}

/* a gentle breathing zoom, no panning: the wider sweep read as too busy */
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.09); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 85% at 82% 15%, rgba(46, 41, 78, 0.40) 0%, rgba(46, 41, 78, 0) 55%),
    linear-gradient(
      to right,
      rgba(0, 0, 9, 0.90) 0%,
      rgba(0, 0, 9, 0.65) 50%,
      rgba(0, 0, 9, 0.35) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: var(--nav-height);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-bell);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title span { color: var(--oxblood); }

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page Sub-Hero */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62, 146, 204, 0.08) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-bell);
  margin-bottom: 16px;
}

/* 8. CARDS */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
}

.card:hover {
  background: var(--card-bg-hover);
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(62, 146, 204, 0.15);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(62, 146, 204, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--oxblood);
  margin-bottom: 24px;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--oxblood);
  color: var(--white);
}

.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* Image Cards */
.img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,9,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

/* 9. GRIDS */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* 10. STATS BAR */
.stats-bar {
  background: var(--rich-mahogany);
  border-top: 1px solid rgba(62, 146, 204, 0.3);
  border-bottom: 1px solid rgba(62, 146, 204, 0.3);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 20px;
  border-right: 1px solid rgba(62, 146, 204, 0.3);
}

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

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--oxblood);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* 11. DIVIDER */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--oxblood), var(--orange));
  margin: 20px 0 40px;
}

.divider.centered { margin: 20px auto 40px; }

/* 12. SECTION BACKGROUNDS */
.bg-dark { background: var(--black); }
.bg-dark-2 { background: rgba(5, 26, 48, 0.3); }
.bg-subtle {
  background: linear-gradient(180deg, var(--black) 0%, rgba(5, 26, 48, 0.15) 50%, var(--black) 100%);
}

/* 13. ABOUT PAGE */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  border: 2px solid rgba(62, 146, 204, 0.3);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text .section-label { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; color: var(--text-muted); }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: rgba(62, 146, 204, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oxblood);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-text h4 { color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
/* no paragraph under it, so no gap to reserve */
.highlight-text h4:only-child { margin-bottom: 0; }
.highlight-text p { color: var(--text-muted); font-size: 0.875rem; margin: 0; }

/* 14. PROGRAMS PAGE */
.program-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.program-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(62, 146, 204, 0.2);
}

.program-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.program-card:hover .program-img img { transform: scale(1.05); }

.program-body { padding: 28px; }
.program-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(62, 146, 204, 0.15);
  color: var(--oxblood);
  margin-bottom: 12px;
}

.program-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.program-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

/* Video Section */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.video-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.video-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
}

.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--rich-mahogany);
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-body { padding: 20px 24px; }
.video-body h4 { margin-bottom: 6px; color: var(--white); }
.video-body p { color: var(--text-muted); font-size: 0.875rem; margin: 0; }

/* 15. BLOG PAGE */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(62, 146, 204, 0.15);
}

.blog-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--rich-mahogany);
}

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

.blog-card:hover .blog-img img { transform: scale(1.06); }

.blog-body { padding: 24px; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oxblood);
  background: rgba(62, 146, 204, 0.12);
  padding: 3px 10px;
  border-radius: 20px;
}

.blog-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-body p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 20px; }

.read-more {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bell);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.read-more:hover { gap: 10px; }

/* 16. RECIPES PAGE */
.recipe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.recipe-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.recipe-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(62, 146, 204, 0.15);
}

.recipe-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--rich-mahogany);
}
.recipe-video { background: #000; aspect-ratio: 9 / 16; }   /* vertical, fits YouTube Shorts */
.recipe-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.recipe-detail ol li { margin-bottom: 8px; line-height: 1.5; }
.recipe-detail ol li:last-child { margin-bottom: 0; }

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

.recipe-card:hover .recipe-img img { transform: scale(1.05); }

.recipe-body { padding: 24px; }

.recipe-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.recipe-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(163, 0, 16, 0.12);
  color: var(--blue-bell);
}

.recipe-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.recipe-body p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 16px; }

.recipe-info {
  display: flex;
  gap: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.recipe-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.recipe-info i { color: var(--oxblood); }

/* 17. REVIEWS PAGE */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars i { color: #f59e0b; font-size: 0.9rem; }

.review-text {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--oxblood);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.review-author-info h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 2px; }
.review-author-info span { font-size: 0.75rem; color: var(--text-muted); }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 48px;
  transition: var(--transition);
}

.google-badge:hover {
  background: var(--card-bg-hover);
  border-color: var(--card-border-hover);
}

/* 18. BOOKING PAGE */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.booking-info h3 { margin-bottom: 16px; }
.booking-info p { color: var(--text-muted); margin-bottom: 32px; }

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

.booking-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--oxblood);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 4px; }
.step-text p { font-size: 0.825rem; color: var(--text-muted); margin: 0; }

.calendly-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  min-height: 1000px;
  background: var(--card-bg);
}
.calendly-wrap .calendly-inline-widget { height: 1000px; }

/* 19. CONTACTS PAGE */
.contacts-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 24px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(62, 146, 204, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oxblood);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-detail:hover .contact-detail-icon {
  background: var(--oxblood);
  color: var(--white);
}

.contact-detail-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-text a,
.contact-detail-text p {
  font-size: 1rem;
  color: var(--text-light);
  transition: var(--transition);
}

.contact-detail-text a:hover { color: var(--blue-bell); }

/* Messaging buttons */
.messaging-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.msg-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
}

.msg-btn i { font-size: 1.1rem; }

.msg-btn-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.25);
}

.msg-btn-whatsapp:hover {
  background: #25d366;
  color: var(--white);
  transform: translateX(4px);
}

.msg-btn-viber {
  background: rgba(124, 57, 145, 0.1);
  color: #7c3991;
  border-color: rgba(124, 57, 145, 0.25);
}

.msg-btn-viber:hover {
  background: #7c3991;
  color: var(--white);
  transform: translateX(4px);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--oxblood);
  border-color: var(--oxblood);
  color: var(--white);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form h3 { margin-bottom: 32px; }

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--blue-bell);
  background: rgba(163, 0, 16, 0.04);
  box-shadow: 0 0 0 3px rgba(163, 0, 16, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.45); }

.form-textarea { resize: vertical; min-height: 140px; }

.form-select option { background: #00111f; color: var(--white); }

.form-success {
  padding: 16px 20px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius);
  color: #25d366;
  font-size: 0.9rem;
  margin-top: 16px;
  display: none;
}

.form-error {
  padding: 16px 20px;
  background: rgba(62, 146, 204, 0.1);
  border: 1px solid rgba(62, 146, 204, 0.3);
  border-radius: var(--radius);
  color: var(--oxblood);
  font-size: 0.9rem;
  margin-top: 16px;
  display: none;
}

/* 20. FOOTER */
footer {
  background: var(--rich-mahogany);
  border-top: 1px solid rgba(62, 146, 204, 0.3);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-bell);
  margin-bottom: 16px;
}

.footer-brand > p:last-of-type {
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: normal;
  text-transform: none;
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(62, 146, 204, 0.2);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--oxblood);
  border-color: var(--oxblood);
  color: var(--white);
}

/* 21. GO TO TOP */
/* same turning ring as the primary button */
.go-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
  border: 2px solid transparent;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(62, 146, 204, 0.5);
}

.go-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-top::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 260%;
  aspect-ratio: 1;
  translate: -50% -50%;
  z-index: -2;
  background: conic-gradient(from 0deg,
    var(--oxblood), var(--orange), #ffd2bd,
    var(--oxblood), var(--orange), var(--oxblood));
  animation: borderRun 9s linear infinite;
}
.go-top::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 50%;
  background: #060a12;
  transition: background 0.35s ease;
}
.go-top:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(#060a12, #060a12) padding-box,
    linear-gradient(90deg,
      var(--oxblood), var(--orange), var(--oxblood),
      var(--orange), var(--oxblood)) border-box;
  background-size: auto, 200% 100%;
  animation: glowSlide 3s linear infinite;
  box-shadow: 0 0 24px rgba(62,146,204,0.6), 0 0 40px rgba(244,96,54,0.35);
}
.go-top:hover::before { opacity: 0; }

/* 22. ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* 23. UTILITY CLASSES */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* Horizontal rule */
.hr {
  border: none;
  border-top: 1px solid rgba(62, 146, 204, 0.2);
  margin: 60px 0;
}

/* CTA Strip */
.cta-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--black-cherry) 0%, var(--rich-mahogany) 50%, var(--black) 100%);
  border-top: 1px solid rgba(62, 146, 204, 0.3);
  border-bottom: 1px solid rgba(62, 146, 204, 0.3);
  text-align: center;
}

.cta-strip h2 { margin-bottom: 16px; }
.cta-strip p { color: var(--text-muted); max-width: 500px; margin: 0 auto 36px; }

/* Filter buttons for blog/recipes */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--oxblood);
  border-color: var(--oxblood);
  color: var(--white);
}

/* Notification / toast */
.toast {
  position: fixed;
  bottom: 100px;
  right: 36px;
  background: var(--rich-mahogany);
  border: 1px solid rgba(62, 146, 204, 0.4);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 0.875rem;
  z-index: 9999;
  transform: translateX(120%);
  transition: var(--transition);
}

.toast.show { transform: translateX(0); }
.toast.success { border-color: rgba(37, 211, 102, 0.4); }

/* ===================================================
   24. RESPONSIVE
   =================================================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  section { padding: 72px 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 480px; }
  .contacts-wrap { grid-template-columns: 1fr; gap: 48px; }
  .booking-wrap { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1025px) and (max-width: 1150px) {
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 0.72rem; letter-spacing: 0.01em; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .go-top { bottom: 24px; right: 24px; width: 42px; height: 42px; }
  .btn { padding: 12px 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .recipe-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ===================================================
   22. SERVICES PAGE: cards, comparison table, system grid
   =================================================== */
.services-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--card-border-hover);
  background: var(--card-bg-hover);
  transform: translateY(-4px);
}
.service-card.featured {
  border-color: var(--oxblood);
  box-shadow: 0 0 0 1px var(--oxblood), 0 20px 50px rgba(62, 146, 204, 0.15);
}

.svc-ribbon {
  position: absolute;
  top: 20px;
  right: 0;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px 0 0 4px;
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(62, 146, 204, 0.12);
  color: var(--oxblood);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.svc-badge {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oxblood);
  background: rgba(62, 146, 204, 0.1);
  border: 1px solid var(--card-border);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.service-card h3 { margin-bottom: 12px; }
.svc-lede { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 24px; }

.svc-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--card-border);
}
.svc-price-num { font-size: 1.9rem; font-weight: 800; color: var(--white); }
.svc-price-per { font-size: 0.9rem; color: var(--text-muted); }

.svc-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.svc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.svc-features li i { color: var(--teal); font-size: 0.8rem; margin-top: 5px; }
.service-card .btn { margin-top: auto; }

.svc-tiers-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 28px; }
.svc-tiers-note i { color: var(--oxblood); margin-right: 6px; }

/* Comparison table */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  padding: 15px 20px;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table thead th {
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(62, 146, 204, 0.06);
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-size: 0.9rem;
}
.compare-table td:first-child { color: var(--text-muted); }
.compare-table .col-featured { background: rgba(62, 146, 204, 0.08); }
.compare-table thead .col-featured { color: var(--oxblood); }
.compare-table tbody tr { transition: background 0.25s ease; }
.compare-table tbody tr:hover { background: rgba(62, 146, 204, 0.14); }
.compare-table tbody tr:hover .col-featured { background: rgba(62, 146, 204, 0.22); }
.compare-table .yes { color: var(--teal); }
.compare-table .no { color: #555; }
.cmp-note { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.compare-price-row td { font-weight: 700; }
.cmp-price { color: var(--white); font-size: 0.9rem; }
.compare-note { max-width: 720px; margin: 28px auto 0; text-align: center; color: var(--text-muted); font-size: 0.82rem; }

/* Training system grid */
.system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.system-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.system-item:hover { border-color: var(--card-border-hover); background: var(--card-bg-hover); }
.system-item i { color: var(--oxblood); font-size: 1.1rem; width: 22px; text-align: center; }

/* Slim footer (nav & duplicate socials removed) */
.footer-grid.footer-slim { grid-template-columns: 2fr 1fr; margin-bottom: 40px; }

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

  .footer-grid.footer-slim { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .system-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   23. HOW-IT-WORKS TIMELINE (booking)
   =================================================== */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.timeline-track {
  position: absolute;
  top: 19px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--card-border), var(--oxblood), var(--card-border));
  z-index: 0;
}
.timeline-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.timeline-node {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--black); color: var(--oxblood);
  border: 2px solid var(--oxblood);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; margin-bottom: 16px;
  box-shadow: 0 0 0 5px rgba(62,146,204,0.12);
}
.timeline-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  width: 100%;
  transition: var(--transition);
}
.timeline-step:hover .timeline-card { border-color: var(--card-border-hover); background: var(--card-bg-hover); transform: translateY(-3px); }
.timeline-card h4 { font-size: 0.92rem; margin-bottom: 6px; }
.timeline-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline-track { top: 0; bottom: 0; left: 19px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, var(--card-border), var(--oxblood), var(--card-border)); }
  .timeline-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 18px; padding-bottom: 20px; }
  .timeline-node { margin-bottom: 0; flex-shrink: 0; }
  .timeline-card { }
}

/* ===================================================
   24. CLIENT TRANSFORMATIONS
   =================================================== */
.transform-list { display: flex; flex-direction: column; gap: 28px; }
.transform-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}
.transform-card:hover { border-color: var(--card-border-hover); }

/* photo and video side by side, name + text underneath */
/* Before and after side by side with an arrow between them, video and
   review text on the row underneath. */
/* One shared panel width for the photos and the video, plus one shared block
   width for both rows. Centring the two rows as a unit keeps the video under
   the "before" photo instead of drifting away from it. */
.transform-card {
  --panel: 360px;
  --pair-gap: 16px;
  --arrow: 44px;
  --block: calc(var(--panel) * 2 + var(--arrow) + var(--pair-gap) * 2);
}
.ba-pair {
  display: grid;
  grid-template-columns: var(--panel) auto var(--panel);
  justify-content: center;
  align-items: center;
  gap: var(--pair-gap);
  width: 100%;
  max-width: var(--block);
  margin-inline: auto;
}
.ba-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--rich-mahogany);
  border: 1px solid var(--card-border);
}
/* contain, not cover: client photos vary in aspect ratio and cropping a
   full-body before/after shot would cut off head or feet */
.ba-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.ba-arrow {
  width: var(--arrow); height: var(--arrow);
  flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  background:
    linear-gradient(var(--black), var(--black)) padding-box,
    linear-gradient(90deg,
      var(--oxblood), var(--orange), var(--oxblood),
      var(--orange), var(--oxblood)) border-box;
  background-size: auto, 200% 100%;
  border: 2px solid transparent;
  animation: glowSlide 3.5s linear infinite;
  box-shadow: 0 0 14px rgba(62,146,204,0.3), 0 0 18px rgba(244,96,54,0.2);
}

.transform-lower > * { min-width: 0; }
.transform-body { min-width: 0; overflow-wrap: break-word; }
.transform-lower {
  display: grid;
  grid-template-columns: var(--panel) 1fr;
  gap: 32px;
  align-items: center;
  width: 100%;
  max-width: var(--block);
  margin-inline: auto;
}
/* no video yet: the text takes the full block width instead of the narrow
   video column */
.transform-lower-textonly { grid-template-columns: 1fr; }
/* left aligned and the same width as the panel above it, not centred */
.transform-lower .transform-video-short { margin: 0; max-width: none; width: 100%; }
.ba-ph {
  aspect-ratio: 3/4;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: repeating-linear-gradient(45deg, rgba(62,146,204,0.05), rgba(62,146,204,0.05) 12px, rgba(62,146,204,0.09) 12px, rgba(62,146,204,0.09) 24px);
  border: 1px dashed var(--card-border);
  color: var(--text-muted); font-size: 0.72rem; letter-spacing: 0.05em;
}
.ba-ph i { font-size: 1.6rem; color: var(--oxblood); opacity: 0.7; }
.ba-tag {
  position: absolute; bottom: 8px; left: 8px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px; color: #fff;
}
.ba-tag-before { background: rgba(0,0,0,0.65); }
.ba-tag-after { background: var(--oxblood); }

.transform-video { border-radius: var(--radius); overflow: hidden; }
.transform-video iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
.video-ph {
  aspect-ratio: 16/9;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: rgba(0,0,0,0.25);
  border: 1px dashed var(--card-border);
  color: var(--text-muted); font-size: 0.72rem; letter-spacing: 0.05em;
}
.video-ph i { font-size: 1.6rem; color: var(--oxblood); opacity: 0.8; }

.transform-body .stars { margin-bottom: 12px; }
.transform-body h3 { margin-bottom: 4px; }
.transform-meta { display: block; font-size: 0.78rem; font-weight: 600; color: var(--oxblood); margin-bottom: 14px; }
.transform-quote { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; font-style: italic; }
.transform-quote + .transform-quote { margin-top: 12px; }

@media (max-width: 768px) {
  .transform-card { gap: 20px; }
  /* on a phone the pair stacks, so each photo gets the full width */
  .ba-pair { grid-template-columns: 1fr; gap: 12px; justify-items: stretch; }
  .ba-arrow { rotate: 90deg; margin: 2px auto; }
  .transform-lower { grid-template-columns: 1fr; gap: 20px; }
  .transform-lower .transform-video-short { max-width: 260px; margin: 0 auto; }
}
/* shrink the panels before the pair can overflow the card */
@media (max-width: 1100px) and (min-width: 769px) {
  .transform-card { --panel: 260px; }
}

/* ===================================================
   25. HOMEPAGE PHOTO STRIP: homogeneous tint
   =================================================== */
/* a blue band sits behind the whole strip, so the separate photos read as one
   block rather than four floating tiles */
.photo-strip-section {
  padding: 28px 0;
  overflow: hidden;
  background:
    radial-gradient(80% 120% at 50% 50%, rgba(62,146,204,0.28), transparent 75%),
    linear-gradient(180deg, var(--black) 0%, #0a2b4c 22%, var(--black-cherry) 50%, #0a2b4c 78%, var(--black) 100%);
}
/* No fixed height: each cell takes the photos' own 4/5 ratio, so at normal
   widths nothing is cropped at all. The cap only kicks in on very wide
   screens, where a mild crop beats a giant band. */
/* 1fr columns left each photo stranded at the left of a very wide track, so
   the row read as ragged. Fixed-width tracks with a real gap, centred as a
   block, keep the spacing even and identical on both pages. */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 368px));
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.photo-strip-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 460px;
}
.photo-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  /* these are standing shots, so keep the crop near the top: centred cuts
     the trainer's head off */
  object-position: center 10%;
  filter: grayscale(65%) brightness(0.82) contrast(1.05);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.photo-strip-item::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(5,26,48,0.20), rgba(5,26,48,0.55)), rgba(62,146,204,0.16);
  transition: opacity 0.6s ease;
}
.photo-strip-item:hover img { transform: scale(1.05); filter: grayscale(15%) brightness(1) contrast(1); }
.photo-strip-item:hover::after { opacity: 0.35; }

@media (max-width: 768px) {
  .photo-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .photo-strip-item { aspect-ratio: 4 / 5; max-height: none; }
}

/* ===================================================
   26. RECIPE PLACEHOLDERS + INSTAGRAM LINK
   =================================================== */
.recipe-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(62,146,204,0.16), rgba(5,26,48,0.55));
}
.recipe-ph i { font-size: 3.4rem; color: var(--oxblood); opacity: 0.9; transition: transform 0.5s ease; }
.recipe-card:hover .recipe-ph i { transform: scale(1.12) rotate(-4deg); }
.recipe-info span:nth-child(3) i { color: var(--oxblood); }
.recipe-ig {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 0.85rem; font-weight: 600; color: var(--oxblood);
  transition: var(--transition);
}
.recipe-ig:hover { color: var(--white); transform: translateX(3px); }
.recipe-links { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 16px; }
.recipe-links .recipe-ig { margin-top: 0; }
.recipe-yt {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: #ff4b3e;
  transition: var(--transition);
}
.recipe-yt:hover { color: var(--white); transform: translateX(3px); }

/* ===================================================
   27. TIMELINE STEP ICONS + single-column contacts
   =================================================== */
.timeline-icon {
  width: 40px; height: 40px; margin: 0 auto 10px;
  border-radius: 50%;
  background: rgba(62,146,204,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--oxblood); font-size: 1rem;
}
.timeline-step:hover .timeline-icon { background: rgba(62,146,204,0.22); }
@media (max-width: 900px) {
  .timeline-icon { margin: 0 0 10px; }
}

.contacts-single { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

/* ===================================================
   28. FOOTER CREDIT
   =================================================== */
.footer-credit {
  font-size: 0.8rem; color: var(--text-muted);
}
.footer-credit a {
  color: var(--text-muted);
  font-weight: 600;
  transition: var(--transition);
}
.footer-credit a:hover { color: var(--oxblood); }

/* ===================================================
   29. ATTENTION ANIMATIONS
   =================================================== */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62,146,204,0.5); }
  50%      { box-shadow: 0 0 0 12px rgba(62,146,204,0); }
}
.cta-strip .btn-primary,
.pulse-cta { animation: ctaPulse 2.6s ease-in-out infinite; }

@keyframes ribbonPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.07); }
}
.svc-ribbon { animation: ribbonPulse 1.9s ease-in-out infinite; transform-origin: right center; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.service-card.featured { animation: floatY 5s ease-in-out infinite; }
.service-card.featured:hover { animation-play-state: paused; }

/* subtle underline sweep on nav links */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, #7fc4ec, var(--oxblood), var(--orange));
  border-radius: 2px;
  transform: scaleX(0); transform-origin: right; transition: transform 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

/* staggered reveal for timeline + transform cards once visible */
.timeline.fade-up.visible .timeline-step { animation: fadeUpIn 0.6s ease both; }
.timeline.fade-up.visible .timeline-step:nth-child(2) { animation-delay: 0.08s; }
.timeline.fade-up.visible .timeline-step:nth-child(3) { animation-delay: 0.16s; }
.timeline.fade-up.visible .timeline-step:nth-child(4) { animation-delay: 0.24s; }
.timeline.fade-up.visible .timeline-step:nth-child(5) { animation-delay: 0.32s; }
.timeline.fade-up.visible .timeline-step:nth-child(6) { animation-delay: 0.40s; }
.timeline.fade-up.visible .timeline-step:nth-child(7) { animation-delay: 0.48s; }
@keyframes fadeUpIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .cta-strip .btn-primary, .pulse-cta, .svc-ribbon,
  .service-card.featured, .timeline.fade-up.visible .timeline-step { animation: none; }
}

/* ===================================================
   30. TRAINING LOCATION + MAP
   =================================================== */
.loc-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(62,146,204,0.07);
  border: 1px solid rgba(62,146,204,0.2);
  border-radius: 6px;
  color: var(--oxblood);
  font-size: 0.9rem; font-weight: 600;
  transition: var(--transition);
}
.loc-link:hover { background: rgba(62,146,204,0.15); transform: translateX(4px); color: var(--white); }
.loc-link i { font-size: 1.1rem; }

.map-embed {
  margin-top: 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

/* Full-width training-location map below booking panel & Calendly */
.location-block { margin-top: 48px; }
.map-embed-full iframe { height: 420px; }
@media (max-width: 768px) { .map-embed-full iframe { height: 300px; } }

/* 3-image variant of the tinted photo strip (About page) */
.photo-strip-3 { grid-template-columns: repeat(3, minmax(0, 368px)); }
@media (max-width: 768px) {
  .photo-strip-3 { grid-template-columns: repeat(3, minmax(0, 368px)); }
}

/* ===================================================
   31. NAV CTA BUTTON (highlight "Book a Consultation")
   =================================================== */
.nav-links a.nav-cta {
  position: relative;
  z-index: 0;
  isolation: isolate;
  /* overflow:hidden does nothing on an inline box, and without it the spinning
     gradient escapes across the whole header */
  display: inline-block;
  overflow: hidden;
  background: transparent;
  color: var(--white);
  padding: 9px 18px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
/* ::after normally draws the nav underline; here it becomes the dark face
   that hides everything inside the 2px ring */
.nav-links a.nav-cta::after {
  content: "";
  display: block;
  position: absolute;
  inset: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  width: auto;
  height: auto;
  z-index: -1;
  border-radius: inherit;
  background: #060a12;
  /* the underline rule collapses ::after with scaleX(0); undo that */
  transform: none;
}
.nav-links a.nav-cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 260%;
  aspect-ratio: 1;
  translate: -50% -50%;
  z-index: -2;
  background: conic-gradient(from 0deg,
    var(--oxblood), #ffffff, #cfe6f7,
    var(--oxblood), #ffffff, var(--oxblood));
  animation: borderRun 9s linear infinite;
}
/* identical to "Научи повече" on hover */
.nav-links a.nav-cta:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(#060a12, #060a12) padding-box,
    linear-gradient(90deg,
      var(--oxblood), #ffffff, #cfe6f7,
      var(--oxblood), #ffffff) border-box;
  background-size: auto, 200% 100%;
  animation: glowSlide 3s linear infinite;
  box-shadow: 0 0 22px rgba(62,146,204,0.5), 0 0 36px rgba(255,255,255,0.25);
}
.nav-links a.nav-cta:hover::after { background: #060a12; }
.nav-links a.nav-cta:hover::before { animation-duration: 4s; }
/* same dark face and turning blue-into-white ring as the desktop button */
.mobile-nav a.nav-cta {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
  color: var(--white);
  text-align: center;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 12px;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  box-shadow: 0 0 14px rgba(62,146,204,0.3);
}
.mobile-nav a.nav-cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 260%;
  aspect-ratio: 1;
  translate: -50% -50%;
  z-index: -2;
  background: conic-gradient(from 0deg,
    var(--oxblood), #ffffff, #cfe6f7,
    var(--oxblood), #ffffff, var(--oxblood));
  animation: borderRun 9s linear infinite;
}
.mobile-nav a.nav-cta::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background: #060a12;
}
.mobile-nav a.nav-cta:hover { padding-left: 12px; }
@media (prefers-reduced-motion: reduce) {
  .mobile-nav a.nav-cta::before { animation: none; }
}

/* ===================================================
   32. 404 PAGE
   =================================================== */
.error-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: var(--nav-height);
}
.error-code {
  font-size: clamp(6rem, 22vw, 14rem);
  font-weight: 900;
  line-height: 1;
  color: var(--oxblood);
  letter-spacing: -0.04em;
  text-shadow: 0 0 60px rgba(62,146,204,0.4);
}

/* ===================================================
   33. STICKY MOBILE CTA BAR
   =================================================== */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  display: none;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(0,0,9,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(62,146,204,0.3);
}
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--oxblood);
  color: var(--white);
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 13px;
  border-radius: var(--radius);
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  .go-top { bottom: 76px; }
}

/* ===================================================
   34. COOKIE CONSENT BANNER
   =================================================== */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 1200;
  max-width: 720px; margin: 0 auto;
  background: var(--rich-mahogany);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.85rem; color: var(--text-muted); flex: 1; min-width: 240px; margin: 0; }
.cookie-banner p a { color: var(--oxblood); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions button {
  padding: 10px 20px; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  transition: var(--transition);
}
.cookie-accept { background: var(--oxblood); color: var(--white); }
.cookie-accept:hover { background: var(--black-cherry); }
.cookie-decline { background: transparent; color: var(--text-muted); border: 1px solid var(--card-border); }
.cookie-decline:hover { color: var(--white); border-color: var(--white); }
@media (max-width: 768px) { .cookie-banner { bottom: 84px; } }

/* ===================================================
   35. LEGAL PAGE + FOOTER LEGAL LINK
   =================================================== */
.footer-legal-link { color: var(--text-muted); text-decoration: underline; transition: var(--transition); }
.footer-legal-link:hover { color: var(--oxblood); }
.legal-content { max-width: 820px; }
.legal-content .legal-updated { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 32px; }
.legal-content h3 { margin: 32px 0 10px; color: var(--white); }
.legal-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 12px; }
.legal-content li { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 8px; }
.legal-content a { color: var(--oxblood); text-decoration: underline; }

/* ===================================================
   36. INTERACTIVE BEFORE / AFTER (click to reveal)
   =================================================== */
.ba-toggle {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--card-border);
  background: var(--rich-mahogany);
  user-select: none;
  max-width: 420px;
  width: 100%;
  margin-inline: auto;
}
/* contain, not cover: client photos vary in aspect ratio and cropping a
   full-body before/after shot would cut off head or feet */
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; transition: opacity 0.5s ease; }
.ba-after { opacity: 0; }
.ba-toggle.show-after .ba-before { opacity: 0; }
.ba-toggle.show-after .ba-after { opacity: 1; }

.ba-state {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; color: #fff;
  transition: opacity 0.4s ease;
}
.ba-state-before { background: rgba(0,0,0,0.7); }
.ba-state-after { background: var(--oxblood); opacity: 0; }
.ba-toggle.show-after .ba-state-before { opacity: 0; }
.ba-toggle.show-after .ba-state-after { opacity: 1; }

.ba-hint {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.75rem; font-weight: 600; color: #fff;
  background: rgba(0,0,0,0.62); padding: 8px 15px; border-radius: 100px;
  transition: opacity 0.4s ease;
  animation: baHintPulse 1.8s ease-in-out infinite;
}
.ba-toggle.show-after .ba-hint { opacity: 0; pointer-events: none; }
@keyframes baHintPulse { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-4px); } }
@media (prefers-reduced-motion: reduce) { .ba-hint { animation: none; } }

/* ===================================================
   37. COACH MOTTO BAND
   =================================================== */
.motto-band {
  background: linear-gradient(135deg, rgba(62,146,204,0.10), rgba(5,26,48,0.4));
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  text-align: center;
}
.motto-band .container { max-width: 900px; }
.motto-quote {
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.motto-quote .accent { color: var(--oxblood); }
.motto-mark { font-size: 2.6rem; color: var(--oxblood); opacity: 0.5; line-height: 1; margin-bottom: 8px; display: block; }
.motto-by { margin-top: 20px; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }

/* ===================================================
   38. INSTAGRAM EMBEDS
   =================================================== */
.ig-embeds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.ig-embeds .instagram-media {
  min-width: 300px !important;
  max-width: 340px !important;
  flex: 1 1 300px;
  margin: 0 !important;
}

/* ===================================================
   39. EXTRA ANIMATIONS (1–15)
   =================================================== */

/* 1. Hero entrance (staggered) + Ken Burns background */
.hero { overflow: hidden; }
.hero-content.fade-up.visible > * { animation: heroIn 0.7s cubic-bezier(0.4,0,0.2,1) both; }
.hero-content.fade-up.visible > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content.fade-up.visible > *:nth-child(2) { animation-delay: 0.18s; }
.hero-content.fade-up.visible > *:nth-child(3) { animation-delay: 0.31s; }
.hero-content.fade-up.visible > *:nth-child(4) { animation-delay: 0.44s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* 2. Button shine on hover */
.btn::before {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 75%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease; z-index: 0; pointer-events: none;
}
.btn:hover::before { left: 135%; }

/* 3. Hero scroll-down indicator */
.hero-scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,0.7); font-size: 1.1rem;
  animation: scrollBounce 1.8s ease-in-out infinite; cursor: pointer;
}
.hero-scroll:hover { color: #fff; }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* 4. Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--oxblood), var(--orange));
  z-index: 1100; transition: width 0.1s linear;
}

/* 5. Divider draw-in on reveal */
.fade-up .divider { transform: scaleX(0); transform-origin: left; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1) 0.15s; }
.fade-up .divider.centered { transform-origin: center; }
.fade-up.visible .divider { transform: scaleX(1); }

/* 6. Comparison table rows cascade + featured header pulse */
.compare-wrap.fade-up.visible tbody tr { animation: rowIn 0.5s ease both; }
.compare-wrap.fade-up.visible tbody tr:nth-child(1){animation-delay:.05s}
.compare-wrap.fade-up.visible tbody tr:nth-child(2){animation-delay:.10s}
.compare-wrap.fade-up.visible tbody tr:nth-child(3){animation-delay:.15s}
.compare-wrap.fade-up.visible tbody tr:nth-child(4){animation-delay:.20s}
.compare-wrap.fade-up.visible tbody tr:nth-child(5){animation-delay:.25s}
.compare-wrap.fade-up.visible tbody tr:nth-child(6){animation-delay:.30s}
.compare-wrap.fade-up.visible tbody tr:nth-child(7){animation-delay:.35s}
.compare-wrap.fade-up.visible tbody tr:nth-child(8){animation-delay:.40s}
.compare-wrap.fade-up.visible tbody tr:nth-child(9){animation-delay:.45s}
.compare-wrap.fade-up.visible tbody tr:nth-child(n+10){animation-delay:.50s}
@keyframes rowIn { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }
.compare-table thead .col-featured { animation: featPulse 2.6s ease-in-out infinite; }
@keyframes featPulse { 0%,100% { background: rgba(62,146,204,0.06); } 50% { background: rgba(62,146,204,0.18); } }

/* 7. System grid icon hover + pop-in */
.system-item i { transition: transform 0.3s ease; }
.system-item:hover i { transform: rotate(-8deg) scale(1.15); }
.system-item.fade-up.visible { animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes popIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* 8. FAQ accordion: chevron rotate + content fade */
.faq-item summary .fa-chevron-down { transition: transform 0.3s ease; }
.faq-item[open] summary .fa-chevron-down { transform: rotate(180deg); }
.faq-item[open] > p { animation: faqIn 0.35s ease both; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* 8b. Shared accordion card (FAQ page + services page)
   faq.php used to carry these rules as inline styles on every <details>. */
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
/* the padding lives on <summary>, not on <details>: otherwise the card's own
   padding is a dead zone and the first click there does nothing, which reads
   as needing a double click */
.faq-item > summary { padding: 20px 24px; }
.faq-item > p,
.faq-item > ul,
.faq-item > .quote-translation { padding: 0 24px 20px; }
.faq-item > p + p,
.faq-item > .faq-bullets { padding-top: 0; }
.faq-item:hover { border-color: var(--card-border-hover); }
.faq-item summary {
  font-weight: 600;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .fa-chevron-down { color: var(--oxblood); font-size: 0.8rem; flex-shrink: 0; }
.faq-item > p { color: var(--text-muted); margin-top: 14px; font-size: 0.9rem; line-height: 1.7; }
.faq-item > summary + p { margin-top: 0; }
.svc-acc-icon { color: var(--oxblood); width: 20px; margin-right: 10px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item > p + p { margin-top: 12px; }
.faq-bullets { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.faq-bullets li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.faq-bullets li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.6em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--oxblood);
}
.faq-bullets strong { color: var(--white); font-weight: 600; }

/* Services page: one block per service */
.svc-block {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.svc-block-head { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.svc-block-head .svc-icon { flex-shrink: 0; margin-bottom: 0; }
.svc-lede-block { margin: 24px 0 36px; max-width: 760px; }
.svc-lede-block p { color: var(--text-muted); font-size: 0.95rem; }
.svc-lede-block p + p { margin-top: 14px; }
.svc-sub { font-size: 1.05rem; margin-bottom: 18px; }
.svc-acc-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.svc-features-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }

@media (max-width: 768px) {
  .svc-block { padding: 24px 20px; }
  .svc-block-head { gap: 14px; }
  .svc-features-wide { grid-template-columns: 1fr; }
}

/* 9. Card hover lift (recipe / service / generic) */
.recipe-card, .card { transition: var(--transition), box-shadow 0.35s ease; }
.recipe-card:hover, .card:hover { box-shadow: 0 18px 40px rgba(0,0,0,0.35); }

/* 10. Stat number pop when revealed */
.stat-item.fade-up.visible .stat-number { animation: statPop 0.6s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes statPop { 0% { transform: scale(0.7); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }

/* 11. Motto accent underline draw */
/* an absolutely positioned bar only draws on the last line fragment of a
   wrapped inline element, so use a real text underline instead */
.motto-quote .accent {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.7s ease 0.3s;
}
.motto-band.fade-up.visible .accent { text-decoration-color: var(--oxblood); }

/* 12. Transformation cards cascade */
.transform-card.fade-up.visible { animation: fadeUpIn 0.6s ease both; }

/* 13. Navbar hide on scroll down */
.navbar { transition: var(--transition), transform 0.4s ease; }
.navbar.nav-hidden { transform: translateY(-100%); }

/* 14. Mobile CTA slide-in */
.mobile-cta-bar { transform: translateY(120%); transition: transform 0.4s ease; }
.mobile-cta-bar.visible { transform: translateY(0); }

/* 15. Language switch crossfade */
body { transition: opacity 0.2s ease; }
body.lang-switching { opacity: 0.45; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-content.fade-up.visible > *, .hero-scroll,
  .compare-wrap.fade-up.visible tbody tr, .compare-table thead .col-featured,
  .system-item.fade-up.visible, .faq-item[open] > p,
  .stat-item.fade-up.visible .stat-number, .transform-card.fade-up.visible {
    animation: none !important;
  }
  .btn::before { display: none; }
}

/* ===================================================
   40. COMPARISON TABLE: MOBILE OPTIMISATION
   =================================================== */
@media (max-width: 600px) {
  .compare-table { min-width: 0; }               /* no horizontal scroll */
  .compare-wrap { overflow-x: visible; }
  .compare-table th,
  .compare-table td { padding: 10px 6px; }
  .compare-table thead th { font-size: 0.72rem; line-height: 1.25; }
  .compare-table th:first-child,
  .compare-table td:first-child { font-size: 0.74rem; line-height: 1.3; padding-left: 10px; }
  .compare-table td:not(:first-child) { width: 56px; }
  .compare-table .yes, .compare-table .no { font-size: 0.85rem; }
  .cmp-note { font-size: 0.6rem; }
  .cmp-price { font-size: 0.72rem; }
  .compare-price-row td { font-size: 0.74rem; }
}


/* Vertical YouTube Shorts inside transformation cards */
.transform-video-short { max-width: 300px; width: 100%; margin: 0 auto; }
.transform-video-short iframe { aspect-ratio: 9 / 16; height: auto; }

/* ===================================================
   42. SAMPLE WORKOUT (homepage video)
   =================================================== */
.sample-workout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
}
.sample-workout-video .transform-video-short { max-width: 340px; }
@media (max-width: 768px) {
  .sample-workout { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .sample-workout .divider { margin-left: auto; margin-right: auto; }
  .sample-workout-video .transform-video-short { max-width: 280px; }
}

/* ===================================================
   43. NAV LOGO IMAGE
   =================================================== */
.nav-logo { flex-direction: row; align-items: center; gap: 22px; flex-shrink: 0; }
.nav-logo-img {
  height: 68px; width: auto; display: block; flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: row; align-items: center; gap: 14px; white-space: nowrap; }
.nav-logo-text .nav-logo-company { position: relative; padding-left: 14px; }
.nav-logo-text .nav-logo-company::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 15px; background: rgba(255, 255, 255, 0.28);
}
/* on narrower desktops (menu visible) drop the company line so the one-row logo never crowds the menu */
@media (min-width: 1025px) and (max-width: 1279px) {
  .nav-logo-text .nav-logo-company { display: none; }
}
@media (max-width: 480px) {
  .nav-logo-img { height: 52px; }
  .nav-logo-text { display: none; }   /* keep just the logo on very small screens */
}

/* ===================================================
   32. ABOUT PAGE BLOCKS
   =================================================== */
.about-questions { display: flex; flex-direction: column; gap: 6px; margin: 4px 0 16px; }
.about-questions li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.about-questions li::before {
  content: "";
  position: absolute;
  left: 3px; top: 0.62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--oxblood), var(--orange));
}
.about-prose { max-width: 780px; margin: 0 auto; }
.about-prose p { color: var(--text-muted); }
.about-prose p + p { margin-top: 16px; }
.about-prose .about-questions { margin-top: 18px; }

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-grid .card { padding: 28px 24px; }
.trust-grid .highlight-icon { margin-bottom: 16px; }
.trust-grid h3 { font-size: 1rem; margin-bottom: 10px; color: var(--white); }
.trust-grid p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

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

/* ===================================================
   33. ANIMATED GLOW GRADIENT BORDER
   Logo blue (#3e92cc) into logo orange (#f46036).
   =================================================== */

/* The border animates by sliding an oversized gradient sideways, which works
   in every browser, with no dependency on @property support. */
@keyframes glowSlide {
  from { background-position: 0 0, 0% 50%; }
  to   { background-position: 0 0, 200% 50%; }
}
/* Buttons: dark face with a fully lit gradient ring turning around it.
   A large square conic gradient spins behind the button, .btn's
   overflow:hidden clips it to the button shape, and ::after covers everything
   inside the 2px border so only the ring shows. Rotating an element rather
   than animating a conic angle means no @property dependency, so it moves in
   every browser. The halo is a box-shadow, which overflow:hidden cannot clip. */
@keyframes borderRun { to { rotate: 1turn; } }

.btn-primary,
.btn-lg.btn-primary {
  position: relative;
  z-index: 0;
  isolation: isolate;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 10px;
  color: var(--white);
  box-shadow: 0 0 18px rgba(62,146,204,0.35), 0 0 34px rgba(244,96,54,0.20);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 260%;
  aspect-ratio: 1;
  translate: -50% -50%;
  z-index: -2;
  background: conic-gradient(from 0deg,
    var(--oxblood), var(--orange), #ffd2bd,
    var(--oxblood), var(--orange), var(--oxblood));
  animation: borderRun 9s linear infinite;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background: #060a12;
  transition: background 0.35s ease;
}
.btn-primary:hover {
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(62,146,204,0.6), 0 0 48px rgba(244,96,54,0.4);
}
.btn-primary:hover::after { background: #0b1524; }
.btn-primary:hover::before { animation-duration: 4s; }

/* "Прочети повече": identical to the primary button */
.btn-secondary::before,
.btn-outline::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 260%;
  aspect-ratio: 1;
  translate: -50% -50%;
  z-index: -2;
  animation: borderRun 9s linear infinite;
}
.btn-secondary,
.btn-outline {
  position: relative;
  z-index: 0;
  isolation: isolate;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.btn-secondary::before {
  background: conic-gradient(from 0deg,
    var(--oxblood), var(--orange), #ffd2bd,
    var(--oxblood), var(--orange), var(--oxblood));
}
/* "Научи повече": blue into white at rest */
.btn-outline::before {
  background: conic-gradient(from 0deg,
    var(--oxblood), #ffffff, #cfe6f7,
    var(--oxblood), #ffffff, var(--oxblood));
}
/* On hover the rotating slice gives way to a border-box gradient, which lights
   the entire ring at once instead of only the arc the conic happens to cover. */
.btn-primary:hover::before,   .btn-primary:active::before,
.btn-secondary:hover::before, .btn-secondary:active::before,
.btn-outline:hover::before,   .btn-outline:active::before,
.nav-links a.nav-cta:hover::before { opacity: 0; }

.btn-primary:hover,   .btn-primary:active,
.btn-secondary:hover, .btn-secondary:active {
  background:
    linear-gradient(#060a12, #060a12) padding-box,
    linear-gradient(90deg,
      var(--oxblood), var(--orange), var(--oxblood),
      var(--orange), var(--oxblood)) border-box;
  background-size: auto, 200% 100%;
  animation: glowSlide 3s linear infinite;
}
/* "Научи повече" keeps blue into white, with no orange in it */
.btn-outline:hover, .btn-outline:active {
  background:
    linear-gradient(#060a12, #060a12) padding-box,
    linear-gradient(90deg,
      var(--oxblood), #ffffff, #cfe6f7,
      var(--oxblood), #ffffff) border-box;
  background-size: auto, 200% 100%;
  animation: glowSlide 3s linear infinite;
  box-shadow: 0 0 26px rgba(62,146,204,0.5), 0 0 44px rgba(255,255,255,0.3);
}
.btn-secondary::after,
.btn-outline::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background: #060a12;
  transition: background 0.35s ease;
}
.btn-secondary { box-shadow: 0 0 18px rgba(62,146,204,0.30), 0 0 34px rgba(244,96,54,0.18); }
.btn-outline  { box-shadow: 0 0 18px rgba(62,146,204,0.30), 0 0 30px rgba(255,255,255,0.12); }
.btn-secondary:hover,
.btn-outline:hover { transform: translateY(-2px); }
.btn-secondary:hover { box-shadow: 0 0 26px rgba(62,146,204,0.6), 0 0 48px rgba(244,96,54,0.4); }

.btn-secondary:hover::after,
.btn-outline:hover::after { background: #0b1524; }
.btn-secondary:hover::before,
.btn-outline:hover::before { animation-duration: 4s; }

/* Accordions and panels: masked ring so the translucent card fill stays intact. */
.glow-ring, .faq-item, .svc-block { position: relative; }
.glow-ring::before, .faq-item::before, .svc-block::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg,
    var(--oxblood), var(--orange), var(--oxblood),
    var(--orange), var(--oxblood));
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  animation: ringSlide 4s linear infinite;
}
@keyframes ringSlide {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}
.svc-block::before { opacity: 0.55; }
.faq-item[open]::before { opacity: 1; }
.faq-item[open] { box-shadow: 0 0 22px rgba(62,146,204,0.18); }
/* hover-only styling stays behind a hover query: on a touch screen the first
   tap only triggers the hover state, so the accordion needed a second tap */
@media (hover: hover) {
  .glow-ring:hover::before,
  .faq-item:hover::before,
  .svc-block:hover::before { opacity: 1; }
  .faq-item:hover { box-shadow: 0 0 22px rgba(62,146,204,0.18); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary, .btn-primary::before, .btn-primary:hover::before, .ba-arrow, .go-top, .go-top::before,
  .glow-ring::before, .faq-item::before, .svc-block::before { animation: none; }
}

.svc-apps-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  margin-bottom: 40px;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid rgba(62, 146, 204, 0.45);
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}
.svc-apps-note i { color: var(--oxblood); margin-top: 3px; }
.svc-apps-note strong { color: var(--white); font-weight: 600; }

/* How-it-works timeline: same blue-to-orange sweep as the buttons */
.timeline-track {
  background: linear-gradient(90deg,
    var(--card-border), var(--oxblood), var(--orange), var(--oxblood), var(--card-border));
  background-size: 200% 100%;
  animation: ringSlide 6s linear infinite;
}
.timeline-node {
  background:
    linear-gradient(var(--black), var(--black)) padding-box,
    linear-gradient(90deg,
      var(--oxblood), var(--orange), var(--oxblood),
      var(--orange), var(--oxblood)) border-box;
  background-size: auto, 200% 100%;
  border: 2px solid transparent;
  animation: glowSlide 3.5s linear infinite;
  box-shadow: 0 0 0 5px rgba(62,146,204,0.10), 0 0 14px rgba(244,96,54,0.20);
}
.timeline-card { position: relative; }
.timeline-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg,
    var(--oxblood), #ffffff, #cfe6f7,
    var(--oxblood), #ffffff);
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  animation: ringSlide 4s linear infinite;
}
@media (hover: hover) { .timeline-step:hover .timeline-card::before { opacity: 1; } }

@media (max-width: 900px) {
  .timeline-track {
    background: linear-gradient(180deg,
      var(--card-border), var(--oxblood), var(--orange), var(--oxblood), var(--card-border));
    background-size: 100% 200%;
    animation: trackSlideY 6s linear infinite;
  }
}
@keyframes trackSlideY {
  from { background-position: 50% 0%; }
  to   { background-position: 50% 200%; }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-track, .timeline-node, .timeline-card::before { animation: none; }
}

/* "Limited spots" badge on the mentorship block */
.svc-limited {
  margin-left: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(244, 96, 54, 0.12);
  border: 1px solid rgba(244, 96, 54, 0.45);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(244, 96, 54, 0.18);
}
.svc-limited i { font-size: 0.8rem; }

@media (max-width: 600px) {
  .svc-block-head { flex-wrap: wrap; }
  .svc-limited { margin-left: 0; }
}

/* Original review stays; the translation sits under it, clearly labelled,
   so nobody is shown words the reviewer did not write. */
.quote-translation {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(62, 146, 204, 0.3);
}
.translation-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--oxblood);
  opacity: 0.85;
}
.quote-translation .transform-quote,
.quote-translation .review-text { opacity: 0.9; }

/* Full-bleed intro video under the stats bar */
.intro-video-section { padding: 0; background: var(--black); }
.intro-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 78vh;
  overflow: hidden;
  border-top: 1px solid rgba(62, 146, 204, 0.25);
  border-bottom: 1px solid rgba(62, 146, 204, 0.25);
}
.intro-video iframe,
.intro-video video { width: 100%; height: 100%; border: 0; display: block; object-fit: cover; background: var(--black); }
.intro-video-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
  background:
    radial-gradient(60% 70% at 50% 40%, rgba(62,146,204,0.10), transparent 70%),
    repeating-linear-gradient(45deg,
      rgba(62,146,204,0.04), rgba(62,146,204,0.04) 14px,
      rgba(244,96,54,0.04) 14px, rgba(244,96,54,0.04) 28px);
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.intro-video-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: block;
}
.intro-video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-video-facade .play { position: absolute; top: 50%; left: 50%; translate: -50% -50%; }
.intro-video-facade:hover .play { box-shadow: 0 0 34px rgba(62,146,204,0.6); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* the still is cropped to a portrait frame on phones; once the real player
   loads the frame returns to 16:9 so none of the video is cut off */
@media (max-width: 768px) {
  .intro-video { aspect-ratio: 4 / 5; }
  .intro-video.playing { aspect-ratio: 16 / 9; }
}

.intro-video-ph .play,
.intro-video-facade .play {
  width: 74px; height: 74px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  background:
    linear-gradient(#060a12, #060a12) padding-box,
    conic-gradient(from 0deg,
      var(--oxblood), var(--orange), #ffd2bd,
      var(--oxblood), var(--orange), var(--oxblood)) border-box;
  border: 2px solid transparent;
  animation: borderRun 9s linear infinite;
  box-shadow: 0 0 22px rgba(62,146,204,0.35);
}
@media (prefers-reduced-motion: reduce) { .intro-video-ph .play { animation: none; } }

/* Blue into white ring on the info cards: the "Healthy Life Method" grid on
   the landing page and both card grids at the end of the about page. */
.grid-4 > .card,
.grid-2 > .card,
.trust-grid > .card { position: relative; }
.grid-4 > .card::before,
.grid-2 > .card::before,
.trust-grid > .card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg,
    var(--oxblood), #ffffff, #cfe6f7, var(--oxblood), #ffffff);
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  animation: ringSlide 4s linear infinite;
}
@media (hover: hover) {
  .grid-4 > .card:hover::before,
  .grid-2 > .card:hover::before,
  .trust-grid > .card:hover::before { opacity: 1; }
  .grid-4 > .card:hover,
  .grid-2 > .card:hover,
  .trust-grid > .card:hover {
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(62,146,204,0.15), 0 0 24px rgba(255,255,255,0.10);
  }
}
@media (prefers-reduced-motion: reduce) {
  .grid-4 > .card::before, .grid-2 > .card::before,
  .trust-grid > .card::before { animation: none; }
}

/* Intro video, before the player loads */
.intro-video-facade img {
  animation: introDrift 24s ease-in-out infinite alternate;
}
@keyframes introDrift {
  from { scale: 1; }
  to   { scale: 1.07; }
}
/* a ring keeps expanding out of the play button to say "this is tappable" */
.intro-video-facade .play::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(62, 146, 204, 0.65);
  animation: playPulse 2.6s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
  pointer-events: none;
}
@keyframes playPulse {
  0%       { scale: 1;   opacity: 0.75; }
  70%, 100% { scale: 2.1; opacity: 0; }
}
.intro-video-facade .play { transition: scale 0.3s ease, box-shadow 0.3s ease; }
.intro-video-facade:hover .play { scale: 1.07; }

/* between the tap and the player appearing */
.intro-video.loading::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 54px; height: 54px;
  margin: -27px 0 0 -27px;
  border-radius: 50%;
  border: 3px solid rgba(62, 146, 204, 0.25);
  border-top-color: var(--orange);
  animation: introSpin 0.8s linear infinite;
  z-index: 2;
  pointer-events: none;
}
@keyframes introSpin { to { rotate: 360deg; } }

@media (prefers-reduced-motion: reduce) {
  .intro-video-facade img,
  .intro-video-facade .play::after { animation: none; }
}
