/* ============================================================
   ZebLearn India — LAYOUT Stylesheet
   Includes: Fonts, Variables, Reset, Utils, Animations,
             Section headings, Buttons, Header/Nav,
             Float bars, Offer bar, Cookies, Footer,
             Keyframes, Responsive (layout-only)
   Used by: homePageLayout.blade.php (every page)
   ============================================================ */
/* ============================================================
   ZebLearn India — Main Stylesheet
   Optimised & deduplicated | Bootstrap 5.1.3 + jQuery 3.6.0
   ============================================================ */

/* ── 0. GOOGLE FONTS ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;700&display=swap');

/* ── 1. CSS VARIABLES ────────────────────────────────────── */
:root {
  /* Brand */
  --gold:       #FFB800;
  --gold-d:     #e6a500;
  --gold-l:     rgba(255,184,0,.1);
  --orange:     #FF6B00;
  --red:        #e53935;
  --green:      #22c55e;

  /* Layout */
  --navy:       #050c18;
  --navy-2:     #0b1a30;
  --navy-3:     #102040;
  --text:       #1e293b;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --bg:         #f4f6fa;

  /* Shadows */
  --sh-sm:  0 2px 8px rgba(0,0,0,.07);
  --sh-md:  0 8px 32px rgba(0,0,0,.13);
  --sh-lg:  0 24px 64px rgba(0,0,0,.22);

  /* Radii */
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 22px;

  /* Typography */
  --font-h: 'Outfit', sans-serif;
  --font-b: 'DM Sans', sans-serif;

  /* Bootstrap-compatible overrides */
  --bs-font-sans-serif: var(--font-b);
  --bs-link-color: #f44a25;
}

