:root {
  --bg: #f6f5f4;
  --text: #333;
  --muted: #666;
  --line: #999;
  --soft: #ccc;
  --bg-dark: #F8F3F7;
  --mo2mo-logo-text: #7D4CAE;
  --mo2mo-logo-virus: #ECAC3C;

  --radius: 22px;
  --container: 1120px;
  --pad: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Jost", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}




.hero-media--mask-img {
  position: relative;
  overflow: hidden;
}

.hero-media--mask-img img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-media--mask-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  /* MASKA JAKO OBRÁZEK OVERLAY */
  background-image: url("../img/maska.svg"); /* PNG/SVG */
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 20% auto; /* nebo cover / contain dle masky */
}




a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  font-family: "Lora", "Montaga", Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 3.2vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

h3 {
  font-size: 1.8rem;
}

p {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.center {
  text-align: center;
}

.light {
  color: #fff;
}

.dark{
    color: var(--text);
}

.mo2mo{
    /* color: var(--mo2mo-logo-virus); */
  color: var(--mo2mo-logo-text);
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.skip-link:focus {
  left: 12px;
  z-index: 1000;
}

.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;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.logo {
  font-family: "Montaga", Georgia, serif;
  font-size: 22px;
  white-space: nowrap;
}

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

.nav a {
  border-bottom: 2px solid transparent;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  text-transform: uppercase;
}

.nav a:hover {
  border-bottom-color: var(--mo2mo-logo-text);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  place-items: center;
}

.menu-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  /* transform: translateY(-1px); */
}

.btn--primary {
  background: var(--mo2mo-logo-virus);
  border-color: var(--mo2mo-logo-text);
  color: #000000;
}

.btn--primary:hover {
  background: var(--mo2mo-logo-text);
  border-color: var(--mo2mo-logo-text);
  color: #fff;
}

.btn--outline {
  background: transparent;
}

.btn--outline:hover {
  background: var(--bg-dark);
}

.btn--light {
  border-color: #fff;
  color: #fff;
}

.btn-icon {
  font-size: 16px;
}

/* Kicker */
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.kicker-text {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mo2mo-logo-virus);
}

.kicker-line {
  height: 1px;
  width: 40px;
  background: var(--mo2mo-logo-virus);
  opacity: 0.8;
}

.kicker--light .kicker-text {
  color: var(--mo2mo-logo-text);
}

.kicker--light .kicker-line {
  background: var(--mo2mo-logo-text);
}

