/* ============================================
   Chief Scaler – assets/styles.css
   Design: refined executive / editorial minimal
   ============================================ */

:root {
  --navy:     #1B2D4F;
  --navy-mid: #2A4270;
  --teal:     #1E8C6E;
  --teal-lt:  #27B88F;
  --green:    #2ECC8F;
  --slate:    #4A5568;
  --mist:     #EDF2F7;
  --white:    #FFFFFF;
  --ink:      #111827;
  --border:   #D1DCE8;
  --shadow:   0 4px 24px rgba(27,45,79,.08);
  --shadow-lg:0 8px 48px rgba(27,45,79,.14);
  --radius:   8px;
  --radius-lg:16px;
  --max-w:    1120px;
  --font-head:"General Sans", system-ui, sans-serif;
  --font-body:"General Sans", system-ui, sans-serif;
  --ease:     cubic-bezier(.22,.68,0,1.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }

.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }

h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--navy); letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--slate); max-width: 65ch; }
.lead { font-size: 1.15rem; color: var(--slate); max-width: 60ch; }
.kicker { display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: .75rem; }

.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.75rem; border-radius: var(--radius); font-size: .95rem; font-weight: 500; font-family: var(--font-body); transition: transform .18s var(--ease), box-shadow .18s, background .18s, color .18s; }
.btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 2px 12px rgba(30,140,110,.28); }
.btn-primary:hover { background: var(--teal-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,140,110,.35); }
.btn-secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.12); color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.site-nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text { font-family: var(--font-body); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--slate); transition: color .15s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--teal); transition: width .2s var(--ease); border-radius: 2px; }
.nav-links a:hover,.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,.nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: .5rem; padding: .6rem 1.25rem; font-size: .875rem; }
.nav-cta-mobile { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; border-radius: 6px; transition: background .15s; }
.nav-toggle:hover { background: var(--mist); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; flex-direction: column; padding: 1rem 0 1.5rem; border-top: 1px solid var(--border); gap: .25rem; }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: .65rem 24px; font-weight: 500; color: var(--slate); border-radius: var(--radius); transition: background .15s, color .15s; }
.nav-mobile a:hover,.nav-mobile a.active { color: var(--navy); background: var(--mist); }
.nav-mobile .btn { margin: .75rem 24px 0; align-self: flex-start; }

.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1d4035 100%); color: var(--white); padding: 100px 0 90px; position: relative; overflow: hidden; }
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-eyebrow { display: inline-block; font-size: .8rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-lt); margin-bottom: 1.25rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -.01em; line-height: 1.1; }
.hero-sub { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 500; color: rgba(255,255,255,.88); max-width: 58ch; margin-bottom: 1.1rem; line-height: 1.55; }
.hero-authority { font-size: .92rem; font-weight: 400; color: rgba(255,255,255,.52); max-width: 52ch; margin-bottom: 2.5rem; line-height: 1.65; }
.hero-micro { display: inline-block; font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: 2.25rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.trust-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .9rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 100px; font-size: .8rem; color: rgba(255,255,255,.9); }
.chip::before { content: '✦'; font-size: .6rem; color: var(--green); }

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--navy); }
.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--white); }
.section-dark p,.section-dark li { color: rgba(255,255,255,.72); }
.section-dark .kicker { color: var(--teal-lt); }
.section-mist { background: var(--mist); }
.section-header { margin-bottom: 3rem; }
.section-header p { margin-top: .75rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); transition: transform .22s var(--ease), box-shadow .22s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--teal), var(--green)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.25rem; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .92rem; }
a.card { display: block; }
a.card:hover h3 { color: var(--teal); }

