/* Custom variables */
:root {
  --ci-primary: #ef4444; /* red accent from React app */
  --ci-dark: #111827;
  --ci-muted: #6b7280;
  --grid-line: rgba(107,114,128,0.2);
}

/************************
 Global UI
*************************/
body {
  background: #fff;
}

.global-progress { position: fixed; top: 0; left: 0; width: 100%; height: 4px; background: rgba(0,0,0,0.05); z-index: 1050; overflow: hidden; }
.global-progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #f87171, #ef4444, #dc2626); transition: width 0.3s ease; position: relative; }
.global-progress-fill::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent); animation: shimmer 1.2s linear infinite; }

@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.loading-overlay { position: fixed; inset: 0; background: linear-gradient(135deg, #fff, #fef2f2); display: flex; align-items: center; justify-content: center; flex-direction: column; z-index: 1100; transition: opacity 0.6s ease, visibility 0.6s ease; }
.loading-overlay.hidden { opacity: 0; visibility: hidden; }
.loading-spinner { width: 64px; height: 64px; border-radius: 50%; border: 3px solid rgba(0,0,0,0.1); border-top-color: var(--ci-primary); animation: spin 1s linear infinite; margin-bottom: 12px; }
.loading-text { color: #111827; font-weight: 600; text-align: center; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Mouse-follow glow */
.mouse-glow, .mouse-glow-2 { position: fixed; width: 460px; height: 460px; border-radius: 50%; pointer-events: none; filter: blur(40px); opacity: .35; z-index: 0; transform: translate(-50%, -50%); transition: left .2s ease-out, top .2s ease-out; }
.mouse-glow { background: radial-gradient(circle, rgba(248,113,113,0.22), rgba(248,113,113,0)); }
.mouse-glow-2 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(248,113,113,0.14), rgba(248,113,113,0)); opacity: .5; }

/* Current section indicator */
.section-indicator { position: fixed; top: 56px; right: 16px; z-index: 1050; background: rgba(255,255,255,0.95); border: 1px solid rgba(239,68,68,0.25); padding: .5rem .75rem; border-radius: .75rem; color: #374151; font-size: .75rem; box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.section-indicator::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(90deg, rgba(239,68,68,0.06), rgba(243,244,246,0.2)); z-index: -1; }
.section-indicator .dot { display:inline-block; width:8px; height:8px; background: #f87171; border-radius:50%; margin-right:6px; box-shadow: 0 0 0 0 rgba(248,113,113,0.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(248,113,113,0.7);} 70% { box-shadow: 0 0 0 8px rgba(248,113,113,0);} 100% { box-shadow: 0 0 0 0 rgba(248,113,113,0);} }


/* Hero */
#hero { background: linear-gradient(180deg, #fafafa, #ffffff); }
#hero .text-gradient { background: linear-gradient(90deg, #1f2937, #111827); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-accents::before, .hero-accents::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.hero-accents::before { width: 220px; height: 220px; top: 40px; left: 40px; background: radial-gradient(circle, rgba(239,68,68,0.18), transparent 70%); animation: float 6s ease-in-out infinite; }
.hero-accents::after { width: 160px; height: 160px; right: 40px; bottom: 40px; background: radial-gradient(circle, rgba(239,68,68,0.12), transparent 70%); animation: float 8s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Service cards (right column) */
.service-cards .service-card { border: 1px solid #e5e7eb; transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease; margin-bottom: .75rem; backdrop-filter: blur(4px); }
.service-cards .service-card:hover { border-color: #d1d5db; transform: translateY(-2px); }
.service-cards .service-card.active { border-color: #cbd5e1; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.icon-box { width: 40px; height: 40px; border-radius: .5rem; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }

/* CodeIgniter Problem section */
.ci-problem { background: linear-gradient(135deg, #ffffff, #f8fafc); }
.ci-problem-bg { position:absolute; inset:0; pointer-events:none; }
.ci-problem-bg::before { content:""; position:absolute; inset:0; opacity:.06; background-image: linear-gradient(90deg, rgba(107,114,128,.6) 1px, transparent 1px), linear-gradient(rgba(107,114,128,.6) 1px, transparent 1px); background-size:60px 60px; }
.ci-problem-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, transparent, rgba(249,250,251,.5), transparent); animation: wave 6s ease-in-out infinite; opacity:.4; }
@keyframes wave { 0%{transform: translateX(-10%);} 50%{transform: translateX(10%);} 100%{transform: translateX(-10%);} }
.ci-problem-card { border-color:#e5e7eb; border-radius: 1rem; }
.circle-ico { width:32px; height:32px; border-radius: 999rem; display:inline-flex; align-items: center; justify-content:center; font-size: .9rem; }
.ci-problem-stats .h4 { line-height: 1; }


/* Services */
.services-section { background: linear-gradient(180deg, #ffffff, #fafafa); }
.service-card { position:relative; background:#fff; border:1px solid #e5e7eb; border-radius:1rem; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; overflow:hidden; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(0,0,0,.08); border-color:#d1d5db; }
.service-card-inner { position:relative; z-index:1; padding:1.5rem; }
.service-card::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 400px at 10% 10%, rgba(59,130,246,.06), transparent 60%), radial-gradient(600px 400px at 90% 90%, rgba(239,68,68,.06), transparent 60%); opacity:0; transition: opacity .3s ease; }
.service-card:hover::before { opacity:.8; }
.service-icon { width:56px; height:56px; border-radius: .85rem; display:inline-flex; align-items:center; justify-content:center; background:#111827; color:#fff; margin-bottom: .75rem; }
.service-dot { width:6px; height:6px; border-radius:999px; background: linear-gradient(90deg, #60a5fa, #2563eb); display:inline-block; margin-right: 2px; }
.services-lines { position:absolute; inset:0; pointer-events:none; opacity:.2; }

.services-cta { background: linear-gradient(90deg, #111827, #0b1220); border: 1px solid rgba(255,255,255,.12); }
.services-cta-bg { position:absolute; inset:0; background: linear-gradient(90deg, rgba(107,114,128,.15), rgba(75,85,99,.15)); }
.cta-particles { position:absolute; inset:0; pointer-events:none; opacity:.25; }
.cta-particle { position:absolute; width:6px; height:6px; border-radius:999px; background:#e5e7eb; animation: float 5s ease-in-out infinite; }

/* E-Commerce / Success Stories */
.ecommerce-section { background: linear-gradient(135deg, #f9fafb, #ffffff); }
.ecommerce-bg { position:absolute; inset:0; pointer-events:none; }
.ecom-blob { position:absolute; border-radius:50%; filter: blur(30px); opacity:.2; animation: soft-float 12s ease-in-out infinite; }
.ecom-blob-1 { width:420px; height:420px; right:-120px; top:-80px; background: radial-gradient(circle, rgba(17,24,39,.12), transparent 60%); }
.ecom-blob-2 { width:360px; height:360px; left:-100px; bottom:-60px; background: radial-gradient(circle, rgba(55,65,81,.12), transparent 60%); animation-duration: 14s; }
@keyframes soft-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.stories-grid .story-card { transition: transform .5s ease, opacity .5s ease; }
.story-card .story-card-inner { overflow:hidden; }
.story-overlay { position:absolute; inset:0; opacity:0; transition: opacity .4s ease; }
.story-grad { background: linear-gradient(135deg, rgba(243,244,246,.4), rgba(255,255,255,.6)); }
.story-dots { opacity:.02; background-image: radial-gradient(circle at 50% 50%, #6b7280 1px, transparent 1px); background-size:20px 20px; }
.story-card:hover .story-overlay { opacity:1; }
.story-icon { width:64px; height:64px; font-size:1.25rem; }
.story-accent { width:48px; height:3px; background:#111827; border-radius:999px; transition: width .4s ease; }
.story-card:hover .story-accent { width:80px; }
.dot { display:inline-block; width:8px; height:8px; border-radius:999px; }
.dot-red { background:#ef4444; }
.dot-dark { background:#111827; }
.dot-green { background:#16a34a; }
.chk { display:inline-flex; width:15px; height:15px; align-items:center; justify-content:center; border-radius:999px; background:#111827; color:#fff; font-size:.6rem; flex-shrink:0; }
.story-bottom-accent { position:absolute; left:0; right:0; bottom:0; height:4px; background: linear-gradient(90deg, #111827, #0b1220, #111827); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.story-card:hover .story-bottom-accent { transform: scaleX(1); }

/* Advantages */
.advantages-section { background: linear-gradient(180deg, #ffffff, #fafafa); }
.advantages-bg { position:absolute; inset:0; pointer-events:none; }
.adv-blob { position:absolute; border-radius:50%; filter: blur(30px); opacity:.22; animation: soft-float 14s ease-in-out infinite; }
.adv-blob-1 { width:360px; height:360px; left:-120px; top:-80px; background: radial-gradient(circle, rgba(55,65,81,.12), transparent 60%); }
.adv-blob-2 { width:420px; height:420px; right:-140px; bottom:-100px; background: radial-gradient(circle, rgba(17,24,39,.12), transparent 60%); }
.adv-dots { position:absolute; inset:0; opacity:.03; background-image: radial-gradient(circle at 30px 30px, #374151 2px, transparent 2px), radial-gradient(circle at 80px 80px, #6b7280 1px, transparent 1px); background-size: 120px 120px, 160px 160px; }
.adv-grid { position:absolute; inset:0; opacity:.02; background-image: linear-gradient(90deg, #374151 1px, transparent 1px), linear-gradient(#374151 1px, transparent 1px); background-size: 60px 60px; }

.adv-card .adv-card-inner { overflow:hidden; }
.adv-overlay { position:absolute; inset:0; opacity:0; transition: opacity .4s ease; }
.adv-overlay-grad { background: linear-gradient(135deg, rgba(243,244,246,.4), rgba(255,255,255,.6)); }
.adv-overlay-sheen { pointer-events:none; }
.adv-card:hover .adv-overlay { opacity:1; }

.adv-icon { width:56px; height:56px; border-radius:1rem; display:inline-flex; align-items:center; justify-content:center; background:#f3f4f6; border:1px solid #e5e7eb; font-weight:700; color:#374151; }
.adv-hover-dot { position:absolute; top:1rem; right:1rem; width:8px; height:8px; border-radius:999px; background:#d1d5db; transform: scale(0.6); opacity:0; transition: all .35s ease; }
.adv-card:hover .adv-hover-dot { background:#111827; opacity:1; transform: scale(1); }
.adv-bottom-accent { position:absolute; left:0; right:0; bottom:0; height:4px; background: linear-gradient(90deg, #d1d5db, #6b7280, #d1d5db); transform: scaleX(0); transform-origin:center; transition: transform .4s ease; }
.adv-card:hover .adv-bottom-accent { transform: scaleX(1); }

/* Elegant shimmer (shared) */
@keyframes shimmer-elegant { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.animate-shimmer-elegant { animation: shimmer-elegant 2s linear infinite; }

/* Expertise */
.expertise-section { background: linear-gradient(135deg, #ffffff, #f9fafb); }
.expertise-bg { position:absolute; inset:0; pointer-events:none; background: radial-gradient(600px 400px at 80% 10%, rgba(17,24,39,.06), transparent 60%), radial-gradient(600px 400px at 10% 90%, rgba(55,65,81,.06), transparent 60%); }
.exp-card .exp-card-inner { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; border-color:#e5e7eb; border-radius:1rem; }

/* Comparison / Industry Expertise */
.comparison-section { background: linear-gradient(180deg, #f9fafb, #ffffff); }
.comp-card .comp-card-inner { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; border-color:#e5e7eb; border-radius:1rem; }
.comp-card:hover .comp-card-inner { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(0,0,0,.08); border-color:#d1d5db; }
.comp-icon { width:56px; height:56px; border-radius:.75rem; display:flex; align-items:center; justify-content:center; background:#f3f4f6; border:1px solid #e5e7eb; color:#374151; font-size:1.25rem; margin-bottom:.75rem; }
.comp-focus { font-size:.75rem; padding:.25rem .6rem; background:#f9fafb; border:1px solid #e5e7eb; border-radius:999px; color:#374151; }
.comp-compliance { border-top:1px solid #e5e7eb; padding-top:.5rem; margin-top:auto; }
.exp-card:hover .exp-card-inner { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(0,0,0,.08); border-color:#d1d5db; }
.exp-icon { width:56px; height:56px; border-radius:1rem; display:inline-flex; align-items:center; justify-content:center; background:#111827; color:#fff; font-weight:700; }
.exp-benefits { position:relative; }
.exp-benefit-ico { width:64px; height:64px; border-radius:1rem; display:inline-flex; align-items:center; justify-content:center; font-size:1.25rem; margin: 0 auto; }

/* Maintenance Solutions */
.maint-section { background: linear-gradient(135deg, #ffffff, #f9fafb); }
.maint-bg { position:absolute; inset:0; pointer-events:none; }
.maint-blob { position:absolute; border-radius:50%; filter: blur(30px); opacity:.18; animation: soft-float 14s ease-in-out infinite; }
.maint-blob-1 { width:420px; height:420px; right:-140px; top:-100px; background: radial-gradient(circle, rgba(17,24,39,.1), transparent 60%); }
.maint-blob-2 { width:380px; height:380px; left:-120px; bottom:-120px; background: radial-gradient(circle, rgba(55,65,81,.1), transparent 60%); animation-duration: 16s; }
.maint-grid { position:absolute; inset:0; opacity:.02; background-image: linear-gradient(90deg, #6b7280 1px, transparent 1px), linear-gradient(#6b7280 1px, transparent 1px); background-size: 40px 40px; }
.badge-dot { width:8px; height:8px; background:#6b7280; border-radius:999px; display:inline-block; }

.maint-card .maint-card-inner { overflow:hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; border-color:#e5e7eb; }
.maint-card:hover .maint-card-inner { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(0,0,0,.08); border-color:#d1d5db; }
.maint-overlay { position:absolute; inset:0; opacity:0; transition: opacity .4s ease; }
.maint-grad { background: linear-gradient(135deg, rgba(243,244,246,.4), rgba(255,255,255,.6)); }
.maint-sheen { pointer-events:none; }
.maint-card:hover .maint-overlay { opacity:1; }
.maint-ico { width:56px; height:56px; border-radius:1rem; display:inline-flex; align-items:center; justify-content:center; background:#f3f4f6; border:1px solid #e5e7eb; font-weight:700; color:#374151; }
.maint-hover-dot { position:absolute; top:1rem; right:1rem; width:8px; height:8px; border-radius:999px; background:#d1d5db; transform: scale(0.6); opacity:0; transition: all .35s ease; }
.maint-card:hover .maint-hover-dot { background:#111827; opacity:1; transform: scale(1); }
.maint-bottom-accent { position:absolute; left:0; right:0; bottom:0; height:4px; background: linear-gradient(90deg, #d1d5db, #6b7280, #d1d5db); transform: scaleX(0); transform-origin:center; transition: transform .4s ease; }
.maint-card:hover .maint-bottom-accent { transform: scaleX(1); }

/* Utilities */
.section-spacer-sm { padding-top: 2rem; padding-bottom: 2rem; }
.section-spacer { padding-top: 4rem; padding-bottom: 4rem; }
.section-spacer-lg { padding-top: 6rem; padding-bottom: 6rem; }

/* Dark section placeholder */
.section-dark { background: linear-gradient(135deg, #111827, #0b1220); color: #fff; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: all .6s ease; }
.reveal.visible { opacity: 1; transform: none; }


/* FAQ */
.faq-tile{width:40px;height:40px;border-radius:.75rem;background:#f3f4f6;border:1px solid #e5e7eb;color:#374151;font-weight:700;display:inline-flex;align-items:center;justify-content:center}
.faq-item{border:1px solid #e5e7eb;border-radius:.75rem;overflow:hidden;background:#fff;transition:border-color .2s ease,box-shadow .2s ease}
.faq-item:hover{border-color:#d1d5db;box-shadow:0 10px 18px rgba(0,0,0,.06)}
.faq-question{background:#fff;border:none;outline:none}
.faq-num{width:24px;height:24px;border-radius:999px;background:#e5e7eb;color:#374151;font-weight:700;display:flex;align-items:center;justify-content:center;font-size:.8rem;margin-top:.15rem;flex:0 0 24px}
.faq-chevron{color:#6b7280;transition:transform .2s ease}
.faq-question[aria-expanded="true"] .faq-chevron{transform:rotate(180deg)}
.faq-answer{max-height:0;opacity:0;overflow:hidden;transition:max-height .3s ease,opacity .3s ease}
.faq-answer.open{max-height:320px;opacity:1}
.answer-ico{width:20px;height:20px;border-radius:999px;background:#111827;color:#fff;display:flex;align-items:center;justify-content:center;font-size:.75rem;margin-top:.15rem}
.faq-cta{background:linear-gradient(135deg,#f9fafb,#ffffff);border-color:#e5e7eb}

/* ------------ Process Section (Light) ------------ */
.process-section { background: #fff; color: #111827; }
.process-bg { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(400px 160px at 10% 0%, rgba(17,24,39,.06), transparent 60%), radial-gradient(400px 160px at 90% 0%, rgba(55,65,81,.06), transparent 60%); }
.process-section .proc-progress { position: relative; }
.proc-progress-bar { height: 8px; background: #111827; border-radius: 999px; position: relative; overflow: hidden; }
.proc-progress-fill { height: 100%; width: 0; background: #ef4444; border-radius: 999px; transition: width .3s ease; box-shadow: none; }
.proc-step-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #d1d5db; background: #fff; color: #111827; font-weight: 600; display: flex; align-items: center; justify-content: center; transition: all .2s ease; }
.proc-step-btn:hover { transform: translateY(-2px); background: #f9fafb; }
.proc-step-btn.active { background: #111827; color: #fff; border-color: #111827; box-shadow: 0 6px 12px rgba(17,24,39,.15); }
/* Prev/Next disabled */
.proc-prev:disabled, .proc-next:disabled { opacity: .55; cursor: not-allowed; pointer-events: none; }

.proc-card { position: relative; background:#fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 1rem; min-height: 220px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.proc-card::after { content: ""; position: absolute; inset: 0; background: none; }
.proc-card:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.06); border-color:#d1d5db; }
.proc-card.active { border-color: #cbd5e1; box-shadow: 0 14px 28px rgba(0,0,0,.08); }
.proc-ico { font-size: 16px; line-height: 1; width: 32px; height: 32px; border-radius: 8px; background:#f3f4f6; border:1px solid #e5e7eb; display: flex; align-items: center; justify-content: center; margin-bottom: .5rem; }
.proc-details { max-height: 0; opacity: .0; overflow: hidden; transition: max-height .35s ease, opacity .35s ease, margin-top .35s ease; margin-top: 0; }
.proc-details.open { max-height: 320px; opacity: 1; margin-top: .75rem; }
.proc-details-inner { background:#f9fafb; border: 1px dashed #e5e7eb; border-radius: 12px; padding: .75rem; }
.chk-inv { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: #e8faf1; color: #16a34a; font-weight: 700; flex: 0 0 18px; font-size: .75rem; }

.usp-card { position: relative; background:#fff; border:1px solid #e5e7eb; border-radius: 14px; padding: 1rem; transition: transform .25s ease, box-shadow .25s ease; color:#111827; }
.usp-card:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.06); }
.usp-ico { font-size: 20px; display: inline-flex; width: 34px; height: 34px; border-radius: 8px; align-items: center; justify-content: center; background:#f3f4f6; border:1px solid #e5e7eb; margin-bottom: .5rem; }
.usp-title { font-weight: 600; margin-bottom: .25rem; font-size: 1.125rem;}
.usp-desc { font-size: .9375rem; color: #4b5563; }

.pkg-card { position: relative; background:#fff; border:1px solid #e5e7eb; border-radius: 16px; padding: 1rem 1rem 1.25rem; overflow: hidden; color: #111827; }
.pkg-card .pkg-head { font-weight: 700; font-size: 1.125rem; margin-bottom: .5rem; }
.pkg-card .pkg-desc { color: #4b5563; margin-bottom: .75rem; }
.pkg-card .pkg-list { list-style: none; padding-left: 0; margin: 0;font-size: .9375rem;}
.pkg-card .pkg-list li { display: flex; gap: .5rem; align-items: center; padding: .25rem 0; border-top: 1px dashed #e5e7eb; }
.pkg-card .pkg-list li:first-child { border-top: none; }
.pkg-accent { position: absolute; inset: auto 0 0 0; height: 3px; background: linear-gradient(90deg, #ef4444, #111827); }
.pkg-accent.wide { height: 5px; }
.pkg-card.popular { outline: 2px solid rgba(0,0,0,.06); }
.pkg-card .pkg-badge { position: absolute; top: 10px; right: 10px; background: #111827; color: #fff; font-size: .75rem; padding: .15rem .5rem; border-radius: 999px; }

/* helpers */
.text-white-75 { color: rgba(255,255,255,.75) !important; }
.fw-medium { font-weight: 500 !important; }

/* === Parity & polish: unify typography and backgrounds === */
:root { --h1: clamp(2.25rem, 2vw + 1.5rem, 3rem); --h2: clamp(1.75rem, 1.2vw + 1.1rem, 2.25rem); --h3: clamp(1.125rem, 0.6vw + 1rem, 1.5rem); --lead: 1.125rem; --card-radius: 1rem; --card-border: #e5e7eb; }
.card { border-radius: var(--card-radius); border-color: var(--card-border); }
.card-title { font-weight: 600; color: var(--ci-dark); }
.card-text { color: #4b5563; }

/* Background alignment across sections */
.services-section { background: linear-gradient(180deg, #ffffff, #f9fafb); }
.ecommerce-section { background: linear-gradient(180deg, #ffffff, #f9fafb); }
.advantages-section { background: linear-gradient(180deg, #ffffff, #f9fafb); }
.expertise-section { background: linear-gradient(180deg, #ffffff, #f9fafb); }
.maint-section { background: linear-gradient(180deg, #ffffff, #f9fafb); }
.comparison-section { background: linear-gradient(180deg, #ffffff, #f9fafb); }

/* FAQ heading sizing */
.faq-section h2{font-size:var(--h2) !important}
.faq-section .faq-question h3{font-size:1.05rem}
.vstack .small {
  font-size: 16px;
}


.vstack .chk ~ span {
  font-size: 16px;
}

