/* ================================================================
   QUIDDITY DIGITAL — styles.css  v5
   Theme  : Light / Premium agency
   Primary: #0BC4DC (brand blue)
   Accent : #E1AD01 → CTA gradient → #F59E0B
   BG     : #FFFFFF / #F8F9FA / #F0FAFB
   Fonts  : Josefin Sans (headings) · Inter (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --blue:        #0BC4DC;
  --blue-d:      #09a8be;
  --blue-l:      #e0f8fb;
  --blue-mid:    rgba(11,196,220,.15);
  --blue-border: rgba(11,196,220,.3);

  /* CTA gradient */
  --cta-from:    #E1AD01;
  --cta-to:      #F59E0B;

  /* Neutrals */
  --white:   #ffffff;
  --bg:      #F8F9FA;
  --bg-blue: #F0FAFB;
  --border:  #E5E7EB;
  --border-d:#D1D5DB;

  /* Text */
  --tx:     #111827;
  --tx-sub: #6B7280;
  --tx-lt:  #9CA3AF;

  /* Feedback */
  --red:     #EF4444;
  --red-l:   #FEF2F2;
  --red-b:   #FECACA;
  --green:   #10B981;

  /* Typography */
  --ff-h: 'Josefin Sans', sans-serif;
  --ff-b: 'Inter', sans-serif;

  /* Spacing */
  --r:    10px;
  --r-lg: 18px;
  --r-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow:    0 4px 20px rgba(0,0,0,.08);
  --shadow-md: 0 8px 36px rgba(0,0,0,.12);
  --shadow-blue: 0 8px 28px rgba(11,196,220,.22);
  --shadow-cta:  0 8px 28px rgba(225,173,1,.28);

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --t:    .24s var(--ease);
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale }
body { font-family: var(--ff-b); background: var(--white); color: var(--tx); line-height: 1.65; overflow-x: hidden }
/* Prevent scroll when mobile nav is open */
body.nav-open { overflow: hidden }
img  { max-width: 100%; display: block; border-radius: var(--r) }
a    { text-decoration: none; color: inherit }
ul   { list-style: none }
button { cursor: pointer; font-family: inherit; border: none; background: none }
input, textarea, select { font-family: inherit }

/* ── LAYOUT ─────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px }

/* ── SHARED TOKENS ──────────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-d);
  background: var(--blue-l);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0 }

/*
 * HEADING TILT FIX:
 * Josefin Sans italic creates a visible slant on all headings.
 * We use font-weight + color differentiation only — no italic.
 * The .c-blue / .c-cta spans provide visual accent via color.
 */
.section-h2 {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--tx);
  margin-bottom: 16px;
  font-style: normal;
}
/* Remove italic from em inside headings — use color only */
.section-h2 em,
.section-h2 span {
  font-style: normal;
}
.section-h2 em    { color: var(--blue-d) }
.c-blue           { color: var(--blue-d) }
.c-cta            { color: var(--cta-from) }

.body-p { font-size: .97rem; color: var(--tx-sub); line-height: 1.78; margin-bottom: 14px }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--ff-h);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
  white-space: nowrap;
  transition: transform var(--t), box-shadow var(--t), background var(--t), opacity var(--t);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
/* ── BUTTON PRESS STATES — feel interactive, not like static images ── */
.btn:active {
  transform: scale(.96) !important;
  opacity: .92;
}

/* CTA — gradient mustard→orange */
.btn-cta {
  background: linear-gradient(135deg, var(--cta-from), var(--cta-to));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(225,173,1,.25);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-cta) }
.btn-cta:focus-visible { outline: 3px solid var(--cta-from); outline-offset: 3px }

/* Blue outline */
.btn-outline {
  background: transparent;
  color: var(--blue-d);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-l); transform: translateY(-2px) }
.btn-outline:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px }

/* Ghost / secondary */
.btn-ghost {
  background: transparent;
  color: var(--tx-sub);
  border: 1.5px solid var(--border-d);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-d); background: var(--blue-l) }
.btn-ghost:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px }

/* Blue filled */
.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(11,196,220,.3) }

.btn-sm { padding: 9px 20px; font-size: .82rem }
.btn-arr { transition: transform var(--t); display: inline-block }
.btn:hover .btn-arr { transform: translateX(4px) }

