/* ============================================================
   COUNTRYEDU — STYLESHEET
   Theme: Dark Grey + #00ED64 Neon Green
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;500;600;700;800&family=Nunito:wght@400;600;700;800&display=swap');

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

:root {
  --green: #00ED64;
  --green-dark: #00b84d;
  --green-light: #7fffc4;
  --dark: #111111;
  --dark-mid: #1a1a1a;
  --dark-light: #242424;
  --dark-card: #1e1e1e;
  --grey: #2c2c2c;
  --grey-mid: #3a3a3a;
  --white: #ffffff;
  --off-white: #f4f4f4;
  --light-bg: #1c1c1c;
  --text-dark: #e8e8e8;
  --text-mid: #aaaaaa;
  --text-light: #cccccc;
  --yellow: #ffd60a;
  --accent-green: #00ED64;
  --red-soft: #ef233c;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-read: 'Nunito', sans-serif;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-green: 0 4px 24px rgba(0, 237, 100, 0.35);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 74px;
  /* Space for sticky footer */
}

/* ===== UTILITY ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.padded {
  padding: 70px 0;
}

.highlight-teal {
  color: var(--green);
}

/* ===== SECTION THEMES ===== */
.section-white {
  background: var(--dark-mid);
}

.section-light {
  background: var(--dark-light);
}

.section-navy {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: var(--text-dark);
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-navy p {
  color: var(--text-light);
}

/* ===== HEADINGS ===== */
h1,
h2,
h3 {
  font-family: var(--font-head);
  letter-spacing: 1px;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: var(--white);
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--white);
}

p {
  margin-bottom: 10px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 30px;
}

.section-navy .section-sub {
  color: var(--text-light);
}

/* ===== TEXT TICKER ===== */
.text-ticker-wrap {
  background-color:var(--dark);;
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  border-bottom: 1px solid var(--green-dark);
}

.text-ticker {
  display: flex;
  gap: 40px;
  animation: scrollTicker 20s linear infinite;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
}

.text-ticker span {
  display: inline-flex;
  align-items: center;
}

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

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

/* ===== NAVBAR ===== */
.navbar {
  background: var(--dark);
  border-bottom: 2px solid var(--grey);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-shield {
  font-size: 2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 36px rgba(0, 237, 100, 0.5);
}

.btn-xl {
  font-size: 1.1rem;
  padding: 18px 44px;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.glow-btn {
  animation: greenGlow 2.5s ease-in-out infinite;
}

@keyframes greenGlow {

  0%,
  100% {
    box-shadow: 0 0 18px rgba(0, 237, 100, 0.4);
  }

  50% {
    box-shadow: 0 0 48px rgba(0, 237, 100, 0.85), 0 0 80px rgba(0, 184, 77, 0.35);
  }
}

.pulse {
  animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 237, 100, 0.55);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(0, 237, 100, 0);
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #111a12 50%, #0d1a10 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 237, 100, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.pre-headline {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 16px;
}

.hero-title .highlight-teal {
  color: var(--green);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  font-weight: 500;
}

.event-box {
  background: var(--dark-card);
  border: 2px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
  display: inline-block;
  width: 100%;
}

.event-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
}

.ev-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.ev-detail {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.ev-detail strong {
  color: var(--white);
  font-size: 1.05rem;
}

.ev-detail span {
  color: var(--green);
  font-size: 0.9rem;
}

.ev-divider {
  height: 1px;
  background: var(--grey-mid);
  margin: 4px 0;
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 18px;
}

.social-proof .sep {
  opacity: 0.4;
}

/* HERO MOCKUP */
.hero-visual {
  flex: 0 0 360px;
}

.mockup-screen {
  background: var(--dark-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--grey);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 237, 100, 0.08);
  animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.screen-header {
  background: #161616;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--grey);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #febc2e;
}

.dot-green {
  background: #28c840;
}

.screen-url {
  margin-left: 10px;
  color: #666;
  font-size: 0.78rem;
  font-family: monospace;
}

.screen-body {
  padding: 22px 20px;
}

.screen-label {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ai-prompt {
  background: #161616;
  border: 1px solid var(--grey-mid);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--green-light);
  margin-bottom: 16px;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: monospace;
}

.cursor {
  color: var(--green);
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.screen-bars {
  margin-bottom: 16px;
}

.sbar {
  background: var(--grey);
  border-radius: 6px;
  height: 28px;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.sbar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--w);
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  opacity: 0.85;
  border-radius: 6px;
  animation: loadBar 1.2s ease forwards;
}

@keyframes loadBar {
  from {
    width: 0
  }

  to {
    width: var(--w)
  }
}

.sbar span {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dark);
  padding-left: 10px;
}

