@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Red Hat Display", sans-serif;
  width: 100%;
}

.box {
    margin: 20px;
}

/* ─── SHARED CONTAINER ─── */
.container {
  width: 100%;
  padding: 0 60px;
}

/* ══════════════════════════════
   HEADER / NAV
══════════════════════════════ */
.site-header {
    background: #0077fc;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding-top: 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0;
}

/* 
  HEADER LAYOUT (matching the reference image):
  [white pill] [blue circle with logo] [avatar1] [avatar2] [avatar3]  "30+ Industry experts"
  The pill and logo circle overlap each other, and avatars overlap the logo circle.
  
  In the reference image:
  - White pill is on the far left (rounded rectangle, ~75px wide, 110px tall)
  - Blue Cohorts.team logo circle overlaps the right side of the pill
  - 3 avatar circles overlap each other and the logo circle
  - "30+ Industry experts" text is bold white, to the right
*/

/* 
  REFERENCE IMAGE LAYOUT:
  The HTML structure is:
  .logo-pill > .logo-icon (logo circle is INSIDE the pill div)
  .expert-avatars > .avatar-circle x3
  
  In the reference image:
  - White pill shape on far left
  - Blue circle with Cohorts.team logo overlapping the pill (this is .logo-icon inside .logo-pill)
  - 3 avatar circles overlapping each other
  - "30+ Industry experts" text
*/

/* 
  REFERENCE IMAGE STRUCTURE:
  - White pill (rounded rectangle) on far left - this is the .logo-pill
  - Inside the pill: blue circle with Cohorts.team logo - this is .logo-icon
  - The pill is wider than the circle so the white shows on the left side
  - Then 3 avatar circles overlapping each other
  - Then "30+ Industry experts" text
*/

/* 
  FINAL HEADER LAYOUT matching reference image:
  - White pill (rounded rectangle) with logo circle inside it
  - The pill shows white space on the left, logo circle on the right
  - Then 3 avatar circles overlapping each other
  - Then "30+ Industry experts" text
*/

/* 
  NAV-LEFT LAYOUT:
  The .logo-pill is a white rounded rectangle.
  Inside it, .logo-icon is the blue circle positioned to overlap the right edge of the pill.
  The .expert-avatars follow with negative margin to overlap the logo circle.
*/

/* White pill/rectangle shape on the far left */
.logo-pill {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    border-radius: 20px;
    border: 3.5px solid #111;
    padding: 8px;
    height: 70px;
    width: 160px;
    position: relative;
    flex-shrink: 0;
    z-index: 5;
    overflow: visible;
    margin-right: 0;
}

