*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--navy: #1a3566;
--orange: #f5921e;
--light-bg: #f0f4fa;
--text: #333;
--muted: #555;
--white: #fff;
}
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); font-size: 15px; line-height: 1.6; overflow-x: hidden; background: #fbfcff; }
a,
a:hover,
a:focus,
a:active,
a:visited {
text-decoration: none;
color: inherit;
}

/* ── NAVBAR ── */
.header {
position: sticky;
top: 0;
z-index: 100;
background: var(--white);
box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}
.header-container {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 60px;
max-width: 1360px;
margin: 0 auto;
gap: 18px;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
min-width: max-content;
}
.logo-img {
width: 100px;
height: 50px;
object-fit: contain;
border: 2px solid #eef2fb;
border-radius: 6px;
}
.logo-text {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
color: var(--navy);
font-size: 17px;
}
.main-nav {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
width: 100%;
}
.nav-links { list-style: none; display: flex; gap: 28px; margin-left: auto; }
.nav-links li a {
font-weight: 600;
font-size: 14px;
color: var(--navy);
text-decoration: none;
transition: color .2s;
}
.nav-links li a:hover { color: var(--orange); text-decoration: none; }
.btn-login {
background: var(--navy); color: var(--white); padding: 10px 22px;
border-radius: 6px; font-weight: 700; font-size: 14px; text-decoration: none;
transition: background .2s;
}
.btn-login:hover { background: var(--orange); }
.menu-toggle {
display: none;
width: 42px;
height: 42px;
border: 1px solid #d8deed;
border-radius: 8px;
background: var(--white);
align-items: center;
justify-content: center;
flex-direction: column;
gap: 5px;
cursor: pointer;
}
.menu-toggle span {
display: block;
width: 18px;
height: 2px;
background: var(--navy);
transition: transform .2s ease, opacity .2s ease;
}

/* ── NAV: SERVICES DROPDOWN (desktop + shared) ── */
.nav-links > li.dropdown {
position: relative;
}
.dropdown-trigger {
display: inline-flex;
align-items: center;
gap: 6px;
background: none;
border: none;
padding: 0;
margin: 0;
font: inherit;
font-weight: 600;
font-size: 14px;
color: var(--navy);
cursor: pointer;
transition: color .2s;
}
.dropdown-trigger:hover,
.dropdown-trigger:focus-visible {
color: var(--orange);
outline: none;
}
.dropdown-trigger .arrow-down {
font-size: 9px;
line-height: 1;
opacity: .85;
transition: transform .2s ease;
}
.dropdown.is-open .dropdown-trigger .arrow-down {
transform: rotate(-180deg);
}
.dropdown-menu {
position: absolute;
top: calc(100% + 8px);
left: 0;
z-index: 200;
display: none;
min-width: 280px;
max-height: min(70vh, 420px);
overflow-y: auto;
margin: 0;
padding: 8px 0;
list-style: none;
background: var(--white);
border-radius: 10px;
box-shadow: 0 14px 40px rgba(26, 53, 102, .18);
border: 1px solid #e4eaf5;
}
.dropdown-menu li {
list-style: none;
}
.dropdown-menu a {
display: block;
padding: 10px 18px;
font-size: 14px;
font-weight: 500;
color: var(--text);
text-decoration: none;
white-space: nowrap;
transition: background .15s, color .15s;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
background: var(--light-bg);
color: var(--navy);
outline: none;
}
@media (hover: hover) and (pointer: fine) {
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
display: block;
}
}
.dropdown.is-open .dropdown-menu {
display: block;
}

