/* ============================================================
   CrossTrainer — Main Stylesheet
   Design tokens from original Elementor CSS
   ============================================================ */

/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* --- Local Fonts --- */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/poppins-pxieyp8kv8jhgfvrjjbecmne.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/poppins-pxibyp8kv8jhgfvrlbt5z1jlfc-k.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/poppins-pxibyp8kv8jhgfvrldz8z1jlfc-k.woff2') format('woff2');
}

/* --- Design Tokens --- */
:root {
  --primary: #3B82F6;
  --primary-end: #60A5FA;
  --accent: #1E88E5;
  --accent-2: #0D6EBF;
  --bg-dark: #0A0A0F;
  --bg-surface: #12121C;
  --bg-card: #1A1A2E;
  --bg-features: #12121C;
  --text-dark: rgba(255, 255, 255, 0.75);
  --text-black: #FFFFFF;
  --divider: rgba(255, 255, 255, 0.12);
  --stat-purple: rgba(139, 92, 246, 0.15);
  --stat-blue-accent: rgba(59, 130, 246, 0.15);
  --stat-green: rgba(16, 185, 129, 0.15);
  --stat-blue: rgba(30, 136, 229, 0.15);
  --font: 'Poppins', sans-serif;
  --radius-card: 20px;
  --radius-img: 10px 10px 10px 200px;
  --max-w: 1200px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-dark);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.site-header.scrolled {
  background: #0A0A0F;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.header-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 55px;
  width: auto;
  display: block;
}

.header-nav ul {
  display: flex;
  gap: 44px;
}

.nav-link {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  padding: 8px 0;
  position: relative;
  display: inline-block;
  transition: opacity 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover {
  opacity: 0.85;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero pages: header overlaps hero — no top padding on main.
   Inner pages add their own padding via .page-hero. */
main {
  padding-top: 0;
}

.page-hero {
  padding-top: calc(var(--header-h) + 60px);
}

/* --- HERO --- */
.hero {
  background:
    radial-gradient(ellipse at 75% 50%, rgba(30, 136, 229, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 80%, rgba(59, 130, 246, 0.10) 0%, transparent 50%),
    linear-gradient(135deg, #0A0A0F 0%, #0D1220 55%, #0A0A18 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--header-h) 40px 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  padding-bottom: 60px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.hero-content {
  padding-left: 20px;
}

.hero-badge img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: transform 0.2s;
}

.hero-badge:hover img {
  transform: translateY(-2px);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  filter: drop-shadow(0 20px 60px rgba(30, 136, 229, 0.2));
}

/* --- VIDEO SECTION --- */
.video-section {
  background: var(--bg-surface);
  padding: 80px 40px;
}

.video-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.video-title {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 40px;
  line-height: 1.3;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- STEPS (3-Step walkthrough) --- */
.steps {
  padding: 120px 40px;
}

.steps-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 160px;
}

.step:last-child {
  margin-bottom: 0;
}

.step.reverse {
  direction: rtl;
}

.step.reverse>* {
  direction: ltr;
}

.step-number {
  font-size: 99px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 4px;
}

.step-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.25;
}

.step-divider {
  border: none;
  border-top: 1px solid var(--divider);
  margin: 16px 0;
}

.step-body {
  font-size: 19px;
  line-height: 2.1em;
  color: var(--text-dark);
}

.step-image img {
  border-radius: var(--radius-img);
  width: 100%;
  max-width: 460px;
}

.step.reverse .step-image {
  text-align: right;
}

/* --- FEATURES GRID --- */
.features {
  background: var(--bg-surface);
  padding: 120px 40px 160px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features-title {
  font-size: 58px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 72px;
  line-height: 1;
}

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

/* --- Feature Card --- */
.feature-card {
  text-align: center;
}

.feature-card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(30, 136, 229, 0.2);
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover .feature-card-img {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 136, 229, 0.2);
  border-color: rgba(30, 136, 229, 0.5);
}

.feature-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 28px 0 12px;
}

.feature-card-body {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  padding: 0 12px;
}

/* --- STATS --- */
.stats {
  padding: 100px 40px;
  background: var(--bg-dark);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stats-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.25s;
}

.stat-box:hover {
  transform: translateY(-4px);
}

.stat-purple {
  background: var(--stat-purple);
}

.stat-tan {
  background: var(--stat-blue-accent);
}

.stat-green {
  background: var(--stat-green);
}

.stat-blue-stat {
  background: var(--stat-blue);
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.stats-right {}

.stats-community-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.stats-community-body {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.stats-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* --- FITNESS CAROUSEL --- */
.fitness-carousel-section {
  background: var(--bg-surface);
  padding: 100px 40px;
}

.fitness-carousel-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.fitness-carousel-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #FFFFFF;
}

.fitness-carousel-wrapper {
  overflow: hidden;
  border-radius: 12px;
}

.fitness-carousel-wrapper {
  overflow: hidden;
  border-radius: 12px;
  cursor: grab;
}

.fitness-carousel-wrapper.dragging {
  cursor: grabbing;
}

.fitness-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s ease;
}

.fitness-slide {
  flex-shrink: 0;
  width: calc(25% - 12px);
}

.fitness-slide img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  pointer-events: none;
  user-select: none;
}