/* ── REVEAL ─────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s var(--ease), transform .55s var(--ease) }
.reveal.in { opacity: 1; transform: none }
.d1 { transition-delay: .08s } .d2 { transition-delay: .16s }
.d3 { transition-delay: .24s } .d4 { transition-delay: .32s }


/* ================================================================
   NAVBAR
   ================================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,.06);
  padding: 0;
}
#navbar.solid {}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--tx);
  letter-spacing: -.01em;
  font-style: normal;
  flex-shrink: 0;
}
.nav-logo em { font-style: normal; color: var(--blue-d) }

.nav-links { display: flex; align-items: center; gap: 2px }
.nav-links a {
  font-family: var(--ff-h);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--tx-sub);
  padding: 7px 13px;
  border-radius: var(--r);
  transition: var(--t);
}
.nav-links a:hover { color: var(--tx); background: var(--bg) }

/* Calendar icon trigger in navbar */
.nav-cal-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: var(--blue-l) !important;
  border: 1.5px solid var(--blue-border) !important;
  color: var(--blue-d) !important;
  transition: var(--t) !important;
  margin: 0 2px;
}
.nav-cal-icon:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
  border-color: var(--blue) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}
.nav-cal-icon svg { stroke: currentColor }

.nav-cta {
  background: linear-gradient(135deg, var(--cta-from), var(--cta-to)) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  margin-left: 6px;
  box-shadow: 0 3px 12px rgba(225,173,1,.2);
  transition: transform var(--t), box-shadow var(--t) !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(225,173,1,.35) !important;
  background: linear-gradient(135deg, var(--cta-from), var(--cta-to)) !important;
}
.nav-cta:active { transform: scale(.96) translateY(0) !important }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: var(--r);
  transition: background var(--t);
  z-index: 201;
}
.hamburger:hover { background: var(--bg) }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tx);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s ease, width .3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0) }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }


/* ================================================================
   HERO
   ================================================================ */
#home {
  min-height: 100vh;
  padding-top: 68px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Blue blob top-right */
#home::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(11,196,220,.13) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
/* Yellow blob bottom-left */
#home::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(225,173,1,.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 60px 0 48px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-l);
  border: 1px solid var(--blue-border);
  color: var(--blue-d);
  font-family: var(--ff-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: blink 2s infinite }
@keyframes blink { 0%,100%{ opacity:1 } 50%{ opacity:.3 } }

.hero-h1 {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--tx);
  margin-bottom: 20px;
  font-style: normal;        /* FIX: no transform/tilt */
}
.hero-h1 .c-blue { color: var(--blue-d); font-style: normal }
.hero-h1 .c-cta  { color: var(--cta-from); font-style: normal }

.hero-sub {
  font-size: 1.02rem;
  color: var(--tx-sub);
  line-height: 1.78;
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px }

/* Trust bar */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-bottom: 36px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--tx-sub);
  font-weight: 500;
}
.trust-sep { color: var(--border-d); font-size: .8rem }

.hero-stats { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 28px; border-top: 1px solid var(--border) }
.hstat {
  flex: 1;
  min-width: 100px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px 13px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.hstat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,196,220,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hstat:hover {
  border-color: var(--blue-border);
  box-shadow: 0 4px 20px rgba(11,196,220,.12);
  transform: translateY(-2px);
}
.hstat-n {
  display: block;
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -.03em;
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-d) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hstat-n sup {
  font-size: .52em;
  font-weight: 700;
  vertical-align: super;
}
.hstat-l {
  display: block;
  font-size: .7rem;
  color: var(--tx-lt);
  margin-top: 5px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.3;
}

/* Hero image */
.hero-img-col { position: relative }
.hero-img-card {
  background: var(--bg-blue);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 0 }
/* Hide placeholder text when a real image loads successfully */
.hero-img-card img:not([style*="display:none"]) ~ .img-ph { display: none }
.img-ph {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--blue-border);
  font-family: var(--ff-h);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.img-ph svg { opacity: .4 }


/* ================================================================
   ABOUT
   ================================================================ */
#about {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
/* Yellow blob top-right in about */
#about::before {
  content: '';
  position: absolute;
  top: -60px; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(225,173,1,.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
/* Blue blob bottom-left */
#about::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(11,196,220,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Image mosaic */
.about-visual { position: relative }
.av-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 14px;
}
.av-cell {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-blue);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.av-cell img { width: 100%; height: 100%; object-fit: cover; border-radius: 0 }
.av-cell .ph-inner { font-size: 2.4rem; opacity: .5 }
.av-tall { grid-row: span 2 }
.av-warm { background: #fff8e6; border-color: rgba(225,173,1,.25) }
.av-kpi {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-blue);
}
.kpi-n { font-family: var(--ff-h); font-size: 2rem; font-weight: 700; line-height: 1; font-style: normal }
.kpi-l { font-size: .68rem; opacity: .8; margin-top: 4px; text-transform: uppercase; letter-spacing: .08em }

/* Quiddity definition badge */
.about-quiddity-badge {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  background: var(--white);
  border: 1.5px solid var(--blue-border);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 14px 18px;
  margin-bottom: 20px;
}
.aq-word {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-d);
}
.aq-phonetic {
  font-family: var(--ff-b);
  font-size: .78rem;
  color: var(--tx-lt);
}
.aq-def {
  width: 100%;
  font-size: .85rem;
  color: var(--tx-sub);
  line-height: 1.6;
  font-style: normal;
}