/* ── HERO ── */
.hero {
display: flex; align-items: center; justify-content: space-between;
padding: 48px 60px 40px; background: var(--white); gap: 40px; min-height: 480px;
max-width: 1360px; margin: 0 auto;
}
.hero-left { flex: 1 1 50%; max-width: 560px; }
.badge-pill {
display: inline-block; background: var(--navy); color: var(--white);
font-size: 12px; font-weight: 700; padding: 6px 18px; border-radius: 30px; margin-bottom: 18px;
}
.hero h1 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 30px; line-height: 1.15; color: var(--navy); }
.hero h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 22px; color: var(--text); margin: 10px 0 16px; }
.hero p { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.btn-orange {
display: inline-block; background: var(--orange); color: var(--white);
padding: 12px 28px; border-radius: 8px; font-weight: 700; font-size: 14px;
text-decoration: none; transition: background .2s, transform .15s;
}
.btn-orange:hover { background: #e07f0f; color: var(--white); transform: translateY(-1px); }
.btn-orange-lg {
font-size: 16px;
padding: 14px 40px;
border-radius: 40px;
}
.hero-rating { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.avatars {
  display: flex;
}

.avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: inline-block;
  margin-left: -10px;
  overflow: hidden;
  background-size: cover;
}

.avatars span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.avatars span:first-child { margin-left: 0; }
.rating-text { font-size: 13px; color: var(--muted); line-height: 1.4; }
.rating-text strong { color: var(--text); }
.stars { color: var(--orange); font-size: 14px; }

.about-hero {
  background: #fff;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-hero-left h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.35;
  color: var(--navy);
}
.about-hero-right p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}
.about-hero-right p:last-child { margin-bottom: 0; }

/* Hero right side */
.hero-right { position: relative; flex: 1 1 45%; flex-shrink: 0; display: flex; justify-content: center; }
.hero-books-img {
width: 100%; max-width: 520px;
height: 480px; position: relative; overflow: hidden; border-radius: 16px;
}
.hero-books-img img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
object-position: center top;
}
.books-stack { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 20px; }
.book { border-radius: 4px; box-shadow: 4px 6px 14px rgba(0,0,0,.3); }
.book-1 { width: 200px; height: 30px; background: #1a2a4a; }
.book-2 { width: 220px; height: 34px; background: #2563a8; margin-left: 14px; }
.book-3 { width: 240px; height: 36px; background: #c0392b; margin-left: -8px; }
.book-4 { width: 220px; height: 30px; background: #27ae60; margin-left: 10px; }
.book-5 { width: 260px; height: 40px; background: #f39c12; margin-left: -4px; }

/* ── LOGOS BAR ── */
.logos-bar {
display: flex; align-items: center; justify-content: center; gap: 50px;
padding: 28px 60px; background: var(--white); border-top: 1px solid #eee; border-bottom: 1px solid #eee;
flex-wrap: wrap;
}
.logos-bar .brand-logo {
display: flex;
align-items: center;
justify-content: center;
opacity: .75;
transition: opacity .2s;
}
.logos-bar .brand-logo:hover { opacity: 1; }
.logos-bar .brand-logo img {
height: 28px;
width: auto;
max-width: 140px;
object-fit: contain;
filter: grayscale(100%);
transition: filter .2s;
}
.logos-bar .brand-logo:hover img { filter: grayscale(0); }
.brand-ck::before { content: '⊕ '; }

/* DIFFERENT MINDSET SECTION */
.mindset-section {
  background: #fff;
  text-align: center;
  padding: 50px 80px 30px;
  border-top: 1px solid #eee;
}
.mindset-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
}
.mindset-section p {
  font-size: 14px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
.office-photo-placeholder {
  margin-top: 30px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(17, 24, 39, .12);
}
.office-photo-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* TEAM SECTION */
.team-section {
  background: #fff;
  text-align: center;
  padding: 60px 80px;
}
.team-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 40px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}
.team-member { text-align: center; }
.avatar {
  width: 250px;
  height: 250px;
  margin: 0 auto 12px;
  background: #e0e0e0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}
.avatar.male { background: linear-gradient(135deg, #f5cba7 0%, #e8b89a 100%); }
.avatar.female { background: linear-gradient(135deg, #a9cce3 0%, #85c1e9 100%); }
.avatar svg { width: 80px; height: 80px; }
.team-member h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ── GENRES SECTION ── */
.genres-section {
background: linear-gradient(135deg, #1a3566 0%, #2257a0 60%, #87afe8 100%);
padding: 50px 60px; text-align: center; color: var(--white);
}
.genres-section h2 {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 32px;
margin-bottom: 12px;
}
.genres-section p { font-size: 15px; max-width: 1200px; margin: 0 auto 36px; line-height: 1.7; }
.genres-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.genre-card {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1 / 1;
    height: auto;
    box-sizing: border-box;
    margin: 0 auto;
    background: #fff;
    border-radius: 50%;
    color: #111;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.genre-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.genre-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.genre-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.genre-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
}

.genre-description {
    max-width: 190px;
    font-size: 10px;
    line-height: 1.45;
    color: #333;
}
/* ── FEATURES SECTION ── */
.features-section { padding: 60px 60px; text-align: center; background: var(--white); }
.features-section h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 28px; color: var(--navy); margin-bottom: 40px; }
.features-section > p { max-width: 1000px; margin: 0 auto 40px; color: var(--muted); font-size: 14px; }
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0;
border-radius: 12px;
overflow: hidden;
background: #fff;
max-width: 1100px;
margin: 0 auto;
border: 1px solid #1a3566;
}
.feature-card {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid #1a3566;
  border-bottom: 1px solid #1a3566;
}

.feature-card:nth-child(3n) {
  border-right: none;
}

.feature-card:nth-last-child(-n+3) {
  border-bottom: none;
}

.feature-icon i {
  font-size: 38px;
  margin-bottom: 14px;
  color: #1a3566;
}

.feature-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1a3566;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: var(--muted);
}

/* ── CTA BANNER ── */
.cta-banner {
padding: 32px 60px;
text-align: center;
background: var(--light-bg);
border-top: 1px solid #e8edf5;
border-bottom: 1px solid #e8edf5;
}
.btn-cta-ghost {
display: inline-block; border: 2px solid var(--navy); color: var(--navy);
padding: 14px 50px; border-radius: 40px; font-weight: 700; font-size: 18px;
background: var(--white); text-decoration: none;
transition: background .2s, color .2s, transform .15s;
}
.btn-cta-ghost:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }

/* ── SPLIT SECTION ── */
.split-section {
background: linear-gradient(90deg, #86c5ff 0%, #fff5e8 42%, #ffb54d 100%);
overflow: hidden;
padding: 56px 60px 0;
}
.split-section-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 32px 48px;
min-height: 420px;
}
.split-left {
flex: 1 1 56%;
max-width: 640px;
padding: 12px 24px 48px 0;
background: transparent;
text-align: left;
}
.split-left h2 {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 30px;
line-height: 1.2;
color: #111;
margin-bottom: 28px;
}
.split-left h3 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 18px;
color: #111;
margin-bottom: 10px;
margin-top: 22px;
}
.split-left h3:first-of-type { margin-top: 0; }
.split-left p {
font-size: 14px;
line-height: 1.65;
color: #333;
margin-bottom: 0;
}
.split-left .split-cta-text { margin-bottom: 24px; }
.split-left .btn-orange { margin-top: 8px; }
.split-right {
flex: 0 0 38%;
max-width: 440px;
min-width: 280px;
display: flex;
align-items: flex-end;
justify-content: center;
align-self: flex-end;
}
.split-right-img {
width: 100%;
display: flex;
align-items: flex-end;
justify-content: center;
}
.split-right-img img {
width: 100%;
max-width: 420px;
height: auto;
max-height: 520px;
object-fit: contain;
object-position: bottom center;
display: block;
margin: 0;
filter: drop-shadow(0 18px 32px rgba(26, 53, 102, .22));
}
.person-placeholder { width: 260px; height: 320px; background: linear-gradient(to top, #e8a04a, #f0c87a); border-radius: 16px 16px 0 0; position: relative; overflow: hidden; }
.person-placeholder::after { content: '👩‍💼'; font-size: 180px; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }

/* ── PACKAGES SECTION ── */
.packages-section { padding: 60px 60px; text-align: center; background: var(--white); }
.packages-section h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 30px; color: var(--navy); margin-bottom: 14px; }
.packages-section > p { max-width: 1000px; margin: 0 auto 36px; color: var(--muted); font-size: 14px; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.pkg-card {
border: 1px solid #ddd; border-radius: 12px; padding: 28px 22px; text-align: left;
position: relative; overflow: hidden;
transition: box-shadow .25s ease, transform .25s ease;
}
.pkg-card:hover {
box-shadow: 0 12px 32px rgba(26, 53, 102, .12);
transform: translateY(-4px);
}
.pkg-card::before { content: ''; position: absolute; left: 0; top: 0; width: 5px; height: 100%; background: var(--orange); }
.pkg-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pkg-header h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px; color: var(--navy); }
.pkg-icon { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.pkg-card ul { list-style: none; margin-bottom: 18px; }
.pkg-card ul li {
font-size: 13px;
color: var(--muted);
padding: 7px 0 7px 22px;
border-bottom: 1px solid #f0f0f0;
position: relative;
}
.pkg-card ul li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--orange);
font-weight: 700;
font-size: 12px;
}
.btn-learn {
display: inline-block; background: var(--orange); color: var(--white);
padding: 10px 24px; border-radius: 6px; font-size: 13px; font-weight: 700;
text-decoration: none; transition: background .2s;
}
.btn-learn:hover { background: #e07f0f; color: var(--white); }

/* ── OUTSHINE SECTION ── */
.outshine-section { padding: 50px 60px; text-align: center; background: var(--white); }
.outshine-section h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 30px; color: var(--navy); margin-bottom: 14px; }
.outshine-section p { max-width: 680px; margin: 0 auto 24px; color: var(--muted); font-size: 14px; }

/* ── GREATNESS SECTION ── */
.greatness-section { padding: 50px 60px 30px; text-align: center; background: var(--white); }
.greatness-section h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 30px; color: var(--navy); margin-bottom: 14px; }
.greatness-section > p { max-width: 660px; margin: 0 auto 40px; color: var(--muted); font-size: 14px; }
.two-col { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; text-align: left; }
.two-col-img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.img-placeholder {
background: #d4e4f5;
border-radius: 10px;
height: 250px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
box-shadow: 0 10px 24px rgba(26, 53, 102, .12);
}
.img-placeholder img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
object-position: center;
}
.img-placeholder.dark { background: #1a3566; }
.mini-card { padding: 14px 0; }
.mini-card h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.mini-card p { font-size: 13px; color: var(--muted); }
.two-col-right h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 28px; color: var(--navy); margin-bottom: 12px; }
.two-col-right p { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.two-col-right h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.trust-logos { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.trust-logo-box { background: var(--light-bg); border-radius: 8px; padding: 8px 14px; font-size: 12px; font-weight: 700; color: var(--navy); }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
}

/* ── REVIEWS SECTION ── */
.reviews-section { padding: 50px 60px; background: var(--white); }
.reviews-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card {
border: 1px solid #e0e0e0; border-radius: 10px; padding: 16px;
font-size: 12px; color: var(--muted); line-height: 1.6;
background: var(--white);
transition: box-shadow .2s ease;
}
.review-card:hover { box-shadow: 0 6px 20px rgba(26, 53, 102, .08); }
.review-card .reviewer { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.reviewer-num { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: var(--white); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.reviewer-info strong { display: block; font-size: 12px; color: var(--text); }
.reviewer-info span { font-size: 10px; }
.reviews-right h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 30px; color: var(--navy); margin-bottom: 14px; }
.reviews-right p { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.btn-show-all {
display: inline-block; background: var(--navy); color: var(--white);
padding: 10px 28px; border-radius: 6px; font-weight: 700; font-size: 13px;
text-decoration: none; transition: background .2s;
}
.btn-show-all:hover { background: var(--orange); color: var(--white); }

/* ── WONDERING SECTION ── */
.wondering-section {
padding: 50px 60px;
text-align: center;
background: var(--light-bg);
border-top: 1px solid #e8edf5;
}
.wondering-section h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 28px; color: var(--navy); margin-bottom: 16px; }

/* ── COMPREHENSIVE SERVICES ── */
.services-section { padding: 60px 60px; text-align: center; background: var(--white); }
.services-section h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 30px; color: var(--navy); margin-bottom: 14px; }
.services-section > p { max-width: 900px; margin: 0 auto 40px; color: var(--muted); font-size: 14px; }
.service-card {
display: flex; align-items: center; gap: 24px;
border: 1px solid #e0e0e0; border-radius: 14px; padding: 24px 28px;
max-width: 700px; margin: 0 auto 28px; text-align: left;
background: var(--white);
transition: box-shadow .2s ease;
}
.service-card:hover { box-shadow: 0 8px 24px rgba(26, 53, 102, .08); }
.service-card-left { margin-right: auto; margin-left: 0; }
.service-card-right { margin-left: auto; margin-right: 0; }
.service-card:nth-child(even) { margin-left: auto; margin-right: 0; }
.service-img {
width: 130px; height: 90px; background: var(--light-bg); border-radius: 8px;
flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.service-img img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}
.service-info h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.service-info p { font-size: 13px; color: var(--muted); }
.services-stagger { max-width: 1000px; margin: 0 auto; }

/* ── AMAZON SECTION (book promotion) ── */
.amazon-section {
padding: clamp(36px, 5vw, 72px) clamp(20px, 4vw, 60px);
text-align: center;
background: #f4f6f9;
}
.amazon-section-inner {
max-width: 1100px;
margin: 0 auto;
}
/* =========================================
   MAIN PROMOTION CONTAINER
========================================= */

.promotion-banner {
    width: 100%;
    max-width: 1330px;
    min-height: 370px;

    margin: 40px auto;
    padding: 35px 65px;

    display: flex;
    align-items: center;

    gap: 45px;

    position: relative;
    overflow: hidden;

    /* Blue / Teal gradient like screenshot */
    background: linear-gradient(
        110deg,
        #003c61 0%,
        #005579 48%,
        #0089a5 100%
    );
}


/* =========================================
   LEFT SIDE - BOOK IMAGE
========================================= */

.books-area {
    width: 40%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    flex-shrink: 0;
}


/* Book Image */

.books-area img {
    width: 100%;
    max-width: 430px;

    height: auto;

    display: block;

    object-fit: contain;

    /* Prevent image from becoming too large */
    max-height: 260px;
}


/* =========================================
   RIGHT SIDE - CONTENT
========================================= */

.content-area {
    width: 60%;

    color: #ffffff;

    display: flex;
    flex-direction: column;

    justify-content: center;
}


/* =========================================
   HEADING
========================================= */

.content-area h1 {
    margin: 0 0 20px 0;

    max-width: 720px;

    color: #ffffff;

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.3px;
}


/* =========================================
   PARAGRAPH
========================================= */

.content-area p {
    margin: 0 0 25px 0;

    max-width: 720px;

    color: #f2f8fa;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.5;
}


/* =========================================
   BUTTON + PHONE CONTAINER
========================================= */

.bottom-area {
    display: flex;

    align-items: center;

    gap: 28px;

    flex-wrap: wrap;
}


/* =========================================
   ORANGE CTA BUTTON
========================================= */

.cta-button {
    min-width: 230px;
    height: 52px;

    padding: 0 28px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: #ff9700;

    color: #111111;

    border: none;
    border-radius: 30px;

    text-decoration: none;

    font-size: 17px;
    font-weight: 700;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Button Hover */

.cta-button:hover {
    background: #ffac20;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


/* =========================================
   PHONE NUMBER
========================================= */

.container-phone {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 400;

    white-space: nowrap;
}


/* Phone Icon */

.phone-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 27px;

    line-height: 1;

    transform: rotate(-20deg);
}


/* =========================================
   OPTIONAL PHONE LINK
========================================= */

.phone a {
    color: #ffffff;

    text-decoration: none;
}

.phone a:hover {
    text-decoration: underline;
}


/* =========================================
   TABLET - 1200px
========================================= */

@media (max-width: 1200px) {

    .promotion-banner {
        max-width: 95%;

        padding: 35px 45px;

        gap: 35px;
    }

    .books-area {
        width: 40%;
    }

    .content-area {
        width: 60%;
    }

    .books-area img {
        max-width: 380px;
    }

    .content-area h1 {
        font-size: 29px;
    }

    .content-area p {
        font-size: 16px;
    }
}


/* =========================================
   TABLET - 992px
========================================= */

@media (max-width: 992px) {

    .promotion-banner {
        min-height: 350px;

        padding: 35px;

        gap: 25px;
    }

    .books-area {
        width: 38%;
    }

    .content-area {
        width: 62%;
    }

    .books-area img {
        max-width: 330px;

        max-height: 230px;
    }

    .content-area h1 {
        font-size: 26px;

        margin-bottom: 16px;
    }

    .content-area p {
        font-size: 15px;

        line-height: 1.45;

        margin-bottom: 20px;
    }

    .bottom-area {
        gap: 20px;
    }

    .cta-button {
        min-width: 210px;

        height: 50px;

        font-size: 16px;
    }

    .phone {
        font-size: 15px;
    }
}


/* =========================================
   MOBILE - 768px
========================================= */

@media (max-width: 768px) {

    .promotion-banner {
        width: calc(100% - 30px);

        max-width: 700px;

        min-height: auto;

        margin: 25px auto;

        padding: 35px 25px;

        display: flex;

        flex-direction: column;

        gap: 20px;
    }


    /* Books */

    .books-area {
        width: 100%;

        display: flex;

        justify-content: center;

        align-items: center;
    }

    .books-area img {
        width: 75%;

        max-width: 350px;

        max-height: 220px;
    }


    /* Content */

    .content-area {
        width: 100%;

        text-align: center;

        align-items: center;
    }

    .content-area h1 {
        max-width: 600px;

        font-size: 27px;

        line-height: 1.25;

        margin-bottom: 16px;
    }

    .content-area p {
        max-width: 600px;

        font-size: 15px;

        line-height: 1.5;

        margin-bottom: 22px;
    }


    /* Button + Phone */

    .bottom-area {
        justify-content: center;

        gap: 20px;
    }

    .cta-button {
        min-width: 220px;

        height: 50px;
    }
}


/* =========================================
   MOBILE - 576px
========================================= */

@media (max-width: 576px) {

    .promotion-banner {
        width: calc(100% - 20px);

        margin: 20px auto;

        padding: 30px 20px;

        gap: 15px;
    }


    /* Books */

    .books-area img {
        width: 85%;

        max-width: 320px;

        max-height: 200px;
    }


    /* Heading */

    .content-area h1 {
        font-size: 23px;

        line-height: 1.25;
    }


    /* Paragraph */

    .content-area p {
        font-size: 14px;

        line-height: 1.55;
    }


    /* Bottom */

    .bottom-area {
        flex-direction: column;

        width: 100%;

        gap: 16px;
    }


    /* Button */

    .cta-button {
        width: 220px;

        min-width: 220px;

        height: 50px;

        font-size: 16px;
    }


    /* Phone */

    .phone {
        font-size: 15px;
    }

    .phone-icon {
        font-size: 25px;
    }
}


/* =========================================
   SMALL MOBILE - 400px
========================================= */

@media (max-width: 400px) {

    .promotion-banner {
        padding: 25px 15px;
    }

    .books-area img {
        width: 95%;

        max-width: 290px;
    }

    .content-area h1 {
        font-size: 21px;
    }

    .content-area p {
        font-size: 13px;
    }

    .cta-button {
        width: 210px;

        min-width: 210px;
    }

    .phone {
        font-size: 14px;
    }
}
.amazon-section h2 {
font-family: 'Poppins', sans-serif;
font-size: clamp(22px, 2.5vw, 32px);
font-weight: 800;
color: #111;
margin: 0 auto 28px;
line-height: 1.25;
max-width: 900px;
}
.books-row {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-end;
gap: clamp(16px, 4vw, 48px);
margin-bottom: clamp(28px, 5vw, 48px);
}
.book-cover {
width: 110px;
height: 155px;
border-radius: 6px;
object-fit: cover;
box-shadow: 4px 10px 24px rgba(0, 0, 0, .16);
}
.book-placeholder {
flex: 0 1 auto;
width: clamp(88px, 18vw, 130px);
max-width: 130px;
border-radius: 6px;
box-shadow: 4px 12px 28px rgba(0, 0, 0, .18);
overflow: hidden;
line-height: 0;
}
.book-placeholder img {
width: 100%;
height: auto;
aspect-ratio: 110 / 155;
object-fit: cover;
display: block;
}
.book-placeholder.b1 { background: linear-gradient(135deg, #1a1a2e, #16213e); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; font-weight: 700; text-align: center; padding: 8px; }
.book-placeholder.b2 { background: linear-gradient(135deg, #2d5a27, #4a7c3f); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; font-weight: 700; text-align: center; padding: 8px; }
.book-placeholder.b3 { background: linear-gradient(135deg, #8b1a1a, #c0392b); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; font-weight: 700; text-align: center; padding: 8px; }
.book-placeholder.b4 { background: linear-gradient(135deg, #1a3a5c, #2980b9); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; font-weight: 700; text-align: center; padding: 8px; }
.book-placeholder.b5 { background: linear-gradient(135deg, #4a235a, #7d3c98); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; font-weight: 700; text-align: center; padding: 8px; }
.btn-amazon-cta {
font-size: 16px;
padding: 14px 36px;
border-radius: 40px;
}

/* ── CHECKLIST SECTION (book promotion) ── */
.checklist-section {
/* padding: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 60px); */
background: #eef1f5;
padding: 50px 60px; text-align: center;
}
.checklist-section h2 {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
color: black;
font-size: 32px;
margin-bottom: 12px;
}
.checklist-section-inner {
max-width: 1000px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: clamp(18px, 3vw, 28px);
}
.check-item {
background: #fff;
border-radius: 24px;
padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 52px);
display: flex;
gap: clamp(16px, 3vw, 28px);
align-items: flex-start;
text-align: left;
box-shadow: 0 12px 40px rgba(17, 24, 39, .08);
border: 1px solid rgba(226, 232, 240, .9);
}
.check-mark {
flex: 0 0 auto;
width: clamp(40px, 5vw, 52px);
height: clamp(40px, 5vw, 52px);
margin-top: 4px;
display: flex;
align-items: center;
justify-content: center;
color: #111;
}
.check-mark svg {
width: 100%;
height: 100%;
max-width: 44px;
max-height: 44px;
}
.check-content {
flex: 1;
min-width: 0;
}
.check-content h4 {
font-family: 'Poppins', sans-serif;
font-size: clamp(17px, 1.6vw, 22px);
font-weight: 700;
color: #111;
margin: 0 0 14px;
line-height: 1.35;
}
.check-content p {
font-size: clamp(14px, 1.1vw, 16px);
color: #333;
line-height: 1.65;
margin: 0;
}

@media (max-width: 640px) {
.books-row {
gap: 16px;
margin-bottom: 28px;
}
.book-placeholder {
flex: 1 1 calc(50% - 10px);
max-width: 200px;
min-width: 0;
}
.check-item {
flex-direction: column;
align-items: center;
text-align: center;
border-radius: 20px;
}
.check-mark {
margin-top: 0;
}
.check-content h4 {
text-align: center;
}
.check-content p {
max-width: none;
text-align: center;
}
}

/* ── PLATFORMS ── */
.platforms-section { padding: 50px 60px; text-align: center; background: var(--white); border-top: 1px solid #eee; }
.platforms-section h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 26px; color: var(--navy); margin-bottom: 28px; }
.platforms-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.platform-badge {
border-radius: 12px;
padding: 10px 14px;
background: var(--white);
border: 1px solid #e8edf5;
box-shadow: 0 2px 8px rgba(26, 53, 102, .06);
transition: box-shadow .2s ease, transform .15s ease;
}
.platform-badge:hover {
box-shadow: 0 6px 16px rgba(26, 53, 102, .1);
transform: translateY(-2px);
}
.platform-badge img {
height: 70px;
width: auto;
max-width: 100px;
object-fit: contain;
display: block;
}
.p-kindle { background: #000; }
.p-apple  { background: #f5921e; }
.p-kobo   { background: #d44f00; }
.p-bn     { background: #1b5e20; }
.p-lulu   { background: #0077b6; }
.p-book2  { background: #1e40af; }
.p-amazon { background: #FF9900; color: #000; }
.p-ingram { background: #e0e0e0; color: #333; }

/* ── FAQ SECTION ── */
.faq-section {
padding: 60px 60px;
background: var(--light-bg);
}
.faq-section-inner {
max-width: 860px;
margin: 0 auto;
}
.faq-header {
text-align: center;
margin-bottom: 36px;
}
.faq-header h2 {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 28px;
color: var(--navy);
margin-bottom: 12px;
line-height: 1.25;
}
.faq-header p {
font-size: 14px;
color: var(--muted);
max-width: 620px;
margin: 0 auto;
line-height: 1.65;
}
.faq-header strong {
color: var(--navy);
}
.faq-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.faq-item {
background: var(--white);
border: 1px solid #e4eaf5;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 16px rgba(26, 53, 102, .06);
transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item.is-open {
border-color: rgba(26, 53, 102, .18);
box-shadow: 0 8px 24px rgba(26, 53, 102, .1);
}
.faq-question {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 18px 22px;
background: none;
border: none;
cursor: pointer;
text-align: left;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 15px;
color: var(--navy);
line-height: 1.4;
}
.faq-question:hover,
.faq-question:focus-visible {
color: var(--orange);
outline: none;
}
.faq-icon {
flex-shrink: 0;
font-size: 14px;
color: var(--orange);
transition: transform .25s ease;
}
.faq-item.is-open .faq-icon {
transform: rotate(180deg);
}
.faq-answer {
display: none;
padding: 0 22px 18px;
}
.faq-item.is-open .faq-answer {
display: block;
}
.faq-answer p {
font-size: 14px;
color: var(--muted);
line-height: 1.7;
margin: 0;
}

/* ── FINAL CTA ── */
.final-cta {
padding: 60px 60px;
text-align: center;
background: linear-gradient(135deg, var(--navy) 0%, #2257a0 100%);
color: var(--white);
}
.final-cta h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 28px; color: var(--white); margin-bottom: 10px; }
.final-cta p { font-size: 15px; color: rgba(255, 255, 255, .85); margin-bottom: 20px; }
.final-cta .phone { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.final-cta .phone a { color: var(--white); text-decoration: none; }

/* ── FOOTER ── */
footer { background: var(--orange); padding: 50px 60px 0; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1.4fr; gap: 32px; padding-bottom: 36px; }
.footer-col h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; font-size: 13px; }
.footer-col ul li a { color: var(--white); }
.footer-col ul li a:hover { text-decoration: none; opacity: .85; }
.footer-logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; }
.footer-logo-text .k { color: var(--navy); }
.footer-tagline { font-size: 15px; font-weight: 700; margin: 10px 0 8px; }
.footer-desc { font-size: 12px; opacity: .9; margin-bottom: 14px; }
.social-icons { display: flex; gap: 10px; margin-bottom: 14px; }
.social-icon { width: 30px; height: 30px; border-radius: 50%; border: 1px solid white; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.footer-address { font-size: 12px; opacity: .9; display: flex; gap: 6px; align-items: flex-start; }
.footer-bottom {
border-top: 1px solid rgba(255,255,255,.3); padding: 20px 0;
display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; opacity: .85; max-width: 380px; }
.badges { display: flex; gap: 12px; align-items: center; }
.badge-box { background: var(--white); border-radius: 8px; padding: 8px 14px; display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--text); }
.badge-box .b-icon { font-size: 16px; }
.copyright { text-align: center; font-size: 12px; opacity: .8; padding: 14px 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
.header-container,
.hero,
.genres-section,
.features-section,
.cta-banner,
.split-section,
.packages-section,
.outshine-section,
.greatness-section,
.reviews-section,
.wondering-section,
.services-section,
.platforms-section,
.faq-section,
.final-cta,
footer {
padding-left: 28px;
padding-right: 28px;
}
.hero h1 { font-size: 30px; }
.reviews-grid { grid-template-columns: repeat(2, 1fr); }
.about-hero,
.mindset-section,
.team-section {
  padding-left: 28px;
  padding-right: 28px;
}
.about-hero {
  gap: 36px;
  max-width: 1240px;
}
.team-grid {
  max-width: 880px;
  gap: 32px;
}
}

@media (max-width: 992px) {
.menu-toggle { display: inline-flex; }
.main-nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #fff;
padding: 14px 22px 18px;
border-top: 1px solid #e9edf7;
box-shadow: 0 12px 20px rgba(0, 0, 0, .08);
display: none;
flex-direction: column;
align-items: stretch;
}
.header.menu-open .main-nav {
display: flex;
}
.main-nav {
width: 100vw;
margin-left: calc(50% - 50vw);
}
.nav-links {
flex-direction: column;
align-items: stretch;
gap: 10px;
margin-left: 0;
width: 100%;
}
.nav-links > li {
width: 100%;
}
.nav-links > li > a {
display: block;
padding: 10px 0;
width: 100%;
text-align: left;
}
.dropdown-trigger {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
padding: 10px 0;
text-align: left;
}
.dropdown-menu {
position: static;
top: auto;
left: auto;
width: 100%;
min-width: 0;
margin: 4px 0 10px;
border-radius: 10px;
box-shadow: none;
border: 1px solid #e9edf7;
max-height: min(52vh, 340px);
}
.dropdown-menu a {
white-space: normal;
}
@media (hover: hover) and (pointer: fine) {
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
display: none;
}
}
.dropdown.is-open .dropdown-menu {
display: block;
}
.btn-login {
display: block;
width: 100%;
text-align: center;
margin-top: 8px;
}
.header.menu-open .menu-toggle span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.header.menu-open .menu-toggle span:nth-child(2) {
opacity: 0;
}
.header.menu-open .menu-toggle span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
.hero {
flex-direction: column;
text-align: center;
padding-top: 40px;
}
.hero-rating { justify-content: center; }
.hero-right { width: 100%; }
.hero-books-img {
width: 100%;
max-width: 620px;
margin: 0 auto;
}
.hero-card-popup { right: 18px; top: 14px; }
.split-section { padding-left: 28px; padding-right: 28px; }
.split-section-inner {
flex-direction: column;
align-items: center;
text-align: center;
min-height: 0;
gap: 28px;
padding-bottom: 0;
}
.split-left {
padding: 0 0 32px;
text-align: center;
flex: 1 1 auto;
max-width: 640px;
margin: 0 auto;
}
.split-left h3 { margin-top: 20px; }
.split-left h3:first-of-type { margin-top: 0; }
.split-right {
flex: 1 1 auto;
max-width: 360px;
min-width: 0;
align-self: center;
}
.split-right-img img {
max-height: 400px;
}
.reviews-layout,
.two-col {
grid-template-columns: 1fr;
display: grid;
}
.reviews-right { order: -1; }
.feature-grid { grid-template-columns: 1fr; }
.genres-grid { grid-template-columns: repeat(3, 1fr); }
.packages-grid { grid-template-columns: 1fr 1fr; }
.features-grid { grid-template-columns: 1fr 1fr; }
.feature-card:nth-child(3n) { border-right: 1px solid #e5e5e5; }
.feature-card:nth-child(2n) { border-right: none; }
.feature-card:nth-last-child(-n+3) { border-bottom: 1px solid #e5e5e5; }
.feature-card:nth-last-child(-n+2) { border-bottom: none; }
.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
.about-hero {
  grid-template-columns: 1fr;
  gap: 22px;
  padding-top: 42px;
  padding-bottom: 42px;
}
.about-hero-left h1 {
  font-size: clamp(24px, 4.4vw, 34px);
}
.mindset-section {
  padding-top: 42px;
  padding-bottom: 26px;
}
.mindset-section h2,
.team-section h2 {
  font-size: 24px;
}
.team-section {
  padding-top: 42px;
  padding-bottom: 42px;
}
.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
}
.avatar {
  width: min(100%, 220px);
  height: auto;
  aspect-ratio: 1 / 1;
}
}

@media (max-width: 640px) {
.header-container,
.hero,
.genres-section,
.features-section,
.cta-banner,
.split-section,
.packages-section,
.outshine-section,
.greatness-section,
.reviews-section,
.wondering-section,
.services-section,
.platforms-section,
.faq-section,
.final-cta,
footer {
padding-left: 16px;
padding-right: 16px;
}
.logo-text { font-size: 14px; }
.logo-img { width: 100px; height: 50px; }
.hero h1 { font-size: 30px; }
.hero h2 { font-size: 18px; }
.hero-card-popup { position: static; margin: 0 auto 10px; width: 100%; max-width: 320px; }
.hero-books-img { height: 250px; border-radius: 14px; }
.genres-section h2 { font-size: 26px; }
.genres-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
.genre-card { min-height: 150px; font-size: 13px; }
.genre-icon { width: 68px; height: 68px; }
.genre-icon img { max-width: 50px; max-height: 50px; }
.book-1 { width: 140px; }
.book-2 { width: 160px; }
.book-3 { width: 170px; }
.book-4 { width: 160px; }
.book-5 { width: 180px; }
.features-section h2,
.packages-section h2,
.reviews-right h2,
.services-section h2,
.outshine-section h2,
.greatness-section h2,
.final-cta h2,
.wondering-section h2,
.faq-header h2,
.split-left h2 { font-size: 24px; }
.features-grid,
.packages-grid,
.reviews-grid,
.footer-grid { grid-template-columns: 1fr; }
.feature-card,
.feature-card:nth-child(2n),
.feature-card:nth-child(3n) { border-right: none; }
.feature-card:nth-last-child(-n+2),
.feature-card:nth-last-child(-n+3) { border-bottom: 1px solid #e5e5e5; }
.feature-card:last-child { border-bottom: none; }
.service-card {
flex-direction: column;
align-items: flex-start;
gap: 14px;
padding: 18px;
}
.service-img { width: 84px; height: 74px; font-size: 30px; }
.footer-bottom { flex-direction: column; align-items: flex-start; }
.badges { flex-wrap: wrap; }
.about-hero {
  padding-top: 28px;
  padding-bottom: 30px;
  gap: 16px;
}
.about-hero-left h1 {
  font-size: 22px;
  line-height: 1.3;
}
.about-hero-right p,
.mindset-section p {
  font-size: 13px;
  line-height: 1.7;
}
.mindset-section {
  padding-top: 32px;
  padding-bottom: 24px;
}
.mindset-section h2,
.team-section h2 {
  font-size: 21px;
}
.office-photo-placeholder {
  margin-top: 20px;
  border-radius: 10px;
}
.team-section {
  padding-top: 34px;
  padding-bottom: 34px;
}
.team-grid {
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 280px;
}
.avatar {
  width: 200px;
}
}
@media (max-width: 1199px) {
    .genres-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
 
/* Tablets */
@media (max-width: 900px) {
    .genres-section {
        padding: 40px 30px;
    }
    .genres-section h2 {
        font-size: 26px;
    }
    .genres-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 0;
    }
    .genre-card {
        max-width: 200px;
        padding: 18px;
    }
    .genre-icon {
        width: 52px;
        height: 52px;
    }
    .genre-icon img {
        width: 44px;
        height: 44px;
    }
}
 
/* Large phones / small tablets */
@media (max-width: 600px) {
    .genres-section {
        padding: 32px 20px;
    }
    .genres-section h2 {
        font-size: 22px;
    }
    .genres-section p {
        font-size: 13px;
        margin-bottom: 24px;
    }
    .genres-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .genre-card {
        max-width: 100%;
        padding: 16px;
    }
    .genre-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 8px;
    }
    .genre-icon img {
        width: 40px;
        height: 40px;
    }
    .genre-title {
        font-size: 12.5px;
        margin-bottom: 4px;
    }
    .genre-description {
        font-size: 9.5px;
        line-height: 1.35;
        -webkit-line-clamp: 3;
    }
}
 
/* Small phones */
@media (max-width: 380px) {
    .genres-grid {
        gap: 10px;
    }
    .genre-card {
        padding: 12px;
    }
    .genre-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }
    .genre-icon img {
        width: 34px;
        height: 34px;
    }
    .genre-title {
        font-size: 11.5px;
    }
    .genre-description {
        font-size: 9px;
        -webkit-line-clamp: 2;
    }
}