.fitness-controls {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}

.fitness-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: none;
  color: var(--accent);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.fitness-btn:hover {
  background: var(--accent);
  color: white;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: var(--bg-dark);
  padding: 100px 40px;
}

.testimonials-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #FFFFFF;
}

.testimonials-slider {
  position: relative;
  min-height: 220px;
}

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

.testimonial.active {
  display: block;
}

.testimonial-stars {
  font-size: 28px;
  color: #f5a623;
  margin-bottom: 24px;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.testimonial-author {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.testimonials-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.2s;
}

.t-dot.active {
  background: var(--accent);
}



/* --- DOWNLOAD CTA --- */
.download-cta {
  padding: 50px 40px 80px;
  border-top: 1px solid var(--divider);
  background: var(--bg-surface);
  overflow: hidden;
}

.download-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.download-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.download-body {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.7);
}

.download-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.download-badge img {
  height: 52px;
  width: auto;
  transition: transform 0.2s;
}

.download-badge:hover img {
  transform: translateY(-3px);
}

.download-badge--play img {
  border-radius: 8px;
}

/* Review callout box */
.download-review-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(232, 130, 10, 0.1);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 28px;
  border-left: 4px solid var(--primary);
}

.download-review-star {
  font-size: 28px;
  color: #f5a623;
  line-height: 1;
  flex-shrink: 0;
}

.download-review-box p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* FatSecret attribution */
.download-fatsecret {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.download-fatsecret a {
  display: flex;
  align-items: center;
}

.download-fatsecret img {
  height: 28px;
  width: auto;
  transition: opacity 0.2s;
}

.download-fatsecret a:hover img {
  opacity: 0.8;
}

/* Right: device image bleeds to bottom */
.download-image {
  text-align: center;
}

.download-image img {
  max-width: 494px;
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-bottom: -4px;
}


/* --- INNER PAGES --- */
.page-hero {
  background: #181b2e;
  border-bottom: 1px solid rgba(96, 180, 255, 0.1);
  padding: calc(var(--header-h) + 40px) 40px 48px;
  text-align: center;
}

/* Force nav to solid black on inner pages */
.inner-page {
  background: #181b2e;
}

.inner-page .site-header {
  background: #0A0A0F !important;
  border-bottom: 1px solid rgba(96, 180, 255, 0.15);
}

.page-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.page-content {
  padding: 48px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin: 40px 0 16px;
}

.page-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: #FFFFFF;
}

.page-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.page-content ul,
.page-content ol {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 16px;
}

.page-content li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.75);
}

.page-content a {
  color: var(--accent);
  text-decoration: underline;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 40px 0;
}

