/* ============================================================
   MIND MEETING GROUP — STYLESHEET
   ============================================================ */

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

/* ------------------------------------------------------------
   VARIABLES & RESET
   ------------------------------------------------------------ */
:root {
  --ink:       #1d1d1f;
  --fog:       #f5f5f7;
  --warm:      #e8e8ed;
  --accent:    #1d1d1f;
  --accent-lt: #3d3d3f;
  --rule:      #d2d2d7;
  --white:     #ffffff;
  --mid:       #4a4a4f;

  --font-display: 'Open Sans', system-ui, sans-serif;
  --font-body:    'Open Sans', system-ui, sans-serif;

  --max: 1160px;
  --side: clamp(1.25rem, 5vw, 3rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ------------------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 400; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 0.75rem;
}

/* ------------------------------------------------------------
   LAYOUT
   ------------------------------------------------------------ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side);
}

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-alt { background: var(--fog); }
.section-dark {
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.section-dark .eyebrow { color: var(--accent); }

/* ------------------------------------------------------------
   NAV
   ------------------------------------------------------------ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 16px;
  font-weight: 400;
  color: var(--mid);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-links .nav-cta a {
  background: var(--accent);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  display: inline-block;
  line-height: 1;
}

.nav-links .nav-cta a:hover { background: var(--accent-lt); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.2s;
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}

.btn-primary:hover { border-color: var(--ink); background: rgba(0,0,0,0.04); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}

.btn-ghost:hover { border-color: var(--ink); background: rgba(0,0,0,0.04); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}

.btn-outline:hover { border-color: var(--ink); background: rgba(0,0,0,0.04); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}

.btn-outline-dark:hover { border-color: var(--ink); }

/* ------------------------------------------------------------
   HOME — HERO
   ------------------------------------------------------------ */
.hero {
  background: var(--fog);
  color: var(--ink);
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,113,227,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 860px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  margin-bottom: 1.75rem;
  color: var(--ink);
}

.hero h1 em {
  font-style: normal;
  color: var(--mid);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--mid);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  display: block;
  color: var(--ink);
}

.hero-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  color: var(--mid);
  letter-spacing: 0.05em;
}

/* ------------------------------------------------------------
   HOME — PROBLEM FRAMING
   ------------------------------------------------------------ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.problem-grid h2 { margin-bottom: 1.25rem; }

.problem-list { list-style: none; margin-top: 1.5rem; }

.problem-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.problem-list li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1.2rem;
}

/* ------------------------------------------------------------
   HOME — SERVICES OVERVIEW
   ------------------------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: var(--rule);
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}

.section-alt .service-card { background: var(--fog); }

.service-tier {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.service-price {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 15px;
  color: var(--mid);
  flex-grow: 1;
}

.service-card a {
  margin-top: 1.5rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card a::after { content: '→'; }

.service-card.featured {
  background: var(--white);
  color: var(--ink);
  border: none;
}

.service-card.featured .service-tier { color: var(--mid); }
.service-card.featured p { color: var(--mid); }
.service-card.featured .service-price { color: var(--ink); }
.service-card.featured a { color: var(--ink); }

/* ------------------------------------------------------------
   HOME — TESTIMONIALS
   ------------------------------------------------------------ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--rule);
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.25rem;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}



.testimonial-attr { font-size: 15px; font-weight: 500; color: var(--ink); }
.testimonial-name { font-weight: 500; display: block; }
.testimonial-role { color: var(--mid); }

/* ------------------------------------------------------------
   HOME — LOGOS
   ------------------------------------------------------------ */
.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: center;
  margin-top: 2rem;
}

.logo-item {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--mid);
  letter-spacing: 0.05em;
  font-weight: 300;
  padding: 0.5rem 1rem;
  border: 1px solid var(--rule);
}

/* ------------------------------------------------------------
   WORK PAGE — CASE STUDY CARDS
   ------------------------------------------------------------ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.case-card {
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.case-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(45,90,74,0.08);
}

.case-card-body { padding: 2rem; flex-grow: 1; }

.case-sector {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.case-card h3 { font-size: 1.3rem; font-weight: 300; margin-bottom: 0.75rem; }
.case-card .client-name { font-size: 14px; color: var(--mid); margin-bottom: 1rem; }
.case-card p { font-size: 15px; color: var(--mid); }

.case-card-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-expand-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  transition: gap 0.2s;
}

.case-expand-btn:hover { gap: 0.7rem; }

.case-detail {
  padding: 0 2rem 2rem;
  display: none;
  border-top: 1px dashed var(--rule);
  margin-top: 0;
}

.case-detail.open { display: block; }

.case-detail h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 1.25rem 0 0.5rem;
}

.case-detail p { font-size: 15px; }

/* ------------------------------------------------------------
   BLOG PAGE
   ------------------------------------------------------------ */