/* ── 2. RESET / BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.2;
  color: #232323;
  margin-top: 0;
}

h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p { margin-top: 0; }
ul { list-style: none; padding: 0; margin: 0; }
a { text-decoration: none; transition: color .2s, background .2s; }
img { display: block; max-width: 100%; }

::selection { background: #f44a25; color: #fff; }

/* ── 3. UTILITY CLASSES ──────────────────────────────────── */
.hw            { font-family: var(--font-b); color: var(--text); overflow-x: hidden; }
.hw-inner      { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-bg    { background: #f5f5f7 !important; }
.text--base    { color: #f44a25; }
.btn--base,
.btn--base:hover { background: #f44a25; color: #fff; font-weight: 700; }
.mw-100        { max-width: 100%; }

/* ── 4. SCROLL-REVEAL ANIMATIONS ────────────────────────── */
.anim-fade  { opacity: 0; transform: translateY(28px);  transition: opacity .7s ease, transform .7s ease; }
.anim-left  { opacity: 0; transform: translateX(-32px); transition: opacity .7s ease, transform .7s ease; }
.anim-right { opacity: 0; transform: translateX(32px);  transition: opacity .7s ease, transform .7s ease; }
.anim-scale { opacity: 0; transform: scale(.9);          transition: opacity .6s ease, transform .6s ease; }

.anim-fade.is-vis,
.anim-left.is-vis,
.anim-right.is-vis { opacity: 1; transform: none; }
.anim-scale.is-vis  { opacity: 1; transform: scale(1); }

.anim-d1 { transition-delay: .1s; }
.anim-d2 { transition-delay: .2s; }
.anim-d3 { transition-delay: .3s; }
.anim-d4 { transition-delay: .4s; }
.anim-d5 { transition-delay: .5s; }
.anim-d6 { transition-delay: .6s; }

/* ── 5. SECTION HEADINGS ─────────────────────────────────── */
.hw-sh          { text-align: center; margin-bottom: 36px; }
.hw-sh__ey      {
  font-size: .6rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hw-sh__ey::before,
.hw-sh__ey::after  { content: ''; width: 28px; height: 1.5px; background: var(--gold); opacity: .45; }
.hw-sh h2          { font-family: var(--font-h); font-size: clamp(1.2rem,2.8vw,2rem); font-weight: 900; color: var(--navy); margin-bottom: 10px; letter-spacing: -.03em; text-transform: uppercase; }
.hw-sh h2 em       { color: var(--gold); font-style: normal; }
.hw-sh--w h2       { color: #fff; }
.hw-sh p           { color: var(--muted); font-size: .86rem; line-height: 1.75; max-width: 540px; margin: 0 auto; }
.hw-sh--w p        { color: rgba(255,255,255,.58); }

/* ── 6. GLOBAL BUTTONS ───────────────────────────────────── */
.hw-btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 13px 24px; border-radius: var(--r);
  font-family: var(--font-h); font-weight: 800; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .04em;
  box-shadow: 0 6px 20px rgba(255,184,0,.4);
  transition: background .2s, transform .15s; border: none; cursor: pointer;
}
.hw-btn-gold:hover { background: var(--gold-d); transform: translateY(-2px); color: var(--navy); }

.hw-btn-outline-w {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); color: #fff;
  padding: 12px 22px; border-radius: var(--r);
  font-family: var(--font-h); font-weight: 700; font-size: .85rem;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: border-color .2s, background .2s; cursor: pointer;
}
.hw-btn-outline-w:hover { border-color: var(--gold); background: rgba(255,184,0,.08); color: var(--gold); }

/* ── 7. HEADER / NAV ─────────────────────────────────────── */
.zl-header-wrapper { font-family: var(--font-b); position: relative; z-index: 9999; }

.zl-top-bar         { background: #0c1a1e; color: #fff; padding: .5rem 0; }
.zl-top-bar-content { max-width: 1280px; margin: 0 auto; padding: 0 1rem; display: flex; justify-content: space-between; align-items: center; font-size: .875rem; }
.zl-top-bar-left,
.zl-top-bar-right   { display: flex; align-items: center; gap: 1rem; }
.zl-top-bar a       { color: #fff; }
.zl-top-bar a:hover { text-decoration: underline; }

.zl-main-nav         { background: #fff; box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); position: sticky; top: 0; z-index: 9998; }
.zl-main-nav-content { max-width: 1280px; margin: 0 auto; padding: 0 1rem; display: flex; align-items: center; justify-content: space-between; height: 5rem; }

.zl-logo img { height: 3rem; width: auto; }

/* Desktop nav */
.zl-desktop-nav     { display: none; align-items: center; gap: 2rem; flex: 1; justify-content: center; }
.zl-desktop-actions { display: none; align-items: center; gap: 1rem; }

.zl-nav-link {
  position: relative; padding: .5rem 0; color: #374151;
  font-weight: 500; display: inline-flex; align-items: center; gap: .25rem;
  background: none; border: none; cursor: pointer; font-size: 1rem;
  transition: color .3s;
}
.zl-nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(to right,#f44a25,#df340f); transition: width .3s; }
.zl-nav-link:hover  { color: #f44a25; }
.zl-nav-link:hover::after { width: 100%; }

.zl-nav-icon { width: 1rem; height: 1rem; transition: transform .3s; }
.zl-nav-item.active .zl-nav-icon { transform: rotate(180deg); }

/* Dropdown */
.zl-dropdown-menu {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(-10px);
  margin-top: .5rem; background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  border-radius: .5rem; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: all .3s ease; pointer-events: none;
}
.zl-nav-item.active .zl-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.zl-mega-menu   { width: 100%; max-width: 72rem; }
.zl-simple-dropdown { width: 16rem; left: 0; transform: none; }

.zl-dropdown-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.zl-dropdown-item { color: #4b5563; padding: .375rem .5rem; border-radius: .25rem; transition: all .2s; display: block; font-size: .875rem; line-height: 1.4; font-weight: 400; }
.zl-dropdown-item:hover { color: #f44a25; background: #f3f4f6; padding-left: .75rem; }

/* Two-column course dropdown */
.zl-two-column-courses { max-width: 950px; min-width: 850px; padding: 0; border-radius: .75rem; overflow: hidden; }
.zl-two-column-container { display: flex; min-height: 450px; max-height: 550px; }
.zl-categories-sidebar  { width: 280px; background: #f8f9fa; border-right: 1px solid #e5e7eb; padding: 1.5rem 0; overflow-y: auto; }
.zl-sidebar-title        { font-size: .75rem; font-weight: 700; color: #6b7280; letter-spacing: .05em; padding: 0 1.5rem; margin-bottom: 1rem; }
.zl-category-list        { list-style: none; padding: 0; margin: 0; }
.zl-category-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: .875rem 1.5rem; background: transparent; border: none;
  border-left: 3px solid transparent; cursor: pointer; text-align: left;
  font-size: .9375rem; color: #374151; transition: all .2s;
}
.zl-category-btn:hover    { background: #fff; color: #f44a25; }
.zl-category-btn.active   { background: #fff; border-left-color: #f44a25; color: #f44a25; font-weight: 600; }
.zl-category-btn svg      { width: 1rem; height: 1rem; opacity: 0; transition: opacity .2s; }
.zl-category-btn.active svg { opacity: 1; }
.zl-courses-content       { flex: 1; padding: 2rem; overflow-y: auto; background: #fff; }
.zl-course-category       { display: none; }
.zl-course-category.active{ display: block; }
.zl-content-title  { font-size: 1.5rem; font-weight: 700; color: #111827; margin-bottom: .5rem; }
.zl-content-subtitle { font-size: .9375rem; color: #6b7280; margin-bottom: 1.5rem; }
.zl-courses-grid   { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.zl-course-card {
  padding: 1rem; border: 1px solid #e5e7eb; border-radius: .5rem;
  text-decoration: none; transition: all .2s; background: #fff;
  display: flex; flex-direction: column; overflow: hidden;
}
.zl-course-card:hover          { border-color: #f44a25; box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); transform: translateY(-2px); background: #f44a25; }
.zl-course-card h4             { font-size: .9375rem; font-weight: 600; color: #111827; margin-bottom: .25rem; line-height: 1.4; }
.zl-course-card p              { font-size: .8125rem; color: #6b7280; margin: 0; }
.zl-course-card:hover h4,
.zl-course-card:hover p        { color: #fff; }
.zl-view-all-btn               { display: inline-flex; align-items: center; gap: .5rem; color: #f44a25; font-size: .9375rem; font-weight: 600; text-decoration: none; transition: gap .2s; }
.zl-view-all-btn:hover         { gap: .75rem; color: #f44a25; }

/* Search */
.zl-search-wrapper { position: relative; }
.zl-search-input   { width: 16rem; padding: .5rem 1rem .5rem 2.5rem; border: 1px solid #d1d5db; border-radius: 9999px; outline: none; transition: border-color .3s; }
.zl-search-input:focus { border-color: #f44a25; }
.zl-search-icon    { position: absolute; left: .75rem; top: .625rem; width: 1.25rem; height: 1.25rem; color: #9ca3af; pointer-events: none; }

#suggestions, #mobileSuggestions { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid #e5e7eb; border-radius: .5rem; margin-top: .25rem; max-height: 300px; overflow-y: auto; list-style: none; padding: 0; z-index: 1000; display: none; }
#suggestions.active,
#mobileSuggestions.active { display: block; }
.suggestion-item { padding: .75rem 1rem; cursor: pointer; border-bottom: 1px solid #f3f4f6; font-size: .875rem; font-weight: 600; color: #f44a25; transition: background .2s; }
.suggestion-item:hover { background: #fffbf0; color: #000; }

.zl-btn-primary { background: #374151; color: #fff; padding: .625rem 1.5rem; border-radius: 9999px; font-weight: 600; text-decoration: none; display: inline-block; border: none; cursor: pointer; transition: all .3s; }
.zl-btn-primary:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,.2); transform: scale(1.05); color: #fff; }

/* Mobile toggle */
.zl-mobile-toggle  { display: block; color: #374151; background: none; border: none; cursor: pointer; padding: .5rem; }
.zl-mobile-menu    { display: none; background: #fff; border-top: 1px solid #e5e7eb; }
.zl-mobile-menu.active { display: block; }
.zl-mobile-menu-content { padding: 1rem; display: flex; flex-direction: column; gap: .75rem; }
.zl-mobile-search  { position: relative; margin-bottom: 1rem; }
.zl-mobile-search input { width: 100%; }
.zl-mobile-nav-link { padding: .5rem 0; color: #374151; font-weight: 500; text-decoration: none; display: block; }
.zl-mobile-nav-link:hover { color: #f44a25; }
.zl-mobile-dropdown { border-bottom: 1px solid #f3f4f6; }
.zl-mobile-dropdown-toggle { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; cursor: pointer; text-align: left; }
.zl-mobile-dropdown-toggle svg { width: 1rem; height: 1rem; transition: transform .3s; }
.zl-mobile-dropdown.active .zl-mobile-dropdown-toggle svg { transform: rotate(180deg); }
.zl-mobile-dropdown-content { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 0 0 1rem; }
.zl-mobile-dropdown-content.active { max-height: 1000px; padding: .5rem 0 1rem 1rem; }
.zl-mobile-category-link,
.zl-mobile-cert-link { display: block; padding: .25rem 0 .25rem 1rem; color: #6b7280; font-size: .875rem; text-decoration: none; }
.zl-mobile-category-link:hover,
.zl-mobile-cert-link:hover { color: #f44a25; }
.zl-mobile-actions  { padding-top: 1rem; border-top: 1px solid #e5e7eb; display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }
.zl-btn-outline     { border: 1px solid #f44a25; color: #f44a25; padding: .5rem 1rem; border-radius: 9999px; font-weight: 600; text-align: center; display: block; text-decoration: none; transition: background .3s; }
.zl-btn-outline:hover { background: #eff6ff; color: #f44a25; }

@media (min-width: 1024px) {
  .zl-desktop-nav     { display: flex; }
  .zl-desktop-actions { display: flex; }
  .zl-mobile-toggle   { display: none; }
}
@media (max-width: 1280px) {
  .zl-two-column-courses { min-width: 750px; max-width: 800px; }
  .zl-categories-sidebar { width: 250px; }
  .zl-courses-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hide { display: none; }
}

/* Scrollbars */
.zl-categories-sidebar::-webkit-scrollbar,
.zl-courses-content::-webkit-scrollbar  { width: 6px; }
.zl-categories-sidebar::-webkit-scrollbar-thumb,
.zl-courses-content::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 10px; }

/* ── 28. FLOATING BARS (WhatsApp / Call / Demo) ──────────── */
.bar_wpp, .bar_call, .bar_demo { position: fixed; z-index: 120; border-radius: 5px 5px 0 0; }
.bar_wpp  { bottom: 50px;  left: 20px; }
.bar_call { bottom: 96px;  left: 20px; }
.bar_demo { bottom: 140px; left: 20px; }

.bar_wpp a, .bar_call a, .bar_demo a { display: flex; align-items: stretch; justify-content: space-between; text-decoration: none !important; }

.bar_wpp .icon_wpp,
.bar_call .icon_call,
.bar_demo .icon_demo { display: flex; text-align: center; transition: .3s; width: 40px; height: 40px; float: left; align-items: center; justify-content: center; border-radius: 100%; z-index: 2; }
.bar_wpp  .icon_wpp,
.bar_wpp  a:hover .icon_wpp  { background: linear-gradient(90deg,#12c665 .85%,#009446 100%); }
.bar_call .icon_call          { background: linear-gradient(180deg,rgb(7 5 9 / 75%) 0,#000 100%); }
.bar_call .icon_call i,
.bar_wpp  .icon_wpp  i,
.bar_demo .icon_demo i        { color: #fff; font-size: 20px; }
.bar_demo .icon_demo,
.bar_demo a:hover .icon_demo  { background: linear-gradient(90deg,#007bff .85%,#0056b3 100%); }

.bar_wpp .txt_wpp   { display: flex; align-items: center; justify-content: center; font-weight: 700; margin-left: -35px; color: #12c665; padding-left: 45px !important; border-radius: 50px; border: 2px solid; font-size: 14px; padding: 0 10px; z-index: 1; transition: .3s; }
.bar_call .txt_call { display: flex; align-items: center; justify-content: center; font-weight: 700; margin-left: -35px; background-color: #fff; color: #000; padding: 0 10px; font-size: 14px; transition: .3s; padding-left: 45px !important; z-index: 1; border-radius: 50px; border: 2px solid; }
.bar_demo .txt_demo { display: flex; align-items: center; justify-content: center; background-color: #fff; color: #007bff; padding: 6px 40px; font-size: 14px; border-radius: 50px; border: 2px solid #007bff; transition: .3s; font-weight: 700; margin-left: -35px; z-index: 1; }
.bar_wpp a:hover .txt_wpp { background-color: #fff; }

/* ── 29. OFFER NAVBAR ────────────────────────────────────── */
.offer-navbar { background-color: #ff5722; color: #fff; padding: 4px; top: 0; width: 100%; z-index: 1000; position: fixed; box-shadow: 0 2px 4px rgba(0,0,0,.2); display: flex; justify-content: center; align-items: center; text-align: center; }
.offer-navbar .offer-message { font-size: 18px; font-weight: 700; margin-right: 15px; }
.offer-navbar #countdown  { font-size: 15px; font-weight: 700; color: #fff; padding: 4px 8px; }
.offer-navbar #countdown1 { font-size: 10px; font-weight: 700; color: #fff; padding: 4px 8px; }
.offer-navbar .close-btn  { background: 0 0; border: none; color: #fff; font-size: 25px; font-weight: 700; cursor: pointer; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); transition: color .3s; }
.offer-navbar .close-btn:hover { color: #ffccbc; }

/* ── 30. COOKIES CARD ────────────────────────────────────── */
.cookies-card { max-width: 725px; bottom: 10px; left: 15px; position: fixed; background-color: #000; display: flex; justify-content: center; align-items: center; padding: 10px 15px; z-index: 9999; transition: opacity .4s, transform .4s; opacity: 0; transform: translateY(30px); border-radius: 5px; color: #fff; }
.cookies-card.show { opacity: 1; transform: translateY(0); }
.cookies-card.hide { opacity: 0; transform: translateY(50px); }
.cookie-btn{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 13px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    background: #f44a25;
}

/* ── 31. FOOTER ──────────────────────────────────────────── */
.footer-dark    { background-color: #0c1a1e; color: #fff; font-size: 14px; }
.footer-dark a  { color: #ccc; text-decoration: none; }
.footer-dark a:hover { color: #ff5722; text-decoration: underline; }
.footer-dark h5 { font-weight: 700; font-size: 1.2rem; margin-bottom: 1rem; color: #fff; }
.footer-dark ul li { padding: 2px 0; }
.footer-menu    { background-color: #081014; }
.footer-bottom  { background-color: #081014; border-top: 1px solid #444; text-align: center; padding-bottom: 60px; }
.footer-menu a  { color: #999; margin: 0 6px; text-decoration: none; }
.footer-menu a:hover { color: #ff5722; text-decoration: underline; }
.footer-bottom .social-icon a { font-size: 18px; color: #fff; margin: 0 8px; }

/* ── 32. KEYFRAME ANIMATIONS ─────────────────────────────── */
@keyframes hw-blink {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,.06); }
}
@keyframes zlBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .15; }
}
@keyframes zlSpin { to { transform: rotate(360deg); } }
@keyframes hw-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes hw-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes hw-reviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes hw-hire-fwd {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes hw-hire-rev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes hw-cap-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes hw-stu-fwd {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes hw-stu-rev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes zl-verify-fwd {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes zl-lb-in {
  from { opacity: 0; transform: scale(.92) translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ppSlide {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(6px); }
}
@keyframes zlMarqScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes zlUp   { from { transform: translateY(0);    } to { transform: translateY(-50%); } }
@keyframes zlDown { from { transform: translateY(-50%); } to { transform: translateY(0);    } }

.zl-spin { animation: zlSpin .75s linear infinite; display: inline-block; }

/* ── 33. RESPONSIVE — 1024px ─────────────────────────────── */
@media (max-width: 1024px) {
  .hw-hero__inner       { grid-template-columns: 1fr; }
  .hw-hero__right       { display: none; }
  .hw-learners__layout  { grid-template-columns: 1fr; }
  .hw-learners__cards   { grid-template-columns: repeat(4,1fr); }
  .hw-mock__inner       { grid-template-columns: 1fr; gap: 2.5rem; }
  .hw-mock__img         { max-width: 560px; margin: 0 auto; }
  .hw-cap__card         { flex: 0 0 260px; }
  .hw-faq__grid         { grid-template-columns: 1fr; }
  .hw-verify__layout    { grid-template-columns: 1fr; }
  .hw-verify__right     { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hw-verify__doc       { flex: 0 0 280px; height: 340px; }
  .zl-about             { grid-template-columns: 1fr; min-height: auto; }
  .zl-left              { padding: 40px 20px 28px; }
  .zl-right             { height: 520px; min-height: 520px; }
  .zl-globe-wrap        { width: 480px; height: 480px; }
  .zl-students__content { padding-right: 0; padding-bottom: 40px; }
  .zl-students__cols    { height: 380px; }
}

/* ── 34. RESPONSIVE — 768px ──────────────────────────────── */
@media (max-width: 768px) {
  .hw-hero              { min-height: auto; }
  .hw-hero__left        { padding: 28px 1rem; }
  .hw-hero__h1          { font-size: clamp(1.6rem,7vw,2.4rem); }
  .hw-hero__feats       { grid-template-columns: 1fr; gap: 7px; margin-bottom: 20px; }
  .hw-hero__ctas        { flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .hw-btn-gold,
  .hw-btn-outline-w     { width: 100%; justify-content: center; padding: 14px 20px; }
  .hw-placed__card      { flex: 0 0 130px; }
  .hw-placed__photo     { height: 96px; }
  .hw-partners          { padding: 36px 1rem; }
  .hw-learners__cards   { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .hw-sc__photo         { height: 130px; }
  .hw-reviews__div      { display: none; }
  .hw-reviews__gnum     { font-size: 2.2rem; }
  .hw-vids__outer       { padding: 0 2rem; }
  .hw-vids__arr         { width: 34px; height: 34px; }
  .hw-cap__card         { flex: 0 0 240px; }
  .hw-cap__yt           { left: 120px; }
  .hw-mock__inner       { gap: 1.75rem; }
  .hw-hiring__logo      { width: 108px; height: 50px; }
  .hw-faq__q            { font-size: .82rem; padding: 13px 14px; }
  .hw-sh                { margin-bottom: 28px; }
  .hw-verify            { padding: 36px 1rem; }
  .hw-verify__right     { grid-template-columns: 1fr; }
  .hw-verify__doc       { flex: 0 0 300px; height: 300px; }
  .zl-lb__nav--prev     { left: 6px; }
  .zl-lb__nav--next     { right: 6px; }
  .hw-students          { padding: 36px 0; }
  .hw-stu-card          { flex: 0 0 130px; height: 172px; }
  .zl-tmarq             { padding: 50px 0 40px; }
  .zl-tcard             { width: 160px; border-radius: 16px; }
  .zl-tmarq__fade       { width: 70px; }
  .zl-tmarq__track      { gap: 14px; animation-duration: 32s; }
}

/* ── 35. RESPONSIVE — 480px ──────────────────────────────── */
@media (max-width: 480px) {
  .hw-hero__left        { padding: 22px .875rem 24px; }
  .hw-hero__h1          { font-size: clamp(1.45rem,9vw,1.9rem); }
  .hw-hero__rpill .name { display: none; }
  .hw-placed__card      { flex: 0 0 120px; }
  .hw-placed__photo     { height: 88px; }
  .hw-sc__photo         { height: 115px; }
  .hw-learners__cards   { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hw-reviews__sum      { flex-direction: column; gap: 14px; text-align: center; }
  .hw-vids__outer       { padding: 0 1.5rem; }
  .hw-vids__arr         { width: 30px; height: 30px; }
  .hw-cap__card         { flex: 0 0 210px; }
  .hw-hiring__logo      { width: 96px; height: 46px; padding: 6px 8px; }
  .hw-faq__q            { font-size: .8rem; padding: 12px 13px; }
  .hw-sh h2             { font-size: clamp(1.05rem,6vw,1.4rem); }
  .hw-verify__doc       { flex: 0 0 260px; height: 260px; }
  .zl-lb__dots          { display: none; }
  .zl-lb__footer        { justify-content: center; }
  .zl-lb__nav           { width: 38px; height: 38px; }
  .hw-stu-card          { flex: 0 0 112px; height: 148px; }
  .zl-cc-drop           { left: 0; right: 0; width: auto; max-width: none; }
  .pp__track            { padding: 20px 40px 40px; }
  .pp__step             { width: 200px; }
  .pp__card             { width: 180px; }
  .pp__card-inner       { padding: 18px 16px 14px; }
  .pp__card-num         { font-size: 3.5rem; }
  .zl-tcard             { width: 136px; border-radius: 12px; }
  .zl-tmarq__fade       { width: 40px; }
  .zl-tmarq__track      { gap: 10px; animation-duration: 26s; }
  /* Modal bottom sheet on mobile */
  .zl-modal-backdrop    { align-items: flex-end; padding: 0; }
  .zl-modal             { border-radius: 20px 20px 0 0; max-height: 94vh; transform: translateY(100%); }
  .zl-modal-backdrop.is-open .zl-modal { transform: translateY(0); }
  /* iOS font size fix */
  .zl-field input,
  .zl-phone-wrap input[type="tel"],
  .zl-cc-search-wrap input { font-size: 16px; }
  /* Cookies */
  .cookies-card { width: calc(100% - 20px); left: 10px; flex-direction: column; text-align: center; }
  /* Float bars */
  .bar_wpp  { left: 8px; bottom: 60px; }
  .bar_call { left: 8px; bottom: 102px; }
  .bar_demo { left: 9px !important; bottom: 145px !important; }
  .bar_call .txt_call,
  .bar_demo .txt_demo,
  .bar_wpp  .txt_wpp { display: none; }
  /* Offer navbar */
  .offer-navbar { display: block; }
  .offer-navbar .offer-message { font-size: 10px; }
  .offer-navbar .close-btn { top: 67%; }
}

/* ── 36. LANDSCAPE ───────────────────────────────────────── */
@media (max-height: 600px) and (orientation: landscape) {
  .zl-modal-backdrop { align-items: center; padding: 8px; }
  .zl-modal          { border-radius: 14px; max-height: 96vh; }
  .zl-modal__top     { min-height: 80px; }
  .zl-modal__top-ov  { padding: 12px 14px; gap: 3px; }
  .zl-modal__title   { font-size: 1.1rem; }
  .zl-modal__sub,
  .zl-modal__eyebrow { display: none; }
  .zl-modal__body    { padding: 12px 14px 16px; }
  .zl-modal__form    { gap: 9px; }
}

/* ── 37. GLOBE RESPONSIVE ────────────────────────────────── */
@media (max-width: 600px) {
  .zl-globe-wrap { transform: scale(.66); transform-origin: center; }
  .zl-right      { height: 340px; min-height: 340px; }
  .zl-students   { padding: 60px 0; }
  .zl-students__cols  { height: 300px; gap: 8px; }
  .zl-students__track { gap: 8px; }
  .zl-students__btn   { width: 100%; justify-content: center; }
  .zl-students__stats { max-width: 100%; }
}
@media (max-width: 420px) {
  .zl-globe-wrap { transform: scale(.5); }
  .zl-right      { height: 280px; }
}

/* ── 38. TOUCH DEVICE OPTIMISATIONS ─────────────────────── */
@media (hover: none) {
  .hw-placed__card:hover,
  .hw-sc:hover,
  .hw-cap__card:hover,
  .hw-hiring__logo:hover,
  .hw-rc:hover { transform: none; }
  .hw-placed__card:active { box-shadow: var(--sh-md); border-color: var(--gold); }
  .hw-sc:active           { box-shadow: var(--sh-md); border-color: var(--gold); }
}

/* ── 39. CUSTOM SCROLLBAR ────────────────────────────────── */
::-webkit-scrollbar       { width: 7px; }
::-webkit-scrollbar-track { box-shadow: inset 0 0 5px grey; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #000; border-radius: 10px; }