/* ============================================================
   SONI ASSOCIATES — main.css
   ============================================================ */

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

/* ── Variables ── */
:root {
  --green-900: #1a4731;
  --green-700: #1d6b45;
  --green-500: #2d8b5e;
  --gold-500:  #c9a227;
  --gold-300:  #e4c56a;
  --white:     #ffffff;
  --off-white: #f7f8f5;
  --gray-100:  #f0f1ee;
  --gray-300:  #d1d5db;
  --gray-600:  #4b5563;
  --gray-900:  #111827;
  --whatsapp:  #25d366;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);

  --radius-card: 12px;
  --radius-btn:  6px;
  --radius-pill: 999px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 1rem; color: var(--gray-900); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Sections ── */
section { padding: 80px 0; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
  display: block;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-heading--white { color: var(--white); }

.section-subtext {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-subtext--white { color: rgba(255,255,255,0.8); }
.section-subtext--center { margin-left: auto; margin-right: auto; text-align: center; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-gold { background: var(--gold-500); color: var(--green-900); border-color: var(--gold-500); }
.btn-gold:hover { background: var(--gold-300); border-color: var(--gold-300); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--green-900); transform: translateY(-1px); }

.btn-outline-green { background: transparent; color: var(--green-700); border-color: var(--green-700); }
.btn-outline-green:hover { background: var(--green-700); color: var(--white); transform: translateY(-1px); }

.btn-outline-gold { background: transparent; color: var(--gold-300); border-color: var(--gold-300); }
.btn-outline-gold:hover { background: var(--gold-300); color: var(--green-900); transform: translateY(-1px); }

.btn-green { background: var(--green-700); color: var(--white); border-color: var(--green-700); }
.btn-green:hover { background: var(--green-900); border-color: var(--green-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled { background: var(--white); box-shadow: var(--shadow-sm); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-svg { width: 40px; height: 40px; flex-shrink: 0; }
.nav-logo-img { height: 120px; width: auto; display: block; object-fit: contain; }
.nav-logo-img--drawer { height: 96px; }
.footer-logo-img { height: 120px; width: auto; display: block; }

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s ease;
}

#navbar.scrolled .nav-logo-text { color: var(--green-900); }

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

#navbar.scrolled .nav-links a { color: var(--gray-600); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover { color: var(--white); }
#navbar.scrolled .nav-links a:hover { color: var(--green-700); }
.nav-links a.active { color: var(--white); }
#navbar.scrolled .nav-links a.active { color: var(--green-700); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--white); transition: color 0.3s; }
#navbar.scrolled .hamburger { color: var(--green-900); }

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  box-shadow: var(--shadow-lg);
  transition: right 0.3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-drawer.open { right: 0; }

.drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }

.drawer-close {
  background: none; border: none; cursor: pointer; color: var(--gray-600);
  padding: 8px; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}

.drawer-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }

.drawer-links a {
  font-size: 1.1rem; font-weight: 500; color: var(--gray-900);
  padding: 12px 8px; border-bottom: 1px solid var(--gray-100);
  min-height: 44px; display: flex; align-items: center; transition: color 0.2s;
}

.drawer-links a:hover, .drawer-links a.active { color: var(--green-700); }
.drawer-cta { margin-top: 24px; }

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1050;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.show { opacity: 1; pointer-events: all; }

/* ── Footer ── */
footer { background: var(--green-900); color: var(--white); padding: 64px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-text { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--white); }
.footer-tagline { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 12px; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

.footer-heading { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--gold-300); margin-bottom: 20px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-300); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.875rem; color: rgba(255,255,255,0.75); }
.footer-contact-item .icon-wrap { color: var(--gold-300); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold-300); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-credit { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* ── AI Chat Widget ── */
.chat-toggle {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-700); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); color: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-toggle:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(29,107,69,0.45); }

.chat-tooltip {
  position: absolute; right: 68px;
  background: var(--gray-900); color: var(--white);
  font-size: 0.78rem; padding: 6px 10px;
  border-radius: var(--radius-pill); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.chat-toggle:hover .chat-tooltip { opacity: 1; }

.chat-widget {
  position: fixed; bottom: 96px; right: 24px; z-index: 998;
  width: 340px; height: 480px;
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow: hidden;
  transform: scale(0.9) translateY(16px); opacity: 0; pointer-events: none;
  transform-origin: bottom right;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.chat-widget.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }

.chat-header { background: var(--green-700); color: var(--white); padding: 14px 16px; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.chat-header-logo-wrap { background: #fff; border-radius: 8px; padding: 4px 8px; display: flex; align-items: center; flex-shrink: 0; }
.chat-header-logo { height: 28px; width: auto; max-width: 90px; object-fit: contain; display: block; }
.chat-header-info { flex: 1; }
.chat-header-name { font-weight: 600; font-size: 0.95rem; }
.chat-header-status { font-size: 0.75rem; opacity: 0.8; }
.chat-close { background: none; border: none; color: var(--white); cursor: pointer; padding: 4px; display: flex; align-items: center; justify-content: center; min-width: 32px; min-height: 32px; border-radius: 50%; transition: background 0.2s; }
.chat-close:hover { background: rgba(255,255,255,0.15); }

.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; background: var(--off-white); }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 99px; }

.msg { max-width: 85%; padding: 10px 14px; border-radius: 12px; font-size: 0.875rem; line-height: 1.5; }
.msg-assistant { background: var(--white); border: 1px solid var(--gray-300); align-self: flex-start; border-radius: 4px 12px 12px 12px; }
.msg-assistant p { margin: 0 0 6px; }
.msg-assistant p:last-child { margin-bottom: 0; }
.msg-assistant ol, .msg-assistant ul { margin: 4px 0 6px 16px; padding: 0; }
.msg-assistant li { margin-bottom: 5px; }
.msg-assistant strong { font-weight: 600; color: var(--gray-900); }
.msg-user { background: var(--gray-100); color: var(--green-700); align-self: flex-end; border-radius: 12px 4px 12px 12px; font-weight: 500; }

.msg-typing { display: flex; gap: 4px; align-items: center; padding: 12px 16px; }
.msg-typing span { width: 7px; height: 7px; background: var(--gray-300); border-radius: 50%; animation: bounce 1.2s infinite; }
.msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.msg-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }

.chat-input-row { display: flex; align-items: center; gap: 8px; padding: 12px; border-top: 1px solid var(--gray-100); background: var(--white); flex-shrink: 0; }
.chat-input { flex: 1; border: 1px solid var(--gray-300); border-radius: var(--radius-pill); padding: 10px 16px; font-family: var(--font-body); font-size: 0.875rem; outline: none; transition: border-color 0.2s; }
.chat-input:focus { border-color: var(--green-700); }
.chat-send { width: 38px; height: 38px; border-radius: 50%; background: var(--green-700); border: none; color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, transform 0.2s; }
.chat-send:hover { background: var(--green-900); transform: scale(1.05); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--green-900);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content { text-align: center; padding: 120px 0 80px; width: 100%; }

.hero-eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 20px; }