.blog-list { margin-top: 3rem; }

.blog-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.blog-meta { padding-top: 0.3rem; }

.blog-date {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  display: block;
}

.blog-category {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-top: 0.5rem;
}

.blog-content h3 { font-size: 1.4rem; font-weight: 300; margin-bottom: 0.75rem; }
.blog-content p { font-size: 16px; color: var(--mid); }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  transition: gap 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
}

.read-more:hover { gap: 0.7rem; }

.blog-post-full {
  max-width: 680px;
  margin: 2rem 0 0;
  display: none;
}

.blog-post-full.open { display: block; }

.blog-post-full p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

/* ------------------------------------------------------------
   SERVICES PAGE
   ------------------------------------------------------------ */
.services-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
  font-size: 15px;
}

.services-table th {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  padding: 1.5rem;
  text-align: left;
  border-bottom: 2px solid var(--rule);
  vertical-align: bottom;
}

.services-table th.featured-col {
  background: var(--fog);
  color: var(--ink);
  border-top: none;
  border-left: none;
  border-right: none;
}

.services-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

.services-table td.featured-col {
  background: var(--fog);
  border-left: none;
  border-right: none;
}

.services-table .row-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  width: 140px;
}

.price-cell {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
}

.services-table td.featured-col .price-cell { color: var(--ink); }

/* ------------------------------------------------------------
   ABOUT PAGE
   ------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 80px;
}

.about-name {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about-title { color: var(--mid); font-size: 0.9rem; margin-bottom: 1.5rem; }

.about-body p { font-size: 16px; line-height: 1.8; }

.facilitators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.facilitator-card {
  padding: 1.75rem;
  border: 1px solid var(--rule);
}

.facilitator-card h4 { font-size: 1.1rem; font-weight: 400; margin-bottom: 0.25rem; }
.facilitator-card p { font-size: 15px; color: var(--mid); }

/* ------------------------------------------------------------
   CONTACT PAGE
   ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--mid); }

.contact-detail {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail a {
  font-weight: 500;
  color: var(--accent);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea { height: 140px; resize: vertical; }

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 3rem 0;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 15px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

/* ------------------------------------------------------------
   PAGE HERO (interior pages)
   ------------------------------------------------------------ */
.page-hero {
  background: var(--fog);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--rule);
}

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.1rem; color: var(--mid); max-width: 600px; }

/* ------------------------------------------------------------
   UTILITIES
   ------------------------------------------------------------ */
.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; display: flex; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

.sector-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.filter-btn {
  background: none;
  border: 1px solid var(--rule);
  padding: 0.4rem 1rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--mid);
  border-radius: 100px;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 820px) {
  .problem-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .about-sidebar { position: static; }

  .blog-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .blog-meta { display: flex; gap: 1rem; align-items: baseline; }

  .services-table { display: none; }
  .services-table + .mobile-services { display: flex; }

  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 1rem 0;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: 0.75rem var(--side); }
  .nav-links .nav-cta a { margin: 0.5rem var(--side); display: inline-block; padding: 0.75rem 1.5rem; font-size: 15px; }

  .nav-toggle { display: flex; }

  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 520px) {
  .work-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   HERO — TWO COLUMN LAYOUT
   ------------------------------------------------------------ */
.hero {
  background: var(--white);
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.hero-two-col {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-text-col h1 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero-text-col .eyebrow {
  margin-bottom: 1rem;
}

.hero-image-col {
  border-radius: 4px;
  overflow: hidden;
  background: var(--fog);
}

.hero-image-col img {
  width: 100%;
  height: auto;
  display: block;
}



@media (max-width: 820px) {
  .hero-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image-col {
    order: -1;
  }

  .hero-text-col h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}

/* ------------------------------------------------------------
   STATS BAR — below hero
   ------------------------------------------------------------ */
.stats-bar {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--fog);
  padding: 2rem 0;
}

.stats-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side);
  display: flex;
  gap: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stats-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 130px;
  padding: 0 1rem;
  border-right: 1px solid var(--rule);
}

.stats-bar-item:first-child { padding-left: 0; }
.stats-bar-item:last-child  { border-right: none; }

