/* ── VARIABLES ── */
:root {
  --red: #e01e26;
  --black: #111111;
  --white: #ffffff;
  --grey: #f5f5f5;
  --text: #333333;
  --max-width: 1100px;
  --font: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 100;
  padding: 0 2rem;
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 700;
}

.logo-img {
  height: 65px;
  width: auto;
  padding: 4px 0;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav ul a {
  color: #444444;
  font-size: 0.9rem;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--black); }

.btn-nav {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: opacity 0.2s !important;
}

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

/* Hamburger hidden on desktop */
.hamburger { display: none; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: #aaaaaa;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

/* ── HERO ── */
.hero {
  background: var(--black);
  padding: 120px 2rem;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  z-index: 0;
}

.slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.72);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(224,30,38,0.15);
  color: #ff6b6b;
  border: 1px solid rgba(224,30,38,0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 700px;
  letter-spacing: -1px;
}

.hero h1 span { color: var(--red); }

.hero p {
  color: #aaaaaa;
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: opacity 0.2s;
  display: inline-block;
}

.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid #444444;
  transition: border-color 0.2s;
  display: inline-block;
}

.btn-secondary:hover { border-color: #888888; }

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid #222222;
  padding-top: 2.5rem;
}

.stat { display: flex; flex-direction: column; }

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

.stat span {
  font-size: 0.85rem;
  color: #777777;
  margin-top: 4px;
}

/* ── SERVICES ── */
.services {
  padding: 100px 2rem;
  background: var(--white);
}

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

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

.services-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border: 1.5px solid #eeeeee;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

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

.service-card.featured {
  border-color: var(--red);
  background: #fff8f8;
}

.service-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.service-icon { font-size: 2rem; margin-bottom: 1rem; }

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-card a {
  color: var(--red);
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.service-card a:hover { opacity: 0.7; }

/* ── PRICING (homepage) ── */
.pricing {
  padding: 100px 2rem;
  background: #f7f7f7;
}

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

.pricing-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.pricing-sub {
  color: #666666;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.pricing-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: #eeeeee;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--black);
  transition: all 0.2s;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--red);
  color: var(--white);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.tab-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tab-card {
  background: var(--white);
  border: 1.5px solid #eeeeee;
  border-radius: 16px;
  padding: 2rem;
  min-width: 180px;
  text-align: center;
  transition: border-color 0.2s;
}

.tab-card.featured { border-color: var(--red); }

.tab-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.tab-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.tab-note {
  color: #666666;
  font-size: 0.9rem;
}

.pricing-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888888;
}

.pricing-note a {
  color: var(--red);
  font-weight: 600;
}

.pricing-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.saving {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.price-desc {
  font-size: 0.9rem;
  color: #888888;
  margin-bottom: 1.5rem;
}

/* ── REVIEWS ── */
.reviews {
  padding: 100px 2rem;
  background: var(--black);
}

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

.reviews-inner .section-label { color: #ff6b6b; }

.reviews-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--black);
  padding: 80px 2rem;
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -1px;
}

.page-hero p {
  color: #aaaaaa;
  font-size: 1.1rem;
}

/* ── CONTACT ── */
.contact-section {
  padding: 100px 2rem;
  background: var(--white);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-details h2,
.contact-form h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon { font-size: 1.3rem; margin-top: 2px; }

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  color: var(--black);
  font-size: 0.95rem;
}

.contact-item a:hover { color: var(--red); }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #eeeeee;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }

.btn-submit {
  background: var(--red);
  color: var(--white);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
}

.btn-submit:hover { opacity: 0.85; }

/* ── PRICING PAGE ── */
.pricing-page {
  padding: 80px 2rem;
  background: #f7f7f7;
}

.pricing-page-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-row-card {
  background: var(--white);
  border: 1.5px solid #eeeeee;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-row-card:hover {
  border-color: var(--red);
  transform: translateX(4px);
}

.pricing-row-card.featured {
  border-color: var(--red);
  background: #fff8f8;
}

.pricing-row-left { flex: 1; }

.pricing-row-left h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-row-left p {
  color: #666666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 500px;
}

.row-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.row-features li { font-size: 0.85rem; color: #555555; }

.pricing-row-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 160px;
  text-align: center;
}

.row-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1;
}

.row-saving {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.inline-badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  vertical-align: middle;
}

.pricing-faq { margin-top: 4rem; }

.pricing-faq h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.faq-item {
  border-top: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── BOOK ── */
.book-section {
  padding: 60px 2rem;
  background: var(--white);
}

.book-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 700px;
}

/* ── LESSONS ── */
.lesson-section {
  padding: 100px 2rem;
  background: var(--white);
}

.lesson-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.lesson-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.lesson-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  letter-spacing: -0.5px;
}