.hero-heading { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--white); line-height: 1.15; max-width: 800px; margin: 0 auto 20px; }

.hero-sub { font-size: clamp(1rem, 1.8vw, 1.15rem); color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.trust-bar { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.trust-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); font-size: 0.8rem; padding: 6px 16px; border-radius: var(--radius-pill); }

.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.45); animation: scrollBounce 2s infinite; }
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── Stats Strip ── */
.stats-strip { background: var(--green-900); padding: 0; border-top: 1px solid rgba(255,255,255,0.08); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 48px 0;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Top Services (Homepage) ── */
.top-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.top-service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  border-top: 3px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.top-service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-top-color: var(--gold-500); }

.top-service-icon {
  width: 52px; height: 52px;
  background: var(--green-700);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}

.top-service-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.top-service-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 18px;
}

.top-service-bullets {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
  flex: 1;
}

.top-service-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.top-service-bullets li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

.top-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-700);
  margin-top: auto;
  transition: gap 0.2s;
}
.top-service-link:hover { gap: 10px; }

.services-view-all {
  text-align: center;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}

.services-view-all p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

/* ── Why Choose Us ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; align-items: flex-start; gap: 16px; }
.why-item-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--off-white); display: flex; align-items: center; justify-content: center; color: var(--green-700); flex-shrink: 0; }
.why-item-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.why-item-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* ── Abstract Graphic ── */
/* Credential panel — replaces abstract graphic */
.cred-panel { background: var(--green-900); border-radius: 20px; padding: 36px; width: 100%; }
.cred-panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cred-panel-firm { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: var(--white); }
.cred-panel-badge { font-size: 0.72rem; font-weight: 600; color: var(--gold-300); letter-spacing: 0.1em; text-transform: uppercase; background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.35); padding: 4px 12px; border-radius: 20px; }
.cred-panel-rule { height: 1px; background: rgba(255,255,255,0.1); margin: 20px 0; }
.cred-panel-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; }
.cred-stat { display: flex; flex-direction: column; gap: 4px; }
.cred-stat-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.2rem; font-weight: 700; color: var(--gold-300); line-height: 1; }
.cred-stat-lbl { font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; }
.cred-panel-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.cred-chip { font-size: 0.73rem; font-weight: 500; color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); padding: 5px 12px; border-radius: 20px; white-space: nowrap; }

