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

:root {
  --orange: #FF6B00;
  --orange-dark: #E05A00;
  --orange-light: #FF8C33;
  --dark: #0F0F0F;
  --dark2: #1A1A1A;
  --dark3: #242424;
  --gray: #888;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --text: #222222;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.center { text-align: center; }

/* ===== SECTION TITLE ===== */
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-family: 'Heebo', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(255, 107, 0, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.55);
}

.btn-large {
  font-size: 1.3rem;
  padding: 22px 56px;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(255, 107, 0, 0.45); }
  50% { box-shadow: 0 6px 50px rgba(255, 107, 0, 0.75); }
}
.pulse { animation: pulse 2.5s infinite; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 60%, #1f1008 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.5);
  color: var(--orange-light);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
}

.hero-title .accent {
  color: var(--orange);
  display: block;
}

.hero-sub {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 700;
  color: #e8e8e8;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.05rem;
  color: #bbb;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-desc strong { color: var(--white); }

.hero-price-note {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #999;
}
.hero-price-note strong { color: var(--orange-light); }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-tags span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ccc;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== PROBLEM SECTION ===== */
.section-problem {
  background: var(--light-gray);
  padding: 80px 20px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--orange);
  transition: transform 0.2s;
}

.problem-card:hover { transform: translateY(-4px); }

.problem-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
}

.problem-card p {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.6;
}

.problem-conclusion {
  text-align: center;
  font-size: 1.15rem;
  color: var(--dark);
  line-height: 1.8;
}

.problem-conclusion strong { color: var(--orange); }

/* ===== COURSE INTRO ===== */
.section-intro {
  background: var(--dark);
  padding: 70px 20px;
  text-align: center;
}

.course-logo {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--orange), #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.intro-text {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

.intro-text strong { color: var(--white); }

/* ===== LEARN SECTION ===== */
.section-learn {
  padding: 80px 20px;
  background: var(--white);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px 22px;
  transition: transform 0.2s, border-color 0.2s;
}

.learn-item:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}

.check-icon {
  color: var(--orange);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.learn-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.learn-item p strong { color: var(--dark); }

/* ===== INCLUDES ===== */
.section-includes {
  background: var(--dark2);
  padding: 80px 20px;
}

.section-includes .section-title { color: var(--white); }
.section-includes .section-title::after { background: var(--orange); }

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.include-card {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #333;
  transition: transform 0.2s, border-color 0.2s;
}

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

.include-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
}

.include-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.include-card p {
  color: #999;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ===== FOR WHOM ===== */
.section-forwhom {
  background: var(--white);
  padding: 80px 20px;
}

.forwhom-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.forwhom-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
  color: #333;
  background: #fafafa;
  padding: 18px 24px;
  border-radius: 12px;
  border-right: 4px solid var(--orange);
  transition: transform 0.2s;
}

.forwhom-list li:hover { transform: translateX(-4px); }

.forwhom-list li i {
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.forwhom-list li strong { color: var(--dark); }

/* ===== ABOUT ===== */
.section-about {
  background: var(--light-gray);
  padding: 80px 20px;
}

.about-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.about-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3.5rem;
  box-shadow: 0 8px 30px rgba(255,107,0,0.35);
}

.about-text { flex: 1; min-width: 260px; }

.about-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.about-name {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #333;
}

.about-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-text strong { color: var(--dark); }

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: #888;
  font-weight: 600;
  text-align: center;
}