/* Copy */
.pillar-list { display: flex; flex-direction: column; gap: 10px; margin-top: 28px }
.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: .93rem;
  color: var(--tx-sub);
  transition: var(--t);
}
.pillar:hover { border-color: var(--blue-border); color: var(--tx); background: var(--bg-blue) }
.p-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0 }
.p-dot--blue   { background: var(--blue) }
.p-dot--cta    { background: var(--cta-from) }
.p-dot--dark   { background: var(--tx) }


/* ================================================================
   HOW WE HELP
   ================================================================ */
#help {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#help::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(225,173,1,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.help-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}
.hc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.hc::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-d));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.hc:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--blue-border) }
.hc:hover::after { transform: scaleX(1) }
.hc-n { font-family: var(--ff-h); font-size: .68rem; font-weight: 600; letter-spacing: .14em; color: var(--tx-lt); margin-bottom: 20px }
.hc-icon {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 0 auto 24px;
  padding: 14px;
  flex-shrink: 0;
}
.hc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hci--blue   { background: var(--blue-l); border: 1px solid var(--blue-border) }
.hci--cta    { background: #fff8e1; border: 1px solid rgba(225,173,1,.25) }
.hci--grey   { background: #F0F2F5; border: 1px solid #E2E5EA }
.hc h3 { font-family: var(--ff-h); font-size: 1.1rem; font-weight: 700; color: var(--tx); margin-bottom: 10px; font-style: normal }
.hc p  { font-size: .9rem; color: var(--tx-sub); line-height: 1.7; margin-bottom: 20px }
.hc-tag { font-family: var(--ff-h); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-d); background: var(--blue-l); padding: 4px 11px; border-radius: 100px; display: inline-block }
.hct--cta { color: var(--cta-from); background: #fff8e1 }


/* ================================================================
   SERVICES
   ================================================================ */
#services { padding: 100px 0; background: var(--bg) }
.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--border);
  padding-bottom: 32px;
  margin-bottom: 0;
  gap: 24px;
}
.svc-list { display: flex; flex-direction: column }
.svc-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--t), padding-left var(--t);
  border-radius: 0;
}
.svc-row:hover { background: var(--bg-blue); padding-left: 12px; border-radius: var(--r) }
.svc-row--featured {
  background: var(--blue-l);
  border-color: var(--blue-border);
  border-radius: var(--r);
  padding: 28px 24px;
  margin-top: 12px;
}
.svc-row--featured:hover { background: rgba(11,196,220,.14); padding-left: 24px }
.svc-i {
  font-family: var(--ff-h);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--tx-lt);
  padding-top: 4px;
}
.svc-cat { font-family: var(--ff-h); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-d); margin-bottom: 5px }
.svc-cat--cta { color: var(--cta-from) }
.svc-title { font-family: var(--ff-h); font-size: 1.15rem; font-weight: 700; color: var(--tx); margin-bottom: 5px; font-style: normal }
.svc-desc  { font-size: .88rem; color: var(--tx-sub); line-height: 1.65 }

/* ── Services bottom CTA strip (replaces right-side tags) ── */
.svc-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  margin-top: 36px;
}
.svc-cta-copy { flex: 1; min-width: 240px }
.svc-cta-q {
  display: block;
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--tx);
  margin-bottom: 6px;
}
.svc-cta-sub {
  display: block;
  font-size: .88rem;
  color: var(--tx-sub);
  line-height: 1.65;
  max-width: 500px;
}


/* ================================================================
   BLOGS
   ================================================================ */
