/* Wheeling Software — Modern Minimal (2025)
   Palette:
   #ffffff (base)
   #242424 (text-strong)
   #333333 (text)
   #fa8e3c (accent)
*/

:root{
  --bg: #ffffff;
  --text: #333333;
  --text-strong: #242424;
  --muted: rgba(51,51,51,.72);
  --muted-2: rgba(51,51,51,.55);
  --line: rgba(36,36,36,.09);
  --soft: rgba(36,36,36,.05);
  --accent: #fa8e3c;
  --accent-ink: #1b1209;
  --max: 1120px;
  --radius: 12px;
  --radius2: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow2: 0 3px 12px rgba(0,0,0,.06);
  --shadow-hover: 0 20px 56px rgba(0,0,0,.12), 0 6px 18px rgba(0,0,0,.06);
  --t: .18s cubic-bezier(.16,1,.3,1);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(60vw 40vh at 10% 5%, rgba(250,142,60,.10), transparent 58%),
    radial-gradient(45vw 35vh at 85% 20%, rgba(36,36,36,.05), transparent 55%),
    linear-gradient(180deg, #fff 0%, #fff 60%, rgba(36,36,36,.01) 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{ color: inherit; text-decoration: none; }
p{ margin: 0; }
h1, h2, h3{ margin: 0; color: var(--text-strong); letter-spacing: -0.02em; }
ul{ margin: 0; padding-left: 18px; }
li{ margin: 6px 0; color: var(--muted); }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--text-strong);
  color: white;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus{ left: 12px; }

/* ─── Header ─── */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid var(--line);
}

.header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.logo{
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-text{ display: flex; flex-direction: column; line-height: 1.1; }
.brand-name{ font-weight: 800; font-size: 14px; }
.brand-tag{ font-size: 11.5px; color: var(--muted); margin-top: 2px; }

.nav{
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}
.nav a{
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  transition: background var(--t), color var(--t);
}
.nav a:hover{
  background: var(--soft);
  color: var(--text-strong);
}

.header-actions{
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

/* ─── Buttons ─── */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), filter var(--t), background var(--t), border-color var(--t);
  white-space: nowrap;
  text-decoration: none;
}
.btn:active{ transform: translateY(1px) !important; }

/* ─── Focus ─── */
.btn:focus-visible,
.menu-btn:focus-visible,
.nav a:focus-visible,
.footer-right a:focus-visible,
.mobile-nav a:focus-visible,
.banner-chevron:focus-visible,
.social-links a:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary{
  background: var(--accent);
  color: var(--accent-ink);
  border-color: rgba(250,142,60,.55);
  box-shadow: 0 4px 16px rgba(250,142,60,.28);
}
.btn-primary:hover{
  filter: brightness(1.05);
  box-shadow: 0 8px 28px rgba(250,142,60,.36);
  transform: translateY(-1px);
}

.btn-cta{
  background: transparent;
  border-color: rgba(36,36,36,.22);
  color: var(--text-strong);
  box-shadow: none;
}
.btn-cta:hover{
  background: rgba(36,36,36,.05);
  border-color: rgba(36,36,36,.35);
  filter: none;
  box-shadow: none;
  transform: translateY(-1px);
}

.btn-ghost{
  background: rgba(255,255,255,.70);
  border-color: var(--line);
  color: var(--text-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.92);
  border-color: rgba(36,36,36,.16);
  transform: translateY(-1px);
}

.btn-outline{
  background: transparent;
  border-color: rgba(36,36,36,.18);
  color: var(--text-strong);
}
.btn-outline:hover{
  background: rgba(36,36,36,.04);
  border-color: rgba(36,36,36,.28);
  transform: translateY(-1px);
}

.btn-full{ width: 100%; border-radius: 14px; }

/* ─── Mobile menu ─── */
.menu-btn{
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background var(--t);
}
.menu-btn:hover{ background: var(--soft); }
.menu-btn span{
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-strong);
  border-radius: 2px;
  margin: 4px 0;
  opacity: .85;
  transition: transform 0.2s, opacity 0.2s;
}
.menu-btn[aria-expanded="true"] span:nth-child(1){
  transform: translateY(5.5px) rotate(45deg);
}
.menu-btn[aria-expanded="true"] span:nth-child(2){
  opacity: 0;
}
.menu-btn[aria-expanded="true"] span:nth-child(3){
  transform: translateY(-5.5px) rotate(-45deg);
}
.mobile-nav{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
}
.mobile-nav-inner{
  display: grid;
  gap: 6px;
  padding: 14px 0 18px;
}
.mobile-nav a{
  padding: 11px 14px;
  border-radius: 12px;
  background: transparent;
  color: var(--text-strong);
  font-weight: 600;
  font-size: 14px;
  transition: background var(--t);
}
.mobile-nav a:hover{ background: var(--soft); }