.premium-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid var(--divider);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.premium-card h3 {
  color: #FFD700;
  margin-top: 0;
  word-spacing: 0.15em;
  letter-spacing: normal;
}

.premium-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* --- Feature/Premium Monitor Bezel (shared across pages) --- */
.feature-monitor {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 693px;
  transform-origin: center center;
}

.feature-monitor-bezel {
  width: 100%;
  max-width: 693px;
  padding: 12px;
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
  border-radius: 10px;
  border: 2px solid #4a4a4a;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(59, 130, 246, 0.1);
}

.feature-monitor-screen {
  width: 100%;
  aspect-ratio: 669 / 437;
  background: linear-gradient(135deg, #0a0a1a 0%, #141428 50%, #0a0a1a 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #1a1a2e;
}

.feature-monitor-placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.premium-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Stacked Premium Cards (vertical stacked layout, image left / text right) --- */
.premium-cards-stacked {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

/* --- PREMIUM SHOWCASE (Features page with monitor frames) --- */
.premium-showcase {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin: 40px 0;
}

.premium-feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius-card);
  padding: 40px;
}

.premium-feature-item:nth-child(even) {
  direction: rtl;
}

.premium-feature-item:nth-child(even) .premium-feature-content {
  direction: ltr;
}

.premium-feature-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.premium-feature-content p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

.premium-feature-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hover scale on feature monitor */
.premium-feature-image:hover .feature-monitor-bezel {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* --- PRIVACY / POLICY PAGE --- */
.page-hero-meta {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
}

.page-hero-badge {
  display: inline-block;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 14px;
  color: #fff;
}

.policy-intro {
  background: rgba(30, 136, 229, 0.1);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.policy-section {
  border-top: 1px solid #eee;
  padding: 36px 0;
}

.policy-section:last-child {
  border-bottom: 1px solid #eee;
}

.policy-section-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.policy-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 14px;
}

.policy-section p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}



