/* ================================================================
   Good Service Solutions — styles.css
   Google Fonts: Archivo (headings) + Source Sans 3 (body)
   ================================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --navy:        #0f2540;
  --navy-dark:   #0a1b30;
  --navy-mid:    #163355;
  --yellow:      #ffc40c;
  --yellow-dark: #e0aa00;
  --red:         #d6321f;
  --white:       #ffffff;
  --off-white:   #f5f7fb;
  --gray-100:    #edf0f7;
  --gray-300:    #c4cdde;
  --gray-500:    #8896ae;
  --gray-700:    #445068;
  --text:        #1a2335;
  --radius:      10px;
  --shadow-sm:   0 2px 8px rgba(10,27,48,.10);
  --shadow-md:   0 4px 20px rgba(10,27,48,.16);
  --shadow-lg:   0 8px 40px rgba(10,27,48,.24);
  --transition:  .22s ease;
  --max-w:       1140px;
  --font-head:   'Archivo', system-ui, sans-serif;
  --font-body:   'Source Sans 3', system-ui, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::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(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Utility ─────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.tag-navy   { background: rgba(255,255,255,.10); color: rgba(255,255,255,.7); }
.tag-light  { background: var(--gray-100); color: var(--navy); }
.tag-yellow { background: rgba(255,196,12,.15); color: var(--yellow-dark); border: 1px solid rgba(255,196,12,.3); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-sub { color: var(--gray-500); max-width: 580px; margin-top: .5rem; font-size: 1.05rem; }
.on-navy .section-title { color: var(--white); }
.on-navy .section-sub   { color: rgba(255,255,255,.65); }

/* ── Scroll reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease calc(var(--d, 0) * 80ms),
              transform .55s ease calc(var(--d, 0) * 80ms);
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--radius);
  border: 2px solid transparent;
  min-height: 52px; white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}
.btn:active { transform: scale(.97); }
.btn-call {   /* PRIMARY — yellow/call */
  background: var(--yellow); color: var(--navy); border-color: var(--yellow);
  box-shadow: 0 4px 16px rgba(255,196,12,.35);
}
.btn-call:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); box-shadow: 0 6px 20px rgba(255,196,12,.45); }
.btn-ghost {  /* outlined on dark bg */
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline { /* navy outline on light */
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 18px 34px; font-size: 1.1rem; min-height: 60px; }
.btn-sm { padding: 10px 20px; font-size: .9rem; min-height: 42px; }
.btn-icon svg { flex-shrink: 0; }

/* ── Header ──────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 10px 20px;
  max-width: var(--max-w); margin: 0 auto;
}
.header-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.header-logo img {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white);
  padding: 2px;           /* white ring so logo circle reads on dark header */
  box-shadow: 0 0 0 2px var(--white);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-head); font-weight: 800; font-size: .95rem;
  color: var(--white); letter-spacing: -.01em;
}
.logo-sub { font-size: .7rem; color: var(--yellow); font-weight: 600; letter-spacing: .04em; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 10px 18px; font-size: .88rem; min-height: 42px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: min(95vh, 780px);
  display: flex; align-items: center;
  background: var(--navy-dark);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(10,27,48,.92) 0%,
    rgba(10,27,48,.82) 45%,
    rgba(10,27,48,.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 80px 20px 100px;
  max-width: var(--max-w); margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,196,12,.14); border: 1px solid rgba(255,196,12,.35);
  color: var(--yellow); font-size: .78rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800; color: var(--white);
  line-height: 1.1; letter-spacing: -.025em;
  margin-bottom: 1.1rem; max-width: 720px;
}
.hero-title .accent { color: var(--yellow); }
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8); max-width: 560px;
  margin-bottom: 2rem; line-height: 1.7;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  padding-top: .5rem;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; color: rgba(255,255,255,.75); font-weight: 500;
}
.trust-pill svg { color: var(--yellow); flex-shrink: 0; }

/* ── Stats bar ───────────────────────────────────────────────── */
.stats-bar { background: var(--yellow); padding: 0; }
.stats-inner {
  display: grid; grid-template-columns: repeat(2, 1fr);
  max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 640px) { .stats-inner { grid-template-columns: repeat(4, 1fr); } }
.stat-cell {
  padding: 20px 16px; text-align: center;
  border-right: 1px solid rgba(0,0,0,.1);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head); font-size: 1.9rem; font-weight: 800;
  color: var(--navy-dark); line-height: 1;
}
.stat-lbl { font-size: .78rem; font-weight: 700; color: rgba(10,27,48,.65); text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; }