/* Hero */
.section--hero {
  padding-top: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.lead {
  font-size: 18px;
  color: #333;
  margin-top: 16px;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.socials {
  margin-top: 36px;
}

.micro {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.socials-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.socials-row a {
  font-size: 14px;
  color: var(--text);
}

.hero-media {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.hero-media img {
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center bottom;
}

/* Stats */
.section--stats {
  padding: 40px 0 64px;
}

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

.stat {
  border-top: 2px solid var(--text);
  padding-top: 18px;
}

.stat-number {
  font-family: "Montaga", Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.stat-label {
  margin-top: 10px;
  font-size: 18px;
  color: #333;
}

/* About */
.section--dark {
  background: var(--bg-dark);
  color: var(--text);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}

.about-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.solutions-title-row {
  /* display: flex; */
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.about-text p {
  color: var(--bg-dark);
  margin-top: 14px;
  max-width: 70ch;
}

.about-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.media--large img {
  aspect-ratio: 736 / 500;
  object-fit: cover;
}

.media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.media-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.media-stack .media img {
  aspect-ratio: 1 / 1;
}

/* Section head */
.section-head {
  margin-bottom: 34px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 0.3fr));
  gap: 18px;
  justify-content: center;
}

.cards-2 .card p.issue::before{
  content: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='22'%20height='22'%20viewBox='0%200%2015%2015'%3E%3Cpath%20fill='red'%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.7816%204.03157C12.0062%203.80702%2012.0062%203.44295%2011.7816%203.2184C11.5571%202.99385%2011.193%202.99385%2010.9685%203.2184L7.50005%206.68682L4.03164%203.2184C3.80708%202.99385%203.44301%202.99385%203.21846%203.2184C2.99391%203.44295%202.99391%203.80702%203.21846%204.03157L6.68688%207.49999L3.21846%2010.9684C2.99391%2011.193%202.99391%2011.557%203.21846%2011.7816C3.44301%2012.0061%203.80708%2012.0061%204.03164%2011.7816L7.50005%208.31316L10.9685%2011.7816C11.193%2012.0061%2011.5571%2012.0061%2011.7816%2011.7816C12.0062%2011.557%2012.0062%2011.193%2011.7816%2010.9684L8.31322%207.49999L11.7816%204.03157Z'/%3E%3C/svg%3E");
    display: inline-block;
    vertical-align: middle;
    margin-right: .5rem;

}


.cards-2 .card p.solution::before{
   content: url("data:image/svg+xml,%3Csvg%20width='22'%20height='22'%20viewBox='0%200%2042%2042'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M9%2020.6576L16.6576%2028.3153L32%2013'%20stroke='%230085FF'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
   display: inline-block;
   vertical-align: middle;
   margin-right: .5rem;
}



.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 22px;
}

.card p {
  margin-top: 12px;
  color: #333;
}

.link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Gallery */
.section--gallery {
  background: var(--bg-dark);
  color: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.gallery-item {
  grid-column: span 3;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
}

.gallery-item--wide {
  grid-column: span 6;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-item--wide img {
  aspect-ratio: 736 / 400;
}

/* Testimonial */
.testimonial {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 34px;
  text-align: center;
}

.testimonial-title {
  font-family: "Montaga", Georgia, serif;
  font-size: 28px;
  line-height: 1.2;
}

.testimonial-quote {
  margin-top: 14px;
  color: #333;
}

.testimonial-person {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.person-name {
  font-weight: 600;
}

.person-loc {
  color: var(--line);
  font-size: 14px;
}

/* FAQ */
.section--faq {
  padding-top: 64px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.faq details {
  border-bottom: 1px solid var(--soft);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-family: "Montaga", Georgia, serif;
  font-size: 22px;
  line-height: 1.3;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin-top: 12px;
  color: #333;
  max-width: 80ch;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: var(--soft);
  padding: 64px 0;
  margin-top: 60px;
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.logo--light {
  color: #fff;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand .logo--light {
  width: 30%;
}

.footer-brand .logo--light img {
  width: 100%;
}

.footer-navigation {
  justify-self: center;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.footer-nav a {
  color: var(--soft);
}

.footer-nav a:hover {
  color: var(--mo2mo-logo-text);
}

.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
  font-size: 14px;
}

.footer-meta a {
  color: var(--bg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bar {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}


/* ===== How it works (purple hero) ===== */
.section--hiw{
  padding: 0;
}

.hiw{
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  color: #fff;
  background:
          radial-gradient(900px 450px at 50% 25%, rgba(255,255,255,.10), transparent 60%),
          radial-gradient(700px 380px at 20% 35%, rgba(0,0,0,.20), transparent 60%),
          linear-gradient(135deg, #3b0aa3, #5a1ee6 55%, #4b12c4);
}

.hiw::after{
  content:"";
  position:absolute;
  top:28px;
  right:22px;
  width:160px;
  height:80px;
  opacity:.28;
  background-image: radial-gradient(rgba(255,255,255,.65) 1.2px, transparent 1.25px);
  background-size: 10px 10px;
  pointer-events:none;
}

.hiw-inner{
  text-align:center;
}

.hiw-kicker{
  margin: 0;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.hiw-title{
  margin: 18px auto 0;
  max-width: 22ch;
  font-family: "Jost", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  color: #fff;
}

.hiw-steps{
  position: relative;
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 56px;
  align-items: start;
}

.hiw-step{
  max-width: 320px;
  justify-self: center;
}

.hiw-number{
  font-family: "Jost", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 92px;
  line-height: 1;
  display: inline-block;
  transform: rotate(-9deg);
  color: var(--mo2mo-logo-text); /* rgba(240,230,255,.92); */
  -webkit-text-stroke: 2px rgba(25, 10, 60, .55);
  text-shadow:
          3px 3px 0 rgba(25,10,60,.55),
          8px 8px 0 rgba(0,0,0,.18);
}

.hiw-step-title{
  margin-top: 18px;
  font-family: "Jost", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
}

.hiw-step-text{
  margin-top: 12px;
  font-size: 15px;
}

.hiw-arrow{
  position:absolute;
  top: 0px;
  width: 240px;
  height: 80px;
  opacity: .9;
  pointer-events:none;
}

.hiw-arrow--1{
  left: calc(33.333% - 300px);
}

.hiw-arrow--2{
  left: calc(66.666% - 360px);
}

.hiw-arrow--3{
  left: calc(99.999% - 440px);
}

.hiw-cta{
  margin-top: 34px;
}

.btn--hiw{
  border-color: rgba(255,255,255,.55);
  color: #fff;
}

.btn--hiw:hover{
  border-color: rgba(255,255,255,.85);
}


/* Responsive */
@media (max-width: 980px) {

  .hiw{
    padding: 78px 0 64px;
  }

  .hiw-steps{
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 44px;
  }

  .hiw-step{
    width: 100%;
    max-width: 640px;
  }

  .hiw-arrow{
    display:none;
  }

  .hiw-number{
    font-size: 80px;
  }



  .menu-toggle {
    display: grid;
    align-content: center;
    gap: 4px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
  }

  .site-header.is-menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .nav a:hover {
    background: var(--bg);
    text-decoration: none;
  }

  .hero-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    grid-column: span 6;
  }

  .gallery-item--wide {
    grid-column: span 12;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-navigation {
    justify-self: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .footer-bar {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}


/* Mobile fine-tuning */
@media (max-width: 600px){
  .hiw{
    padding: 68px 0 56px;
  }

  .hiw-title{
    max-width: 18ch;
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .hiw-steps{
    gap: 26px;
  }

  .hiw-number{
    font-size: 72px;
  }

  .hiw-step-title{
    font-size: 17px;
  }

  .hiw-step-text{
    font-size: 14px;
  }
}




/* ===== Features: Split layout + Bootstrap accordion (custom styled) ===== */
#features .features-split{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

#features .features-media{
  position: relative;
}

#features .features-shot{
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

#features .features-panel{
  display: grid;
  gap: 18px;
}

#features .features-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* Accordion (scoped to #features to avoid global conflicts) */
#features .accordion{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

#features .accordion-item + .accordion-item{
  border-top: 1px solid var(--soft);
}

#features .accordion-header{
  margin: 0;
  font-family: inherit;
}

#features .accordion-button{
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: "Jost", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}

#features .accordion-button::after{
  content: "›";
  font-size: 22px;
  opacity: .65;
  transform: rotate(90deg);
  transition: transform .18s ease;
}

#features .accordion-button[aria-expanded="true"]::after{
  transform: rotate(270deg);
}

#features .accordion-button:focus{
  outline: 2px solid rgba(247,170,0,.55);
  outline-offset: 2px;
}

#features .accordion-collapse{
  border-top: 1px solid rgba(0,0,0,.06);
}

#features .accordion-body{
  padding: 0 18px 16px;
  color: #333;
}

#features .features-bullets{
  margin: 10px 0 0 18px;
  padding: 0;
}

#features .features-bullets li{
  margin: 6px 0;
}

/* Desktop split + sticky screenshot */
@media (min-width: 980px){
  #features .features-split{
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  #features .features-media{
    position: sticky;
    top: 92px; /* below sticky header */
  }
}

/* Bootstrap collapse visibility (minimal) — scoped to #features */
#features .collapse:not(.show){
  display: none;
}
#features .collapsing{
  height: 0;
  overflow: hidden;
  transition: height .35s ease;
}


/* ===== Solutions: feature comparison table ===== */
/* Inspired by the layout concept from shadcn/ui blocks “feature comparison”. */
#solutions .comparison{
  margin-top: 28px;
}