/* ─── Sections ─── */
.section{ padding: 80px 0; }
.section-alt{
  background: rgba(36,36,36,.025);
  border-top: 1px solid rgba(36,36,36,.07);
  border-bottom: 1px solid rgba(36,36,36,.07);
}
.section-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.section-head h2{
  font-size: 30px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.section-head p{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 56ch;
}

/* ─── Cards ─── */
.cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow2);
  padding: 24px;
  transition: transform var(--t), box-shadow var(--t);
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.card h3{ font-size: 17px; letter-spacing: -0.02em; }
.card p{
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.card ul{ margin-top: 12px; }

/* ─── Why split ─── */
.split{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}
.pillars{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pillar{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow2);
  padding: 24px;
  transition: transform var(--t), box-shadow var(--t);
}
.pillar:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.pillar h3{ font-size: 16px; letter-spacing: -0.02em; }
.pillar p{
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.sidecard{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow);
  padding: 28px;
}
.sidecard h3{ font-size: 18px; letter-spacing: -0.02em; }
.sidecard p{ margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.6; }

.kpi-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 14px 0 18px;
}
@media (max-width: 600px){
  .kpi-grid{ grid-template-columns: 1fr; }
}
.kpi{
  border: 1px solid rgba(36,36,36,.09);
  background: rgba(36,36,36,.03);
  border-radius: 14px;
  padding: 14px;
}
.kpi-title{ font-weight: 900; font-size: 13px; color: var(--text-strong); }
.kpi-desc{ margin-top: 4px; font-size: 12px; color: var(--muted); line-height: 1.45; }

/* ─── About ─── */
.about{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}
.about-body{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow2);
  padding: 28px;
}
.about-body p{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-top: 14px;
}
.about-body p:first-child{ margin-top: 0; }
.about-actions{ margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }

