/* ================================================================
   TUITIONPLUS — style.css  (Professional Edition)
   ================================================================ */

:root {
  --red:          #F04343;
  --red-dark:     #C92C2C;
  --red-light:    #FEF0F0;
  --red-mid:      #FDDCDC;
  --purple:       #7658F7;
  --purple-dark:  #5A3FD6;
  --purple-light: #F0EDFF;
  --purple-mid:   #D9D2FD;
  --navy:         #0F0A2E;
  --text:         #0F172A;
  --text2:        #475569;
  --text3:        #94A3B8;
  --bg:           #FFFFFF;
  --bg2:          #F9F8FF;
  --border:       #E5E2F8;
  --radius:       12px;
  --radius-lg:    18px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(118,88,247,0.10);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Lora', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(30px, 5vw, 54px); }
h2 { font-size: clamp(24px, 3.5vw, 36px); }
h3 { font-size: 19px; }
p  { color: var(--text2); }

.text-red    { color: var(--red); }
.text-purple { color: var(--purple); }
.text-center { text-align: center; }

/* ---- Buttons ---- */
button, .btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  border-radius: 10px;
  padding: 11px 26px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  display: inline-block;
  border: none;
  letter-spacing: 0.01em;
}
.btn-red          { background: var(--red); color: #fff; }
.btn-red:hover    { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(240,67,67,0.35); }
.btn-purple       { background: var(--purple); color: #fff; }
.btn-purple:hover { background: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(118,88,247,0.35); }
.btn-outline      { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline:hover{ background: var(--purple-light); }
.btn-ghost        { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover  { border-color: var(--purple); color: var(--purple); }

/* ---- Card ---- */
.card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}
.card:hover {
  border-color: var(--purple-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ---- Section ---- */
.section { padding: 64px 6%; }
.section-header { margin-bottom: 44px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-light);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.section-sub { color: var(--text2); margin-top: 10px; font-size: 16px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 66px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo        { display: flex; align-items: center; }
.nav-logo-img    { height: 38px; width: auto; }
.nav-links       { display: flex; gap: 32px; }
.nav-links a     { font-size: 14px; font-weight: 500; color: var(--text2); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-cta         { display: flex; gap: 10px; align-items: center; }
.hamburger       { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text); }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 9px 6%;
}
.trust-badge {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  text-align: center;
  padding: 72px 6% 60px;
  background: linear-gradient(160deg, #fafafe 0%, #f3f0ff 100%);
  border-bottom: 1px solid var(--border);
}
.hero-label {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 20px;
  border: 1px solid var(--purple-mid);
}
.hero h1         { margin-bottom: 18px; }
.hero-sub        { max-width: 580px; margin: 0 auto 32px; font-size: 17px; color: var(--text2); }
.hero-btns       { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note       { font-size: 12.5px; color: var(--text3); }

/* ================================================================
   LOGOS BAR
   ================================================================ */
.logos-bar {
  text-align: center;
  padding: 32px 6%;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.logos-bar p     { font-size: 12px; color: var(--text3); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.logos-row       { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.fake-logo {
  font-size: 13px;
  font-weight: 700;
  color: var(--text3);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 7px 18px;
  background: var(--bg2);
}

/* ================================================================
   FEATURES GRID
   ================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card           { position: relative; overflow: hidden; }
.feat-card::before   {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F04343, #7658F7);
  opacity: 0;
  transition: opacity 0.25s;
}
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
}
.feat-card h3        { margin-bottom: 8px; font-size: 16px; }
.feat-card p         { font-size: 14px; line-height: 1.6; }

/* ================================================================
   STATS BAND
   ================================================================ */
.stats-band {
  background: linear-gradient(135deg, #5A3FD6 0%, #7658F7 50%, #9B7FFA 100%);
  padding: 48px 6%;
  text-align: center;
}
.stats-band-label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; color: rgba(255,255,255,0.75); margin-bottom: 28px; text-transform: uppercase; }
.stats-grid       { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.stat-item        { text-align: center; }
.stat-num         { font-family: 'Lora', serif; font-size: 42px; font-weight: 600; color: #fff; line-height: 1; }
.stat-lbl         { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 6px; font-weight: 500; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card blockquote { font-style: italic; color: var(--text2); margin: 12px 0 18px; line-height: 1.65; font-size: 14.5px; }
.stars                 { color: #F59E0B; font-size: 15px; letter-spacing: 2px; }
.testi-author          { display: flex; align-items: center; gap: 12px; margin-top: 14px; border-top: 1px solid var(--border); padding-top: 14px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; color: var(--text); }
.author-meta { font-size: 12px; color: var(--text3); margin-top: 1px; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list      { max-width: 700px; margin: 0 auto; }
.faq-item      { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  gap: 12px;
}
.faq-arrow     { font-size: 17px; color: var(--purple); transition: transform 0.25s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a         { display: none; padding: 0 0 18px; color: var(--text2); font-size: 14.5px; line-height: 1.7; }
.faq-a.open    { display: block; }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--purple-light) 0%, #e8e2ff 100%);
  border-top: 1px solid var(--purple-mid);
  border-bottom: 1px solid var(--purple-mid);
  padding: 56px 6%;
  text-align: center;
}
.cta-band h2  { margin-bottom: 10px; }
.cta-band p   { font-size: 16px; margin-bottom: 28px; }
.cta-btns     { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.cta-trust    { font-size: 12.5px; color: var(--text3); }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  padding: 56px 6% 44px;
  background: linear-gradient(160deg, #fafafe 0%, #f3f0ff 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1  { margin: 10px 0 14px; }
.page-hero p   { color: var(--text2); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ================================================================
   FEATURES DETAIL PAGE
   ================================================================ */
.feature-detail {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 60px 6%;
  border-bottom: 1px solid var(--border);
}
.feature-detail.reverse { flex-direction: row-reverse; background: var(--bg2); }
.feat-text           { flex: 1; }
.feat-text h2        { margin-bottom: 12px; }
.feat-text > p       { margin-bottom: 22px; font-size: 15.5px; }
.feat-text ul        { margin-bottom: 26px; }
.feat-text ul li     { padding: 7px 0 7px 22px; position: relative; color: var(--text2); font-size: 14.5px; line-height: 1.5; }
.feat-text ul li::before { content: '✓'; position: absolute; left: 0; color: var(--purple); font-weight: 700; }
.feat-visual {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-light), #e8e2ff);
  border-radius: var(--radius-lg);
  min-height: 260px;
  border: 1.5px solid var(--purple-mid);
  padding: 20px;
}
.feat-icon-large { font-size: 68px; display:flex; align-items:center; justify-content:center; width:100%; }

/* ── Feature Mockup Base ─────────────────────────────────── */
.fm-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fm-wrap-wa { padding: 0; gap: 0; }

/* Card */
.fm-card {
  background: #fff;
  border-radius: 12px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 2px 10px rgba(108,59,245,.10);
}
.fm-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg,#6C3BF5,#a78bfa);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.fm-info { flex: 1; min-width: 0; }
.fm-name { font-weight: 700; font-size: 13.5px; color: #1a1a2e; }
.fm-meta { font-size: 11.5px; color: #64748b; margin-top: 2px; }

/* Badges */
.fm-badge { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 20px; white-space: nowrap; }
.fm-badge-green  { background: #E8F5E9; color: #2E7D32; }
.fm-badge-red    { background: #FFEBEE; color: #C62828; }
.fm-badge-purple { background: #EDE7F6; color: #4527A0; }

/* Tags */
.fm-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.fm-tag  { background: #EDE7F6; color: #6C3BF5; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.fm-tag-green { background: #E8F5E9; color: #2E7D32; }
.fm-tag-red   { background: #FFEBEE; color: #C62828; }

/* Stats row */
.fm-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.fm-stat  { background: #fff; border-radius: 10px; padding: 9px 6px; text-align: center; box-shadow: 0 1px 5px rgba(108,59,245,.08); }
.fm-stat-val { font-size: 17px; font-weight: 800; color: #6C3BF5; }
.fm-stat-lbl { font-size: 10px; color: #64748b; margin-top: 2px; }

/* WhatsApp notification strip */
.fm-wa-notif {
  background: #E8F5E9;
  border-left: 3px solid #25D366;
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 12px;
  color: #1a1a2e;
}

/* Receipt */
.fm-receipt { background: #fff; border-radius: 12px; box-shadow: 0 2px 10px rgba(108,59,245,.10); overflow: hidden; }
.fm-receipt-header {
  background: linear-gradient(135deg,#6C3BF5,#a78bfa);
  color: #fff; padding: 11px 15px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 12.5px;
}
.fm-receipt-body { padding: 11px 15px; }
.fm-receipt-row {
  display: flex; justify-content: space-between;
  font-size: 12.5px; color: #475569;
  padding: 5px 0; border-bottom: 1px solid #f1f5f9;
}
.fm-receipt-row:last-child { border-bottom: none; }
.fm-receipt-total { font-weight: 700; color: #1a1a2e; font-size: 13.5px; }

/* Attendance list */
.fm-att-list { background: #fff; border-radius: 12px; box-shadow: 0 2px 10px rgba(108,59,245,.10); overflow: hidden; }
.fm-att-header { background: #6C3BF5; color: #fff; padding: 10px 15px; font-weight: 700; font-size: 12px; }
.fm-att-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 15px; border-bottom: 1px solid #f8f5ff;
}
.fm-att-row:last-child { border-bottom: none; }
.fm-att-av {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.fm-att-name { flex: 1; font-size: 12.5px; color: #1a1a2e; font-weight: 500; }
.fm-att-dot  { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.fm-att-p   { background: #E8F5E9; color: #2E7D32; }
.fm-att-a   { background: #FFEBEE; color: #C62828; }

/* Calendar */
.fm-cal { background: #fff; border-radius: 12px; box-shadow: 0 2px 10px rgba(108,59,245,.10); overflow: hidden; }
.fm-cal-head { background: #6C3BF5; color: #fff; padding: 10px 12px; font-weight: 700; font-size: 12px; }
.fm-cal-grid { display: grid; grid-template-columns: 36px repeat(5,1fr); }
.fm-cal-corner { background: #EDE7F6; }
.fm-cal-dh { background: #EDE7F6; color: #6C3BF5; font-weight: 700; padding: 5px 3px; text-align: center; font-size: 9.5px; border-left: 1px solid #e4e0f7; }
.fm-cal-time { color: #94a3b8; font-size: 9px; padding: 5px 3px; text-align: right; border-top: 1px solid #f1f5f9; border-right: 1px solid #e4e0f7; display: flex; align-items: center; justify-content: flex-end; }
.fm-cal-cell { min-height: 34px; border-top: 1px solid #f1f5f9; border-left: 1px solid #f1f5f9; padding: 3px; }
.fm-batch { border-radius: 5px; padding: 3px 5px; font-size: 9px; font-weight: 700; color: #fff; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; }
.fm-ba { background: #6C3BF5; }
.fm-bb { background: #E63946; }
.fm-bc { background: #059669; }

/* WhatsApp chat */
.fm-wa { background: #e5ddd5; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.12); width: 100%; }
.fm-wa-head {
  background: #075E54; color: #fff;
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
}
.fm-wa-av { width: 32px; height: 32px; border-radius: 50%; background: #128C7E; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.fm-wa-title { font-weight: 700; font-size: 13px; }
.fm-wa-sub   { font-size: 10px; opacity: .8; }
.fm-wa-body  { padding: 12px 10px; display: flex; flex-direction: column; gap: 8px; }
.fm-wa-bubble { background: #fff; border-radius: 8px 8px 8px 0; padding: 9px 12px; font-size: 11.5px; color: #1a1a2e; box-shadow: 0 1px 2px rgba(0,0,0,.10); }
.fm-wa-tag   { font-size: 10px; font-weight: 700; color: #6C3BF5; margin-bottom: 4px; }
.fm-wa-time  { font-size: 9px; color: #94a3b8; text-align: right; margin-top: 5px; }

/* Analytics */
.fm-analytics { background: #fff; border-radius: 12px; box-shadow: 0 2px 10px rgba(108,59,245,.10); padding: 15px; }
.fm-analytics-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.fm-analytics-lbl { font-size: 11px; color: #64748b; font-weight: 600; }
.fm-analytics-rev { font-size: 24px; font-weight: 800; color: #6C3BF5; margin-top: 2px; }
.fm-chart { display: flex; align-items: flex-end; gap: 5px; height: 65px; }
.fm-bar { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(to top,#6C3BF5,#a78bfa); }
.fm-bar-peak { background: linear-gradient(to top,#E63946,#f87171) !important; }
.fm-chart-labels { display: flex; gap: 5px; margin-top: 4px; }
.fm-chart-labels span { flex: 1; font-size: 9px; color: #94a3b8; text-align: center; }
.link-purple       { color: var(--purple); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; }
.link-purple:hover { text-decoration: underline; }

/* ================================================================
   PRICING
   ================================================================ */
.pricing-section { padding: 48px 6%; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1050px;
  margin: 0 auto;
}
.pricing-card {
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  border: 1.5px solid var(--border);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured    { border-color: var(--purple); box-shadow: 0 8px 32px rgba(118,88,247,0.12); }
.pricing-card.purple-filled { background: var(--purple); color: #fff; border-color: var(--purple); }
.pricing-card.purple-filled .plan-desc,
.pricing-card.purple-filled .plan-price span,
.pricing-card.purple-filled .plan-features li { color: rgba(255,255,255,0.8); }
.pricing-card.navy-filled   { background: #1e1448; color: #fff; border-color: #1e1448; }
.pricing-card.navy-filled .plan-desc,
.pricing-card.navy-filled .plan-price span,
.pricing-card.navy-filled .plan-features li  { color: rgba(255,255,255,0.7); }
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.pricing-card.purple-filled .plan-badge { background: #fff; color: var(--purple); }
.plan-name         { font-size: 21px; margin-bottom: 6px; }
.plan-desc         { font-size: 13.5px; margin-bottom: 18px; }
.plan-price        { font-family: 'Lora', serif; font-size: 42px; font-weight: 600; margin-bottom: 22px; line-height: 1; }
.plan-price span   { font-size: 15px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400; }
.plan-features     { flex: 1; }
.plan-features li  {
  padding: 8px 0;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--text2);
}
.pricing-card.purple-filled .plan-features li,
.pricing-card.navy-filled .plan-features li { border-bottom-color: rgba(255,255,255,0.1); }
.plan-features li:last-child { border-bottom: none; }
.pricing-card .btn  { width: 100%; margin-top: 24px; text-align: center; }
.trust-badges-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 6% 48px;
}
.trust-badges-row .trust-badge {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
}

/* ================================================================
   TESTIMONIALS FILTER
   ================================================================ */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 6% 28px;
}
.filter-btn {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text2);
  transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.filter-btn:hover, .filter-btn.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.testi-grid.full { padding: 0 6% 64px; }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding: 56px 6%;
  max-width: 1000px;
  margin: 0 auto;
}
.form-group        { margin-bottom: 18px; }
.form-group label  { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(118,88,247,0.08); }
.form-group textarea       { resize: vertical; }
.alert-success {
  background: #F0FDF4; border: 1px solid #86EFAC; color: #166534;
  border-radius: var(--radius); padding: 13px 16px; margin-bottom: 18px; font-weight: 600; font-size: 14px;
}
.alert-error {
  background: var(--red-light); border: 1px solid var(--red-mid); color: var(--red-dark);
  border-radius: var(--radius); padding: 13px 16px; margin-bottom: 18px; font-weight: 600; font-size: 14px;
}
.contact-info-card   { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.contact-icon        { font-size: 22px; }
.contact-label       { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--text3); margin-bottom: 2px; letter-spacing: 0.06em; }
.contact-value       { font-size: 14.5px; font-weight: 600; color: var(--text); }

/* ================================================================
   BLOG
   ================================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 6% 64px;
}
.blog-card h3          { margin: 12px 0 8px; font-size: 17px; }
.blog-card h3 a        { color: var(--text); transition: color 0.2s; }
.blog-card h3 a:hover  { color: var(--purple); }
.blog-card p           { font-size: 14px; line-height: 1.6; margin-bottom: 0; }
.blog-footer           { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border); }
.blog-date             { font-size: 12.5px; color: var(--text3); }
.cat-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: 20px;
  padding: 3px 10px;
}
.cat-red    { background: var(--red-light);    color: var(--red-dark); }
.cat-purple { background: var(--purple-light); color: var(--purple-dark); }
.cat-green  { background: #E8F5E9;             color: #1B5E20; }

/* ================================================================
   FOOTER — Light & Professional
   ================================================================ */
footer {
  background: #fff;
  border-top: 1.5px solid var(--border);
  padding: 52px 6% 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer-logo-img   { height: 34px; width: auto; margin-bottom: 14px; }
.footer-brand p    { color: var(--text2); font-size: 13.5px; margin: 0 0 18px; line-height: 1.65; max-width: 280px; }
.footer-badges     { display: flex; flex-direction: column; gap: 7px; }
.badge-red    {
  background: var(--red-light);
  color: var(--red-dark);
  border: 1px solid var(--red-mid);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}
.badge-purple {
  background: var(--purple-light);
  color: var(--purple-dark);
  border: 1px solid var(--purple-mid);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}
.footer-app-links { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  width: fit-content;
  transition: background .2s;
}
.app-store-btn:hover { background: #333; }
.app-store-btn svg { flex-shrink: 0; }
.app-store-btn span { display: flex; flex-direction: column; line-height: 1.2; }
.app-store-btn small { font-size: 10px; font-weight: 400; opacity: .8; }
.app-store-btn span > :last-child { font-size: 14px; font-weight: 700; }

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 14px;
}
.footer-col ul li         { margin-bottom: 9px; }
.footer-col ul li a       { color: var(--text2); font-size: 13.5px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--purple); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text3);
}
.footer-bottom a { color: var(--purple); }

/* ================================================================
   HERO CAROUSEL
   ================================================================ */
.hero-carousel {
  background: linear-gradient(160deg, #fafafe 0%, #f3f0ff 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.hero-slides { position: relative; }
.hero-slide {
  display: none;
  padding: 72px 6% 44px;
  text-align: center;
  animation: fadeSlide 0.45s ease;
}
.hero-slide.active { display: block; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 16px;
  border: 1px solid;
}
.hero-tag-red    { background: var(--red-light);    color: var(--red-dark);    border-color: var(--red-mid); }
.hero-tag-purple { background: var(--purple-light); color: var(--purple-dark); border-color: var(--purple-mid); }
.hero-tag-green  { background: #F0FDF4; color: #166534; border-color: #86EFAC; }
.hero-slide h1   { max-width: 800px; margin: 0 auto 18px; }
.hero-sub        { max-width: 580px; margin: 0 auto 32px; font-size: 17px; color: var(--text2); }
.hero-btns       { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note       { font-size: 12.5px; color: var(--text3); }
.carousel-dots   { display: flex; justify-content: center; gap: 8px; padding: 18px 0 28px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple-mid);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
  flex-shrink: 0;
}
.dot.active { background: var(--purple); width: 26px; border-radius: 4px; }

/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 28px 6%;
  gap: 0;
}
.trust-strip-item  { display: flex; flex-direction: column; align-items: center; padding: 8px 40px; }
.trust-strip-divider { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }
.ts-num {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.ts-lbl { font-size: 12px; color: var(--text3); margin-top: 5px; font-weight: 500; }

/* ================================================================
   FEATURES — learn more link
   ================================================================ */
.feat-link { display: inline-block; margin-top: 14px; }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 940px;
  margin: 0 auto;
}
.how-card {
  flex: 1;
  text-align: center;
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.how-card:hover { border-color: var(--purple-mid); box-shadow: var(--shadow-md); }
.how-arrow {
  font-size: 26px;
  color: var(--purple-mid);
  align-self: center;
  padding: 0 10px;
  flex-shrink: 0;
  font-weight: 300;
}
.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.how-icon-lg  { font-size: 38px; margin-bottom: 12px; }
.how-card h3  { font-size: 17px; margin-bottom: 8px; }
.how-card p   { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ================================================================
   TESTIMONIALS CAROUSEL
   ================================================================ */
.testi-carousel { overflow: hidden; }
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}
.testi-slide { flex-shrink: 0; }
.testi-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.testi-dots { display: flex; gap: 6px; align-items: center; }
.testi-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  font-size: 22px;
  color: var(--text2);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
  font-family: sans-serif;
}
.testi-btn:hover { border-color: var(--purple); color: var(--purple); }

/* ================================================================
   SOCIAL MEDIA ICONS (Footer)
   ================================================================ */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  color: var(--text2);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.social-icon:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

/* ================================================================
   BOOK DEMO PAGE
   ================================================================ */
.demo-trust-pill {
  display: inline-block;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
}
.demo-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding: 52px 6%;
  max-width: 1100px;
  margin: 0 auto;
}
.demo-form-col { }
.demo-info-col { }

/* Two-column row inside the form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Styled select inside demo form */
.demo-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.demo-select:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(118,88,247,0.08); }

/* What Happens Next — steps */
.demo-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.demo-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}
.demo-step-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.demo-step-desc  { font-size: 13.5px; color: var(--text2); }
.demo-step-line  { width: 2px; height: 18px; background: var(--purple-mid); margin-left: 15px; }

/* Contact buttons inside demo page */
.demo-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.2s;
  border: 1.5px solid var(--border);
}
.demo-contact-wa    { background: #f0fdf4; border-color: #86efac; color: #15803d; }
.demo-contact-wa:hover { background: #dcfce7; }
.demo-contact-call  { background: var(--purple-light); border-color: var(--purple-mid); color: var(--purple-dark); }
.demo-contact-call:hover { background: var(--purple-mid); }
.demo-contact-email { background: var(--bg2); border-color: var(--border); color: var(--text2); }
.demo-contact-email:hover { border-color: var(--purple); color: var(--purple); }

/* ================================================================
   FOOTER SOCIAL LIST (icon + label links in Support column)
   ================================================================ */
.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--bg2);
  color: var(--text2);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  line-height: 1;
}
.footer-social-link svg {
  flex-shrink: 0;
  transition: transform 0.15s;
}
.footer-social-link:hover              { transform: translateX(3px); }
.footer-social-fb:hover { background: #e7f0ff; border-color: #1877F2; color: #1877F2; }
.footer-social-ig:hover { background: #fce4ec; border-color: #E1306C; color: #E1306C; }
.footer-social-yt:hover { background: #ffecec; border-color: #FF0000; color: #FF0000; }
.footer-social-x:hover  { background: #f0f0f0; border-color: #000;    color: #000; }
.footer-social-li:hover { background: #e8f4fd; border-color: #0A66C2; color: #0A66C2; }

/* Mobile-only nav demo link (hidden on desktop) */
.nav-mobile-demo-item { display: none; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ── Tablet: 768px – 1024px ─────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid               { grid-template-columns: repeat(2, 1fr); }

  /* Footer: brand full-width, then 3 cols side by side */
  .footer-grid                { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand               { grid-column: 1 / -1; }
  .footer-brand p             { max-width: 100%; }

  .how-grid                   { gap: 8px; }
  .trust-strip-item           { padding: 8px 24px; }

  /* Demo layout becomes single column on tablet */
  .demo-layout                { grid-template-columns: 1fr; gap: 32px; padding: 44px 5%; }
}

/* ── Mobile: ≤ 700px ─────────────────────────────────────────── */
@media (max-width: 700px) {
  /* Prevent horizontal scroll when nav opens */
  body                        { overflow-x: hidden; }

  /* Layout & spacing */
  .section                    { padding: 44px 5%; }
  .hero-slide                 { padding: 52px 5% 36px; }
  .cta-band                   { padding: 44px 5%; }
  .page-hero                  { padding: 44px 5% 36px; }

  /* Typography */
  .hero h1, .hero-slide h1    { font-size: clamp(24px, 7vw, 34px); }
  h2                          { font-size: clamp(20px, 6vw, 28px); }

  /* Hero buttons — wrap and stretch */
  .hero-btns                  { flex-direction: column; align-items: center; gap: 10px; }
  .hero-btns .btn             { width: 100%; max-width: 300px; text-align: center; }
  .hero-note                  { font-size: 12px; padding: 0 8px; }

  /* Trust strip */
  .trust-strip-divider        { display: none; }
  .trust-strip                { gap: 8px 0; padding: 20px 5%; }
  .trust-strip-item           { padding: 8px 16px; width: 50%; text-align: center; }

  /* Logos bar */
  .logos-bar                  { padding: 24px 5%; }
  .logos-row                  { gap: 10px; }

  /* How it works */
  .how-grid                   { flex-direction: column; gap: 12px; max-width: 100%; }
  .how-arrow                  { transform: rotate(90deg); align-self: center; padding: 4px 0; }

  /* Navbar — hamburger menu */
  .navbar {
    position: sticky;
    top: 0;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 5% 20px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    gap: 0;
  }
  .nav-links.open             { display: flex; }
  .nav-links li               { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child    { border-bottom: none; }
  .nav-links a                { display: block; padding: 12px 0; font-size: 15px; }
  .nav-mobile-demo-item       { display: block; margin-top: 8px; border-bottom: none !important; }
  .nav-mobile-demo-link {
    display: block;
    padding: 12px 16px;
    background: var(--red);
    color: #fff !important;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
  }
  .nav-cta                    { display: none; }
  .hamburger                  { display: block; }

  /* Content grids → single column */
  .features-grid,
  .testi-grid,
  .pricing-grid,
  .blog-grid                  { grid-template-columns: 1fr; }

  /* Footer: brand full-width → Product+Company side by side → Support full-width */
  .footer-grid                { grid-template-columns: 1fr 1fr; }
  .footer-brand               { grid-column: 1 / -1; }
  .footer-col:last-child      { grid-column: 1 / -1; }   /* Support spans both cols */
  .footer-bottom              { flex-direction: column; text-align: center; gap: 6px; }
  .footer-social              { flex-wrap: wrap; gap: 8px; }
  /* Social list stays vertical at 700px (enough room) */
  .footer-social-list         { display: flex; flex-direction: column; gap: 7px; }

  /* CTA band buttons */
  .cta-btns                   { flex-direction: column; align-items: center; }
  .cta-btns .btn              { width: 100%; max-width: 300px; text-align: center; }

  /* Contact / Demo layout */
  .contact-layout             { grid-template-columns: 1fr; padding: 40px 5%; gap: 24px; }
  .demo-layout                { grid-template-columns: 1fr; padding: 36px 5%; gap: 24px; }
  .form-row                   { grid-template-columns: 1fr; gap: 0; }

  /* Pricing */
  .pricing-section            { padding: 32px 4%; }
  table                       { font-size: 12px; }
  table th, table td          { padding: 8px 10px !important; }
  table th:first-child,
  table td:first-child        { min-width: 100px; }

  /* Demo contact buttons */
  .demo-contact-btn           { font-size: 13px; padding: 11px 14px; }
  .demo-select                { width: 100%; }
  .demo-step-title            { font-size: 14px; }
  .demo-step-desc             { font-size: 13px; }

  /* Features detail */
  .feature-detail             { flex-direction: column !important; padding: 40px 5%; gap: 32px; }
  .feat-visual                { min-height: auto; padding: 16px; }

  /* Feature mockup responsive — 700px */
  .fm-wrap                    { gap: 8px; }
  .fm-stat-val                { font-size: 15px; }
  .fm-stat-lbl                { font-size: 9px; }
  .fm-name                    { font-size: 13px; }
  .fm-meta                    { font-size: 11px; }
  .fm-receipt-header          { font-size: 12px; padding: 10px 13px; }
  .fm-receipt-row             { font-size: 12px; }
  .fm-receipt-total           { font-size: 13px; }
  .fm-wa-bubble               { font-size: 11px; padding: 8px 10px; }
  .fm-wa-tag                  { font-size: 9.5px; }
  .fm-analytics-rev           { font-size: 20px; }
  .fm-chart                   { height: 55px; }
  /* Calendar — reduce font sizes on tablet/mobile */
  .fm-cal-dh                  { font-size: 8.5px; padding: 5px 2px; }
  .fm-cal-time                { font-size: 8px; padding: 4px 2px; }
  .fm-batch                   { font-size: 8px; padding: 2px 3px; }
  .fm-cal-cell                { min-height: 30px; padding: 2px; }
  .fm-cal-corner              { min-width: 30px; }
  .fm-cal-grid                { grid-template-columns: 30px repeat(5,1fr); }

  /* Other */
  .stats-grid                 { gap: 28px; }
  .testi-grid.full            { padding: 0 5% 48px; }
  .blog-grid                  { padding: 0 5% 48px; }
  .trust-bar                  { gap: 16px; padding: 8px 5%; }
  .demo-trust-pill            { font-size: 12px; padding: 4px 10px; }
  .section-header             { margin-bottom: 28px; }
}

/* ── Small phones: ≤ 480px ───────────────────────────────────── */
@media (max-width: 480px) {
  .section                    { padding: 32px 4%; }
  .hero-slide                 { padding: 40px 4% 28px; }
  .cta-band                   { padding: 36px 4%; }
  .page-hero                  { padding: 36px 4% 28px; }
  .navbar                     { padding: 0 4%; }
  .nav-logo-img               { height: 30px; }

  .ts-num                     { font-size: 22px; }
  .ts-lbl                     { font-size: 11px; }
  .trust-strip-item           { padding: 8px 8px; }

  /* Footer → all single column */
  .footer-grid                { grid-template-columns: 1fr; }
  .footer-brand               { grid-column: auto; }
  .footer-social-list         { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
  .social-icon                { width: 32px; height: 32px; }
  .footer-social              { gap: 7px; }

  .pricing-card               { padding: 22px 16px; }
  .plan-price                 { font-size: 32px; }
  .how-card                   { padding: 22px 16px; }
  .testi-btn                  { width: 36px; height: 36px; font-size: 18px; }
  .demo-layout                { padding: 28px 4%; }
  .demo-trust-pill            { font-size: 11px; padding: 4px 8px; }

  /* Ensure hero buttons always full width on tiny screens */
  .hero-btns .btn             { max-width: 100%; }
  .cta-btns .btn              { max-width: 100%; }

  /* Pricing tables on small phones */
  .pricing-section            { padding: 24px 4%; }
  table                       { font-size: 11px; }
  table th, table td          { padding: 6px 8px !important; }
  table th:first-child,
  table td:first-child        { min-width: 80px; }

  /* Contact info cards */
  .contact-info-card          { gap: 10px; }
  .contact-value              { font-size: 13.5px; }

  /* Demo page */
  .demo-contact-btn           { font-size: 12.5px; padding: 10px 12px; }
  .demo-trust-pill            { font-size: 11px; padding: 4px 8px; }

  /* Filter bar on testimonials / blog */
  .filter-bar                 { padding: 16px 4% 20px; gap: 6px; }
  .filter-btn                 { font-size: 12px; padding: 6px 14px; }

  /* Feature mockup responsive — 480px */
  .feat-visual                { padding: 12px; }
  .fm-wrap                    { gap: 7px; }
  .fm-card                    { padding: 11px 12px; gap: 9px; }
  .fm-avatar                  { width: 36px; height: 36px; font-size: 17px; }
  .fm-stats                   { grid-template-columns: repeat(3,1fr); gap: 5px; }
  .fm-stat                    { padding: 7px 4px; }
  .fm-stat-val                { font-size: 14px; }
  .fm-tag                     { font-size: 10px; padding: 3px 8px; }
  .fm-receipt-header          { font-size: 11.5px; padding: 9px 12px; }
  .fm-att-header              { font-size: 11px; padding: 8px 12px; }
  .fm-att-row                 { padding: 8px 12px; gap: 8px; }
  .fm-att-av                  { width: 26px; height: 26px; font-size: 11px; }
  .fm-att-name                { font-size: 12px; }
  .fm-att-dot                 { width: 24px; height: 24px; font-size: 12px; }
  .fm-wa-notif                { font-size: 11px; padding: 8px 11px; }
  .fm-analytics-rev           { font-size: 18px; }
  .fm-analytics               { padding: 12px; }
  .fm-chart                   { height: 48px; gap: 4px; }
  /* Calendar — collapse to 3 days on very small screens */
  .fm-cal-grid                { grid-template-columns: 28px repeat(5,1fr); }
  .fm-cal-dh                  { font-size: 7.5px; }
  .fm-cal-time                { font-size: 7.5px; }
  .fm-batch                   { font-size: 7px; }
  .fm-cal-cell                { min-height: 26px; }
  /* WhatsApp — tighter bubbles */
  .fm-wa-head                 { padding: 9px 12px; }
  .fm-wa-body                 { padding: 10px 8px; gap: 7px; }
  .fm-wa-bubble               { font-size: 10.5px; padding: 7px 9px; }
}