/* The logo icon is INSIDE the pill - this IS the blue circle with logo */
.logo-pill .logo-icon {
    display: flex;
    width: 100px;
    height: 100px;
    min-width: 100px;
    border: 3.5px solid #fff;
    background: #0077fc;
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* General .logo-icon styles */
.logo-icon {
    width: 110px;
    height: 110px;
    background: #0077fc;
    display: flex;
    border-radius: 50%;
    border: 3.5px solid #111;
    padding: 10px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 11px;
    line-height: 1.15;
    text-align: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin-left: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.logo-text span { color: #0077fc; }

/* Avatar group - overlapping circles with dark border */
.expert-avatars {
  display: flex;
  align-items: center;
  margin-left: 0;
  position: relative;
  z-index: 3;
}

.avatar-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 3.5px solid #000;
    display: inline-block;
    margin-left: -30px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ccc;
}

.expert-avatars .avatar-circle:first-child {
    margin-left: 0;
    z-index: 7;
}

.expert-avatars .avatar-circle:nth-child(2) {
    z-index: 6;
}

/* Expert label rotating text animation */
.expert-label-text {
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.expert-label-fade-out {
  opacity: 0;
  transform: translateY(-8px);
}

.expert-label-fade-in {
  animation: expertFadeIn 0.4s ease forwards;
}

@keyframes expertFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.expert-label {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-left: 5px;
    white-space: nowrap;
}

.nav-right {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-right svg { stroke: #fff; }

/* ══════════════════════════════
   HERO SECTION
══════════════════════════════ */
.hero {
  background: #0077fc;
  padding: 20px 0 60px;
}

.hero-body {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-text {
  flex: 0 0 50%;
  width: 50%;
  padding-right: 40px;
}

.hero-text h1 {
  font-size: 80px;
  font-weight: 700;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 24px;
  white-space: nowrap;
}

.hero-text p {
  font-size: 36px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 44px;
  line-height: 1.45;
}

.btn-cta {
    display: inline-block;
    background: #fff;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 44px;
    border-radius: 50px;
    text-decoration: none;
    border: 3px solid #000;
    /* 3D effect: bottom-right shadow gives depth */
    box-shadow: 4px 4px 0px 0px #000;
    transform: translateY(0);
    transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.2s;
    position: relative;
}

.btn-cta:hover {
    box-shadow: 2px 2px 0px 0px #000;
    transform: translate(2px, 2px);
    background: #f0f0f0;
}

.btn-cta:active {
    box-shadow: 0px 0px 0px 0px #000;
    transform: translate(4px, 4px);
}

.hero-image-wrap {
  flex: 0 0 50%;
  width: 50%;
  position: relative;
  padding-left: 10px;
}

.hero-image-wrap img.hero-photo {
  width: 100%;
  border-radius: 24px;
  display: block;
  filter: grayscale(100%);
  object-fit: cover;
  object-position: top center;
}

.stat-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: #0077fc;
  border: 3px solid #000;
  border-radius: 18px;
  padding: 16px 22px;
}

.stat-badge .stat-num {
  font-size: 54px;
  font-weight: 900;
  color: #ff3b8b;
  line-height: 1;
}

.stat-badge .stat-label {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-top: 6px;
    line-height: 1.4;
    text-align: center;
}

/* ══════════════════════════════
   PROBLEM SECTION
══════════════════════════════ */
.problem {
  background: #0077fc;
  padding: 50px 0 70px;
}

.section-divider {
  border: none;
  margin-bottom: 50px;
}

.problem-inner {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.problem-left {
  flex: 0 0 50%;
  width: 50%;
  padding-right: 60px;
}

.tag-pill {
    display: inline-block;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 10px;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #0077fc;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    background: #fff;
}

.problem-left .sub {
    font-size: 20px;
    color: #fff;
    margin-bottom: 22px;
    font-weight: 700;
}

.problem-left h2 {
    font-size: 96px;
    font-weight: 700;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 32px;
}

.problem-left h2 .muted {
  color: rgba(255,255,255,0.3);
}

.problem-left blockquote {
    border-left: 3px solid #fff;
    padding-left: 18px;
    font-size: 24px;
    color: #fff;
    line-height: 1.65;
    font-weight: 500;
}

.problem-right {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cost-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.cost-icon img {
    width: 200px;
    height: 200px;
}

.cost-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cost-icon svg {
  width: 30px;
  height: 30px;
  stroke: #0077fc;
  fill: none;
  stroke-width: 1.8;
}

.cost-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.cost-info p {
  font-size: 15px;
  color: #666;
  font-weight: 400;
}

/* ══════════════════════════════
   OUR PROCESS SECTION
══════════════════════════════ */
.process-section {
  background: #fff;
  padding: 80px 0 60px;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.tag-pill-dark {
    display: inline-block;
    border: 3px solid #000;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 18px;
    font-weight: 700;
    color: #0077fc;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.process-title {
  font-size: 56px;
  font-weight: 900;
  color: #000;
  line-height: 1.1;
  margin-bottom: 16px;
}

.process-title .blue { color: #0077fc; }

.process-sub {
    font-size: 20px;
    color: #000;
    line-height: 1.6;
    font-weight: 500;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
}

.process-step {
    flex: 1;
    background: #fff;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 32px 24px 28px;
    text-align: center;
    position: relative;
    max-width: 350px;
}

.step-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    background: #0077fc;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #000;
}

.step-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 20px;
}

.step-icon-wrap img {
    width: 425px;
    height: 425px;
}

.step-icon-wrap svg {
  width: 30px;
  height: 30px;
}

.process-step h4 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.process-step p {
  font-size: 24px;
  color: #000;
  line-height: 1.55;
}

.process-connector {
    flex: 0 0 40px;
    height: 3px;
    margin-top: 60px;
    background: #0077fc;
}

/* Process CTA Banner */
.process-cta-banner {
    background: #0077fc;
    border-radius: 20px;
    padding: 36px 44px;
    display: flex;
    align-items: center;
    gap: 28px;
    border: 4px solid #000;
}

.process-cta-icon {
    width: 76px;
    height: 76px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 4px solid #000;
}

.process-cta-icon svg {
  width: 36px;
  height: 36px;
  stroke: #0077fc;
}

.process-cta-text {
  flex: 1;
}

.process-cta-text p {
    font-size: 20px;
    color: #fff;
    line-height: 1.6;
    font-weight: 500;
}

.process-cta-text p + p {
  margin-top: 4px;
}

.process-cta-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px 0px #000;
    transform: translateY(0);
    transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.2s;
    position: relative;
}

.process-cta-btn:hover {
    box-shadow: 2px 2px 0px 0px #000;
    transform: translate(2px, 2px);
}

.process-cta-btn:active {
    box-shadow: 0px 0px 0px 0px #000;
    transform: translate(4px, 4px);
}

/* ══════════════════════════════
   THE SOLUTION SECTION
══════════════════════════════ */
.solution-section {
  background: #fff;
  padding: 80px 0 0;
}

.solution-header {
  text-align: center;
  margin-bottom: 60px;
}

.tag-pill-blue {
    display: inline-block;
    background: #0077fc;
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 4px solid #000;
}

.solution-title {
  font-size: 60px;
  font-weight: 900;
  color: #000;
  line-height: 1.1;
  margin-bottom: 16px;
}

.solution-title .blue { color: #0077fc; }

.solution-sub {
    font-size: 24px;
    color: #555;
    line-height: 1.6;
    font-weight: 500;
}

/* Cohort cards */
.cohort-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.cohort-card {
  background: #fff;
  border: 1.5px solid #000;
  border-radius: 20px;
  padding: 24px;
}

.cohort-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    background: #e7f1fd;
    padding: 5px;
    border-radius: 10px;
}

.cav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-block;
  margin-left: -8px;
}

.cav:first-child { margin-left: 0; }

.cohort-count {
    font-size: 18px;
    font-weight: 700;
    color: #0077fc;
    margin-left: 10px;
}

.cohort-body {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cohort-icon {
  width: 48px;
  height: 48px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cohort-icon svg {
  width: 36px;
  height: 36px;
}

.cohort-card .cav img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.cohort-body h4 {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin-bottom: 6px;
}

.cohort-body p {
    font-size: 18px;
    color: #000;
    line-height: 1.55;
}

/* ══════════════════════════════
   FLIP CARD STYLES
══════════════════════════════ */
.flip-card {
  perspective: 1200px;
  cursor: pointer;
  min-height: 350px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

.flip-card-front {
  /* inherits .cohort-card styles */
}

.flip-card-back {
  background: #0077fc;
  transform: rotateY(180deg);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Back side tag */
.flip-back-tag {
  display: inline-block;
  background: #fff;
  color: #0077fc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  align-self: flex-start;
}

/* Capabilities list */
.flip-capabilities {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flip-cap-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}

.flip-cap-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flip-cap-icon svg {
  width: 16px;
  height: 16px;
}

.flip-cap-item h5 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.2;
}

.flip-cap-item p {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  font-weight: 400;
}

.flip-cap-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0;
}

/* View more text on front card */
.flip-view-more {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #0077fc;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    display: block;
    letter-spacing: 0.5px;
}

/* Trusted by section */
.flip-trusted {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.flip-trusted-label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.flip-trusted-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.flip-trusted-logos span {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  font-style: italic;
}

.flip-trusted-logos span:first-child {
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
}

/* CTA card */
.cohort-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  border: 1.5px solid #e0e0e0;
  cursor: pointer;
  transition: border-color 0.2s;
}

.cohort-cta-card:hover { border-color: #0077fc; }

.cohort-cta-icon {
  width: 48px;
  height: 48px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cohort-cta-icon svg { width: 22px; height: 22px; }

.cohort-cta-card p {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.cohort-cta-arrow {
  font-size: 20px;
  color: #0077fc;
  font-weight: 700;
}

/* Solution bottom banner */
.solution-banner {
    background: #0077fc;
    border-radius: 20px;
    padding: 36px 50px;
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 0;
}

.solution-banner-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.sb-icon {
    width: 76px;
    height: 76px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sb-icon svg {
    width: 56px;
    height: 56px;
    stroke: #0077fc;
}

.solution-banner-item h5 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.solution-banner-item p {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
}

.sb-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.25);
  margin: 0 40px;
  flex-shrink: 0;
}

/* ══════════════════════════════
   THE MOAT SECTION
══════════════════════════════ */
.moat-section {
  background: #fff;
  padding: 80px 0 80px;
}

.moat-header {
  text-align: center;
  margin-bottom: 40px;
}

.moat-title {
  font-size: 56px;
  font-weight: 900;
  color: #000;
  line-height: 1.1;
  margin-top: 16px;
}

.blue-italic {
  color: #0077fc;
  font-style: italic;
}

/* Big outer card */
.moat-card {
    border-radius: 24px;
    overflow: hidden;
    -webkit-box-shadow: 3px 3px 0px 5px #000000;
    box-shadow: 3px 3px 0px 5px #000000;
}

/* Tab bar */
.moat-tabs {
    display: flex;
    gap: 12px;
    padding: 20px 28px;
    background: #fff;
    justify-content: center;
    border-bottom: 1px solid;
}

.moat-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 20px;
    border: 2.5px solid #000;
    background: #fff;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.2s;
}

button.moat-tab img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(0);
}

.moat-tab.active img {
    filter: brightness(0) invert(1);
}

.moat-tab svg {
  width: 18px;
  height: 18px;
}

.moat-tab.active {
  background: #0077fc;
  border-color: #0077fc;
  color: #fff;
}

.moat-tab.active svg {
  stroke: #fff;
}

.moat-divider {
  border: none;
}

/* Content area */
.moat-content {
  display: flex;
  gap: 0;
  padding: 40px 40px 40px 40px;
  background: #fff;
  align-items: flex-start;
}

/* Left copy */
.moat-copy {
  flex: 0 0 38%;
  width: 38%;
  padding-right: 40px;
}

.moat-copy h3 {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  margin-bottom: 16px;
}

.moat-copy h3 .blue { color: #0077fc; }

.moat-desc {
    font-size: 18px;
    color: #000;
    line-height: 1.65;
    margin-bottom: 28px;
}

.moat-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.moat-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
}

.moat-feat-icon {
    width: 48px;
    height: 48px;
    background: #eef2ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.moat-feat-icon svg {
    width: 28px;
    height: 28px;
}

.moat-feature h5 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.moat-feature p {
    font-size: 16px;
    color: #000;
    line-height: 1.5;
}

.moat-feature-divider {
  border: none;
}

/* Right dashboard */
.moat-dashboard {
  flex: 1;
}

.moat-dash-img {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* Tab panel content switching */
.moat-panel {
  display: none;
}

.moat-panel.active {
  display: flex;
}

/* ══════════════════════════════
   COMPARISON SECTION
══════════════════════════════ */
.comparison-section {
  background: #fff;
  padding: 80px 0 60px;
}

.comparison-header {
  text-align: center;
  margin-bottom: 48px;
}

.comparison-title {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    line-height: 1.15;
    margin-top: 16px;
    margin-bottom: 12px;
}

.comparison-title .blue { color: #0077fc; }

.comparison-sub {
    font-size: 24px;
    color: #000;
    font-weight: 600;
}

/* Table layout */
.comparison-table-wrap {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  border: 1.5px solid #b0b7c3;
  padding: 0;
  gap: 0;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,0.18);
}

.comp-col {
  display: flex;
  flex-direction: column;
}

/* Labels column */
.comp-col-labels {
  flex: 0 0 200px;
  background: #fff;
  border-right: 1px solid #e5e7eb;
}

/* Cohorts.team column - elevated card */
.comp-col-cohorts {
  flex: 1;
  background: #1a56ff;
  border-radius: 0;
  border: none;
  position: relative;
  z-index: 2;
  margin: 0;
  box-shadow: none;
  transform: none;
}

/* Other columns */
.comp-col-other {
  flex: 1;
  background: #fff;
  border-left: 1px solid #e5e7eb;
}

.comp-col-other:last-child {
  border-right: none;
}

/* Header cells */
.comp-header-cell {
  padding: 28px 16px;
  font-size: 15px;
  font-weight: 700;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e5e7eb;
}

.comp-label-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.comp-cohorts-header {
  background: #1a56ff;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  flex-direction: column;
  text-align: center;
  padding: 12px 16px;
  min-height: 110px;
}

.comp-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comp-logo-text img {
  width: 120px;
  height: auto;
}

.comp-other-header {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
  line-height: 1.3;
}

/* Row labels */
.comp-row-label {
  padding: 18px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100px;
  gap: 8px;
  flex: 1;
}

.comp-row-label:last-child {
  border-bottom: none;
}

.comp-row-icon {
  width: 40px;
  height: 40px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comp-row-icon svg {
  width: 20px;
  height: 20px;
}

.comp-row-label span {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  text-align: center;
}

/* Data cells */
.comp-cell {
  padding: 18px 12px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100px;
  line-height: 1.4;
  flex: 1;
}

.comp-cell:last-child {
  border-bottom: none;
}

.comp-col-other .comp-cell {
  color: #222;
  border-bottom: 1px solid #e5e7eb;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.comp-col-other .comp-cell:last-child {
  border-bottom: none;
}

.comp-check {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comp-cross {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-cta {
    text-align: center;
    margin-top: 75px;
}

.btn-outline-dark {
  display: inline-block;
  border: 2px solid #000;
  border-radius: 50px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  box-shadow: 4px 4px 0px 0px #000;
  transform: translateY(0);
  transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.2s, color 0.2s;
  position: relative;
}

.btn-outline-dark:hover {
  background: #000;
  color: #fff;
  box-shadow: 2px 2px 0px 0px #000;
  transform: translate(2px, 2px);
}

.btn-outline-dark:active {
  box-shadow: 0px 0px 0px 0px #000;
  transform: translate(4px, 4px);
}

/* ══════════════════════════════
   NEED OF THE HOUR SECTION
══════════════════════════════ */
.noth-section {
    background: #0077fc;
    padding: 60px 0 60px;
    border-radius: 24px;
    margin: 20px;
}

/* Top row */
.noth-top {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
}

.noth-image-wrap {
  flex: 0 0 50%;
  width: 50%;
}

.noth-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.noth-copy {
  flex: 1;
}

.noth-title {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}

.noth-copy p {
    font-size: 24px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 14px;
}

.btn-white-outline {
    display: inline-block;
    border: 3px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    padding: 14px 36px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
    background: #0053b0;
    box-shadow: 4px 4px 0px 0px rgba(255,255,255,0.4);
    transform: translateY(0);
    transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.2s, color 0.2s;
    position: relative;
}

.btn-white-outline:hover {
    background: #fff;
    color: #0077fc;
    box-shadow: 2px 2px 0px 0px rgba(0,0,0,0.3);
    transform: translate(2px, 2px);
}

.btn-white-outline:active {
    box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.4);
    transform: translate(4px, 4px);
}

/* Bottom cards */
.noth-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.noth-cards img {
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.noth-card {
    border-radius: 25px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.noth-card-light {
    background: #fff;
    border: 1.5px solid rgba(255,255,255,0.25);
}

.noth-card-dark {
  background: rgba(0,0,0,0.25);
  border: 1.5px solid rgba(255,255,255,0.15);
}

.noth-card-tag {
    display: inline-block;
    border: 3px solid #000;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 700;
    color: #0077fc;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: #fff;
}

.noth-card-tag-light {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
}

.noth-card.noth-card-dark .noth-card-tag.noth-card-tag-light {
    background: transparent;
    border: 3px solid #000;
}

.noth-card.noth-card-dark h3 {
    color: #fff;
}

.noth-card.noth-card-dark p {
    color: #fff;
}

.noth-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    line-height: 1.25;
    margin-bottom: 14px;
}

.noth-card h3 .blue {
    color: #0077fc;
}

.noth-card p {
    font-size: 18px;
    color: #000;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 350px;
}

.btn-white-solid {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #000;
    transition: background 0.2s, color 0.2s;
}

.btn-white-solid:hover {
  background: transparent;
  color: #fff;
}

.noth-card-btn {
    display: inline-flex;
    align-items: center;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.noth-card-btn:hover {
  background: #fff;
  color: #0077fc;
}

/* Network diagram */
.noth-network-diagram {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 160px;
}

.noth-node {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noth-node-center {
  width: 64px;
  height: 64px;
  background: #0077fc;
  border: 3px solid rgba(255,255,255,0.3);
  bottom: 40px;
  right: 40px;
}

.noth-node-center svg { width: 28px; height: 28px; }

.noth-node-sm {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
}

.noth-node-sm svg { width: 18px; height: 18px; }

/* Calendar decoration */
.noth-calendar-deco {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

/* Dot pattern */
.noth-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.5;
}

/* ══════════════════════════════
   QUOTE SECTION
══════════════════════════════ */
.quote-section {
  background: #0077fc;
  padding: 50px 0;
}

.quote-text {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.65;
}

.quote-text .avatar-row {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin: 0 8px;
}

.quote-text .avatar-row .av {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: inline-block;
    margin-left: -8px;
    overflow: hidden;
    object-fit: cover;
}

.quote-text .avatar-row .av:first-child { margin-left: 0; }

/* ══════════════════════════════
   TOOLS SECTION
══════════════════════════════ */
.tools-section {
    background: #0077fc;
    padding: 40px 0 55px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 20px;
  align-items: center;
}

.tool-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.tool-icon-ps {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #001e36;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #31a8ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -1px;
  flex-shrink: 0;
}

/* Brand logo images in tools section */
.brand-logo {
  max-height: 36px;
  max-width: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
    background: #f0ece4;
    padding: 60px 0 0;
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    margin-inline: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Main footer body */
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 80px;
  gap: 40px;
}

/* Left column */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

/* Download Brochure link */
.footer-brochure-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-brochure-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid #0077fc;
    border-radius: 50%;
    color: #111;
    flex-shrink: 0;
    padding: 6px;
}

span.footer-brochure-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brochure-icon svg {
  width: 18px;
  height: 18px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
  overflow: hidden;
}

/* Instagram gradient */
.footer-social-link[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}

/* LinkedIn blue */
.footer-social-link[aria-label="LinkedIn"] {
  background: #0077b5;
  color: #fff;
}

.footer-social-link:hover {
  opacity: 0.85;
}

/* Big logo on the right */
.footer-logo-big {
  text-align: right;
  user-select: none;
  flex-shrink: 0;
}

.footer-logo-img {
  max-height: 275px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Mobile center section - hidden on desktop */
.footer-mobile-center {
  display: none;
}

/* Desktop: show legal links in bottom bar */
.footer-legal-desktop {
  display: flex;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.footer-copy {
    font-size: 18px;
    color: rgb(0 119 252);
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
  color: #111;
}

.footer-made-with {
    font-size: 18px;
    color: rgb(0 119 252);
}

.footer-heart {
  color: #e0245e;
}

/* ══════════════════════════════
   BACK TO TOP BUTTON
══════════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 52px;
  height: 52px;
  background: #0077fc;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(1,119,253,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 9999;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: #0053b0;
}

.comp-logo-text img {
  width: 150px;
  height: auto;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE STYLES
   Tablet  : max-width 1024px
   Mobile  : max-width 768px
   Small   : max-width 480px
══════════════════════════════════════════════════════ */

/* ─── TABLET (≤ 1024px) ─── */
@media (max-width: 1024px) {

  .box { margin: 12px; }

  .container { padding: 0 32px; }

  /* Header */
  .expert-label { display: none; }
  .avatar-circle { width: 38px; height: 38px; }

  /* Hero */
  .hero-text h1 { font-size: 56px; }
  .hero-text p  { font-size: 26px; }
  .btn-cta      { font-size: 17px; padding: 16px 34px; }
  .stat-badge .stat-num { font-size: 40px; }

  /* Problem */
  .problem-left h2 { font-size: 68px; }
  .problem-left blockquote { font-size: 19px; }

  /* Quote */
  .quote-text { font-size: 26px; }

  /* Process */
  .process-title { font-size: 42px; }
  .process-sub   { font-size: 17px; }
  .process-cta-text p { font-size: 17px; }

  /* Solution */
  .solution-title { font-size: 46px; }
  .solution-sub   { font-size: 20px; }
  .cohort-cards   { grid-template-columns: repeat(2, 1fr); }

  /* Moat */
  .moat-title { font-size: 42px; }
  .moat-tab   { font-size: 16px; padding: 10px 16px; }
  .moat-copy  { flex: 0 0 44%; width: 44%; }

  /* Comparison */
  .comparison-title { font-size: 44px; }
  .comparison-sub   { font-size: 18px; }
  .comp-col-labels  { flex: 0 0 140px; }

  /* Need of the Hour */
  .noth-title { font-size: 40px; }
  .noth-copy p { font-size: 16px; }
  .noth-top { gap: 36px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 24px; align-items: flex-start; }
  .footer-cta-col { grid-column: span 3; }
}

/* ─── MOBILE (≤ 768px) ─── */
@media (max-width: 768px) {

  .flip-view-more {
    font-size: 11px;
}

.comp-row-icon svg {
    width: 18px;
    height: 18px;
}

.comp-row-icon {
    width: 32px;
    height: 32px;
}

.comp-logo-text img {
  width: 70px;
  height: auto;
}

.flip-card {
    min-height: 275px;
}

.flip-card-inner {
    min-height: 275px;
}

  .box { margin: 8px; }

  .container { padding: 0 20px; }

  /* ── Header ── */
  .nav { padding: 12px 0; }
  /* Logo pill becomes just the circle on mobile */
.logo-pill {
    padding: 4px;
    gap: 0;
    /* border-radius: 50%; */
    flex-shrink: 0;
    height: 50px;
    width: 90px;
}

.logo-pill .logo-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
}

  .logo-icon { width: 50px; height: 50px; font-size: 10px; }
  .logo-text { display: none; }
  .nav-left { gap: 6px; flex: 1; min-width: 0; }
  .expert-avatars { display: flex; margin-left: 2px; flex-shrink: 0; }
  .avatar-circle { width: 40px; height: 40px; border: 2.5px solid #000; margin-left: -9px; }
  .expert-avatars .avatar-circle:first-child { margin-left: 0; }
  .expert-label   { display: inline; font-size: 12px; font-weight: 600; margin-left: 0; color: #fff; white-space: nowrap; }
  .nav-right { width: 38px; height: 38px; flex-shrink: 0; margin-left: 4px; }

  /* ── Hero ── */
  .hero { padding: 20px 0 40px; }
  .hero-body { flex-direction: column; gap: 24px; }
  .hero-text { flex: unset; width: 100%; padding-right: 0; text-align: left; }
  .hero-text h1 { font-size: 72px; white-space: normal; font-weight: 800; line-height: 1.0; margin-bottom: 18px; }
  .hero-text p  { font-size: 22px; font-weight: 600; margin-bottom: 28px; line-height: 1.4; }
  .btn-cta      { font-size: 18px; padding: 16px 32px; border-radius: 14px; border: 3px solid #000; display: inline-block; }
  .hero-image-wrap { flex: unset; width: 100%; padding-left: 0; }
  .stat-badge { left: 14px; bottom: 18px; padding: 14px 18px; border-radius: 16px; }
  .stat-badge .stat-num   { font-size: 40px; }
  .stat-badge .stat-label { font-size: 13px; }

  /* ── Problem ── */
  .problem { padding: 30px 0 50px; }
  .problem-inner { flex-direction: column; gap: 28px; }
  .problem-left  { flex: unset; width: 100%; padding-right: 0; }
  .problem-right { flex: unset; width: 100%; }
  .section-divider { margin-bottom: 24px; }
  /* Tag pill centered on mobile */
  .problem-left .tag-pill { display: block; text-align: center; margin-left: auto; margin-right: auto; width: fit-content; border-radius: 50px; }
  .problem-left .sub { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
  .problem-left h2  { font-size: 64px; line-height: 1.0; margin-bottom: 24px; }
  .problem-left blockquote { font-size: 18px; line-height: 1.6; }
  /* Cost cards full width */
  .cost-card { border-radius: 16px; padding: 16px 20px; gap: 14px; }
  .cost-icon { width: 52px; height: 52px; border-radius: 12px; }
  .cost-icon svg { width: 26px; height: 26px; }
  .cost-info h4 { font-size: 18px; }
  .cost-info p  { font-size: 14px; }

  /* ── Quote ── */
  .quote-section { padding: 28px 0 0; }
  .quote-text { font-size: 20px; font-weight: 700; line-height: 1.55; }
  .quote-text .avatar-row { margin: 0 4px; }
  .quote-text .avatar-row .av { width: 44px; height: 44px; border: 2.5px solid #fff; margin-left: -10px; }
  .quote-text .avatar-row .av:first-child { margin-left: 0; }

  /* ── Tools ── */
  .tools-section { padding: 24px 0 36px; }
  .tools-grid { grid-template-columns: repeat(4, 1fr); gap: 16px 12px; }
  .tool-item { flex-direction: column; gap: 6px; font-size: 11px; padding: 10px 6px; }
  .tool-icon-ps { width: 32px; height: 32px; font-size: 12px; }
  .brand-logo { max-height: 28px; max-width: 70px; }

  /* ── Process ── */
  .process-section { padding: 40px 0 36px; }
  .process-header { margin-bottom: 32px; }
  .process-title { font-size: 40px; font-weight: 900; line-height: 1.1; }
  .process-sub   { font-size: 16px; line-height: 1.6; }
  /* Vertical timeline layout */
  .process-steps { flex-direction: column; align-items: stretch; gap: 0; margin-bottom: 32px; position: relative; padding-left: 52px; }
  .process-connector { display: none; }
  .process-step {
    max-width: 100%;
    width: 100%;
    border: 1.5px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px 20px 20px 20px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
  }
  /* Step number as left-side circle */
  .step-num {
    position: absolute;
    left: -52px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    font-size: 16px;
    border: 2px solid #000;
  }
  /* Icon wrap as circle with light blue bg */
  .step-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #e8f0fe;
    flex-shrink: 0;
    margin: 0;
  }
  .step-icon-wrap svg { width: 28px; height: 28px; }
  .process-step h4 { font-size: 18px; margin-bottom: 6px; }
  .process-step p  { font-size: 14px; }
  /* CTA banner */
  .process-cta-banner { flex-direction: column; text-align: left; padding: 24px 20px; gap: 16px; border-radius: 16px; border: none; align-items: flex-start; }
  .process-cta-icon { width: 56px; height: 56px; border: none; flex-shrink: 0; }
  .process-cta-icon svg { width: 28px; height: 28px; }
  .process-cta-text p { font-size: 14px; }
  .process-cta-btn { width: auto; justify-content: center; white-space: nowrap; font-size: 14px; padding: 14px 20px; border-radius: 10px; border: 2px solid #000; flex-shrink: 0; }

  /* ── Solution ── */
  .solution-section { padding: 40px 0 0; }
  .solution-header { margin-bottom: 32px; }
  .solution-title { font-size: 40px; font-weight: 900; line-height: 1.1; }
  .solution-sub   { font-size: 16px; color: #666; line-height: 1.6; }
  /* 2-column grid for cohort cards */
  .cohort-cards   { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 28px; }
  .cohort-card { padding: 12px; border-radius: 14px; border: 1.5px solid #000; overflow: hidden; min-width: 0; }
  .cohort-avatars { padding: 5px 6px; border-radius: 8px; margin-bottom: 12px; overflow: hidden; }
  .cav { width: 28px; height: 28px; margin-left: -7px; }
  .cav:first-child { margin-left: 0; }
  .cohort-count { font-size: 11px; margin-left: 6px; }
  .cohort-body { gap: 8px; flex-direction: column; }
  .cohort-icon { width: 40px; height: 40px; border-radius: 50%; background: #e8f0fe; flex-shrink: 0; }
  .cohort-icon svg { width: 20px; height: 20px; }
  .cohort-body h4 { font-size: 15px; margin-bottom: 3px; }
  .cohort-body p  { font-size: 12px; line-height: 1.4; }
  /* CTA card */
  .cohort-cta-card { padding: 20px 12px; min-height: 140px; }
  .cohort-cta-icon { width: 40px; height: 40px; border-radius: 50%; background: #e8f0fe; }
  .cohort-cta-card p { font-size: 14px; }
  /* Bottom banner - horizontal row */
  .solution-banner { flex-direction: row; padding: 20px 16px; gap: 0; border-radius: 16px; align-items: flex-center; }
  .solution-banner-item { flex: 1; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .sb-icon { width: 44px; height: 44px; }
  .sb-icon svg { width: 28px; height: 28px; }
  .solution-banner-item h5 { font-size: 12px; margin-bottom: 2px; }
  .solution-banner-item p  { font-size: 11px; line-height: 1.4; }
  .sb-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.25); margin: 0 8px; flex-shrink: 0; }

  /* ── Moat ── */
  .moat-section { padding: 40px 0 40px; }
  .moat-header { margin-bottom: 28px; }
  .moat-title { font-size: 36px; font-weight: 900; }
  /* Tab bar - horizontal scroll, 3 visible tabs */
  .moat-tabs  { flex-wrap: nowrap; gap: 8px; padding: 14px 16px; overflow-x: auto; justify-content: flex-start; border-bottom: 1px solid #e0e0e0; -webkit-overflow-scrolling: touch; }
  .moat-tabs::-webkit-scrollbar { display: none; }
  .moat-tab   { font-size: 13px; padding: 10px 14px; border-radius: 50px; white-space: nowrap; flex-shrink: 0; border: 1.5px solid #e0e0e0; }
  .moat-tab.active { background: #0077fc; border-color: #0077fc; color: #fff; }
  /* Card */
  .moat-card { border-radius: 16px; box-shadow: 2px 2px 0px 3px #000; }
  /* Content - stacked: copy first, then dashboard image */
  .moat-content { flex-direction: column; padding: 24px 20px; gap: 24px; }
  .moat-copy  { flex: unset; width: 100%; padding-right: 0; }
  .moat-copy h3 { font-size: 22px; font-weight: 800; text-align: center; }
  .moat-desc  { font-size: 14px; text-align: center; margin-bottom: 20px; }
  /* Features list */
  .moat-features { gap: 0; }
  .moat-feature { padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
  .moat-feature:last-child { border-bottom: none; }
  .moat-feat-icon { width: 44px; height: 44px; border-radius: 50%; background: #e8f0fe; }
  .moat-feat-icon svg { width: 22px; height: 22px; }
  .moat-feature h5 { font-size: 15px; }
  .moat-feature p  { font-size: 13px; }
  /* Dashboard image */
  .moat-dashboard { width: 100%; }
  .moat-dash-img { border-radius: 12px; }

  /* ── Comparison ── */
  .comparison-section { padding: 40px 0 36px; }
  .comparison-header { margin-bottom: 32px; }
  .comparison-title { font-size: 36px; font-weight: 900; line-height: 1.1; }
  .comparison-sub   { font-size: 15px; font-weight: 600; }
  /* Table - Cohorts column elevated/highlighted */
  .comparison-table-wrap { border-radius: 16px; border: none; position: relative; background: transparent; margin-bottom: 32px; padding: 0; }
  .comp-col { border: none; }
  .comp-col-labels { flex: 0 0 100px; background: transparent; border-right: none; }
  .comp-col-cohorts { flex: 1; background: #0077fc; border-radius: 16px; border: none; position: relative; z-index: 2; box-shadow: 0 4px 20px rgba(1,119,253,0.3); }
  .comp-col-other { flex: 1; background: #f8f9fa; border-right: none; }
  .comp-col-other:last-child { border-right: none; }
  .comp-row-label   { font-size: 11px; padding: 10px 8px; min-height: 44px; color: #000; }
  .comp-cell        { font-size: 11px; padding: 10px 8px; min-height: 44px; }
  .comp-col-other .comp-cell { color: #333; border-bottom-color: #e8e8e8; font-size: 11px; }
  .comp-header-cell { padding: 16px 8px; font-size: 11px; min-height: 80px; border-bottom: none; }
  .comp-label-header { background: transparent; }
  .comp-cohorts-header { background: #0077fc; border-radius: 16px 16px 0 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .comp-logo-text { font-size: 16px; font-style: italic; }
  .comp-other-header { background: #f8f9fa; color: #333; font-size: 11px; }
  /* CTA button */
  .comparison-cta { margin-top: 8px; }
  .btn-outline-dark { font-size: 16px; padding: 16px 40px; border-radius: 50px; }

  /* ── Need of the Hour ── */
  .noth-section { padding: 0 0 36px; margin: 8px; border-radius: 20px; }
  /* Top: image full width, then title+text side by side */
  .noth-top { flex-direction: column; gap: 0; margin-bottom: 28px; }
  .noth-image-wrap { flex: unset; width: 100%; }
  .noth-img { object-fit: cover; object-position: top center; }
  /* Title + copy side by side below image */
  .noth-copy { flex: unset; display: flex; flex-wrap: wrap; gap: 0; padding: 20px 0 0; }
  .noth-title { font-size: 36px; font-weight: 800; line-height: 1.1; margin-bottom: 12px; padding-right: 12px; }
  .noth-copy p { font-size: 13px; line-height: 1.5; margin-bottom: 10px; }
  .btn-white-outline { font-size: 14px; padding: 10px 20px; margin-top: 8px; flex: 0 0 45%; text-align: center; }
  /* Bottom cards */
 .noth-cards {
    gap: 16px;
    display: flex;
    flex-direction: column-reverse;
}

  .noth-card  { min-height: auto; padding: 0px; border-radius: 12px; }
  .noth-card h3 { font-size: 22px; line-height: 1.3; }
  .noth-card p  { font-size: 14px; max-width: 100%; margin-bottom: 16px; }
  .noth-card-tag { font-size: 12px; padding: 6px 14px; margin-bottom: 14px; }
  /* Show calendar decoration on mobile */
  .noth-calendar-deco { display: block; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); opacity: 0.2; }
  .noth-network-diagram { display: none; }
  .noth-dots { display: block; }

  /* ── Footer ── */
.site-footer {
    padding: 40px 0 0;
    margin: 25px 8px 0;
    border-radius: 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.footer-brochure-icon {
    width: 28px;
    height: 28px;
    padding: 4px;
}

  /* Mobile: logo top-left, brochure top-right */
  .footer-main {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 0;
    gap: 0;
  }

  .footer-logo-big {
    text-align: left;
    order: 1;
  }

  .footer-logo-img {
    max-height: 75px;
  }

  .footer-brochure-link {
    font-size: 13px;
    font-weight: bolder;
    color: #000;
    gap: 5px;
}

  .footer-left {
    order: 2;
    align-items: flex-end;
    gap: 16px;
    padding-top: 8px;
  }

  /* Dashed divider line */
  .footer-main::after {
    content: '';
    display: block;
    width: 100%;
    order: 3;
    border-top: 2px dashed #000;
    margin: 24px 0 20px;
  }

  /* Mobile: links + socials centered below divider */
  .footer-mobile-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    order: 4;
    padding-bottom: 24px;
  }

  /* Hide desktop socials on mobile (they show in mobile-center instead) */
  .footer-left .footer-socials {
    display: none;
  }

  /* Hide desktop legal links in bottom bar on mobile */
  .footer-legal-desktop {
    display: none;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    text-align: left;
    padding: 14px 0;
  }

  .footer-legal {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .footer-legal a {
    font-size: 14px;
    font-weight: 500;
  }

  .footer-mobile-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
  }
}

/* ─── SMALL MOBILE (≤ 480px) ─── */
@media (max-width: 480px) {

  .comp-row-label span {
    font-size: 12px;
}

.tag-pill-dark {
    border: 2px solid #000;
    padding: 6px 16px;
    font-size: 12px;
}

.tag-pill-blue {
    padding: 6px 16px;
    font-size: 12px;
    border: 2px solid #000;
}

.comp-col-other .comp-cell svg, .comp-cell.comp-check svg {
    width: 16px;
    height: 16px;
}

  .container { padding: 0 16px; }

  /* Hero */
  .hero-text h1 { font-size: 34px; }
  .hero-text p  { font-size: 17px; }

  /* Problem */
  .problem-left h2 { font-size: 48px; }

  /* Tools */
  .tools-grid { grid-template-columns: repeat(4, 1fr); }

  /* Process */
  .process-title { font-size: 26px; }

  /* Solution */
  .solution-title { font-size: 28px; }

  /* Moat */
  .moat-title { font-size: 26px; }
  .moat-tab   { font-size: 12px; padding: 7px 10px; }

  /* Comparison */
  .comparison-title { font-size: 24px; }
  .comp-col-labels  { flex: 0 0 90px; }

  /* Footer */
  .footer-top { grid-template-columns: 100%; display: grid; }
  .footer-links-group { grid-column: unset; }

  .footer-copy {
    font-size: 10px;
}

.footer-made-with {
    font-size: 10px;
}
}
