/* ── HERO WRAPPER ── */
.hero {
  width: 100%;
  height: calc(100vh - 65px);
  overflow: hidden;
  position: relative;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  animation: fadeLoop 6s infinite linear;
}

@keyframes fadeLoop {
  0% {
    opacity: 0.1;
  }

  95% {
    opacity: 0.1;
  }

  100% {
    opacity: 0.08;
  }
}

.inner-hero {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* ── LEFT PANEL ── */
.hero-left {
  flex: 0 0 54%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  z-index: 2;
  margin: 0 10px;

  /* Diagonal right edge */
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0 100%);
}

.hero-content {
  max-width: 560px;
  animation: slideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* CHOICE badge */
.badge {
  display: inline-block;
  border: 1px solid #adadad;
  background: #ffe5e5;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 32px;
  animation: fadeIn 0.6s ease 0.2s both;
}

/* Heading */
.hero-heading {
  font-size: clamp(38px, 44px, 62px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--text-dark);
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  animation: slideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero-heading em {
  font-style: normal;
  color: var(--crimson);
  font-weight: 700;
}

/* Subtext */
.hero-sub {
  font-size: clamp(15px, 1.6vw, 24px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 44px;
  max-width: 500px;
  animation: slideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.hero-sub strong {
  font-weight: 700;
  color: var(--text-dark);
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--crimson);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  animation: slideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.btn-cta:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px);
}

.btn-cta svg {
  transition: transform 0.2s;
}

.btn-cta:hover svg {
  transform: translateX(4px);
}

/* ── RIGHT PANEL ── */
.hero-right {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-position: center 20%;
  display: block;
  animation: zoomIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.family-poster img {
  width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
  animation: fadeIn 1.2s ease both;
}

.welfare-section {
  background: #ffffff;
  padding: 80px 20px;
}

.welfare-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Side - Video */
.welfare-media {
  flex: 1;
  min-width: 300px;
}

.welfare-media video {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Right Side - Text */
.welfare-content {
  flex: 1;
  min-width: 300px;
}

.welfare-content p {
  font-size: 26px;
  line-height: 1.4;
  color: #000000;
  font-weight: 300;
}

.welfare-content strong {
  font-weight: 600;
}

.citizen-section {
  background: #eeeded;
  padding: 80px 20px;
}

.citizen-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Left */
.citizen-left {
  flex: 1;
  min-width: 320px;
}

.citizen-left h2 {
  font-size: 38px;
  font-weight: 400;
  color: #740f0f;
  line-height: 130%;
  margin-bottom: 20px;
}

.citizen-left p {
  font-size: 20px;
  color: #555;
  max-width: 450px;
  line-height: 1.6;
}

.citizen-right {
  flex: 1.3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  min-width: 320px;
}

.stage-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  transition: 0.3s ease;
  border: 1px solid #e5e5e5;
}

.stage-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Header */
.stage-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon circle */
.stage-icon {
  width: 40px;
  height: 40px;
  background: #e8e6e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #740f0f;
  font-size: 16px;
}

/* Stage label */
.stage-label {
  font-size: 11px;
  color: #a44;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* Title */
.stage-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

/* Divider */
.stage-card hr {
  border: none;
  border-top: 2px solid #cecece;
  margin: 12px 0;
}

/* Custom bullets */
.stage-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stage-card li {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.stage-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1.5px solid #999;
  position: absolute;
  left: 0;
  top: 7px;
}

/* Bottom logos */
.stage-logos {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
}

.stage-logos img {
  height: 30px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .citizen-container {
    flex-direction: column;
  }

  .citizen-right {
    grid-template-columns: 1fr;
  }

  .citizen-left h2 {
    font-size: 32px;
  }
}

/* ── ANIMATIONS ── */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(1.06);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: auto;
  }

  .inner-hero {
    flex-direction: column;
    height: auto;
  }

  .hero-left {
    flex: none;
    clip-path: none;
    padding: 60px 40px 50px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-right {
    height: 50vw;
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .hero-left {
    padding: 48px 24px 44px;
  }

  .hero-left::before {
    display: none;
  }

  .hero-heading {
    font-size: 34px;
  }

  .hero-right {
    height: 65vw;
  }
}

/* ══════════════════════════════════════
       LAST-MILE GAP SECTION
    ══════════════════════════════════════ */
.gap-section {
  width: 100%;
  background: #f5f4f1;
  padding: 60px 40px 80px;
  display: flex;
  justify-content: center;
}

/* Card wrapper */
.gap-card {
  width: 100%;
  max-width: 1260px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 64px 60px;
  gap: 40px;
}

/* ── LEFT col ── */
.gap-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gap-heading {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--crimson);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.gap-body {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 44px;
}

/* Pain Points block */
.pain-block {
  border-left: 3px solid var(--crimson);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 0px 4px 0px #00000040;
}

.pain-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  padding: 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: max-content;
  gap: 14px 30px;
  padding: 0;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #333;
  line-height: 1.5;
}

/* Custom empty checkbox */
.pain-item .chk {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #740f0f;
  border-radius: 3px;
  margin-top: 2px;
  background: #fff;
}

/* ── RIGHT col: photo ── */
.gap-right {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  min-height: 380px;
}

.gap-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  border-radius: 14px;
  transition: transform 0.5s ease;
}

.gap-right:hover img {
  transform: scale(1.03);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .gap-card {
    flex-direction: column;
    padding: 48px 36px;
    gap: 40px;
  }

  .gap-left {
    flex: none;
  }

  .gap-right {
    min-height: 280px;
  }
}

@media (max-width: 600px) {
  .gap-section {
    padding: 40px 16px 60px;
  }

  .gap-card {
    padding: 36px 24px;
    border-radius: 14px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gap-right {
    min-height: 220px;
  }
}

/* ══════════════════════════════════════
       WHAT IS CHOICE? SECTION
    ══════════════════════════════════════ */
.choice-section {
  width: 100%;
  background: #fff;
  padding: 80px 40px 90px;
  display: flex;
  justify-content: center;
}

.choice-inner {
  width: 100%;
  /* max-width: 1260px; */
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Left col */
.choice-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
}

.choice-heading {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--crimson);
  margin-bottom: 16px;
  line-height: 1.1;
}

/* Tabs nav */
.choice-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  /* border-bottom: 1.5px solid #e5e0d8; */
  margin-bottom: 15px;
}

.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #888;
  padding: 10px 10px 10px;
  position: relative;
  transition: color 0.2s;
}