.screen-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-mid);
  text-align: center;
}

.screen-stats div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sstat {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--green);
  display: block;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--grey);
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  padding: 22px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  text-align: center;
}

.stat-item {
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 600;
}

.stat-big {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

/* ===== WORKSHOP CARDS ===== */
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.workshop-card {
  background: var(--dark-card);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.workshop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
}

.workshop-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 12px 36px rgba(0, 237, 100, 0.15);
}

.wc-icon {
  font-size: 3rem;
  margin-bottom: 14px;
}

.workshop-card h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.workshop-card p {
  color: var(--text-mid);
  font-size: 0.93rem;
}

/* ===== CHECK LIST ===== */
.check-list {
  list-style: none;
}

.check-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--grey);
  color: var(--text-dark);
  font-size: 0.96rem;
}

.check-list li:last-child {
  border-bottom: none;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* ===== CHALLENGE CARDS ===== */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.challenge-card {
  background: var(--dark-card);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  font-weight: 700;
  color: var(--text-mid);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.challenge-card:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
}

/* ===== AVATAR GRID ===== */
.avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.avatar-card {
  text-align: center;
  background: var(--dark-card);
  border: 2px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 20px 10px;
  transition: all var(--transition);
  cursor: default;
}

.avatar-card:hover {
  background: rgba(0, 237, 100, 0.08);
  border-color: var(--green);
  transform: translateY(-4px);
}

.av-icon {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.avatar-card p {
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0;
}



/* ===== TRAINER ===== */
.trainer-inner {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.trainer-img-wrap {
  position: relative;
  flex-shrink: 0;
}

.trainer-placeholder {
  width: 300px;
  height: 380px;
  background: var(--dark-mid);
  border: 4px solid var(--green);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-green);
  position: relative;
}

.trainer-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top;
}

.trainer-badge-pill {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 18px;
  border-radius: 20px;
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-green);
}

.trainer-bio {
  flex: 1;
  min-width: 280px;
}

/* New Speaker Description Styles */
.t-stats-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.t-stat-card {
  flex: 1;
  min-width: 100px;
  background: var(--dark-light);
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  border: 1px solid var(--grey-mid);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.t-stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 6px;
}

.t-stat-card span {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.3;
  display: block;
}

.t-desc-box p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.t-desc-box strong {
  color: var(--white);
  font-weight: 700;
}

/* ===== NEED GRID ===== */
.need-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.need-card {
  background: var(--dark-card);
  border: 2px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--transition);
}

.need-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
  transform: translateY(-4px);
}

.need-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.need-card h3 {
  color: var(--white);
}

.need-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* ===== BONUS ===== */
.free-badge {
  display: inline-block;
  background: var(--green);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 1.5rem;
  padding: 6px 24px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-weight: 900;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
  text-align: left;
}

.bonus-card {
  background: rgba(0, 237, 100, 0.04);
  border: 1px solid rgba(0, 237, 100, 0.25);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform var(--transition), border-color var(--transition);
}

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

.bonus-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.bonus-card h3 {
  color: var(--green);
}

.bonus-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.bonus-val {
  display: inline-block;
  background: rgba(0, 237, 100, 0.15);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 8px;
}

/* ===== PRICING ===== */
.price-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.price-old {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: #555;
  text-decoration: line-through;
}