@media (max-width: 640px) {
  .stats-bar-inner {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .stats-bar-item {
    flex: 1 1 40%;
    border-right: none;
    padding: 0;
  }
}

/* ------------------------------------------------------------
   APPLE-STYLE MIXED WEIGHT TEXT
   Use <strong> for black emphasis, rest renders as --mid gray
   Apply class "text-mixed" to a paragraph or heading
   ------------------------------------------------------------ */
.text-mixed {
  color: var(--mid);
  font-weight: 400;
  line-height: 1.4;
}
.text-mixed strong {
  color: var(--ink);
  font-weight: 700;
}

/* ------------------------------------------------------------
   COMPLEXITY SECTION
   ------------------------------------------------------------ */
.complexity-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.complexity-text h2 {
  margin-bottom: 1rem;
}

.complexity-text p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.complexity-image {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.complexity-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------------------------------------
   PAIN POINTS GRID
   ------------------------------------------------------------ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 2rem;
}

.pain-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.pain-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mid);
  margin: 0;
}

@media (max-width: 720px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   LOGOS BAND (under hero)
   ------------------------------------------------------------ */
.logos-band {
  padding: 2.5rem 0 2.25rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--fog);
}

.logos-band-text {
  text-align: center;
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}

/* ------------------------------------------------------------
   PROBLEM TYPE TABLE
   ------------------------------------------------------------ */
.ptype-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--white);
}

.ptype-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.ptype-intro h2 {
  margin-bottom: 1rem;
}

.ptype-intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mid);
}

.ptype-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ptype-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-size: 15px;
  color: var(--ink);
  table-layout: fixed;
}

/* Column header cells — icon + label */
.ptype-table thead th.ptype-col-header {
  text-align: center;
  padding: 0 1.25rem 1.75rem;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  vertical-align: bottom;
  border-bottom: 1px solid var(--rule);
}

.ptype-table thead th.ptype-col-header span {
  display: block;
  margin-top: 0.75rem;
}

/* Empty top-left cell */
.ptype-table thead th.ptype-row-label {
  width: 130px;
}

.ptype-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  opacity: 0.85;
}

/* Body rows */
.ptype-table tbody tr {
  border-bottom: 1px solid var(--rule);
}

.ptype-table tbody tr:last-child {
  border-bottom: 1px solid var(--rule);
}

.ptype-table tbody td {
  padding: 1.5rem 1.25rem;
  line-height: 1.65;
  vertical-align: top;
  color: var(--mid);
  font-size: 15px;
}

/* Row label — left column */
td.ptype-row-label {
  font-weight: 700;
  color: var(--ink) !important;
  font-size: 15px;
  white-space: nowrap;
  vertical-align: middle !important;
  padding-left: 0 !important;
}

@media (max-width: 760px) {
  .ptype-table {
    font-size: 14px;
  }
  .ptype-table tbody td {
    padding: 1.1rem 0.85rem;
  }
  .ptype-table thead th.ptype-col-header {
    padding: 0 0.85rem 1.25rem;
  }
}

/* ------------------------------------------------------------
   ABOUT PAGE PHOTOS
   ------------------------------------------------------------ */
.bio-photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  display: block;
  margin-bottom: 1.25rem;
}

.facilitator-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  display: block;
  margin-bottom: 1rem;
}

/* ------------------------------------------------------------
   COMPARISON TABLE
   ------------------------------------------------------------ */
.comparison-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--white);
}

.comparison-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.comparison-intro h2 {
  margin-bottom: 1rem;
}

.comparison-intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mid);
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 15px;
  table-layout: fixed;
}

.comparison-table thead tr {
  border-bottom: 1px solid var(--rule);
}

.comparison-table thead th {
  padding: 0 1.25rem 1.25rem;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  vertical-align: bottom;
}

.comparison-table thead th.comp-row-label {
  text-align: left;
  width: 160px;
  padding-left: 0;
}

/* MMG column highlight */
.comparison-table thead th.comp-col-mmg {
  background: var(--fog);
  color: var(--ink);
  padding-top: 1rem;
}

.comparison-table tbody td.comp-col-mmg {
  background: var(--fog);
  color: var(--ink);
  font-weight: 500;
  text-align: center;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--rule);
}

.comparison-table tbody tr:last-child {
  border-bottom: 1px solid var(--rule);
}

.comparison-table tbody td {
  padding: 1.25rem;
  line-height: 1.6;
  vertical-align: top;
  color: var(--mid);
  text-align: center;
}

td.comp-row-label {
  font-weight: 600;
  color: var(--ink) !important;
  text-align: left !important;
  padding-left: 0 !important;
  vertical-align: middle !important;
  min-width: 150px;
  width: 150px;
  white-space: normal;
}

@media (max-width: 760px) {
  .comparison-table {
    font-size: 14px;
  }
  .comparison-table tbody td,
  .comparison-table thead th {
    padding: 1rem 0.75rem;
  }
}