.about-facts{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow2);
  padding: 24px;
}
.fact{
  padding: 14px 0;
  border-bottom: 1px solid rgba(36,36,36,.07);
}
.fact:last-child{ border-bottom: 0; }
.fact-k{
  font-weight: 800;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fact-v{ margin-top: 5px; color: var(--muted); font-size: 13.5px; line-height: 1.5; }

/* ─── Contact ─── */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow2);
  padding: 28px;
}
.contact-card h3{ font-size: 18px; letter-spacing: -0.02em; }
.contact-card p{
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form{ margin-top: 16px; display: grid; gap: 14px; }
.field label{
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.field input, .field textarea{
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(36,36,36,.15);
  background: rgba(255,255,255,.98);
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:focus, .field textarea:focus{
  border-color: rgba(250,142,60,.65);
  box-shadow: 0 0 0 3px rgba(250,142,60,.14);
}

.small{ font-size: 12px; }
.footer-muted{ color: var(--muted); }
.footer-muted.small{ color: var(--muted-2); }

/* ─── Fineprint ─── */
.fineprint{
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.5;
}
.fineprint a{ text-decoration: underline; text-underline-offset: 3px; color: var(--muted); }

/* ─── Footer ─── */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 40px 0 48px;
  background: rgba(36,36,36,.015);
}
.footer-row{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-name{ font-weight: 900; font-size: 14px; color: var(--text-strong); }
.footer-right{
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-right a{
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  transition: background var(--t), color var(--t);
}
.footer-right a:hover{
  background: rgba(36,36,36,.05);
  color: var(--text-strong);
}

/* ─── Comparison table ─── */
.compare-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th,
.compare-table td{
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(36,36,36,.07);
}
.compare-table thead th{
  background: rgba(36,36,36,.08);
  color: var(--text-strong);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-align: center;
}
.compare-table tbody tr:nth-child(odd){
  background: rgba(36,36,36,.025);
}
.compare-yes{
  color: #1a7a3f;
  margin-right: 6px;
}
.compare-no{
  color: #c0392b;
  margin-right: 6px;
}
/* Make tables scrollable on mobile via wrapper */
.table-scroll{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.table-scroll .compare-table{
  border-radius: 0;
  box-shadow: none;
  min-width: 480px;
}
@media(max-width:600px){
  .compare-table th,
  .compare-table td{
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* DIY table: allow text to wrap on mobile (no horizontal scroll needed) */
@media(max-width:600px){
  .diy-table th,
  .diy-table td{
    white-space: normal;
  }
}

/* DIY comparison — highlight winner column */
.diy-table thead th:nth-child(2){
  background: rgba(var(--accent-rgb, 250,142,60), .12);
  color: var(--accent);
  border-top: 3px solid var(--accent);
}
.diy-table tbody td:nth-child(2){
  background: rgba(var(--accent-rgb, 250,142,60), .05);
  font-weight: 500;
}

/* ─── FAQ accordion ─── */
.faq-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item{
  border: 1px solid rgba(36,36,36,.1);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.faq-q{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  color: var(--text-strong);
  gap: 12px;
}
.faq-q::-webkit-details-marker{ display: none; }
.faq-q::after{
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-q::after{
  transform: rotate(180deg);
}
.faq-a{
  padding: 0 20px 16px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 14.5px;
  margin: 0;
}

/* Pricing cards */
.pricing-cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.pricing-card{
  position: relative;
  background: #fff;
  border: 1px solid rgba(36,36,36,.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.pricing-card-featured{
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(250,142,60,.18);
}
.pricing-card-badge{
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 0;
}
.pricing-card-header{
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(36,36,36,.08);
}
.pricing-card-name{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-card-price{
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.pricing-currency{
  font-size: 22px;
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1;
}
.pricing-amount{
  font-size: 28px;
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1;
}
.pricing-period{
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 2px;
}
.pricing-card-billing{
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pricing-card-tagline{
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 20px;
}
.pricing-features{
  list-style: none;
  padding: 20px 28px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features li{
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features .pricing-feature-label{ font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); padding-bottom: 4px; }
.pricing-features .compare-yes{ color: #2ca85e; font-size: 13px; flex-shrink: 0; }
.pricing-features .compare-no{ color: #c0392b; font-size: 13px; flex-shrink: 0; }
@media (max-width: 640px){
  .pricing-cards{ grid-template-columns: 1fr; }
}

/* ─── Breadcrumb ─── */
.breadcrumb{
  background: rgba(36,36,36,.04);
  border-bottom: 1px solid rgba(36,36,36,.07);
  padding: 10px 0;
  font-size: 13px;
}
.breadcrumb ol{
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.breadcrumb li + li::before{
  content: "/";
  margin-right: 4px;
  color: var(--text-muted);
}
.breadcrumb a{
  color: var(--accent);
  text-decoration: none;
}
.breadcrumb a:hover{
  text-decoration: underline;
}
.breadcrumb [aria-current="page"]{
  color: var(--text-muted);
}

/* ─── Toast ─── */
.toast{
  position: fixed;
  right: 16px;
  bottom: 16px;
  max-width: min(520px, calc(100vw - 32px));
  z-index: 80;
  border: 1px solid rgba(36,36,36,.10);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px) saturate(180%);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  color: var(--text-strong);
  font-size: 13.5px;
  line-height: 1.5;
}
@media (max-width: 600px){
  .toast{
    top: 72px;
    bottom: auto;
    left: 16px;
    right: 16px;
    max-width: 100%;
  }
}

/* ─── Contact extras ─── */
.contact-title{
  margin-bottom: 20px;
}

.contact-list{
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.contact-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  transition: color var(--t);
}

.contact-item i{
  color: var(--accent);
  font-size: 16px;
  width: 18px;
  text-align: center;
}

.social-links{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.social-label{
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  margin-right: 4px;
}

.social-links a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t);
}
.social-links a:hover{
  background: rgba(250,142,60,.08);
  border-color: rgba(250,142,60,.25);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ─── Misc ─── */
.experience-list{
  list-style: none;
  padding-left: 0;
  margin: 14px 0;
}

.experience-list li{
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--muted);
}

.experience-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

.flag{
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  margin-right: 0.4rem;
}

.flag-icon{
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.45rem;
  vertical-align: -0.15em;
  border-radius: 2px;
}

/* ─── Nav badge ─── */
.nav-careers{
  position: relative;
}

.badge{
  margin-left: 0.4rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  vertical-align: middle;
}

/* ─── Responsive ─── */
@media (max-width: 980px){
  .nav{ display: none; }
  .header-actions{ display: none; }
  .menu-btn{ display: inline-flex; align-items: center; justify-content: center; }

  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .pillars{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-row{ flex-direction: column; gap: 24px; }
  .section-head{ flex-direction: column; align-items: flex-start; }
  .section{ padding: 56px 0; }
  .section-head{ margin-bottom: 28px; }
}

@media (max-width: 600px){
  .section{ padding: 40px 0; }
  .section-head{ margin-bottom: 24px; }
  .section-head h2{ font-size: 24px; }
  .container{ padding: 0 16px; }
  .card, .pillar{ padding: 20px; }
  .sidecard, .about-body, .about-facts, .contact-card{ padding: 20px; }
  .banner-highlights{
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .brand-tag{ display: none; }
}