/* --- FOOTER --- */
.site-footer {
  background: linear-gradient(180deg, #0D2A4A 0%, #1565A0 100%);
  color: white;
  padding: 80px 40px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  width: 400px;
  max-width: 100%;
  height: auto;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s, transform 0.2s;
}

.social-link:hover {
  color: white;
  transform: translateY(-2px);
}

.footer-links-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

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

.footer-links-col a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.footer-links-col a:hover {
  color: white;
}

.footer-download-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-badges img {
  height: 44px;
  width: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* --- RESPONSIVE TABLET --- */
@media (max-width: 1024px) {

  /* Keep header items inline at tablet */
  .header-inner {
    padding: 0 24px;
  }

  .header-nav ul {
    gap: 24px;
  }

  .nav-link {
    font-size: 16px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .hero-title {
    font-size: 40px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .step.reverse {
    direction: ltr;
  }

  .step-number {
    font-size: 60px;
  }

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

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

  .download-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-badges {
    justify-content: center;
  }

  .download-image {
    display: none;
  }

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

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

  /* Hero section flex layout for tablet and mobile */
  .ct-hero {
    margin-top: var(--header-h);
  }

  .ct-hero__banner-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 24px !important;
    padding: 80px 24px 80px !important;
    box-sizing: border-box !important;
    min-height: calc(100vh - var(--header-h)) !important;
    height: auto !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .ct-hero__banner-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 450px !important;
    object-fit: cover !important;
    z-index: 1 !important;
  }

  .ct-hero__monitor {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 0 auto 27px !important;
    z-index: 2 !important;
    flex-shrink: 0 !important;
  }

  .ct-hero__monitor-bezel {
    width: 297px !important;
  }

  .ct-hero__monitor-screen {
    height: 189px !important;
  }

  .ct-hero__tagline {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 580px !important;
    padding: 24px 16px !important;
    margin: 0 auto !important;
    z-index: 2 !important;
    order: 2 !important;
    flex-shrink: 0 !important;
  }

  .ct-hero__tagline-title {
    font-size: 48px !important;
  }

  .ct-hero__tagline-sub {
    font-size: 26px !important;
  }

  .ct-hero__btn-overlay {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: 2 !important;
    margin: 0 auto !important;
    justify-content: center !important;
    width: 100% !important;
    order: 3 !important;
    flex-shrink: 0 !important;
    display: flex !important;
  }

  .ct-hero__badge img {
    height: 44px;
  }

  /* Step layout overrides for tablet and mobile — moved after desktop defs for specificity */

  /* Premium card overrides for premium-features page */
  .premium-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .premium-card-image {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .feature-monitor-bezel {
    max-width: 620px;
  }

  .feature-monitor-screen {
    height: 365px;
  }

  .premium-card-content {
    text-align: center;
  }

  /* Premium feature items overrides for features page */
  .premium-feature-item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    text-align: center;
  }

  .premium-feature-item:nth-child(even) {
    direction: ltr;
  }

  .premium-feature-image {
    text-align: center;
  }

  .premium-feature-image img {
    margin: 0 auto;
    max-height: 450px;
    width: auto;
  }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 767px) {
  :root {
    --header-h: 70px;
  }

  /* Header */
  .header-inner {
    padding: 0 20px 8px;
  }

  .header-logo img {
    height: 64px;
  }

  .header-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-nav.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #0A0A0F;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header-nav.open ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .header-nav.open .nav-link {
    font-size: 24px;
    padding: 16px 40px;
    display: block;
  }

  /* Hero — clear the fixed nav */
  .hero {
    padding: calc(var(--header-h) + 40px) 20px 60px;
    min-height: auto;
  }

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

  .hero-content {
    padding-left: 0;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-image {
    display: none;
  }

  /* Steps */
  .steps {
    padding: 60px 20px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .step.reverse {
    direction: ltr;
  }

  .step-number {
    font-size: 40px;
  }

  .step-title {
    font-size: 24px;
  }

  /* Features */
  .features {
    padding: 60px 20px 80px;
  }

  .features-title {
    font-size: 36px;
  }

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

  /* Stats */
  .stats {
    padding: 60px 20px;
  }

  .stats-title {
    font-size: 36px;
  }

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

  .stat-number {
    font-size: 30px;
  }

  /* Carousel */
  .fitness-slide {
    width: calc(100% - 12px);
    flex-shrink: 0;
  }

  /* Download */
  .download-cta {
    padding: 60px 20px 60px;
  }

  .download-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .download-badges {
    justify-content: center;
  }

  .download-review-box {
    text-align: left;
  }

  .download-fatsecret {
    justify-content: center;
  }

  .download-image {
    display: none;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer {
    padding: 60px 20px 0;
  }

  .footer-logo {
    width: 260px;
  }

  /* Inner pages — clear fixed nav */
  .page-hero {
    padding: calc(var(--header-h) + 32px) 20px 36px;
  }

  .page-hero-title {
    font-size: 32px;
  }

  .page-content {
    padding: 32px 20px 60px;
  }

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

  /* Premium card mobile overrides */
  .premium-card {
    padding: 20px 16px;
    gap: 20px;
  }

  .premium-card-image {
    max-width: 340px;
    margin: 0 auto;
  }

  .feature-monitor-bezel {
    max-width: 510px;
    padding: 10px;
  }

  .feature-monitor-screen {
    height: 309px;
  }

  .feature-monitor-placeholder {
    font-size: 13px;
  }

  .premium-card h3 {
    font-size: 20px;
  }

  .premium-card-content p {
    font-size: 15px;
  }

  /* Premium cards stacked gap on mobile */
  .premium-cards-stacked {
    gap: 16px;
    margin: 24px 0;
  }

  /* Download buttons on mobile */
  .page-content>div[style*="display:flex"] {
    flex-direction: column;
    align-items: center;
  }

  .page-content>div[style*="display:flex"] img {
    height: 44px !important;
  }
}

/* --- FAQ PAGE --- */
.faq-intro {
  background: rgba(232, 130, 10, 0.1);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.faq-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--divider);
}

.faq-item {
  border: 1px solid var(--divider);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-item summary.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.faq-item summary.faq-question::-webkit-details-marker {
  display: none;
}

.faq-item summary.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary.faq-question {
  background: rgba(30, 136, 229, 0.1);
}

.faq-item[open] summary.faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.faq-answer p {
  margin: 0 0 10px;
}

.faq-answer em {
  color: #999;
  font-style: italic;
}

/* --- WHAT'S NEW PAGE --- */
.whats-new-intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.75;
}

.release {
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 28px 28px 20px;
  margin-bottom: 24px;
  background: var(--bg-card);
}

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

.release-version {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}

.release-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.release-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.release-badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.release-badge--new {
  background: rgba(30, 136, 229, 0.2);
  color: #7eb3ff;
}

.release-badge--improvement {
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
}

.release-badge--fix {
  background: rgba(59, 130, 246, 0.2);
  color: #60A5FA;
}

.release-notes {
  padding-left: 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.release-notes li {
  margin-bottom: 6px;
}

.whats-new-cta {
  background: rgba(30, 136, 229, 0.1);
  border-radius: 12px;
  padding: 28px;
  margin-top: 40px;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

/* --- WHATS NEW — HERITAGE CARD --- */
.wn-heritage-card {
  margin-bottom: 48px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(27, 0, 252, 0.18) 0%, rgba(30, 136, 229, 0.12) 100%);
  border: 1px solid rgba(30, 136, 229, 0.3);
  box-shadow: 0 4px 40px rgba(27, 0, 252, 0.15);
  overflow: hidden;
  position: relative;
}

.wn-heritage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-end) 100%);
}

.wn-heritage-card__inner {
  padding: 44px 48px;
}

.wn-heritage-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F5C842;
  background: rgba(245, 200, 66, 0.12);
  border: 1px solid rgba(245, 200, 66, 0.45);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(245, 200, 66, 0.4);
}

.wn-heritage-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1;
}