.price-new {
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 30px rgba(0, 237, 100, 0.4);
}

.countdown-wrap {
  margin: 24px 0;
}

.countdown-wrap>p {
  color: var(--text-mid);
  margin-bottom: 12px;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cd-box {
  background: var(--dark-card);
  border: 2px solid var(--green);
  border-radius: 10px;
  padding: 12px 20px;
  text-align: center;
  min-width: 80px;
}

.cd-box span {
  font-size: 2.5rem;
  color: var(--green);
  display: block;
  line-height: 1;
  font-family: var(--font-head);
}

.cd-box small {
  color: #666;
  font-size: 0.7rem;
}

.cd-sep {
  font-size: 2rem;
  color: var(--green);
}

.small-note {
  color: var(--text-mid);
  font-size: 0.88rem;
  margin-top: 16px;
}

/* ===== GUARANTEE ===== */
.guarantee-inner {
  max-width: 680px;
  margin: 0 auto;
}

.guarantee-seal {
  font-size: 5rem;
  margin-bottom: 16px;
}

.guarantee-inner h2 {
  color: var(--white);
}

.guarantee-inner p {
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 30px auto 0;
}

.faq-item {
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
  background: var(--dark-card);
}

.faq-item.open {
  border-color: var(--green);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  text-align: left;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.97rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.faq-q:hover {
  background: rgba(0, 237, 100, 0.05);
}

.faq-item.open .faq-q {
  background: rgba(0, 237, 100, 0.08);
  color: var(--green);
}

.faq-arrow {
  transition: transform var(--transition);
  color: var(--green);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--text-mid);
  font-size: 0.95rem;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 16px 20px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 80px 0;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 44px 0;
  border-top: 3px solid var(--green);
}

.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}

.footer-shield {
  font-size: 1.8rem;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--green);
  letter-spacing: 1px;
}

.footer-tagline {
  color: var(--text-mid);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  color: var(--green-light);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-mid);
  text-decoration: none;
  margin: 0 4px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--green);
}

.footer-copy {
  color: #444;
  font-size: 0.78rem;
}

/* ===== STICKY FOOTER ===== */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0d1e1c;
  border-top: 1px solid rgba(0, 237, 100, 0.15);
  z-index: 999;
  padding: 12px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.sticky-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sf-left {
  display: flex;
  flex-direction: column;
}

.sf-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.sf-price {
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-head);
}

.sf-strike {
  color: var(--text-mid);
  font-size: 0.95rem;
  text-decoration: line-through;
}

.sf-discount {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(0, 237, 100, 0.12);
  padding: 3px 8px;
  border-radius: 4px;
}

.sf-timer {
  color: var(--text-light);
  font-size: 0.85rem;
}

.sf-timer strong {
  color: var(--white);
}

.sf-btn {
  background: linear-gradient(90deg, #2b6cb0, #28a745);
  background: linear-gradient(90deg, #3b82f6, var(--green));
  color: var(--white);
  border: none;
  font-size: 1.05rem;
  padding: 12px 32px;
  position: relative;
  text-transform: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 237, 100, 0.25);
  transition: all var(--transition);
}

.sf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 237, 100, 0.4);
}

.sf-badge {
  position: absolute;
  top: -14px;
  right: -5px;
  background: var(--white);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--grey-mid);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
  }

  .hero-visual {
    width: 100%;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .trainer-inner {
    flex-direction: column;
    align-items: center;
  }

  .price-new {
    font-size: 3.5rem;
  }

  .countdown {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }

  /* Sticky Footer Mobile */
  .sticky-footer {
    padding: 10px 0;
  }
  .sf-price {
    font-size: 1.3rem;
  }
  .sf-strike {
    font-size: 0.8rem;
  }
  .sf-discount {
    font-size: 0.7rem;
    padding: 2px 6px;
  }
  .sf-timer {
    display: none;
  }
  .sf-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  .sf-badge {
    top: -10px;
    right: -4px;
    font-size: 0.65rem;
    padding: 3px 8px;
  }
}