/* ── Reviews ── */
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.review-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-card); padding: 28px 24px; transition: box-shadow 0.25s ease; }
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold-500); font-size: 1.1rem; }
.review-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author-name { font-weight: 600; font-size: 0.875rem; color: var(--gray-900); }
.review-author-type { font-size: 0.8rem; color: var(--gray-600); }
.reviews-cta-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-500); font-size: 0.875rem; font-weight: 500; border-bottom: 1px solid var(--gold-500); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.reviews-cta-link:hover { color: var(--gold-300); border-color: var(--gold-300); }

/* ── CTA Banner ── */
.cta-banner { background: var(--green-700); padding: 72px 0; text-align: center; }
.cta-banner-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--white); margin-bottom: 12px; }
.cta-banner-sub { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--green-900);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px);
  padding: 140px 0 80px;
}

.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb-sep { opacity: 0.4; }

/* ── Services Page: Category Nav ── */
.service-cat-nav {
  position: sticky;
  top: 100px;
  z-index: 100;
  background: var(--green-700);
  border-bottom: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.service-cat-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.service-cat-tabs::-webkit-scrollbar { display: none; }

.service-cat-tab {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.service-cat-tab { color: rgba(255,255,255,0.82); }
.service-cat-tab:hover { color: var(--white); }
.service-cat-tab.active { color: var(--white); font-weight: 600; border-bottom-color: var(--gold-500); }

/* ── Services Page: Category Sections ── */
.category-intro {
  background: var(--off-white);
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--gray-100);
}

.category-intro-inner { display: flex; align-items: center; gap: 20px; }

.category-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
}

.category-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.category-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ── Services Page: Service Detail Cards ── */
.service-detail-card { padding: 60px 0; }
.service-detail-card:nth-child(even) { background: var(--off-white); }
.service-detail-card:nth-child(odd) { background: var(--white); }

.service-detail-inner { display: flex; flex-direction: column; gap: 32px; }

.service-detail-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.service-detail-icon {
  width: 56px; height: 56px;
  background: var(--green-700);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 8px;
}

.service-cat-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(201,162,39,0.1);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.service-detail-name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-detail-desc { font-size: 0.95rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; max-width: 600px; }