.tab-btn:first-child {
  padding-left: 0;
}

.tab-btn.active {
  color: var(--crimson);
}

/* .tab-btn.active::after {
      content: "";
      position: absolute;
      bottom: -1.5px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--crimson);
      border-radius: 2px 2px 0 0;
    } */

.tab-btn:first-child.active::after {
  left: 0;
}

.tab-btn:hover {
  color: var(--crimson);
}

/* Tab panels */
.tab-panel {
  display: none;
  animation: tabFadeIn 0.3s ease both;
}

.tab-panel.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Body text */
.choice-body {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  margin-bottom: 20px;
}

/* Solutions block */
.solutions-block {
  border-left: 3px solid var(--crimson);
  padding: 20px;
  border-radius: 10px;
}

.solutions-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--crimson);
  margin-bottom: 20px;
}

.solutions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.sol-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.sol-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--crimson);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.sol-check svg {
  display: block;
}

/* CTA */
.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--crimson);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 30px;
  width: fit-content;
  transition:
    background 0.2s,
    transform 0.2s;
}

.btn-demo:hover {
  background: var(--crimson-dark);
}

/* Right col – mockup card */
.choice-right {
  flex: 1;
  background: #f0eeeb;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.mockup-wrap {
  width: 100%;
  /* display: flex;
      gap: 16px;
      align-items: flex-start;
      justify-content: center; */
}

.mockup-wrap img {
  width: 100%;
}