#blogs { padding: 100px 0; background: var(--white) }
.blogs-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; gap: 16px }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px }
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--blue-border) }
.blog-thumb {
  aspect-ratio: 16/9;
  background: var(--bg-blue);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 0;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform .4s var(--ease) }
.blog-card:hover .blog-thumb img { transform: scale(1.04) }
.blog-thumb-ph { font-size: 2.8rem; opacity: .4 }
.bt-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(11,196,220,.06)); pointer-events: none }
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column }
.blog-meta { display: flex; gap: 8px; align-items: center; font-family: var(--ff-h); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--tx-lt); margin-bottom: 10px }
.bc { color: var(--blue-d) }
.blog-card h3 { font-family: var(--ff-h); font-size: 1rem; font-weight: 700; color: var(--tx); line-height: 1.42; margin-bottom: 8px; flex: 1; font-style: normal }
.blog-exc { font-size: .85rem; color: var(--tx-sub); line-height: 1.65; margin-bottom: 16px }
.blog-cta { font-family: var(--ff-h); font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-d); display: inline-flex; align-items: center; gap: 5px; transition: gap var(--t) }
.blog-card:hover .blog-cta { gap: 9px }


/* ================================================================
   TESTIMONIALS
   ================================================================ */
#clients { padding: 100px 0; background: var(--bg) }
.clients-head { text-align: center; margin-bottom: 52px }
.positioning-banner {
  background: linear-gradient(135deg, var(--blue-l), #e0f0ff);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-xl);
  padding: 36px 40px;
  text-align: center;
  margin-bottom: 56px;
}
.positioning-banner h3 { font-family: var(--ff-h); font-size: 1.2rem; font-weight: 700; color: var(--tx); margin-bottom: 8px; font-style: normal }
.positioning-banner p { font-size: .95rem; color: var(--tx-sub); max-width: 520px; margin: 0 auto }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px }
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: var(--t);
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-border); transform: translateY(-3px) }
.testi-stars { color: var(--cta-from); font-size: .95rem; letter-spacing: .08em; margin-bottom: 14px }
.testi-q { font-size: .93rem; color: var(--tx-sub); line-height: 1.75; margin-bottom: 22px; position: relative; padding-left: 16px }
.testi-q::before { content: '"'; position: absolute; left: 0; top: -4px; font-size: 1.6rem; color: var(--blue-border); font-family: var(--ff-h); font-style: normal; line-height: 1 }
.testi-auth { display: flex; align-items: center; gap: 12px }
.t-av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-d)); display: flex; align-items: center; justify-content: center; font-family: var(--ff-h); font-weight: 700; font-size: .85rem; color: var(--white); flex-shrink: 0 }
.t-name { font-family: var(--ff-h); font-weight: 700; font-size: .92rem; color: var(--tx); font-style: normal }
.t-co   { font-size: .78rem; color: var(--tx-lt) }


/* ================================================================
   BOOKING
   ================================================================ */
#booking {
  padding: 100px 0;
  background: var(--bg-blue);
  position: relative;
  overflow: hidden;
}
#booking::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(225,173,1,.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#booking::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(11,196,220,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.booking-head { max-width: 620px; margin-bottom: 48px }
.tz-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--blue-border);
  color: var(--blue-d);
  font-family: var(--ff-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-top: 14px;
}

.booking-shell {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Steps bar */
.steps-bar { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1.5px solid var(--border) }
.step-btn { padding: 18px 28px; border-bottom: 3px solid transparent; transition: var(--t); background: none; text-align: left }
.s-num   { display: block; font-family: var(--ff-h); font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--tx-lt); margin-bottom: 3px }
.s-title { display: block; font-family: var(--ff-h); font-size: .95rem; font-weight: 700; color: var(--tx-sub) }
.step-btn.active .s-num   { color: var(--blue-d) }
.step-btn.active .s-title { color: var(--tx) }
.step-btn.active          { border-bottom-color: var(--blue); background: var(--bg-blue) }
.step-btn.done .s-num, .step-btn.done .s-title { color: var(--tx-lt) }

.step-panel        { display: none; padding: 36px }
.step-panel.active { display: block }
.panel-lbl { font-family: var(--ff-h); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--tx-sub); margin-bottom: 14px }