.lesson-text p {
  color: #555555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.lesson-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.lesson-features li { font-size: 0.95rem; color: #444444; }
.lesson-badge { font-size: 6rem; opacity: 0.15; }

/* ── LESSONS CTA ── */
.lessons-cta {
  background: var(--black);
  padding: 100px 2rem;
}

.lessons-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.lessons-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.lessons-cta p {
  color: #aaaaaa;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ── ABOUT ── */
.about-section {
  padding: 100px 2rem;
  background: var(--white);
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-story h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  letter-spacing: -0.5px;
}

.about-story p {
  color: #555555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-stat {
  background: var(--grey);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.about-stat strong {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1;
}

.about-stat span {
  font-size: 0.85rem;
  color: #777777;
  margin-top: 6px;
}

/* ── VALUES ── */
.about-values {
  padding: 100px 2rem;
  background: #f7f7f7;
}

.about-values-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-values-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 3rem;
  margin-top: 0.5rem;
  letter-spacing: -0.5px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1.5px solid #eeeeee;
  transition: border-color 0.2s, transform 0.2s;
}

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

.value-icon { font-size: 2rem; margin-bottom: 1rem; }

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── GALLERY ── */
.gallery-section {
  padding: 80px 2rem;
  background: var(--white);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-img {

.gallery-img {
  direction: ltr;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.2s, opacity 0.2s;
  will-change: transform;
}

.gallery-img {
  direction: ltr;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.2s, opacity 0.2s;
}

.gallery-img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

/* ── SOCIALS PAGE ── */
.socials-hero {
  background: var(--black);
  padding: 60px 2rem;
  text-align: center;
}

.socials-hero-inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.socials-logo {
  height: 80px;
  width: auto;
  margin-bottom: 0.5rem;
}

.socials-hero h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.socials-hero p {
  color: #aaaaaa;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.socials-links {
  padding: 40px 2rem;
  background: #f7f7f7;
}

.socials-inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-card {
  background: var(--white);
  border: 1.5px solid #eeeeee;
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
  color: var(--black);
}

.social-card:hover {
  border-color: var(--red);
  transform: translateX(4px);
}

.social-icon { font-size: 1.5rem; flex-shrink: 0; }
.social-card div { flex: 1; }

.social-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}

.social-card span { font-size: 0.85rem; color: #888888; }

.social-arrow {
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 700;
}

/* ════════════════════════════════════════
   MOBILE
════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  nav { padding: 0 1.25rem; }

  .nav-inner {
    height: 70px;
    position: relative;
  }

  .logo-img { height: 50px; }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 201;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

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

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: -1.25rem;
    right: -1.25rem;
    background: var(--white);
    border-top: 1px solid #eeeeee;
    padding: 0.5rem 1.5rem 1.25rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 200;
  }

  nav ul.open { display: flex; }

  nav ul a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1rem;
    color: var(--black);
    border-bottom: 1px solid #f0f0f0;
  }

  nav ul li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
  }

  .btn-nav {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    width: auto;
    border-bottom: none !important;
    border-radius: 8px;
  }

  /* ── HERO ── */
  .hero {
    padding: 60px 1.25rem 50px;
    min-height: unset;
  }

  .hero-slideshow {
    grid-template-columns: 1fr;
  }

  .slide:nth-child(2),
  .slide:nth-child(3) { display: none; }

  .hero h1 {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .hero p { font-size: 1rem; margin-bottom: 2rem; }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .hero-stats {
    gap: 1.5rem;
    padding-top: 1.75rem;
  }

  .stat strong { font-size: 1.5rem; }

  /* ── SERVICES ── */
  .services { padding: 60px 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }

  /* ── PRICING (homepage) ── */
  .pricing { padding: 60px 1.25rem; }

  .pricing-tabs { gap: 0.4rem; }
  .tab-btn { padding: 0.6rem 1rem; font-size: 0.85rem; }

  .tab-cards {
    flex-direction: column;
  }

  .tab-card { min-width: unset; width: 100%; }

  /* ── REVIEWS ── */
  .reviews { padding: 60px 1.25rem; }

  /* ── PAGE HERO ── */
  .page-hero { padding: 50px 1.25rem; }
  .page-hero h1 { font-size: 2rem; }

  /* ── CONTACT ── */
  .contact-section { padding: 60px 1.25rem; }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* ── PRICING PAGE ── */
  .pricing-page { padding: 50px 1.25rem; }

  .pricing-row-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .pricing-row-right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-width: unset;
    text-align: left;
    border-top: 1px solid #eeeeee;
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    gap: 1rem;
  }

  .pricing-row-right .btn-primary {
    width: auto;
    padding: 0.75rem 1.5rem;
  }

  /* ── LESSONS ── */
  .lesson-section { padding: 60px 1.25rem; }
  .lesson-inner { gap: 3.5rem; }

  .lesson-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lesson-badge { display: none; }

  /* ── LESSONS CTA ── */
  .lessons-cta { padding: 60px 1.25rem; }

  .lessons-cta .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .lessons-cta .btn-primary,
  .lessons-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* ── ABOUT ── */
  .about-section { padding: 60px 1.25rem; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .about-stat { padding: 1.5rem; }
  .about-stat strong { font-size: 2rem; }

  /* ── VALUES ── */
  .about-values { padding: 60px 1.25rem; }
  .values-grid { grid-template-columns: 1fr; }

  /* ── GALLERY ── */
  .gallery-section { padding: 50px 1.25rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-img { height: 160px; }

  /* ── SOCIALS ── */
  .socials-hero { padding: 50px 1.25rem; }
  .socials-links { padding: 30px 1.25rem; }
  .socials-inner { max-width: 100%; }

  /* ── BOOK ── */
  .book-section { padding: 30px 0.75rem; }
  .book-inner { min-height: 600px; }

}

.selected-lesson-box {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-left: 5px solid #e01e26;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
  color: #111111;
  font-size: 1rem;
}

.selected-lesson-box strong {
  margin-right: 0.4rem;
}

.selected-lesson-box span {
  color: #e01e26;
  font-weight: 800;
}

.service-card {
  border: 1px solid #333333;
  cursor: pointer;
}

.service-card:hover {
  border-color: #e01e26;
  transform: translateY(-4px);
}