/* ===== CTA SECTION ===== */
.section-cta {
  background: linear-gradient(160deg, var(--dark) 0%, #1a0a00 100%);
  padding: 90px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-badge {
  display: inline-block;
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--orange-light);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.cta-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-title small {
  font-size: 0.55em;
  font-weight: 500;
  color: #aaa;
  display: block;
  margin-top: 4px;
}

.price-highlight {
  color: var(--orange);
}

.cta-sub {
  color: #bbb;
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-sub strong { color: var(--white); }

.cta-value-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.cta-value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ddd;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
}

.cta-value-item i { color: var(--orange); }

.cta-guarantee {
  margin-top: 24px;
  color: #888;
  font-size: 0.92rem;
}

.cta-guarantee i { color: var(--orange); }

/* ===== FINAL HOOK ===== */
.section-hook {
  background: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.section-hook h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-hook p {
  font-size: 1.05rem;
  color: #555;
  max-width: 580px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

.hook-highlight {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: var(--orange) !important;
  margin-bottom: 36px !important;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: #666;
  text-align: center;
  padding: 28px 20px 100px;
  font-size: 0.88rem;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  text-align: center;
  z-index: 999;
  border-top: 1px solid #333;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticky-cta.visible { transform: translateY(0); }

.btn-sticky {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 13px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,107,0,0.5);
  transition: transform 0.2s;
}

.btn-sticky:hover { transform: scale(1.03); }

/* ===== RESULTS SECTION ===== */
.section-results {
  background: var(--dark2);
  padding: 90px 20px;
  position: relative;
}

.results-header {
  text-align: center;
  margin-bottom: 50px;
}

.results-badge {
  display: inline-block;
  background: rgba(255,107,0,0.18);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--orange-light);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

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

.section-results .section-title::after {
  background: var(--orange);
}

.accent-text { color: var(--orange); }

.results-subtitle {
  color: #aaa;
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.results-subtitle strong { color: var(--white); }

/* Stats bar */
.results-stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--dark3);
  border: 1px solid #333;
  border-radius: 20px;
  padding: 28px 20px;
  margin-bottom: 50px;
}

.rstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 32px;
  flex: 1;
  min-width: 120px;
}

.rstat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.rstat-label {
  font-size: 0.82rem;
  color: #888;
  font-weight: 600;
  text-align: center;
}

.rstat-divider {
  width: 1px;
  height: 50px;
  background: #333;
  flex-shrink: 0;
}

/* ── Screenshots scroll wrapper (full-bleed on mobile) ── */
.screenshots-scroll-wrap {
  /* desktop: no special wrapper needed */
  position: relative;
}

.sc-dots {
  display: none; /* shown on mobile via JS */
  justify-content: center;
  gap: 7px;
  margin-bottom: 14px;
}

.sc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
  transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.sc-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

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

.screenshot-card {
  background: var(--dark3);
  border-radius: 16px;
  border: 1px solid #2e2e2e;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.screenshot-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,107,0,0.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.sc-featured {
  border-color: rgba(255,107,0,0.35);
  background: linear-gradient(160deg, #1e1208 0%, var(--dark3) 100%);
}

/* Tag */
.sc-tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 0 0 12px 12px;
  display: inline-block;
  align-self: flex-end;
  margin: 0 12px;
  letter-spacing: 0.3px;
}

.sc-tag-wa {
  background: rgba(37,211,102,0.15);
  color: #25d366;
  border: 1px solid rgba(37,211,102,0.25);
}

.sc-tag-lead {
  background: rgba(0,122,255,0.15);
  color: #4da6ff;
  border: 1px solid rgba(0,122,255,0.25);
}

.sc-tag-sales {
  background: rgba(255,107,0,0.15);
  color: var(--orange-light);
  border: 1px solid rgba(255,107,0,0.3);
}

/* Image */
.sc-img-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin: 10px 12px 0;
  border-radius: 10px;
  border: 1px solid #333;
}

.sc-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  background: var(--dark3);
  height: 220px;
  transition: transform 0.35s;
}

.sc-img-wrap:hover img { transform: scale(1.04); }

.sc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  color: white;
  font-size: 1.6rem;
}

.sc-img-wrap:hover .sc-overlay { opacity: 1; }

/* Stats row inside card */
.sc-stats {
  display: flex;
  justify-content: space-around;
  padding: 14px 10px 16px;
  gap: 4px;
}

.sc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}

.sc-stat-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.highlight-num {
  color: var(--orange);
  font-size: 1.25rem;
}

.sc-stat-label {
  font-size: 0.72rem;
  color: #777;
  font-weight: 600;
  text-align: center;
}

/* Disclaimer */
.results-disclaimer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.82rem;
  color: #555;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-wrap {
  margin-bottom: 28px;
}

.countdown-label {
  color: #aaa;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.countdown-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.cd-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,107,0,0.35);
  border-radius: 14px;
  padding: 16px 22px;
  min-width: 72px;
  position: relative;
  overflow: hidden;
}

.cd-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,107,0,0.08) 0%, transparent 100%);
  pointer-events: none;
}

.cd-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: transform 0.15s;
}

.cd-num.flip {
  transform: scale(1.2);
  color: #ffb347;
}