.mockup-phone {
  width: 200px;
  flex-shrink: 0;
  background: #111;
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mockup-phone img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.mockup-dashboard {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.mockup-dashboard img {
  width: 100%;
  display: block;
}

/* Placeholder dashboard UI */
.dash-placeholder {
  width: 100%;
  padding: 16px;
}

.dash-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.dash-stat {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 10px;
}

.dash-stat-label {
  font-size: 8px;
  color: #999;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.dash-stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.dash-stat-sub {
  font-size: 8px;
  color: #aaa;
}

.dash-chart-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dash-chart {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 10px;
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.dash-bar {
  background: var(--crimson);
  border-radius: 2px 2px 0 0;
  flex: 1;
  opacity: 0.7;
}

.dash-donut {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 10px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dash-percent {
  font-size: 20px;
  font-weight: 700;
  color: var(--crimson);
}

@media (max-width: 960px) {
  .choice-inner {
    flex-direction: column;
    gap: 40px;
  }

  .choice-left {
    flex: none;
  }

  .choice-right {
    min-height: 320px;
  }

  .mockup-phone {
    width: 140px;
  }
}

@media (max-width: 600px) {
  .choice-section {
    padding: 60px 16px 70px;
  }

  .choice-tabs {
    gap: 0;
  }

  .tab-btn {
    font-size: 10px;
    padding: 8px 10px 10px;
  }

  .mockup-wrap {
    flex-direction: column;
    align-items: center;
  }

  .mockup-phone {
    width: 160px;
  }
}

/* ══════════════════════════════════════
       RESULTS SECTION
    ══════════════════════════════════════ */
.results-section {
  width: 100%;
  background-image: url("../images/result-bg.png");
  padding: 160px 40px;
  position: relative;
  overflow: hidden;
  background-position: bottom;
  background-size: contain;
}

/* Network dot texture overlay */
.results-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle,
      rgba(180, 20, 20, 0.18) 1px,
      transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Glowing red orb bottom-left */
.results-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(160, 20, 20, 0.55) 0%,
      transparent 70%);
  pointer-events: none;
}

.results-inner {
  max-width: 1260px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.results-top {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 64px;
}

.results-heading {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  color: #fff;
  line-height: 1.12;
  flex: 0 0 44%;
  margin: 0;
}

.results-sub {
  font-size: clamp(15px, 1.5vw, 28px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  font-weight: 400;
  flex: 1;
}

/* Stats cards row */
.results-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.result-card {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 100%);

  border: 1px solid #ffffff1a;
  border-radius: 20px;
  padding: 28px 24px 32px;
  backdrop-filter: blur(6px);
  transition:
    background 0.25s,
    transform 0.25s;
}

.result-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.result-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.result-card-value {
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.result-card-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

@media (max-width: 900px) {
  .results-top {
    flex-direction: column;
    gap: 24px;
  }

  .results-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .results-section {
    padding: 70px 20px;
  }

  .results-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .result-card {
    padding: 22px 18px 26px;
  }
}

/* ══════════════════════════════════════
       TESTIMONIALS SECTION  (SwiperJS)
    ══════════════════════════════════════ */
.testi-section {
  width: 100%;
  background: #ffffff;
  padding: 90px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.testi-header {
  text-align: center;
  margin-bottom: 35px;
  padding: 0 40px;
}

.testi-heading {
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 400;
  color: #464646;
  line-height: 1.15;
  margin-bottom: 14px;
}

.testi-heading em {
  font-style: normal;
  color: var(--crimson);
  font-weight: 700;
}

.testi-sub {
  font-size: clamp(14px, 1.4vw, 18px);
  color: #464646;
  font-weight: 300;
  margin: 0 auto;
  line-height: 1.6;
}

/* Swiper wrapper */
.testi-swiper {
  width: 100%;
  max-width: 1300px;
  padding: 10px 40px 60px !important;
}

/* Individual card */
.testi-card {
  height: 100%;
  width: 100%;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.swiper-slide-active .testi-card {
  background: #fff;
  box-shadow: 0px 4px 20px 0px #0000001f;
  transform: scale(1.02);
  z-index: 2;
}

.testi-quote {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  font-weight: 400;
  margin-bottom: 28px;
  flex: 1;
}

/* Author row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #e8e4de;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.testi-name {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 3px;
}

.testi-role {
  font-size: 12.5px;
  color: #888;
}

/* Pagination — pill style */
.testi-swiper .swiper-pagination {
  bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.testi-swiper .swiper-pagination-bullet {
  width: 28px;
  height: 7px;
  border-radius: 4px;
  background: #d0ccc6;
  opacity: 1;
  transition:
    background 0.25s,
    width 0.25s;
  margin: 0 !important;
}

.testi-swiper .swiper-pagination-bullet-active {
  background: var(--crimson);
  width: 40px;
}

.testi-swiper .swiper-slide {
  height: auto;
  display: flex;
}

@media (max-width: 580px) {
  .testi-section {
    padding: 70px 0 60px;
  }

  .testi-header {
    padding: 0 16px;
  }

  .testi-swiper {
    padding: 10px 16px 60px !important;
  }
}

/* ══════════════════════════════════════
       LOGO STRIP SECTION  (SwiperJS autoplay)
    ══════════════════════════════════════ */
.logos-section {
  width: 100%;
  background: #ffffff;
  padding: 28px 0;
  border-top: 1px solid #ece9e3;
  border-bottom: 1px solid #ece9e3;
  overflow: hidden;
}

.logos-swiper {
  width: 100%;
}

/* Each slide = one logo pill/block */
.logo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.logo-slide img {
  width: 150px;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity 0.2s;
  opacity: 0.82;
}

.logo-pill:hover {
  opacity: 1;
}

/* Style variants to match the screenshot */
.logo-pill--dark {
  background: #1e2d4a;
}

.logo-pill--plain {
  background: transparent;
}

.logo-pill__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.logo-pill__icon--rounded {
  border-radius: 10px;
}

.logo-pill__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Dark pill text */
.logo-pill--dark .logo-pill__name {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

/* Disable default swiper pagination/nav for this instance */
.logos-swiper .swiper-wrapper {
  align-items: center;
}

/* footer {
  background: #000;
  width: 100%;
  padding: 60px 80px 0;
} */

/* ── Top section ── */
.footer-top {
  display: grid;
  grid-template-columns: 280px repeat(5, 1fr);
  gap: 40px;
  padding-bottom: 50px;
}

/* Brand column */
footer .brand h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
}

.brand p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 240px;
}

.socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: #1e2939;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.social-btn:hover {
  background: #2e3240;
}

.social-btn svg {
  width: 15px;
  height: 15px;
  fill: var(--text-muted);
}

/* Nav columns */
footer .nav-col h3 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-left: 0px !important;
}

footer .nav-col ul li a {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-col ul li a:hover {
  color: #fff;
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Bottom section ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 0;
}

.copyright {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 300;
}

.legal-links {
  display: flex;
  gap: 28px;
}

.legal-links a {
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: #fff;
}

/* ── Patent note ── */
.patent {
  text-align: center;
  padding: 14px 0 30px;
  font-size: 11.5px;
  color: #555b68;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .brand {
    grid-column: span 3;
    /* full width */
  }

  .brand p {
    max-width: 100%;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .brand {
    text-align: center;
  }

  .brand p {
    margin: 0 auto 20px;
  }

  .socials {
    justify-content: center;
  }

  .nav-col {
    text-align: center;
  }

  .nav-col ul {
    align-items: center;
  }

  /* Bottom section */
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .patent {
    font-size: 11px;
    padding: 12px 10px 25px;
  }
}


.badge.primus_impact2 {
  background: #FFE5E5;
  padding: 10px 20px;
}

/* ── Header ── */
.integrated-climate-solution-title {
  text-align: center;
  margin-bottom: 56px;
  animation: fadeUp 0.7s ease both;
}

.integrated-climate-solution-title h1 {
  font-size: 46px;
  font-weight: 400;
  color: #780202;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.integrated-climate-solution-title p {
  font-size: 1.05rem;
  font-weight: 300;
  color: #000;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.integrated-climate-solution-section {
  background: #F5F4F1;
  padding: 80px 0px;
}

/* ── Grid ── */
.integrated-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

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

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

/* ── Card ── */
.integrated-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.7s ease both;
  padding: 20px;
}

.integrated-card:nth-child(1) {
  animation-delay: 0.1s;
}

.integrated-card:nth-child(2) {
  animation-delay: 0.22s;
}

.integrated-card:nth-child(3) {
  animation-delay: 0.34s;
}

.integrated-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

/* ── Image area ── */
.integrated-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ddd8cc;
  position: relative;
  border-radius: 8px;
}

.integrated-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.integrated-card:hover .card-image img {
  transform: scale(1.04);
}

/* ── Placeholder illustrations (SVG) for each card ── */
.integrated-card-image svg {
  width: 100%;
  height: 100%;
}

/* ── Card body ── */
.integrated-card-body {
  padding: 28px 0px;
  padding-bottom: 0px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.integrated-card-title {
  font-size: 26px;
  font-weight: 400;
  color: #780202;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.integrated-card-tagline {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.45;
}

.integrated-card-meta {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.meta-row {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #7e7e7e;
}

.meta-row strong {
  font-weight: 700;
}

.meta-row.problem strong {
  color: #780202;
}

.meta-row.solution strong {
  color: #007C15;
}

/* ── Animation ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}