/* ── CALENDAR ── */
.cal-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 400px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.cal-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-blue);
}
.cal-title { font-family: var(--ff-h); font-weight: 700; font-size: .98rem; color: var(--tx); letter-spacing: -.01em; font-style: normal }
.cal-nav { display: flex; gap: 4px }
.cal-nav button {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--tx-sub);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.cal-nav button:hover:not(:disabled) { background: var(--blue); color: var(--white); border-color: var(--blue) }
.cal-nav button:active:not(:disabled) { transform: scale(.93) }
.cal-nav button:disabled { opacity: .3; cursor: not-allowed }

.cal-grid { padding: 10px 12px 14px }
.cal-dow { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 4px }
.cal-dow span { font-family: var(--ff-h); font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--tx-lt); text-align: center; padding: 5px 0 }

.cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px }
.cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-h);
  font-size: .85rem;
  font-weight: 600;
  color: var(--tx-sub);
  cursor: pointer;
  transition: var(--t);
  position: relative;
}
.cal-day:hover:not(.disabled):not(.blocked):not(.past):not(.other-month) {
  background: var(--bg-blue);
  color: var(--blue-d);
}
.cal-day:active:not(.disabled):not(.blocked):not(.past):not(.other-month) {
  transform: scale(.9);
}
.cal-day.today { color: var(--blue-d); font-weight: 700 }
.cal-day.today::after { content:''; position:absolute; bottom:3px; left:50%; transform:translateX(-50%); width:4px; height:4px; border-radius:50%; background:var(--blue) }
.cal-day.blocked, .cal-day.past { color: var(--tx-lt); cursor: not-allowed; opacity: .45; text-decoration: line-through; text-decoration-color: var(--border-d) }
.cal-day.other-month { opacity: .2; cursor: not-allowed }
.cal-day.available  { color: var(--tx) }
.cal-day.first-available {
  background: var(--blue-l);
  color: var(--blue-d);
  border: 1.5px solid var(--blue-border);
  font-weight: 700;
}
.cal-day.first-available:hover { background: rgba(11,196,220,.2) }
.cal-day.selected {
  background: var(--blue) !important;
  color: var(--white) !important;
  box-shadow: 0 3px 10px rgba(11,196,220,.35);
  font-weight: 700;
}

/* Legend */
.cal-legend { display: flex; gap: 14px; flex-wrap: wrap; padding: 0 12px 12px; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px }
.leg-item { display: flex; align-items: center; gap: 6px; font-size: .65rem; color: var(--tx-lt); font-family: var(--ff-h); letter-spacing: .06em; text-transform: uppercase }
.leg-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0 }
.leg-dot--avail { background: var(--blue) }
.leg-dot--block { background: var(--border-d) }
.leg-dot--sel   { background: linear-gradient(135deg, var(--cta-from), var(--cta-to)) }

/* Picked date confirmation */
.picked-date-show {
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--blue-l);
  border: 1.5px solid var(--blue-border);
  border-radius: var(--r);
  padding: 12px 18px;
  margin-bottom: 24px;
}
.picked-date-show.visible { display: flex }
.pds-text { font-family: var(--ff-h); font-weight: 700; color: var(--blue-d); font-size: .93rem }
.pds-chip {
  font-family: var(--ff-h);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--cta-from), var(--cta-to));
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Time slots */
.times-row { display: flex; gap: 10px; flex-wrap: wrap }
.t-btn {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--ff-h);
  font-size: .82rem;
  font-weight: 600;
  color: var(--tx-sub);
  cursor: pointer;
  transition: var(--t);
  -webkit-tap-highlight-color: transparent;
}
.t-btn:hover { border-color: var(--blue); color: var(--blue-d); background: var(--blue-l) }
.t-btn:active { transform: scale(.93) }
.t-btn.sel   { background: var(--blue); border-color: var(--blue); color: var(--white); box-shadow: 0 3px 12px rgba(11,196,220,.25) }
.t-btn.custom{ border-style: dashed }

.custom-wrap { display: none; margin-top: 12px; align-items: center; gap: 12px }
.custom-wrap.show { display: flex }
.custom-wrap input {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 10px 16px;
  color: var(--tx);
  font-family: var(--ff-h);
  font-size: .88rem;
  width: 150px;
  transition: border-color var(--t);
}
.custom-wrap input:focus { outline: none; border-color: var(--blue) }
.custom-wrap span { font-size: .78rem; color: var(--tx-lt) }

.panel-footer { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end }