/* ── Specialty block ─────────────────────────────────────────── */
.specialty {
  background: var(--navy); padding: 72px 0;
}
.specialty-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 40px; align-items: center;
}
@media (min-width: 768px) { .specialty-inner { grid-template-columns: 1fr 1fr; } }
.specialty-copy {}
.specialty-copy p { color: rgba(255,255,255,.75); margin: 1rem 0; line-height: 1.75; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin: 1.5rem 0; }
.check-item {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.5;
}
.check-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); margin-top: 1px;
}
.specialty-visual {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 32px 28px;
}
.spec-brand-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.spec-brand {
  padding: 8px 16px; border-radius: 6px;
  font-family: var(--font-head); font-size: .9rem; font-weight: 700;
}
.spec-brand.premium { background: rgba(255,196,12,.15); color: var(--yellow); border: 1px solid rgba(255,196,12,.35); }
.spec-brand.standard { background: rgba(255,255,255,.08); color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.15); }

/* ── Services ────────────────────────────────────────────────── */
.services { padding: 80px 0; background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px; margin-top: 3rem;
}
@media (min-width: 560px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white); border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card.featured { border-left: 4px solid var(--yellow); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--navy); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.service-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: .92rem; color: var(--gray-700); line-height: 1.6; }

/* ── Brands ──────────────────────────────────────────────────── */
.brands { padding: 64px 0; background: var(--white); }
.brands-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }
.brand-pill {
  padding: 10px 20px; border-radius: 8px;
  font-family: var(--font-head); font-size: .9rem; font-weight: 700;
  letter-spacing: .01em; transition: background var(--transition), border-color var(--transition);
}
.brand-pill.premium {
  background: rgba(15,37,64,.07); color: var(--navy);
  border: 2px solid rgba(15,37,64,.2);
}
.brand-pill.premium:hover { background: var(--navy); color: var(--white); }
.brand-pill.standard {
  background: var(--gray-100); color: var(--gray-700);
  border: 2px solid var(--gray-100);
}
.brand-pill.standard:hover { background: var(--gray-100); border-color: var(--gray-500); }
.brands-note { margin-top: 16px; font-size: .88rem; color: var(--gray-500); }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing { padding: 80px 0; background: var(--off-white); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px; margin-top: 2.5rem; max-width: 860px;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.price-card {
  background: var(--white); border-radius: 14px;
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
}
.price-card.hero-card { border: 2px solid var(--yellow); }
.price-ribbon {
  position: absolute; top: -13px; left: 24px;
  background: var(--yellow); color: var(--navy);
  font-family: var(--font-head); font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 14px; border-radius: 20px;
}
.price-lbl { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); margin-bottom: 10px; }
.price-amount { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-amount sup { font-size: 1.3rem; vertical-align: super; }
.price-desc { margin-top: 12px; font-size: .92rem; color: var(--gray-700); line-height: 1.65; }
.price-note { margin-top: 10px; font-size: .83rem; color: var(--red); font-weight: 600; }
.price-explain {
  margin-top: 24px; padding: 18px 20px;
  background: #fff8dc; border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .92rem; color: var(--text); max-width: 860px;
}
.no-phone-note {
  margin-top: 14px; padding: 16px 20px;
  background: #fef0ee; border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .92rem; color: var(--text); max-width: 860px;
}

/* ── Service Area ────────────────────────────────────────────── */
.service-area { padding: 80px 0; background: var(--white); }
.area-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 40px; margin-top: 2.5rem;
}
@media (min-width: 768px) { .area-layout { grid-template-columns: 1fr 1fr; align-items: start; } }
.city-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.city-chip {
  padding: 9px 18px; border-radius: 8px;
  font-family: var(--font-head); font-size: .9rem; font-weight: 700;
}
.city-chip.home { background: var(--navy); color: var(--yellow); }
.city-chip.other { background: var(--gray-100); color: var(--navy); }
.area-note { font-size: .88rem; color: var(--gray-500); line-height: 1.6; }
.area-hours {
  margin-top: 20px; padding: 16px 18px;
  background: var(--off-white); border-radius: var(--radius);
  font-size: .9rem; line-height: 1.7;
}
.area-hours strong { color: var(--navy); }
.area-map-placeholder {
  aspect-ratio: 4/3; background: var(--gray-100);
  border: 2px dashed var(--gray-300); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); font-size: .9rem; text-align: center; padding: 20px;
}

/* ── About ───────────────────────────────────────────────────── */
.about { padding: 80px 0; background: var(--navy-dark); }
.about-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: start; margin-top: 2.5rem;
}
@media (min-width: 768px) { .about-layout { grid-template-columns: auto 1fr; } }
.about-photo-wrap { flex-shrink: 0; }
.about-photo {
  width: 280px; height: 350px; object-fit: cover; object-position: top;
  border-radius: 16px; box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255,196,12,.25);
}
@media (max-width: 767px) { .about-photo { width: 100%; height: auto; max-height: 380px; } }
.about-copy p { color: rgba(255,255,255,.78); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.cred-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }
.cred-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,196,12,.3);
  color: var(--yellow); border-radius: 8px; padding: 10px 16px;
  font-size: .85rem; font-weight: 600;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq { padding: 80px 0; background: var(--off-white); }