#solutions .comparison-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.18);
  background: #fff;
  color: var(--text);
}

#solutions .comparison-table thead th{
  text-align: left;
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,.75);
  background: var(--mo2mo-logo-virus);
  border-bottom: 1px solid rgba(0,0,0,.10);
}

#solutions .comparison-table thead th + th{
  background: var(--mo2mo-logo-text);
}

#solutions .comparison-table tbody td{
  padding: 18px;
  vertical-align: top;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

#solutions .comparison-table tbody tr:last-child td{
  border-bottom: 0;
}

#solutions .cmp-label{
  display: none;
}

#solutions .cmp-item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

#solutions .cmp-item::before{
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex: 0 0 22px;
  background-size: 22px 22px;
  background-repeat: no-repeat;
}

#solutions .cmp-item.cmp-issue::before{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='22'%20height='22'%20viewBox='0%200%2015%2015'%3E%3Cpath%20fill='red'%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.7816%204.03157C12.0062%203.80702%2012.0062%203.44295%2011.7816%203.2184C11.5571%202.99385%2011.193%202.99385%2010.9685%203.2184L7.50005%206.68682L4.03164%203.2184C3.80708%202.99385%203.44301%202.99385%203.21846%203.2184C2.99391%203.44295%202.99391%203.80702%203.21846%204.03157L6.68688%207.49999L3.21846%2010.9684C2.99391%2011.193%202.99391%2011.557%203.21846%2011.7816C3.44301%2012.0061%203.80708%2012.0061%204.03164%2011.7816L7.50005%208.31316L10.9685%2011.7816C11.193%2012.0061%2011.5571%2012.0061%2011.7816%2011.7816C12.0062%2011.557%2012.0062%2011.193%2011.7816%2010.9684L8.31322%207.49999L11.7816%204.03157Z'/%3E%3C/svg%3E");
}