/* Summary bar step 2 */
.book-summary {
  background: var(--bg-blue);
  border: 1.5px solid var(--blue-border);
  border-radius: var(--r);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.bs-item { font-family: var(--ff-h); font-size: .78rem; font-weight: 600; color: var(--tx-sub); display: flex; align-items: center; gap: 6px }
.bs-item strong { color: var(--blue-d); font-weight: 700 }

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.fg { display: flex; flex-direction: column; gap: 6px }
.fg-full { grid-column: span 2 }
.fg label { font-family: var(--ff-h); font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--tx-sub) }
.req { color: var(--cta-from); font-style: normal }
.opt { font-size: .62rem; color: var(--tx-lt); font-style: normal; text-transform: lowercase; letter-spacing: 0 }
.fg input, .fg textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 11px 16px;
  color: var(--tx);
  font-size: .93rem;
  transition: border-color var(--t), box-shadow var(--t);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--tx-lt) }
.fg input:focus, .fg textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,196,220,.1); background: var(--white) }
.fg textarea { resize: vertical; min-height: 88px }
.fg .field-err { font-size: .72rem; color: var(--red); margin-top: 3px; display: flex; align-items: center; gap: 4px }
.fg .field-err::before { content: '⚠'; font-size: .68rem }
.fg input.invalid { border-color: var(--red) !important; box-shadow: 0 0 0 3px rgba(239,68,68,.1) !important }
.fg .field-hint { font-size: .72rem; color: var(--green); margin-top: 3px; display: none }
.fg .field-hint.show { display: flex; align-items: center; gap: 4px }
.fg .field-hint::before { content: '✓' }

.checks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px }
.chk {
  display: flex; align-items: center; gap: 9px;
  font-size: .88rem; color: var(--tx-sub);
  cursor: pointer;
  padding: 9px 13px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  transition: var(--t);
}
.chk:hover { border-color: var(--blue-border); color: var(--tx); background: var(--blue-l) }
.chk input[type="checkbox"] { accent-color: var(--blue); width: 15px; height: 15px; flex-shrink: 0 }

.form-footer { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border) }
.form-note { font-size: .78rem; color: var(--tx-lt); flex: 1 }

/* ── BOOKING SUCCESS STATE ── */
#bookingSuccess { display: none; text-align: center; padding: 80px 32px }
#bookingSuccess.show { display: block }

.success-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  border: 4px solid var(--blue-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  animation: popIn .45s var(--ease) both;
  box-shadow: 0 0 0 8px var(--blue-l);
}
@keyframes popIn {
  0%  { transform: scale(.4); opacity: 0 }
  60% { transform: scale(1.1) }
  100%{ transform: scale(1);  opacity: 1 }
}
#bookingSuccess h3 {
  font-family: var(--ff-h);
  font-size: 2rem;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 12px;
  font-style: normal;
  animation: fadeUp .4s var(--ease) .2s both;
}
#bookingSuccess p {
  color: var(--tx-sub);
  max-width: 400px;
  margin: 0 auto 28px;
  font-size: .97rem;
  line-height: 1.7;
  animation: fadeUp .4s var(--ease) .3s both;
}
.success-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .4s var(--ease) .4s both;
}
.pending-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--cta-from), var(--cta-to));
  color: var(--white);
  font-family: var(--ff-h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px) }
  to   { opacity: 1; transform: none }
}


/* ================================================================
   FOOTER
   ================================================================ */
footer { background: var(--tx); color: rgba(255,255,255,.75) }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding: 68px 0 52px }
.footer-logo { font-family: var(--ff-h); font-weight: 700; font-size: 1.25rem; color: var(--white); display: block; margin-bottom: 14px; letter-spacing: -.01em; font-style: normal }
.footer-logo em { font-style: normal; color: var(--blue) }
.footer-desc { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.45); margin-bottom: 24px; max-width: 260px }
.socials { display: flex; gap: 8px }
.s-lnk {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.s-lnk:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px) }
.s-lnk:active { transform: scale(.92) }
.s-lnk svg { width: 16px; height: 16px; fill: rgba(255,255,255,.6) }
.s-lnk:hover svg { fill: var(--white) }
.footer-col h5 { font-family: var(--ff-h); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px }
.f-links { display: flex; flex-direction: column; gap: 10px }
.f-links a { font-size: .9rem; color: rgba(255,255,255,.45); transition: color var(--t) }
.f-links a:hover { color: var(--white) }
.f-contact { display: flex; flex-direction: column; gap: 11px; margin-bottom: 20px }
.f-ci { font-size: .88rem; color: rgba(255,255,255,.45); display: flex; align-items: flex-start; gap: 9px; line-height: 1.5 }
.f-ci svg { flex-shrink: 0; margin-top: 2px; stroke: rgba(255,255,255,.4) }