.cd-unit {
  font-size: 0.72rem;
  color: #888;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cd-sep {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,107,0,0.5);
  line-height: 1;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* Price block */
.price-block {
  margin-bottom: 10px;
}

.price-original {
  font-size: 1rem;
  color: #888;
  margin-bottom: 6px;
}

.price-original s {
  color: #cc4444;
  font-weight: 700;
  font-size: 1.1rem;
}

.price-original span {
  color: #777;
}

.price-saving {
  display: inline-block;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  color: #25d366;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* Responsive countdown */
@media (max-width: 480px) {
  .cd-box { min-width: 58px; padding: 12px 14px; }
  .cd-num { font-size: 1.7rem; }
  .cd-sep { font-size: 1.5rem; }
  .countdown-boxes { gap: 6px; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: min(600px, 92vw);
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ===== RESPONSIVE — TABLET (641–900px) ===== */
@media (min-width: 641px) and (max-width: 900px) {
  .screenshots-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ===== RESPONSIVE — MOBILE (≤640px) ===== */
@media (max-width: 640px) {

  /* --- Global sections --- */
  .hero { padding: 56px 16px 76px; }
  .section-problem,
  .section-learn,
  .section-includes,
  .section-forwhom,
  .section-about,
  .section-cta,
  .section-hook { padding: 50px 16px 56px; }

  /* --- Results section: remove horizontal padding so swiper goes edge-to-edge --- */
  .section-results { padding: 50px 0 56px; }
  .section-results .container { padding: 0 16px; }
  .results-disclaimer { padding: 0 16px; }

  /* --- Body font --- */
  body { font-size: 15px; }

  /* --- Hero --- */
  .hero-tags { gap: 8px; }
  .hero-tags span { font-size: 0.82rem; padding: 6px 14px; }
  .hero-desc { font-size: 0.97rem; }

  /* --- Buttons --- */
  .btn-main { font-size: 0.97rem; padding: 15px 26px; width: 100%; justify-content: center; }
  .btn-large { font-size: 1.05rem; padding: 17px 28px; }

  /* --- Problem grid --- */
  .problem-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .problem-card { padding: 20px 14px; }
  .problem-icon { font-size: 1.8rem; }
  .problem-card p { font-size: 0.88rem; }

  /* --- Learn grid --- */
  .learn-grid { grid-template-columns: 1fr; gap: 12px; }
  .learn-item { padding: 16px 18px; }

  /* --- Includes grid --- */
  .includes-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .include-card { padding: 22px 14px; }
  .include-icon { font-size: 1.8rem; }
  .include-card h3 { font-size: 0.92rem; }
  .include-card p { font-size: 0.8rem; }

  /* --- For whom --- */
  .forwhom-list li { font-size: 0.92rem; padding: 14px 16px; }

  /* --- About --- */
  .about-inner { flex-direction: column; align-items: center; text-align: center; }
  .about-stats { justify-content: center; gap: 20px; }
  .avatar-placeholder { width: 100px; height: 100px; font-size: 2.8rem; }

  /* --- Results stats bar --- */
  .results-stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px;
    margin: 0 16px 28px;
    border-radius: 16px;
  }
  .rstat-divider { display: none; }
  .rstat {
    padding: 12px 8px;
    min-width: unset;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    border: 1px solid #2a2a2a;
  }
  .rstat-num { font-size: 1.35rem; }
  .rstat-label { font-size: 0.72rem; }

  /* ── VERTICAL stack: one card per row, full width ── */
  .screenshots-scroll-wrap {
    overflow: visible;
    position: relative;
  }

  .sc-dots { display: none !important; }

  .screenshots-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0;
    width: 100%;
  }

  .screenshot-card {
    flex: none;
    width: 100%;
    margin: 0;
    border-radius: 16px;
    scroll-snap-align: unset;
  }

  /* Image fills the card naturally */
  .sc-img-wrap {
    margin: 10px 12px 0;
    border-radius: 12px;
  }
  .sc-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top center;
    background: var(--dark3);
  }

  /* Stats row */
  .sc-stats { padding: 14px 10px 16px; gap: 4px; }
  .sc-stat-num { font-size: 1.1rem; }
  .sc-stat-label { font-size: 0.74rem; }
  .highlight-num { font-size: 1.25rem; }

  /* --- Countdown --- */
  .cd-box { min-width: 54px; padding: 10px 12px; border-radius: 10px; }
  .cd-num { font-size: 1.55rem; }
  .cd-unit { font-size: 0.65rem; }
  .cd-sep { font-size: 1.4rem; margin-bottom: 14px; }
  .countdown-boxes { gap: 5px; }
  .countdown-label { font-size: 0.88rem; }

  /* --- Price block --- */
  .price-saving { font-size: 0.85rem; padding: 6px 14px; }

  /* --- CTA value list --- */
  .cta-value-list { gap: 8px; }
  .cta-value-item { font-size: 0.82rem; padding: 8px 12px; }

  /* --- Footer padding for sticky bar --- */
  .site-footer { padding-bottom: 90px; }
}

/* ===== RESPONSIVE — SMALL PHONES (≤380px) ===== */
@media (max-width: 380px) {
  .problem-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .cd-box { min-width: 46px; padding: 8px 8px; }
  .cd-num { font-size: 1.3rem; }
  .cd-sep { font-size: 1.1rem; }
  .hero-tags { flex-direction: column; align-items: center; }
  .screenshot-card { flex: 0 0 92vw; width: 92vw; }
}