#solutions .cmp-item.cmp-solution::before{
  background-image: url("data:image/svg+xml,%3Csvg%20width='22'%20height='22'%20viewBox='0%200%2042%2042'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M9%2020.6576L16.6576%2028.3153L32%2013'%20stroke='%230085FF'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
}

#solutions .cmp-title{
  display: block;
  font-family: "Jost", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(0,0,0,.92);
  margin-bottom: 6px;
}

#solutions .cmp-text{
  margin: 0;
  color: rgba(0,0,0,.72);
}

/* Pilots: make outline buttons look like small tags */
#pilots .socials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#pilots .socials-row .btn.btn--outline {
  padding: 6px 10px;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 999px; /* pill */
  border-width: 1px;
  opacity: 0.95;

  /* behave like tag, not like full button */
  pointer-events: none;
  cursor: default;
  white-space: nowrap;
}

#pilots .socials-row .btn.btn--outline:hover,
#pilots .socials-row .btn.btn--outline:focus {
  transform: none;
  box-shadow: none;
}

/* ===== Footer CTA (Slack-like) ===== */
.section--cta{
  clip-path: ellipse(75% 100% at top);
  position: relative;
  overflow: hidden;
  background: var(--mo2mo-logo-text);
  padding: 86px 0;
}

.article-cta {
  text-align: center;
  color: #fff;
}

.cta-actions{
  padding-top: 30px;
}

.cta-actions .btn--primary{
  background: #fff;
}

.cta-actions .btn--primary:hover{
  color: var(--mo2mo-logo-text);
}

.cta-actions .btn--outline{
  border-color: #FFF;
}

.cta-actions .btn--outline:hover{
  background: var(--mo2mo-logo-text);
  color: var(--text);
}

/* Mobile: turn rows into stacked blocks */
@media (max-width: 760px){
  #solutions .comparison-table thead{
    display: none;
  }
  #solutions .comparison-table,
  #solutions .comparison-table tbody,
  #solutions .comparison-table tr,
  #solutions .comparison-table td{
    display: block;
    width: 100%;
  }

  #solutions .comparison-table tr{
    border-bottom: 1px solid rgba(0,0,0,.10);
  }
  #solutions .comparison-table tr:last-child{
    border-bottom: 0;
  }

  #solutions .comparison-table tbody td{
    border: 0;
    padding: 14px 16px;
  }
  #solutions .comparison-table tbody td + td{
    padding-top: 0;
    padding-bottom: 18px;
  }

  #solutions .cmp-label{
    display: block;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(0,0,0,.55);
    margin-bottom: 8px;
  }
}