.wn-heritage-card__body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  max-width: 720px;
}

.wn-heritage-card__cta {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
}

.wn-heritage-card__cta a {
  color: var(--primary-end);
  text-decoration: none;
}

.wn-heritage-card__cta a:hover {
  text-decoration: underline;
}

/* --- WHATS NEW — RELEASE INTRO --- */
.release-intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  margin-top: 12px;
}

@media (max-width: 600px) {
  .wn-heritage-card__inner {
    padding: 28px 20px;
  }

  .wn-heritage-card__title {
    font-size: 38px;
  }
}



/* --- BACK TO TOP --- */

#backToTop {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-end) 100%);
  color: white;
  font-size: 28px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(27, 0, 252, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27, 0, 252, 0.45);
}

/* --- COOKIE BANNER --- */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #0d0d2b;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 40px;
  font-size: 14px;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookieBanner.visible {
  transform: translateY(0);
}

#cookieBanner.hidden {
  transform: translateY(100%);
}

#cookieBanner p {
  margin: 0;
}

#cookieBanner a {
  color: #7eb3ff;
  text-decoration: underline;
}

#cookieAccept {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-end));
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

#cookieAccept:hover {
  opacity: 0.85;
}

/* ═══════════════════════════════════════════
   NEW HOME PAGE SECTIONS
═══════════════════════════════════════════ */

/* HERO – full-width banner */
.ct-hero {
  width: 100%;
  margin-top: 0;
  background: #070710;
  display: block;
}

.ct-hero__banner-wrap {
  position: relative;
  width: 100%;
  display: block;
  line-height: 0;
}


.ct-hero__banner-img {
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}

.ct-hero__btn-overlay {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.ct-hero__badge img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6));
  transition: transform 0.2s;
}

.ct-hero__badge:hover img {
  transform: translateY(-3px);
}

/* HERO — Monitor screen outline (centered) */
.ct-hero__monitor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 1;
}

/* Monitor bezel */
.ct-hero__monitor-bezel {
  width: 802px;
  padding: 14px;
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
  border-radius: 12px;
  border: 2px solid #4a4a4a;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(59, 130, 246, 0.1);
}