/* Footer CTA button */
.footer-cta-btn {
  display: inline-flex !important;
  margin-top: 4px;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px }
.footer-bottom p, .footer-bottom span { font-size: .78rem; color: rgba(255,255,255,.3) }


/* ================================================================
   RESPONSIVE — MOBILE FIRST
   ================================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px }
  .svc-head { flex-direction: column; align-items: flex-start }
  .svc-row { grid-template-columns: 40px 1fr }
}

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px }
  .hero-sub { max-width: 100% }
  .about-grid { grid-template-columns: 1fr; gap: 52px }
  .av-kpi { bottom: -12px; right: 0 }
  .hc-grid { grid-template-columns: 1fr }
  .blog-grid { grid-template-columns: 1fr 1fr }
  .testi-grid { grid-template-columns: 1fr }
  .blogs-head { flex-direction: column; align-items: flex-start; gap: 14px }
  .form-grid { grid-template-columns: 1fr }
  .fg-full { grid-column: span 1 }
  .checks-grid { grid-template-columns: 1fr }
  .step-panel { padding: 24px 20px }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 48px 0 36px }
  .svc-row { grid-template-columns: 1fr }
  .svc-i { display: none }
  .svc-cta-strip { flex-direction: column; align-items: flex-start; padding: 24px 22px }
  .svc-cta-strip .btn { width: 100%; justify-content: center }
}

@media (max-width: 768px) {
  .container { padding: 0 18px }

  /* ── MOBILE NAVBAR — smooth slide + fade animation ── */
  .nav-links {
    /* Hidden state: slide up + fade out */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    padding-top: 90px;

    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 20px 0 40px;
    overflow-y: auto;
    /* Animation */
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .28s var(--ease), transform .28s var(--ease);
    /* Override desktop display */
    display: flex !important;
    border-bottom: none;
    box-shadow: none;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links li { width: 100% }
  .nav-links a {
    display: block;
    border-radius: 0;
    padding: 16px 28px;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
    color: var(--tx);
    letter-spacing: .04em;
    transition: background var(--t), color var(--t);
  }
  .nav-links a:hover { background: var(--bg-blue); color: var(--blue-d) }

  /* Calendar icon on mobile — inline row */
  .nav-cal-icon {
    display: inline-flex !important;
    margin: 12px 28px !important;
    width: auto !important;
    height: auto !important;
    padding: 10px 18px !important;
    border-radius: 50px !important;
    gap: 8px;
    justify-content: center;
    font-size: .82rem !important;
    font-family: var(--ff-h) !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    border-bottom: none !important;
  }
  .nav-cal-icon::after { content: ' Book a Session' }

  .nav-cta {
    margin: 12px 28px !important;
    border-radius: 50px !important;
    text-align: center;
    justify-content: center;
    display: flex !important;
    border-bottom: none !important;
  }

  .hamburger { display: flex }
  .hero-actions { flex-direction: column }
  .hero-actions .btn { width: 100%; justify-content: center }
  .hero-stats .hstat:last-child { display: none }

  .hero-img-card { aspect-ratio: 4/2.5 }
  .cal-wrap { max-width: 100% }
  .svc-row--featured { padding: 20px 16px }
  .hero-trust-bar { gap: 6px 12px }
  .trust-sep { display: none }
}

@media (max-width: 540px) {
  .blog-grid { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr }
  .footer-bottom { flex-direction: column; text-align: center }
  .hc-grid { gap: 14px }
  .hero-stats { gap: 8px }
  .hstat { min-width: 80px; padding: 12px 12px 11px }
  .positioning-banner { padding: 24px 20px }
  #bookingSuccess { padding: 60px 20px }
  .success-actions { flex-direction: column }
  .pending-chip { width: 100%; justify-content: center }
  .success-actions .btn { width: 100%; justify-content: center }
}


/* ── BLOG SKELETON LOADER ── */
.blog-skeleton {
  min-height: 320px;
  background: linear-gradient(90deg, var(--bg) 25%, var(--border) 50%, var(--bg) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  pointer-events: none;
}
@keyframes shimmer {
  0%   { background-position: 200% 0 }
  100% { background-position: -200% 0 }
}