.callout { background: linear-gradient(135deg, #e8f7f2, #d1f0e6); border-left: 4px solid var(--teal); border-radius: var(--radius); padding: 1.5rem 1.75rem; margin: 2rem 0; }
.callout p { color: var(--navy); font-weight: 500; max-width: none; }
.callout strong { color: var(--teal); }

.pillar-num { font-family: var(--font-head); font-size: 3rem; color: var(--border); line-height: 1; margin-bottom: .5rem; }
.section-dark .pillar-num { color: rgba(255,255,255,.12); }

.steps { counter-reset: step; display: grid; gap: 1.5rem; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem; align-items: start; }
.step-num { width: 56px; height: 56px; background: linear-gradient(135deg, var(--teal), var(--green)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.3rem; color: var(--white); flex-shrink: 0; }
.step h4 { color: var(--navy); margin-bottom: .25rem; }
.step h4 span { color: var(--teal); font-style: italic; font-size: .9em; }
.section-dark .step h4 { color: var(--white); }

.outcome-list { display: grid; gap: .75rem; }
.outcome-list li { display: flex; align-items: flex-start; gap: .75rem; color: var(--slate); font-size: .95rem; }
.outcome-list li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: .05em; }
.section-dark .outcome-list li { color: rgba(255,255,255,.75); }

.fit-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.fit-col h4 { margin-bottom: 1rem; }
.fit-col ul { display: grid; gap: .6rem; }
.fit-col li { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; color: var(--slate); }
.fit-yes li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.fit-no  li::before { content: '✕'; color: #e05555; font-weight: 700; flex-shrink: 0; }

.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); border-top: 3px solid var(--teal); position: relative; }
.testimonial-card::before { content: '\201C'; font-family: var(--font-head); font-size: 4rem; color: var(--teal); opacity: .25; line-height: 1; position: absolute; top: .75rem; left: 1.25rem; }
.testimonial-card blockquote { font-size: 1.02rem; color: var(--navy); font-style: italic; line-height: 1.65; padding-top: 1rem; }
.testimonial-attr { margin-top: 1.25rem; display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 42px; height: 42px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: .85rem; }
.testimonial-attr div span { display: block; font-size: .82rem; color: var(--slate); }
.testimonial-attr div strong { font-size: .92rem; color: var(--navy); }

.faq { display: grid; gap: .75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; font-size: 1rem; font-weight: 600; color: var(--navy); background: var(--white); text-align: left; gap: 1rem; transition: background .15s; }
.faq-trigger:hover { background: var(--mist); }
.faq-trigger[aria-expanded="true"] { background: var(--mist); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--mist); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .9rem; transition: transform .25s var(--ease), background .15s; }
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--teal); border-color: var(--teal); color: var(--white); }
.faq-panel { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq-panel-inner { padding: 0 1.5rem 1.25rem; color: var(--slate); font-size: .95rem; line-height: 1.7; }

.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3d30 100%); color: var(--white); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -60%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(30,140,110,.2) 0%, transparent 70%); pointer-events: none; }
.cta-section h2 { color: var(--white); margin-bottom: .75rem; }
.cta-section p { color: rgba(255,255,255,.75); margin: 0 auto 2.25rem; max-width: 52ch; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.values-list { display: grid; gap: .65rem; }
.values-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .95rem; }
.values-list li::before { content: '◆'; color: var(--teal); font-size: .5rem; margin-top: .45em; flex-shrink: 0; }

.case-study { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.case-header { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 2rem 2.25rem; }
.case-header h3 { color: var(--white); margin-bottom: .25rem; }
.case-header p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; max-width: none; }
.case-body { background: var(--white); padding: 2rem 2.25rem; }
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.case-block h4 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); font-family: var(--font-body); font-weight: 700; margin-bottom: .5rem; }
.case-block p,.case-block li { font-size: .93rem; color: var(--slate); }
.case-result { background: linear-gradient(135deg, #e8f7f2, #d4f0e6); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-top: 1.5rem; }
.case-result p { color: var(--navy); font-weight: 600; margin: 0; max-width: none; }

.service-section { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); margin-bottom: 2.5rem; }
.service-header { padding: 2.5rem; background: var(--mist); border-bottom: 1px solid var(--border); }
.service-body { padding: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.service-col h4 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); font-family: var(--font-body); font-weight: 700; margin-bottom: .75rem; }
.service-col ul { display: grid; gap: .6rem; }
.service-col li { display: flex; gap: .6rem; font-size: .92rem; color: var(--slate); }
.service-col li::before { content: '—'; color: var(--teal); flex-shrink: 0; }