/* Monitor screen area */
.ct-hero__monitor-screen {
  width: 100%;
  height: 491px;
  background: linear-gradient(135deg, #0a0a1a 0%, #141428 50%, #0a0a1a 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #1a1a2e;
}

.ct-hero__screen-placeholder {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.2);
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* HERO — Tagline text overlay (top-left of screen) */
.ct-hero__tagline {
  position: absolute;
  top: 12%;
  left: 8%;
  transform: none;
  z-index: 2;
  text-align: left;
  max-width: 480px;
  background: rgba(10, 10, 15, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 42px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.ct-hero__tagline-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.05;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.ct-hero__tagline-line {
  display: block;
}

.ct-hero__tagline-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #F4A460;
  line-height: 1.3;
  letter-spacing: 2px;
}

/* Store badge buttons */
.ct-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 10px 18px;
  text-decoration: none;
  color: white;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  min-width: 150px;
}

.ct-store-btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.ct-store-btn__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.ct-store-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.ct-store-btn__top {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ct-store-btn__main {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 600px) {
  .ct-hero__banner-img {
    height: 440px !important;
  }

  .ct-hero__tagline-title {
    font-size: 32px !important;
  }

  .ct-hero__tagline-sub {
    font-size: 18px !important;
  }

  .ct-hero__monitor {
    margin: 22px auto 22px !important;
  }

  .ct-hero__monitor-bezel {
    width: 270px !important;
  }

  .ct-hero__monitor-screen {
    height: 162px !important;
  }

  .ct-hero__monitor-stand {
    width: 26px !important;
    height: 20px !important;
  }

  .ct-hero__monitor-base {
    width: 70px !important;
    height: 5px !important;
  }

  .ct-hero__badge img {
    height: 38px !important;
  }
}

/* SECTION SHARED */
.ct-section__label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.ct-section__title {
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.15;
}

.ct-section__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* FEATURES */
.ct-features {
  background: var(--bg-surface);
  padding: 100px 40px;
  text-align: center;
}

.ct-features__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.ct-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.ct-card {
  background: var(--bg-card);
  border: 1px solid rgba(96, 180, 255, 0.55);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 0 1px rgba(96, 180, 255, 0.2),
    0 0 18px rgba(30, 136, 229, 0.25),
    0 0 40px rgba(30, 136, 229, 0.12);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.ct-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 180, 255, 0.9);
  box-shadow:
    0 0 0 1px rgba(96, 180, 255, 0.6),
    0 0 25px rgba(30, 136, 229, 0.6),
    0 0 60px rgba(30, 136, 229, 0.35),
    0 20px 50px rgba(0, 0, 0, 0.5);
}

.ct-card__img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 270px;
  overflow: hidden;
}

.ct-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ct-card:hover .ct-card__img-wrap img {
  transform: scale(1.04);
}

.ct-card__body-wrap {
  padding: 33px 36px 40px;
  flex: 1;
}

.ct-card__title {
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.ct-card__body {
  font-size: 21px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
}

/* THREE STEPS VIDEO */
.ct-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 72px;
  border: 1px solid rgba(30, 136, 229, 0.3);
  box-shadow: 0 0 0 1px rgba(30, 136, 229, 0.1), 0 0 40px rgba(30, 136, 229, 0.12);
}

.ct-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* THREE STEPS */
.ct-steps {
  background: var(--bg-dark);
  padding: 100px 40px;
  text-align: center;
}

.ct-steps__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.ct-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  text-align: left;
  margin-top: 108px;
}

.ct-step--reverse {
  direction: rtl;
}

.ct-step--reverse>* {
  direction: ltr;
}

.ct-step__number {
  font-size: 108px;
  font-weight: 500;
  color: var(--primary);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 18px;
}

.ct-step__title {
  font-size: 45px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1.2;
}