.service-detail-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.service-detail-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700, #374151);
}

.service-detail-list li::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
}

.service-detail-cta { flex-shrink: 0; padding-top: 20px; }

/* ── Process Stepper ── */
.service-process {
  border-top: 1px solid var(--gray-100);
  padding-top: 32px;
}

.process-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 4px;
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 28px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Gold connecting line from this step's center to the next */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 19px; /* half of circle (38px / 2 - 1) */
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--gold-300);
  z-index: 0;
}

.step-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 4px var(--green-700);
  flex-shrink: 0;
}

/* Completed steps get gold fill */
.step-circle.gold { background: var(--gold-500); box-shadow: 0 0 0 3px var(--white), 0 0 0 4px var(--gold-500); }

.step-label {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 5px;
  padding: 0 6px;
}

.step-desc {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.5;
  max-width: 110px;
  padding: 0 4px;
}

/* ── Not Sure Section ── */
.not-sure-section { background: var(--off-white); padding: 72px 0; text-align: center; }

/* ── About Page ── */
.about-stats-section { background: var(--green-900); padding: 64px 0; }

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-stat {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.about-stat:last-child { border-right: none; }

.about-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

/* Mission & Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }

.mv-card {
  padding: 36px 32px;
  border-radius: var(--radius-card);
  border-left: 4px solid var(--gold-500);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.mv-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 10px;
  display: block;
}

.mv-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 14px; }
.mv-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; }

/* ── Team Expertise ── */
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.expertise-card { background: var(--white); border-radius: var(--radius-card); padding: 28px 24px; box-shadow: var(--shadow-sm); text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.expertise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.expertise-icon { width: 52px; height: 52px; background: var(--off-white); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--green-700); margin: 0 auto 16px; }
.expertise-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.expertise-desc { font-size: 0.85rem; color: var(--gray-600); }

/* ── Values ── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value-card { padding: 32px 28px; border-left: 4px solid var(--gold-500); background: var(--white); border-radius: 0 var(--radius-card) var(--radius-card) 0; box-shadow: var(--shadow-sm); }
.value-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--gray-100); line-height: 1; margin-bottom: 8px; }
.value-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.value-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }
.value-icon { width: 48px; height: 48px; background: rgba(201,162,39,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold-500); margin-bottom: 16px; }
.value-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }

/* ── Location Strip ── */
.location-strip { background: var(--green-900); padding: 40px 0; }
.location-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.location-text { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.7; }
.location-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-card); padding: 20px 24px; display: flex; align-items: flex-start; gap: 16px; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s; }
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card-icon { width: 44px; height: 44px; background: var(--off-white); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green-700); flex-shrink: 0; }
.contact-card-label { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-600); margin-bottom: 4px; }
.contact-card-value { font-size: 0.95rem; font-weight: 500; color: var(--gray-900); }
.contact-card-value a { color: var(--green-700); transition: color 0.2s; }
.contact-card-value a:hover { color: var(--green-500); }
.map-embed { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-md); }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .top-services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .about-stat:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .about-stat:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; }

  .top-services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-top { grid-template-columns: 1fr; }
  .service-detail-cta { padding-top: 0; }
  .expertise-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > *:last-child { grid-column: auto; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .abstract-graphic { height: 240px; }
  .mv-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Mobile stepper: vertical */
  .process-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-left: 19px;
    border-left: 2px solid var(--gold-300);
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding-bottom: 28px;
    width: 100%;
  }

  .process-step::after { display: none; }

  .step-circle {
    position: relative;
    left: -28px;
    margin-bottom: 0;
    flex-shrink: 0;
    margin-right: -38px;
  }

  .step-text { padding-left: 22px; }
  .step-label { padding: 0; }
  .step-desc { max-width: none; padding: 0; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .trust-bar { flex-direction: column; align-items: center; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .location-strip-inner { flex-direction: column; text-align: center; }
  .location-actions { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px 12px; }

  .chat-widget { width: calc(100vw - 16px); right: 8px; bottom: 90px; }

  .service-cat-tab { padding: 14px 16px; font-size: 0.8rem; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .about-story-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   ABOUT PAGE — Story Section
══════════════════════════════════════════════ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-story-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold-500);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item { display: flex; align-items: flex-start; gap: 14px; }

.highlight-icon {
  width: 40px; height: 40px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}

.highlight-label {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 3px;
}

.highlight-val { font-size: 0.93rem; font-weight: 600; color: var(--gray-900); }

/* ── About Stats Aliases (about page uses .about-stat-item, not .about-stat) ── */
.about-stat-item {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.about-stat-item:last-child { border-right: none; }

/* ── Mission/Vision card sub-elements ── */
.mv-card-icon {
  width: 48px; height: 48px;
  background: rgba(201,162,39,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.mv-card-label {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.mv-card-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; }

/* ── Team Grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-role-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 3px solid var(--gold-300);
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-role-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.team-role-icon {
  width: 52px; height: 52px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700);
  margin: 0 auto 16px;
}

.team-role-name { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.team-role-desc { font-size: 0.82rem; color: var(--gray-600); line-height: 1.6; }

/* ── About Why Section ── */
.about-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 48px;
}

.why-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.why-title { font-family: var(--font-heading); font-size: 1.08rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.why-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; }

/* ── CTA Banner Aliases (about.html uses .cta-heading etc) ── */
.cta-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--white); margin-bottom: 12px; }
.cta-text { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-detail-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.contact-detail-icon {
  width: 48px; height: 48px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}

.contact-detail-label { font-size: 0.73rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.09em; color: var(--gray-600); margin-bottom: 4px; }
.contact-detail-value { font-size: 1rem; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; display: block; }
a.contact-detail-value { color: var(--green-700); transition: color 0.2s; }
a.contact-detail-value:hover { color: var(--green-500); }
.contact-detail-note { font-size: 0.78rem; color: var(--gray-600); }

.contact-actions-col { display: flex; flex-direction: column; gap: 20px; }

.contact-action-card {
  background: var(--green-900);
  border-radius: var(--radius-card);
  padding: 36px 32px;
}

.contact-action-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.contact-action-desc { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
.contact-action-btn { width: 100% !important; justify-content: center !important; }

.contact-service-shortcuts {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.contact-shortcuts-label { font-size: 0.73rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.09em; color: var(--gray-600); margin-bottom: 14px; }
.contact-shortcuts-grid { display: flex; flex-wrap: wrap; gap: 8px; }

.shortcut-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green-700);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.shortcut-chip:hover { background: var(--green-700); color: var(--white); border-color: var(--green-700); }

.contact-map-section { padding: 72px 0; background: var(--off-white); }

/* ── Soni Finzo LLP Section ── */
.sonifinzo-section { background: var(--green-900); }

.sonifinzo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.sonifinzo-llp-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.35);
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.sonifinzo-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.sonifinzo-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sonifinzo-right {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 36px 32px;
}

.sonifinzo-card-label {
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gold-300);
  margin-bottom: 24px;
}

.sonifinzo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sonifinzo-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.sonifinzo-list-item svg { color: var(--gold-300); flex-shrink: 0; }

@media (max-width: 768px) {
  .sonifinzo-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Partner Brands Marquee ── */
.partners-section { background: var(--off-white); padding: 64px 0 72px; overflow: hidden; }

.partners-track-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white) 20%, transparent);
}

.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white) 20%, transparent);
}

.partners-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: partners-scroll 45s linear infinite;
  padding: 6px 0;
}

.partners-track:hover { animation-play-state: paused; }

@keyframes partners-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 12px 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.partner-chip:hover {
  border-color: var(--green-700);
  box-shadow: 0 4px 12px rgba(29,107,69,0.10);
}

.partner-logo {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}