.faq-list { margin-top: 2.5rem; max-width: 820px; }
details.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-100); margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
details.faq-item[open] { box-shadow: var(--shadow-sm); }
details.faq-item summary {
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  color: var(--navy); padding: 18px 22px;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  user-select: none;
  -webkit-user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--gray-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
  color: var(--navy);
}
details[open] .faq-chevron { transform: rotate(180deg); background: var(--yellow); }
.faq-body {
  padding: 0 22px 20px;
  font-size: .95rem; color: var(--gray-700); line-height: 1.75;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}
.faq-body p + p { margin-top: .7rem; }

/* ── Contact CTA ─────────────────────────────────────────────── */
.contact-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  text-align: center; color: var(--white);
}
.contact-cta h2 { font-family: var(--font-head); font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 1rem; }
.contact-cta .lead { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 2.2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cta-btns .btn { min-width: 190px; }
.contact-meta {
  margin-top: 28px; display: flex; flex-wrap: wrap;
  justify-content: center; gap: 18px 32px;
}
.contact-meta a, .contact-meta span {
  color: rgba(255,255,255,.55); font-size: .9rem;
  display: flex; align-items: center; gap: 7px;
  transition: color var(--transition);
}
.contact-meta a:hover { color: var(--yellow); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: #07111f;
  color: rgba(255,255,255,.42);
  padding: 28px 0; font-size: .82rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center; gap: 12px;
}
.footer-logo-text { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: .9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-links a { color: rgba(255,255,255,.42); transition: color var(--transition); }
.footer-links a:hover { color: var(--yellow); }

/* ── Sticky mobile call bar ──────────────────────────────────── */
.mobile-call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--navy-dark);
  border-top: 2px solid var(--yellow);
  padding: 10px 16px;
  display: flex; gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.35);
  transition: transform .3s ease;
}
.mobile-call-bar .btn { flex: 1; font-size: 1rem; }
/* Show only on mobile */
@media (min-width: 768px) { .mobile-call-bar { display: none; } }
/* Hide when at very top (hero is visible) — controlled by JS */
.mobile-call-bar.hidden { transform: translateY(100%); }

/* ── Article / Blog styles ───────────────────────────────────── */
.article-hero { background: var(--navy-dark); padding: 56px 0 40px; color: var(--white); }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: var(--yellow); }
.article-hero h1 { font-family: var(--font-head); font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; max-width: 720px; }
.article-meta { color: rgba(255,255,255,.55); font-size: .85rem; margin-top: 12px; }
.article-body { padding: 56px 0; }
.article-content { max-width: 720px; }
.article-content h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--navy); margin: 2.2rem 0 .8rem; }
.article-content h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 .5rem; }
.article-content p { margin-bottom: 1rem; line-height: 1.8; }
.article-content ul, .article-content ol { margin: .8rem 0 1.1rem 1.2rem; line-height: 1.8; }
.article-content li { margin-bottom: .4rem; }
.article-cta-box {
  background: var(--navy); color: var(--white); border-radius: 14px;
  padding: 28px 24px; margin: 2.5rem 0; text-align: center;
}
.article-cta-box p { color: rgba(255,255,255,.8); margin-bottom: 16px; }
.article-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.guides-hero { background: var(--navy-dark); padding: 60px 0; color: var(--white); }
.guides-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; margin-bottom: .8rem; }
.guides-hero p { color: rgba(255,255,255,.7); max-width: 560px; }
.guides-list { padding: 60px 0; background: var(--off-white); min-height: 50vh; }
.guide-card {
  background: var(--white); border-radius: 14px; padding: 28px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.guide-meta { font-size: .82rem; color: var(--gray-500); }
.guide-card h2 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.guide-card p { font-size: .92rem; color: var(--gray-700); line-height: 1.65; }
.read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy); font-weight: 700; font-size: .9rem; margin-top: 4px;
  transition: gap var(--transition), color var(--transition);
}
.read-more:hover { gap: 10px; color: var(--red); }

/* ── Responsive fine-tuning ──────────────────────────────────── */
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .btn-lg { padding: 16px 24px; font-size: 1rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 1.6rem; }
}

/* Body bottom padding on mobile so sticky bar doesn't cover content */
@media (max-width: 767px) { body { padding-bottom: 76px; } }
