/* ═══════════════════════════════════════════════════════════════
   Vruksha Academy — Global Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* ── Logo palette ── */
  --blue-dark:   #071736;    /* deep hero navy */
  --blue-brand:  #1565c0;    /* logo blue (VRUKSHA text) */
  --blue-mid:    #1e6fd9;    /* interactive/link blue */
  --blue-light:  #5b9ee8;
  --blue-pale:   #dce9fb;
  --orange:      #f7941d;    /* logo orange (ACADEMY text) */
  --orange-dark: #e07b0e;
  --orange-pale: #fef3e2;
  --green:       #3ea845;    /* logo green (tree leaves) */
  --green-dark:  #2d7a33;
  --green-pale:  #e2f5e4;
  --leaf:        #3ea845;
  --white:       #ffffff;
  --off-white:   #f4f8ff;
  --text-dark:   #071736;
  --text-mid:    #3a5278;
  --text-light:  #7a90b0;
  --radius:      16px;
  --shadow:      0 8px 32px rgba(7,23,54,.10);
  --shadow-lg:   0 20px 60px rgba(7,23,54,.16);
}
html  { scroll-behavior: smooth; }
body  { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: clip; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }

/* ── Utilities ──────────────────────────────────────────────────── */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.section-header          { text-align: center; margin-bottom: 56px; }
.section-header h2       { font-size: clamp(2rem,4vw,2.8rem); color: var(--text-dark); margin-bottom: 14px; }
.section-header p        { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; margin: 0 auto; line-height: 1.7; }
section                  { padding: 88px 0; scroll-margin-top: 80px; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn { display:inline-flex; align-items:center; gap:8px; padding:13px 30px; border-radius:50px; font-size:.93rem; font-weight:600; cursor:pointer; transition:all .25s; border:none; }
.btn-primary  { background:var(--blue-brand); color:var(--white); }
.btn-primary:hover  { background:#0f4fa0; transform:translateY(-2px); box-shadow:0 8px 24px rgba(21,101,192,.35); }
.btn-gold     { background:var(--orange); color:var(--white); }
.btn-gold:hover     { background:var(--orange-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(247,148,29,.45); }
.btn-green    { background:var(--green); color:var(--white); }
.btn-green:hover    { background:var(--green-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(62,168,69,.38); }
.btn-outline  { background:transparent; color:var(--white); border:2px solid rgba(255,255,255,.6); }
.btn-outline:hover  { background:rgba(255,255,255,.12); border-color:var(--white); }
.btn-ghost    { background:transparent; color:var(--blue-brand); border:2px solid var(--blue-brand); }
.btn-ghost:hover    { background:var(--blue-brand); color:var(--white); transform:translateY(-2px); }

/* ── Announcement Bar ───────────────────────────────────────────── */
.ann-bar {
  background: linear-gradient(90deg, #06102a, #0d2d6e, #1246b5);
  padding: 10px 24px; text-align: center; font-size: .82rem;
  color: rgba(255,255,255,.88); display: flex; align-items: center;
  justify-content: center; gap: 12px;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 210;  /* above nav (200) */
}
.ann-bar strong { color: var(--orange); }
.ann-bar a      { color: #fff; text-decoration: underline; font-weight: 600; }
.ann-close      { position:absolute; right:16px; cursor:pointer; font-size:1.05rem; opacity:.65; background:none; border:none; color:#fff; padding:0 6px; line-height:1; }
.ann-close:hover{ opacity:1; }

/* ── Real image helpers ─────────────────────────────────────────── */
.img-cover { width:100%; height:100%; object-fit:cover; display:block; }
.img-frame { border-radius:24px; overflow:hidden; box-shadow:var(--shadow-lg); position:relative; }
.img-frame img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .45s ease; }
.img-frame:hover img { transform:scale(1.04); }
.img-badge {
  position:absolute; bottom:20px; left:20px; z-index:2;
  background:rgba(255,255,255,.96); backdrop-filter:blur(10px);
  border-radius:14px; padding:12px 18px; box-shadow:0 4px 24px rgba(0,0,0,.15);
  display:flex; align-items:center; gap:12px;
}
.img-badge .ib-num { font-family:'Playfair Display',serif; font-size:1.8rem; font-weight:800; color:var(--blue-dark); line-height:1; }
.img-badge .ib-txt { font-size:.75rem; color:var(--text-mid); line-height:1.4; max-width:80px; }

/* Course card with top image */
.course-img { width:100%; height:140px; object-fit:cover; border-radius:14px 14px 0 0; display:block; margin:-28px -24px 16px; width:calc(100% + 48px); }

/* Team card image */
.team-photo { width:92px; height:92px; border-radius:50%; margin:0 auto 18px; border:3px solid var(--orange); object-fit:cover; display:block; box-shadow:0 4px 18px rgba(245,158,11,.25); }

/* Testimonial avatar image */
.testi-avatar img { width:44px; height:44px; border-radius:50%; object-fit:cover; }

/* Blog card image */
.blog-img img { width:100%; height:100%; object-fit:cover; display:block; border-radius:20px 20px 0 0; transition:transform .4s; }
.blog-card:hover .blog-img img { transform:scale(1.05); }

/* About founder image */
.founder-img img { width:100%; height:100%; object-fit:cover; border-radius:24px; }

/* ── Navigation ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--ann-h, 0px); left: 0; right: 0;
  z-index: 200;
  background: transparent;
  transition: top .3s ease;
}
/* The wrap div carries the visual bg — animates margin inward */
.nav-wrap {
  background: linear-gradient(135deg, #0a1f55 0%, #0d2d6e 60%, #1246b5 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  transition: margin .4s cubic-bezier(.4,0,.2,1),
              border-radius .4s cubic-bezier(.4,0,.2,1),
              background .4s cubic-bezier(.4,0,.2,1),
              box-shadow .4s cubic-bezier(.4,0,.2,1),
              border .4s cubic-bezier(.4,0,.2,1);
}
.nav.scrolled .nav-wrap {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50px;
  margin: 10px max(20px, calc(50% - 560px));
  box-shadow: 0 6px 28px rgba(13,45,110,.14);
  border: 1px solid rgba(13,45,110,.08);
  border-bottom: 1px solid rgba(13,45,110,.08);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; padding: 0 32px;
}
.nav.scrolled .nav-inner { height: 54px; padding: 0 26px; }

/* Logo: remove redundant white box once pill bg is white */
.nav.scrolled .logo { background: transparent; box-shadow: none; padding: 0; }
.nav.scrolled .logo img { height: 38px; }

/* Logo */
.logo { display:flex; align-items:center; background:var(--white); border-radius:12px; padding:5px 10px; box-shadow:0 2px 14px rgba(0,0,0,.18); transition:box-shadow .2s; }
.logo:hover { box-shadow: 0 4px 22px rgba(0,0,0,.22); }
.logo img { height:42px; width:auto; }

/* Nav links — white on dark nav */
.nav-links { display:flex; align-items:center; gap:30px; }
.nav-links a {
  font-size:.88rem; font-weight:500;
  color: rgba(255,255,255,.9);
  transition: color .2s;
  position: relative;
}
/* underline indicator */
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px;
  background:var(--orange); border-radius:2px; transition:width .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width:100%; }
.nav-links a:hover { color:var(--orange) !important; }
.nav-links a.active { color:var(--orange) !important; font-weight:600; }

/* Scrolled — dark links */
.nav.scrolled .nav-links a { color:var(--text-mid); }
.nav.scrolled .nav-links a:hover { color:var(--orange) !important; }
.nav.scrolled .nav-links a.active { color:var(--blue-brand) !important; }
.nav.scrolled .nav-links a.active::after { background:var(--green); }

/* CTA */
.nav-cta { display:flex; align-items:center; gap:10px; }

/* Hamburger */
.hamburger {
  display:none; flex-direction:column; gap:5px; cursor:pointer;
  padding:9px 10px; border-radius:10px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.22);
  transition: background .2s;
}
.nav.scrolled .hamburger { background:var(--blue-pale); border-color:var(--blue-pale); }
.hamburger span { width:22px; height:2px; background:#fff; border-radius:2px; transition:all .3s; display:block; }
.nav.scrolled .hamburger span { background:var(--blue-dark); }
/* Hamburger open state */
.hamburger.is-open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mob-overlay {
  display:none; position:fixed; inset:0;
  background:rgba(6,15,42,.72); backdrop-filter:blur(4px);
  z-index:220; /* above ann-bar(210) and nav(200) */
}
.mob-overlay.open { display:flex; align-items:stretch; justify-content:flex-end; }
.mob-panel {
  background:var(--white);
  width: min(320px, 88vw);
  height:100%;
  /* push content below ann-bar + nav */
  padding: calc(var(--ann-h, 0px) + 78px) 20px 32px;
  overflow-y:auto; display:flex; flex-direction:column; gap:4px;
  box-shadow:-12px 0 48px rgba(0,0,0,.25);
  animation:slideIn .28s cubic-bezier(.4,0,.2,1);
  position:relative;
}
@keyframes slideIn { from{transform:translateX(100%)} to{transform:translateX(0)} }
.mob-close {
  position:absolute;
  top: calc(var(--ann-h, 0px) + 18px);
  right:18px;
  background:var(--blue-pale); border:none;
  font-size:.9rem; font-weight:700; cursor:pointer; color:var(--blue-dark);
  width:36px; height:36px; border-radius:50%; display:flex; align-items:center;
  justify-content:center; transition:background .2s, transform .2s;
  z-index:1;
}
.mob-close:hover { background:var(--blue-mid); color:#fff; transform:rotate(90deg); }
.mob-panel a {
  font-size:.93rem; font-weight:500; color:var(--text-dark);
  padding:13px 14px; border-radius:12px;
  display:flex; align-items:center; gap:11px; transition:all .2s;
}
.mob-panel a:hover, .mob-panel a.active { background:var(--blue-pale); color:var(--blue-mid); }
.mob-panel a.active { font-weight:600; }
.mob-enrol {
  margin-top:18px !important; text-align:center;
  background: linear-gradient(135deg,var(--blue-mid),var(--blue-dark)) !important;
  color:var(--white) !important; border-radius:50px !important;
  justify-content:center !important; font-weight:700 !important;
  padding:14px 24px !important; box-shadow:0 4px 18px rgba(37,99,235,.35) !important;
}
.mob-enrol:hover { opacity:.9; transform:translateY(-1px); }

/* ── Page Hero (inner pages) ────────────────────────────────────── */
/* Offset for fixed nav (68px) */
.page-hero {
  background: linear-gradient(135deg, #0b2260 0%, #1246b5 45%, #2563eb 100%);
  padding: 128px 24px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero-content { position:relative; z-index:1; }
.page-hero .breadcrumb { display:flex; align-items:center; justify-content:center; gap:8px; font-size:.8rem; color:rgba(255,255,255,.6); margin-bottom:16px; }
.page-hero .breadcrumb a { color:rgba(255,255,255,.6); transition:color .2s; }
.page-hero .breadcrumb a:hover { color:var(--orange); }
.page-hero .breadcrumb span { color:rgba(255,255,255,.3); }
.page-hero h1 { font-size:clamp(2rem,5vw,3.2rem); color:var(--white); margin-bottom:16px; }
.page-hero p  { font-size:1.05rem; color:rgba(255,255,255,.75); max-width:560px; margin:0 auto; line-height:1.75; }

/* ── Marquee ────────────────────────────────────────────────────── */
.marquee-section { background:var(--blue-mid); padding:13px 0; overflow:hidden; }
.marquee-track { display:flex; gap:48px; white-space:nowrap; animation:marquee 26s linear infinite; }
.marquee-track span { font-size:.82rem; font-weight:500; color:rgba(255,255,255,.85); display:flex; align-items:center; gap:12px; }
.marquee-track span::before { content:'✦'; color:var(--orange); font-size:.7rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Accreditation Strip ────────────────────────────────────────── */
.acc-strip {
  background: var(--white);
  padding: 44px 24px;
  border-top: 1px solid #e8eef8;
  border-bottom: 1px solid #e8eef8;
}
.acc-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 28px;
  max-width: 1100px; margin: 0 auto;
}
.acc-label {
  font-size: .72rem; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: .18em;
  position: relative;
}
.acc-label::before, .acc-label::after {
  content: ''; display: inline-block; width: 40px; height: 1px;
  background: #c8d5e8; vertical-align: middle; margin: 0 12px;
}
/* Logo grid */
.acc-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.acc-logo-item {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  border-right: 1px solid #e8eef8;
  transition: all .25s;
}
.acc-logo-item:last-child { border-right: none; }
.acc-logo-item img {
  height: 52px; width: auto; max-width: 130px;
  object-fit: contain; display: block;
  filter: grayscale(1) opacity(.55);
  transition: filter .3s ease, transform .3s ease;
}
.acc-logo-item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.08);
}
@media(max-width:768px){
  .acc-logos { gap: 0; }
  .acc-logo-item { padding: 12px 20px; border-right: none; border-bottom: 1px solid #e8eef8; width: 33%; }
  .acc-logo-item:nth-child(3n) { border-right: none; }
  .acc-logo-item img { height: 40px; }
}

/* ── Stats Bar ──────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #142254 100%);
  padding: 80px 24px;
  scroll-margin-top: 80px;
  position: relative;
  overflow: hidden;
}
/* subtle dot pattern inside stats bar */
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  position: relative; z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .28s, background .28s;
}
.stat-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.1);
}
.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.stat-item .num span { color: var(--orange); }
.stat-item .lbl {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-top: 10px;
  display: block;
  font-weight: 500;
  letter-spacing: .03em;
}

/* ── Cards ──────────────────────────────────────────────────────── */
.card { background:var(--white); border-radius:20px; border:1.5px solid #eef1f8; box-shadow:var(--shadow); transition:all .3s; }
.card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--blue-light); }

/* ═══════════════════════════════════════════════════════════════
   COURSE CARDS — consistent layout across all grid rows
   ═══════════════════════════════════════════════════════════════ */

/* Grid always stretches cards to equal height */
.courses-grid       { display:grid; gap:24px; align-items:stretch; }
.courses-grid.col-3 { grid-template-columns:repeat(3,1fr); }
.courses-grid.col-2 { grid-template-columns:repeat(2,1fr); }
@media(max-width:1024px){ .courses-grid{ grid-template-columns:repeat(2,1fr) !important; } }
@media(max-width:600px) { .courses-grid{ grid-template-columns:1fr !important; } }

.card.course-card {
  /* Reset base card hover so we control it here only */
  padding: 0;
  height: 100%;          /* fill grid cell */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(7,23,54,.15);
  border-color: rgba(30,111,217,.25);
}

/* ── Image wrapper — fixed height, zoom on hover ── */
.course-card .course-thumb-wrap {
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.course-card .course-thumb-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(7,23,54,.12) 100%);
  pointer-events: none;
}
.course-thumb {
  width: 100%; height: 200px;
  object-fit: cover; display: block;
  transition: transform .45s ease;
}
.course-card:hover .course-thumb { transform: scale(1.07); }

/* ── Card body — flex column, fills remaining space ── */
.course-body {
  display: flex; flex-direction: column;
  flex: 1;           /* take all space below image */
  padding: 0;
}

/* All text rows get horizontal padding */
.course-card .course-header,
.course-card .course-tag,
.course-card .course-title,
.course-card .course-features,
.course-card .course-mode,
.course-card .course-enroll { padding-left: 20px; padding-right: 20px; }

.course-card .course-header  { padding-top: 14px; padding-bottom: 2px; flex-shrink: 0; }
.course-card .course-tag     { margin-top: 4px; flex-shrink: 0; }
.course-card .course-title   { margin-top: 10px; flex-shrink: 0; }

/* Title — exactly 2 lines, all cards same height */
.course-card .course-title,
.course-card h3 {
  font-size: .95rem; font-weight: 700;
  color: var(--text-dark); line-height: 1.5;
  min-height: 2.85rem;   /* 2 lines × 1.5 × .95rem */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 10px;
}

/* Features — FLEX-GROW 1 → this is the elastic zone */
.course-card .course-features {
  flex: 1;
  margin-top: 10px;
  min-height: 68px;   /* room for 3 items */
}
.course-card .course-mode  { margin-top: 6px; padding-bottom: 2px; flex-shrink: 0; }

/* Button — always at the bottom */
.course-card .course-enroll {
  margin-top: 14px;
  margin-bottom: 20px;
  flex-shrink: 0;
  align-self: flex-start;
}

/* ── Sub-elements ── */
.course-header  { display:flex; align-items:center; justify-content:space-between; }
.course-icon    { width:46px; height:46px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0; overflow:hidden; }
.course-icon img{ width:100%; height:100%; object-fit:cover; }
.ci-green  { background:linear-gradient(135deg,#d0f5d4,#86efac); }
.ci-blue   { background:linear-gradient(135deg,#cde0f8,#93c5fd); }
.ci-sky    { background:linear-gradient(135deg,#ddf0fc,#7dd3fc); }
.ci-amber  { background:linear-gradient(135deg,#fde8c8,#fdc98a); }
.ci-purple { background:linear-gradient(135deg,#ece8fd,#c4b5fd); }
.ci-rose   { background:linear-gradient(135deg,#fce2f0,#f9a8d4); }

.course-duration {
  font-size: .7rem; font-weight: 600; color: var(--text-light);
  background: var(--off-white); padding: 4px 10px; border-radius: 50px;
}
.course-tag {
  display: inline-block; border-radius: 50px;
  padding: 3px 12px; font-size: .68rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
}
.ct-diploma  { background: #dce9fb; color: #0f4fa0; }
.ct-advanced { background: #ece8fd; color: #5b21b6; }
.ct-cert     { background: #fde8c8; color: #92400e; }
.ct-degree   { background: #d0f5d4; color: #166534; }

.course-features      { list-style:none; display:flex; flex-direction:column; gap:5px; }
.course-features li   { font-size:.76rem; color:var(--text-mid); display:flex; align-items:flex-start; gap:7px; line-height:1.4; }
.course-features li::before { content:'✓'; color:var(--green); font-weight:700; flex-shrink:0; font-size:.78rem; }

.course-mode          { display:flex; align-items:center; gap:5px; font-size:.71rem; color:var(--text-light); font-weight:500; }
.course-mode::before  { content:''; width:7px; height:7px; border-radius:50%; background:var(--green); flex-shrink:0; }

.course-enroll {
  padding: 10px 22px; border-radius: 50px;
  background: var(--blue-pale); color: var(--blue-brand);
  font-size: .81rem; font-weight: 700;
  border: none; cursor: pointer;
  transition: all .22s;
  text-decoration: none; display: inline-flex; align-items: center;
}
.course-enroll:hover {
  background: var(--blue-brand); color: var(--white);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(21,101,192,.25);
}

/* ── Testimonials ───────────────────────────────────────────────── */
.testi-card { padding:32px; position:relative; }
.testi-card::before { content:'"'; position:absolute; top:16px; right:24px; font-family:'Playfair Display',serif; font-size:5rem; color:var(--blue-pale); line-height:1; }
.stars { color:var(--orange); font-size:1rem; margin-bottom:14px; letter-spacing:2px; }
.testi-card p { color:var(--text-mid); line-height:1.75; font-size:.88rem; margin-bottom:20px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem; background:var(--blue-pale); flex-shrink:0; }
.testi-name { font-weight:600; font-size:.88rem; color:var(--text-dark); }
.testi-role { font-size:.73rem; color:var(--text-light); }

/* ── CTA Banner ─────────────────────────────────────────────────── */
.cta-banner { background:linear-gradient(135deg,#0d2d6e 0%,#1e90e8 100%); padding:80px 24px; text-align:center; position:relative; overflow:hidden; }
.cta-banner::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 30% 50%,rgba(245,158,11,.18) 0%,transparent 60%),radial-gradient(circle at 70% 50%,rgba(34,197,94,.1) 0%,transparent 60%); }
.cta-banner > * { position:relative; z-index:1; }
.cta-banner h2 { font-size:clamp(1.8rem,4vw,2.8rem); color:var(--white); margin-bottom:16px; }
.cta-banner p  { color:rgba(255,255,255,.75); max-width:500px; margin:0 auto 32px; line-height:1.7; }
.cta-buttons   { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.urgency-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(245,158,11,.2); border:1px solid rgba(245,158,11,.4); border-radius:50px; padding:7px 18px; font-size:.8rem; color:rgba(255,255,255,.9); margin-bottom:18px; }
.urgency-badge .dot { width:8px; height:8px; background:var(--orange); border-radius:50%; animation:pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

/* ── Contact Form ───────────────────────────────────────────────── */
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:.83rem; font-weight:500; color:var(--text-mid); margin-bottom:5px; }
.form-group input,
.form-group select,
.form-group textarea { width:100%; padding:12px 16px; border:1.5px solid #dde4f0; border-radius:10px; font-family:'Inter',sans-serif; font-size:.88rem; color:var(--text-dark); background:var(--white); transition:border-color .2s; outline:none; resize:vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--blue-mid); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

/* ── Social Strip ───────────────────────────────────────────────── */
.social-strip { background:var(--blue-dark); padding:28px 24px; display:flex; align-items:center; justify-content:center; gap:20px; flex-wrap:wrap; }
.social-strip p { color:rgba(255,255,255,.65); font-size:.88rem; }
.social-link { display:flex; align-items:center; gap:9px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15); border-radius:50px; padding:9px 20px; color:var(--white); font-size:.84rem; font-weight:500; transition:all .2s; }
.social-link:hover { background:rgba(255,255,255,.18); transform:translateY(-2px); }
.social-link svg { width:17px; height:17px; fill:currentColor; }

/* ── Footer ─────────────────────────────────────────────────────── */
footer { background:#06102a; padding:56px 24px 28px; }
.footer-inner { max-width:1160px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:44px; margin-bottom:40px; }
.footer-logo { display:inline-flex; align-items:center; background:var(--white); border-radius:10px; padding:7px 12px; margin-bottom:14px; }
.footer-logo img { height:40px; width:auto; }
.footer-brand p { font-size:.82rem; color:rgba(255,255,255,.42); line-height:1.75; max-width:240px; }
.footer-col h5 { font-family:'Inter',sans-serif; font-size:.78rem; font-weight:700; color:rgba(255,255,255,.82); margin-bottom:14px; letter-spacing:.06em; text-transform:uppercase; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col ul li a { font-size:.82rem; color:rgba(255,255,255,.42); transition:color .2s; }
.footer-col ul li a:hover { color:var(--blue-light); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding-top:22px; border-top:1px solid rgba(255,255,255,.07); font-size:.78rem; color:rgba(255,255,255,.28); flex-wrap:wrap; gap:8px; }

/* ── WhatsApp FAB ───────────────────────────────────────────────── */
.fab-wa { position:fixed; bottom:26px; right:26px; z-index:200; width:54px; height:54px; background:#25d366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,.45); transition:transform .25s,box-shadow .25s; }
.fab-wa:hover { transform:scale(1.1); box-shadow:0 8px 32px rgba(37,211,102,.55); }
.fab-wa svg { width:26px; height:26px; fill:#fff; }
.fab-tip { position:absolute; right:68px; background:var(--white); color:var(--text-dark); font-size:.76rem; font-weight:600; white-space:nowrap; padding:6px 12px; border-radius:8px; box-shadow:var(--shadow); opacity:0; transition:opacity .25s; pointer-events:none; }
.fab-wa:hover .fab-tip { opacity:1; }

/* ── Back to Top ────────────────────────────────────────────────── */
.back-top { position:fixed; bottom:90px; right:28px; z-index:200; width:40px; height:40px; background:var(--blue-dark); border-radius:50%; display:none; align-items:center; justify-content:center; box-shadow:var(--shadow); cursor:pointer; font-size:.9rem; color:#fff; transition:all .2s; }
.back-top.show { display:flex; }
.back-top:hover { background:var(--blue-mid); transform:translateY(-2px); }

/* ══════════════════════════════════════════════════════════════════
   TRAVELING MASCOT — slides left ↔ right across bottom of viewport
   ══════════════════════════════════════════════════════════════════ */
.mascot {
  position: fixed;
  bottom: 90px;             /* sits above the WA FAB (bottom:26px + 54px height) */
  left: 20px;               /* JS toggles this to right side */
  z-index: 185;             /* below WA FAB (200) so buttons always on top */
  width: 72px;
  cursor: pointer;
  transition: left 1.1s cubic-bezier(.34, 1.4, .64, 1);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.22));
  /* scaleX flip handled via .mascot.face-right on the svg */
}
.mascot:hover .mascot-svg { transform: translateY(-10px) scale(1.12) !important; }

/* The tree SVG — idle float */
.mascot-svg {
  width: 72px; height: 82px;
  display: block;
  animation: mascotFloat 2.6s ease-in-out infinite;
  transform-origin: center bottom;
}
@keyframes mascotFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  35%     { transform: translateY(-7px) rotate(-2.5deg); }
  65%     { transform: translateY(-4px) rotate(2deg); }
}

/* Hop burst when section changes */
.mascot.hop .mascot-svg {
  animation: mascotHop .55s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes mascotHop {
  0%   { transform: translateY(0)    scale(1); }
  40%  { transform: translateY(-24px) scale(1.12) rotate(-5deg); }
  100% { transform: translateY(0)    scale(1); }
}

/* Mirror mascot when facing right */
.mascot.face-right .mascot-svg { transform: scaleX(-1); }
.mascot.face-right:hover .mascot-svg { transform: scaleX(-1) translateY(-10px) scale(1.12) !important; }

/* Speech bubble — opens RIGHT by default (mascot on left side) */
.mascot-bubble {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;                        /* aligns to mascot left — extends rightward */
  transform: translateY(8px);
  background: var(--white);
  border-radius: 14px;
  padding: 9px 16px;
  font-size: .73rem; font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(13,45,110,.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s, transform .32s;
  border: 1.5px solid rgba(21,101,192,.12);
}
/* tail pointing down — left-aligned */
.mascot-bubble::after {
  content: '';
  position: absolute;
  top: 100%; left: 20px;
  border: 7px solid transparent;
  border-top-color: var(--white);
  border-bottom: 0;
}
.mascot.bubble-show .mascot-bubble {
  opacity: 1;
  transform: translateY(0);
}

/* When mascot is on RIGHT side — bubble extends leftward */
.mascot.face-right .mascot-bubble {
  left: auto;
  right: 0;                       /* aligns to mascot right — extends leftward */
}
.mascot.face-right .mascot-bubble::after {
  left: auto;
  right: 20px;
}

/* Accent dot inside bubble */
.mascot-bubble .b-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 6px;
  vertical-align: middle;
}

/* Track line — subtle dashed line mascot "walks" along */
.mascot-track {
  position: fixed;
  bottom: 116px;
  left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(62,168,69,.25) 0px, rgba(62,168,69,.25) 12px,
    transparent 12px, transparent 24px
  );
  z-index: 189;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s;
}
.mascot-track.show { opacity: 1; }

@media (max-width: 768px) { .mascot, .mascot-track { display: none; } }

/* ── Reveal Animations ──────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .55s ease,transform .55s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── VMG Cards ──────────────────────────────────────────────────── */
.vmg-card { padding:32px 26px; }
.vmg-card:nth-child(1) { border-top:4px solid var(--blue-mid); }
.vmg-card:nth-child(2) { border-top:4px solid var(--orange); }
.vmg-card:nth-child(3) { border-top:4px solid var(--leaf); }
.vmg-icon { font-size:2.2rem; margin-bottom:14px; }
.vmg-card h3 { font-size:1.25rem; margin-bottom:12px; color:var(--text-dark); }
.vmg-card p  { font-size:.87rem; color:var(--text-mid); line-height:1.75; }

/* ── Pillar items ───────────────────────────────────────────────── */
.pillar { display:flex; align-items:flex-start; gap:12px; padding:16px; background:var(--blue-pale); border-radius:12px; }
.pillar-icon { font-size:1.3rem; flex-shrink:0; margin-top:2px; }
.pillar h4 { font-family:'Inter',sans-serif; font-size:.88rem; font-weight:600; color:var(--blue-dark); margin-bottom:4px; }
.pillar p  { font-size:.78rem; color:var(--text-mid); line-height:1.5; margin:0; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-item { background:var(--white); border-radius:14px; overflow:hidden; box-shadow:var(--shadow); border:1.5px solid #eef1f8; margin-bottom:12px; }
.faq-q { padding:18px 22px; font-size:.92rem; font-weight:600; color:var(--text-dark); cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:12px; user-select:none; transition:color .2s; }
.faq-q:hover { color:var(--blue-mid); }
.faq-arrow { font-size:.9rem; flex-shrink:0; transition:transform .3s; color:var(--blue-mid); }
.faq-item.open .faq-arrow { transform:rotate(180deg); }
.faq-a { padding:0 22px; max-height:0; overflow:hidden; transition:max-height .35s ease,padding .35s ease; font-size:.86rem; color:var(--text-mid); line-height:1.75; }
.faq-item.open .faq-a { max-height:220px; padding-bottom:18px; }

/* ── Team Cards ─────────────────────────────────────────────────── */
.team-card { padding:36px 28px; text-align:center; }
.team-avatar { width:92px; height:92px; border-radius:50%; margin:0 auto 18px; border:3px solid var(--orange); display:flex; align-items:center; justify-content:center; font-size:2.4rem; background:var(--blue-pale); overflow:hidden; }
.team-name { font-family:'Playfair Display',serif; font-size:1.15rem; font-weight:700; color:var(--blue-dark); margin-bottom:4px; }
.team-role { font-size:.78rem; font-weight:600; color:var(--blue-mid); text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px; }
.team-bio  { font-size:.85rem; color:var(--text-mid); line-height:1.7; }

/* ── Blog Preview ───────────────────────────────────────────────── */
.blog-card { border-radius:20px; overflow:hidden; }
.blog-img  { height:180px; display:flex; align-items:center; justify-content:center; font-size:2.8rem; }
.bi1 { background:linear-gradient(135deg,#dbeafe,#93c5fd); }
.bi2 { background:linear-gradient(135deg,#dcfce7,#86efac); }
.bi3 { background:linear-gradient(135deg,#fef3c7,#fcd34d); }
.blog-body  { padding:22px 20px; }
.blog-tag   { font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--blue-mid); margin-bottom:8px; display:block; }
.blog-card h4 { font-size:1rem; line-height:1.4; color:var(--text-dark); margin-bottom:8px; }
.blog-card p  { font-size:.82rem; color:var(--text-mid); line-height:1.6; }
.blog-read    { display:inline-flex; align-items:center; gap:6px; margin-top:12px; font-size:.82rem; font-weight:600; color:var(--blue-mid); }
.blog-read:hover { color:var(--blue-dark); }

/* ── Resource capture ───────────────────────────────────────────── */
.resource-section { background:linear-gradient(135deg,var(--blue-mid) 0%,#1246b5 100%); padding:72px 24px; position:relative; overflow:hidden; }
.resource-section::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 20% 50%,rgba(245,158,11,.2) 0%,transparent 50%),radial-gradient(circle at 80% 50%,rgba(34,197,94,.1) 0%,transparent 50%); }
.resource-inner { max-width:660px; margin:0 auto; text-align:center; position:relative; z-index:1; }
.resource-inner h2 { font-size:clamp(1.8rem,4vw,2.4rem); color:var(--white); margin-bottom:12px; }
.resource-inner p  { color:rgba(255,255,255,.76); font-size:1rem; line-height:1.7; margin-bottom:32px; }
.resource-form { display:flex; gap:10px; max-width:460px; margin:0 auto; }
.resource-form input { flex:1; padding:13px 18px; border-radius:50px; border:none; font-size:.9rem; font-family:'Inter',sans-serif; outline:none; }
.res-badges { display:flex; gap:18px; justify-content:center; flex-wrap:wrap; margin-top:18px; }
.res-badge  { display:flex; align-items:center; gap:5px; font-size:.77rem; color:rgba(255,255,255,.7); }
.res-badge::before { content:'✓'; color:var(--orange); font-weight:700; }

/* ── Process Steps ──────────────────────────────────────────────── */
.process { background:linear-gradient(180deg,var(--blue-dark) 0%,#0d2260 100%); }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; }
.process-steps::before { content:''; position:absolute; top:35px; left:12.5%; right:12.5%; height:2px; background:linear-gradient(90deg,var(--blue-light),var(--orange)); opacity:.3; }
.process-step { text-align:center; position:relative; }
.step-num { width:70px; height:70px; background:rgba(255,255,255,.1); border:2px solid rgba(255,255,255,.2); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; color:var(--orange); margin:0 auto 18px; position:relative; z-index:1; }
.process-step h4 { color:var(--white); font-size:.97rem; margin-bottom:8px; }
.process-step p  { color:rgba(255,255,255,.58); font-size:.83rem; line-height:1.6; }

/* ── Contact info ───────────────────────────────────────────────── */
.contact-item { display:flex; align-items:center; gap:14px; padding:14px 18px; background:var(--blue-pale); border-radius:12px; }
.ci-icon { width:42px; height:42px; background:var(--blue-mid); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.05rem; flex-shrink:0; }
.ci-text strong { display:block; font-size:.88rem; color:var(--text-dark); margin-bottom:2px; }
.ci-text span   { font-size:.83rem; color:var(--text-mid); }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width:1024px) {
  .stats-grid { grid-template-columns:repeat(2,1fr); gap:28px; }
  .footer-top { grid-template-columns:1fr 1fr; gap:32px; }
  .process-steps { grid-template-columns:1fr 1fr; }
  .process-steps::before { display:none; }
}
@media (max-width:768px) {
  section { padding:60px 0; }
  .container { padding:0 18px; }
  .nav-links,.nav-cta { display:none; }
  .hamburger { display:flex; }
  .nav-inner { height:62px; padding:0 20px; }
  .nav.scrolled .nav-inner { height:54px; padding:0 16px; }
  .nav.scrolled .nav-wrap { margin:8px 12px; border-radius:40px; }
  .logo img { height:36px; }
  .ann-bar { font-size:.76rem; padding:8px 36px 8px 14px; gap:8px; }
  .section-header { margin-bottom:36px; }
  .stats-grid { grid-template-columns:1fr 1fr; gap:18px; }
  .footer-top { grid-template-columns:1fr; gap:24px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .form-row { grid-template-columns:1fr; }
  .resource-form { flex-direction:column; }
  .resource-form input { border-radius:12px; }
  .cta-buttons { flex-direction:column; align-items:center; }
  .cta-buttons .btn { width:100%; max-width:300px; justify-content:center; }
  .social-strip { flex-direction:column; gap:12px; text-align:center; }
  .process-steps { grid-template-columns:1fr; }
  .acc-inner { flex-direction:column; gap:16px; }
  .back-top { right:18px; bottom:82px; }
  .fab-wa { bottom:18px; right:18px; width:50px; height:50px; }
  .page-hero { padding:108px 20px 60px; }
}
@media (max-width:480px) {
  section { padding:48px 0; }
  .container { padding:0 15px; }
  .section-header { margin-bottom:24px; }
  .section-header p { font-size:.93rem; }

  /* Ann bar */
  .ann-bar { font-size:.72rem; gap:5px; }

  /* Page hero */
  .page-hero { padding:90px 15px 44px; }
  .page-hero h1 { font-size:1.75rem; }
  .page-hero p  { font-size:.88rem; }

  /* Stats bar */
  .stats-bar { padding:48px 14px; }
  .stats-grid { grid-template-columns:1fr 1fr; gap:14px; }
  .stat-item { padding:20px 12px; }
  .stat-item .num { font-size:2.1rem; }
  .stat-item .lbl { font-size:.78rem; }

  /* Accreditation */
  .acc-logo-item { padding:10px 12px; width:50%; }

  /* Process */
  .step-num { width:56px; height:56px; font-size:1.1rem; }
  .process-step h4 { font-size:.9rem; }

  /* Feature strip — single column, horizontal layout per item */
  .feature-strip { padding:30px 18px; }
  .feature-strip-inner { gap:12px 0; }
  .feat-item { padding:14px 16px; gap:14px; background:rgba(255,255,255,.06); border-radius:12px; }
  .feat-icon-wrap { width:44px; height:44px; border-radius:10px; flex-shrink:0; }
  .feat-icon-wrap svg { width:20px; height:20px; }
  .feat-text strong { font-size:.88rem; }
  .feat-text span   { font-size:.74rem; }

  /* CTA banner */
  .cta-banner { padding:52px 15px; }
  .cta-banner h2 { font-size:1.65rem; }

  /* Trial */
  .trial-inner { padding:28px 18px; gap:20px; }
  .trial-text h2 { font-size:1.5rem; }

  /* Resource */
  .resource-section { padding:48px 15px; }

  /* Cards */
  .testi-card { padding:22px 18px; }
  .testi-card::before { font-size:4rem; top:10px; right:14px; }
  .vmg-card { padding:24px 18px; }
  .team-card { padding:28px 18px; }
  .pillar { padding:14px 12px; gap:10px; }

  /* Footer */
  footer { padding:40px 15px 20px; }
  .footer-top { gap:18px; }
  .footer-brand p { max-width:100%; }
  .footer-bottom { font-size:.72rem; gap:6px; }

  /* Buttons */
  .btn { padding:11px 22px; font-size:.86rem; }

  /* Form */
  .form-row { gap:10px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding:11px 14px; font-size:.85rem; }

  /* Social strip */
  .social-link { padding:8px 16px; font-size:.8rem; }

  /* WA FAB / back-to-top */
  .fab-wa { bottom:14px; right:14px; width:46px; height:46px; }
  .fab-wa svg { width:22px; height:22px; }
  .back-top { bottom:70px; right:14px; width:36px; height:36px; font-size:.8rem; }

  /* Contact item */
  .contact-item { flex-direction:row; align-items:flex-start; gap:10px; }
  .ci-icon { width:38px; height:38px; font-size:.95rem; flex-shrink:0; }

  /* FAQ */
  .faq-q { padding:15px 16px; font-size:.88rem; }
  .faq-a { padding:0 16px; }
  .faq-item.open .faq-a { padding-bottom:15px; }
}

/* ═══════════════════════════════════════════════════════════════════
   BRAINZYBEE-INSPIRED: Floating Shapes, Decorators & Animations
   ═══════════════════════════════════════════════════════════════════ */

/* ── Floating animation keyframes ──────────────────────────────────── */
@keyframes floatY    { 0%,100%{transform:translateY(0)}   50%{transform:translateY(-18px)} }
@keyframes floatX    { 0%,100%{transform:translateX(0)}   50%{transform:translateX(14px)}  }
@keyframes floatDiag { 0%,100%{transform:translate(0,0)}  50%{transform:translate(12px,-14px)} }
@keyframes rotateSlow{ from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes bounceDot { 0%,100%{transform:scale(1)} 50%{transform:scale(1.25)} }
@keyframes slideInLeft  { from{opacity:0;transform:translateX(-48px)} to{opacity:1;transform:translateX(0)} }
@keyframes slideInRight { from{opacity:0;transform:translateX(48px)}  to{opacity:1;transform:translateX(0)} }
@keyframes slideInUp    { from{opacity:0;transform:translateY(48px)}  to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn       { from{opacity:0} to{opacity:1} }
@keyframes scaleIn      { from{opacity:0;transform:scale(.8)} to{opacity:1;transform:scale(1)} }

/* ── Deco shapes (BrainzyBee floating blob style) ──────────────────── */
.deco-shape {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.deco-teal   { background: rgba(34,197,94,.15); }
.deco-orange { background: rgba(245,158,11,.15); }
.deco-blue   { background: rgba(37,99,235,.12); }
.deco-pink   { background: rgba(244,63,94,.12); }

/* ── Section with decoration wrapper ──────────────────────────────── */
.sec-deco { position: relative; overflow: hidden; }

/* ── Dot grid pattern (like BrainzyBee background dots) ───────────── */
.dot-bg {
  background-image: radial-gradient(circle, rgba(37,99,235,.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.dot-bg-light {
  background-image: radial-gradient(circle, rgba(37,99,235,.07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

/* ── Handwriting accent text (script feel like BrainzyBee) ─────────── */
.accent-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--orange);
  position: relative;
}
.accent-script::after {
  content: '';
  position: absolute; left: 0; bottom: -4px; width: 100%; height: 3px;
  background: var(--orange); border-radius: 2px;
  transform: skewX(-8deg);
}

/* ── Dashed circle icon (BrainzyBee "What We Offer" style) ─────────── */
.dash-icon-wrap {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  position: relative; background: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,.1);
}
.dash-icon-wrap::before {
  content: '';
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2.5px dashed currentColor; opacity: .5;
  animation: rotateSlow 12s linear infinite;
}
.dash-icon-wrap.di-teal  { color: #14b8a6; }
.dash-icon-wrap.di-pink  { color: #f43f5e; }
.dash-icon-wrap.di-amber { color: var(--orange); }
.dash-icon-wrap.di-purple{ color: #8b5cf6; }
.dash-icon-wrap.di-blue  { color: var(--blue-mid); }
.dash-icon-wrap.di-green { color: #22c55e; }
.dash-icon-wrap .di-emoji { font-size: 2.2rem; position: relative; z-index: 1; }

/* ── Offer item (BrainzyBee "What We Offer" layout) ────────────────── */
.offer-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; }
@media(max-width:1024px){ .offer-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:600px)  { .offer-grid { grid-template-columns: repeat(2,1fr); } }
.offer-item { text-align: center; padding: 24px 12px; }
.offer-item h4 { font-family: 'Inter', sans-serif; font-size: .84rem; font-weight: 600; color: var(--text-dark); line-height: 1.4; margin-top: 4px; }

/* ── Features row (strip like BrainzyBee purple bar) ───────────────── */
.feature-strip {
  background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #8b5cf6 100%);
  padding: 44px 24px;
  scroll-margin-top: 80px;
  overflow: hidden;
}
.feature-strip-inner {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  max-width: 1160px; margin: 0 auto;
}
@media(max-width:768px){ .feature-strip-inner { grid-template-columns: repeat(2,1fr); gap: 20px 0; } }
@media(max-width:520px){ .feature-strip-inner { grid-template-columns: 1fr; gap: 14px 0; } }
.feat-item {
  display: flex; align-items: center; gap: 16px;
  padding: 0 28px;
  min-width: 0;   /* allow grid item to shrink below content min-width */
}
.feat-divider { border-right: 1px solid rgba(255,255,255,.2); }
.feat-icon-wrap {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(255,255,255,.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.feat-icon-wrap svg { width: 24px; height: 24px; stroke: #fff; fill: none; }
.feat-text { min-width: 0; }   /* prevent text from forcing item wider */
.feat-text strong { display: block; color: var(--white); font-size: .92rem; font-weight: 700; word-break: break-word; }
.feat-text span { display: block; color: rgba(255,255,255,.65); font-size: .78rem; margin-top: 3px; word-break: break-word; }
.feat-divider { border-right: 1px solid rgba(255,255,255,.2); }
@media(max-width:768px){ .feat-divider { border:none; } }

/* ── Floating deco items (absolute positioned decorators) ───────────── */
.float-1 { animation: floatY 4s ease-in-out infinite; }
.float-2 { animation: floatY 5s ease-in-out infinite 1s; }
.float-3 { animation: floatDiag 6s ease-in-out infinite; }
.float-4 { animation: floatX 4.5s ease-in-out infinite .5s; }
.float-5 { animation: floatY 3.5s ease-in-out infinite 2s; }

/* ── Slide-in reveal variants ───────────────────────────────────────── */
.reveal-left  { opacity:0; transform:translateX(-40px); transition:opacity .6s ease,transform .6s ease; }
.reveal-right { opacity:0; transform:translateX(40px);  transition:opacity .6s ease,transform .6s ease; }
.reveal-scale { opacity:0; transform:scale(.92);        transition:opacity .55s ease,transform .55s ease; }
.reveal-left.visible, .reveal-right.visible, .reveal-scale.visible { opacity:1; transform:none; }

/* ── YouTube Section ────────────────────────────────────────────────── */
.yt-section { background: var(--white); }
.yt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
@media(max-width:700px){ .yt-grid { grid-template-columns: 1fr; } }

.yt-embed-card { border-radius: 0; overflow: hidden; background:#000; }
@media(max-width:700px){ .yt-embed-card { border-radius: 0; } }
.yt-iframe-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.yt-iframe-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.yt-card {
  border-radius: 20px; overflow: hidden; position: relative;
  background: #000; cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,.15); transition: transform .3s,box-shadow .3s;
}
.yt-card:hover { transform: translateY(-6px); box-shadow: 0 20px 52px rgba(0,0,0,.22); }
.yt-thumb {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
  background: linear-gradient(135deg,#1a1a2e,#16213e);
}
.yt-thumb-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d2d6e, #1246b5, #2563eb);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
  color: rgba(255,255,255,.7); font-size: .85rem;
}
.yt-play {
  width: 64px; height: 64px; background: rgba(255,0,0,.85); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); transition: all .25s;
  box-shadow: 0 4px 24px rgba(255,0,0,.4);
}
.yt-card:hover .yt-play { background: #ff0000; transform: translate(-50%,-50%) scale(1.1); }
.yt-card-info { padding: 16px 18px 18px; background: var(--white); }
.yt-card-info h4 { font-size: .9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; line-height: 1.45; }
.yt-card-info span { font-size: .75rem; color: var(--text-light); }
.yt-channel-cta {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  border-radius: 20px; padding: 36px 32px; text-align: center; position: relative; overflow: hidden;
}
.yt-channel-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.12) 0%, transparent 60%);
}
.yt-channel-cta > * { position: relative; z-index: 1; }
.yt-channel-cta h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.yt-channel-cta p  { color: rgba(255,255,255,.8); font-size: .87rem; line-height: 1.65; margin-bottom: 20px; }
.yt-sub-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: #cc0000; border-radius: 50px;
  padding: 12px 28px; font-weight: 700; font-size: .9rem;
  transition: all .25s; box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.yt-sub-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.yt-sub-btn svg { width: 22px; height: 22px; fill: #cc0000; }
.yt-stats { display: flex; gap: 24px; justify-content: center; margin-top: 20px; }
.yt-stat { color: rgba(255,255,255,.85); font-size: .82rem; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.yt-stat strong { color: var(--white); font-size: 1rem; font-weight: 700; }

/* ── Trial Lesson Banner (BrainzyBee "Sign up for free trial" style) ── */
.trial-banner {
  border-radius: 28px; overflow: hidden; margin: 0;
  background: linear-gradient(135deg, #0d2d6e 0%, #1246b5 40%, #0891b2 100%);
  position: relative;
}
.trial-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.trial-inner {
  display: grid; grid-template-columns: 1fr 420px; gap: 56px;
  align-items: center; padding: 56px 56px; position: relative; z-index: 1;
}
@media(max-width:900px){ .trial-inner{grid-template-columns:1fr 360px;gap:36px;padding:44px 36px;} }
@media(max-width:768px){ .trial-inner{grid-template-columns:1fr;padding:36px 24px;} }
.trial-text h2 { font-size: clamp(1.6rem,4vw,2.4rem); color: var(--white); margin-bottom: 12px; }
.trial-text h2 .accent-script { color: var(--orange); }
.trial-text p  { color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.75; }
.trial-form { display: flex; flex-direction: column; gap: 12px; }
.trial-input {
  width: 100%; padding: 14px 20px; border-radius: 50px; border: none;
  font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--text-dark);
  background: rgba(255,255,255,.95); outline: none;
  transition: background .2s, box-shadow .2s;
}
.trial-input:focus { background: var(--white); box-shadow: 0 0 0 3px rgba(245,158,11,.4); }
.trial-input::placeholder { color: var(--text-light); }
.trial-btn { padding: 14px 32px; border-radius: 50px; background: #0f172a; color: var(--white); border: none; font-family: 'Inter', sans-serif; font-size: .93rem; font-weight: 700; cursor: pointer; letter-spacing: .04em; transition: all .25s; }
.trial-btn:hover { background: var(--orange); transform: translateY(-2px); }

/* ── Decorative floating shapes for sections ────────────────────────── */
.blob-shape {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; opacity: .18;
  filter: blur(40px);
}
.blob-teal   { background: #14b8a6; }
.blob-orange { background: var(--orange); }
.blob-blue   { background: var(--blue-mid); }
.blob-pink   { background: #f43f5e; }
.blob-purple { background: #8b5cf6; }