.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); max-width: 680px; }
.form-row { display: grid; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
label { font-size: .875rem; font-weight: 600; color: var(--navy); }
input,select,textarea { padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .95rem; font-family: var(--font-body); color: var(--ink); background: var(--white); transition: border-color .15s, box-shadow .15s; width: 100%; }
input:focus,select:focus,textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(30,140,110,.12); }
textarea { resize: vertical; min-height: 120px; }
.checkbox-row { display: flex; gap: .75rem; align-items: flex-start; }
.checkbox-row input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--teal); cursor: pointer; }
.checkbox-row label { font-size: .875rem; font-weight: 400; color: var(--slate); cursor: pointer; }
.form-footer { margin-top: 1.5rem; }
.success-message { display: none; background: linear-gradient(135deg, #e8f7f2, #d4f0e6); border: 1.5px solid var(--teal); border-radius: var(--radius-lg); padding: 2rem 2.5rem; text-align: center; }
.success-message h3 { color: var(--teal); margin-bottom: .5rem; }
.success-message p { color: var(--navy); margin: 0 auto; }

.about-hero { padding: 80px 0 60px; background: var(--mist); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-visual { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-radius: var(--radius-lg); padding: 3rem; color: rgba(255,255,255,.85); font-size: 1.1rem; font-weight: 400; font-family: var(--font-body); line-height: 1.6; }
.about-visual strong { color: var(--green); font-style: normal; }

.site-footer { background: var(--white); color: var(--slate); padding: 56px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { max-width: 280px; }
.footer-brand img { height: 52px; margin-bottom: .5rem; }
.footer-brand-name { font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); margin-bottom: .75rem; }
.footer-brand p { font-size: .875rem; line-height: 1.65; max-width: none; color: var(--slate); }
.footer-col h5 { color: var(--navy); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .5rem; }
.footer-col a { font-size: .875rem; color: var(--slate); transition: color .15s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { padding-top: 1.75rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; font-size: .82rem; color: var(--slate); }
.footer-bottom a { color: var(--slate); transition: color .15s; }
.footer-bottom a:hover { color: var(--teal); }
.back-to-top { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; color: var(--slate); transition: color .15s; }
.back-to-top:hover { color: var(--teal); }

.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(10,20,40,.6); backdrop-filter: blur(4px); z-index: 1000; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; max-width: 480px; width: 100%; box-shadow: 0 24px 80px rgba(0,0,0,.25); position: relative; animation: modalIn .3s var(--ease); }
@keyframes modalIn { from { opacity:0; transform: scale(.92) translateY(16px); } }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px; border-radius: 50%; background: var(--mist); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--slate); transition: background .15s; }
.modal-close:hover { background: var(--border); }
.modal h3 { margin-bottom: .5rem; }
.modal p { font-size: .92rem; margin-bottom: 1.5rem; }
.modal-success { display: none; text-align: center; padding: 1rem 0; }
.modal-success .success-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.modal-success h4 { color: var(--teal); margin-bottom: .5rem; }
.modal-success p { margin: 0 auto; color: var(--slate); }

.page-hero { padding: 72px 0 60px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .lead { color: rgba(255,255,255,.78); max-width: 58ch; }
.page-hero .kicker { color: var(--teal-lt); }

.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.divider-dark { border-top-color: rgba(255,255,255,.1); }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-body { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .fit-cols { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .grid-3,.grid-2,.grid-4 { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .nav-links,.nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta-mobile { display: inline-flex; padding: .55rem 1rem; font-size: .8rem; }
  .btn-client-login { display: none !important; visibility: hidden !important; width: 0 !important; padding: 0 !important; margin: 0 !important; overflow: hidden !important; }
  .hero { padding: 64px 0 56px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: fit-content; }
  .cta-btns { flex-direction: column; align-items: center; }
  .step { grid-template-columns: 44px 1fr; }
  .step-num { width: 44px; height: 44px; font-size: 1.1rem; }
  /* Fix 4: Contact page layout stacks on mobile */
  .contact-layout { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .form-card { padding: 1.5rem; max-width: 100%; }
  /* Fix 6: Problem section stacks heading above text */
  .problem-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero h1 { font-size: clamp(1.1rem, 4.5vw, 1.45rem); letter-spacing: -.01em; }
  h2 { font-size: 1.6rem; }
  .section { padding: 60px 0; }
  /* Fix 4: Contact page mobile */
  .contact-layout { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .form-card { padding: 1.25rem; max-width: 100%; }
  /* Fix 6: Problem section heading stacks above text */
  .problem-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
}

.hero-tagline { margin-top: 1.75rem; font-family: var(--font-head); font-style: italic; font-size: 1.1rem; color: rgba(255,255,255,.65); letter-spacing: .01em; }

/* ── Client Login Nav Button ── */
.btn-client-login {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.1rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid var(--border);
  background: white;
  text-decoration: none;
  transition: all .15s;
  font-family: var(--font-body);
}
.btn-client-login::before {
  content: '🔒';
  font-size: .75rem;
}
.btn-client-login:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: #f0faf7;
}