.ct-step__divider {
  border: none;
  border-top: 3px solid rgba(30, 136, 229, 0.6);
  box-shadow: 0 0 10px rgba(30, 136, 229, 0.5);
  margin-bottom: 30px;
  width: 90px;
}

.ct-step__body {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

.ct-step__image {
  border-bottom-left-radius: 60px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(30, 136, 229, 0.2), 0 0 40px rgba(30, 136, 229, 0.12);
  transition: box-shadow 0.3s;
  aspect-ratio: 1 / 1;
}

.ct-step__image:hover {
  box-shadow: 0 0 0 1px rgba(30, 136, 229, 0.5), 0 0 50px rgba(30, 136, 229, 0.3);
}

.ct-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 600px) {
  .ct-step {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
    text-align: center;
  }

  .ct-step__image {
    width: 100%;
    min-width: 0;
    order: -1;
    aspect-ratio: auto;
  }

  .ct-step__content {
    width: 100%;
    min-width: 0;
  }

  .ct-step--reverse {
    direction: ltr;
  }

  .ct-step__number {
    font-size: 48px;
  }

  .ct-step__divider {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Tablet + mobile step overrides — placed after desktop defs to win specificity */
@media (max-width: 1024px) {
  .ct-step {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
    text-align: center;
  }

  .ct-step__image {
    width: 100%;
    min-width: 0;
    order: -1;
    aspect-ratio: auto;
  }

  .ct-step__content {
    width: 100%;
    min-width: 0;
  }

  .ct-step--reverse {
    direction: ltr;
  }

  .ct-step__number {
    font-size: 60px;
  }

  .ct-step__divider {
    margin-left: auto;
    margin-right: auto;
  }
}

/* STATS */
.ct-stats {
  background: var(--bg-dark);
  padding: 80px 40px;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.ct-stats__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.ct-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 24px;
}

.ct-stat__number {
  font-size: 52px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--primary), var(--primary-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.ct-stat__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.ct-stats__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
}

/* TESTIMONIALS */
.ct-testimonials {
  background: var(--bg-surface);
  padding: 100px 40px;
  text-align: center;
}

.ct-testimonials__inner {
  max-width: 760px;
  margin: 0 auto;
}

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

.ct-testimonial.active {
  display: block;
}

.ct-testimonial__stars {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 20px;
}

.ct-testimonial__quote {
  font-size: 19px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.ct-testimonial__author {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.ct-testimonials__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}

/* CTA BANNER */
.ct-cta {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 130, 10, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(30, 136, 229, 0.12) 0%, transparent 55%),
    var(--bg-dark);
  padding: 80px 40px;
  border-top: 1px solid var(--divider);
}

.ct-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ct-cta__image {
  display: flex;
  justify-content: center;
}

.ct-cta__image img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 20px 50px rgba(30, 136, 229, 0.2));
}

.ct-cta__title {
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.ct-cta__body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 36px;
}

.ct-cta__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ct-badge img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: transform 0.2s;
}

.ct-badge:hover img {
  transform: translateY(-2px);
}

.ct-cta__fatsecret {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.ct-cta__fatsecret a {
  display: flex;
  align-items: center;
}

.ct-cta__fatsecret img {
  height: 26px;
  width: auto;
  opacity: 0.5;
}

/* RESPONSIVE – new sections */
@media (max-width: 900px) {
  .ct-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ct-hero__title {
    font-size: 42px;
  }

  .ct-hero__image {
    display: none;
  }

  .ct-hero__badges {
    justify-content: center;
  }

  .ct-hero__body {
    max-width: 100%;
  }

  .ct-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .ct-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ct-cta__image {
    display: none;
  }

  .ct-cta__badges {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .ct-cards {
    grid-template-columns: 1fr;
  }

  .ct-hero__title {
    font-size: 34px;
  }

  .ct-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .ct-stat__number {
    font-size: 36px;
  }
}

/* Coming Soon Toast */
.ct-coming-soon-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, var(--primary, #3B82F6), var(--primary-end, #60A5FA));
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.35);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ct-coming-soon-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}