/* =========================
   FONT FACE
========================= */
@font-face {
  font-family: "Fanlste";
  src: url("../fonts/fanlste.otf") format("opentype");
}

@font-face {
  font-family: "General Sans Regular";
  src: url("../fonts/GeneralSans-Regular.otf") format("opentype");
}

@font-face {
  font-family: "General Sans Medium";
  src: url("../fonts/GeneralSans-Medium.otf") format("opentype");
}

@font-face {
  font-family: "General Sans Semibold";
  src: url("../fonts/GeneralSans-Semibold.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Light Italic";
  src: url("../fonts/BwGradualDEMO-LightItalic.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Regular";
  src: url("../fonts/BwGradualDEMO-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Bold";
  src: url("../fonts/BwGradualDEMO-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Bold Italic";
  src: url("../fonts/BwGradualDEMO-BoldItalic.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Medium";
  src: url("../fonts/BwGradualDEMO-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Amsterdam Handwriting Regulat";
  src: url("../fonts/Amsterdam\ Handwriting_Regular.ttf") format("opentype");
}




/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "General Sans", system-ui, sans-serif;
  background: #fff;
}

/* =========================
   HERO LAYOUT
========================= */
.hero {
  position: relative;
  height: auto;
  overflow: hidden;
  margin-bottom: 20dp;

  padding-top: 92px;
  display: flex;
  flex-direction: column;
}



/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  padding: 16px 20px 8px;
}

.header-container {
  max-width: 960px;
  width: auto;
  margin: 0 auto;
  height: 68px;
  padding: 0 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 999px;
  border: 0.5px solid rgba(0, 0, 0, 0.05);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.logo {
  font-family: "Fanlste";
  font-size: 26px;
  text-decoration: none;
  color: #000;
}

.logo:hover,
.logo:focus,
.logo:active {
  text-decoration: none;
  color: #000;
}

.menu-toggle{
  display:none;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: #777;
  text-decoration: none;
}

.nav a.active {
  font-weight: 600;
  color: #000;
}


/* CTA */
/* .cta {
  display: flex;
  align-items: center;
  gap: 10px;

  height: 44px;
  padding: 6px 18px 6px 6px;

  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.cta-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon img {
  width: 16px;
  height: 16px;
} */




/* =========================
   CLIENT CLUB
========================= */

.client-club-section {
  max-width: 100%;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

/* Title */
.club-title {
  font-size: 40px;
  font-weight: 100;
  line-height: 1.3;
}

.club-title .regular {
  font-family: "Bw Gradual DEMO Medium";
  color: rgba(20,20,20,1);
}

.club-title .italic {
  font-family: "Bw Gradual DEMO Bold Italic";
  color: rgba(20,20,20,1);
}

/* Desc */
.club-desc {
  margin-top: 10px;
  font-family: "General Sans Regular";
  font-size: 12px;
  color: rgba(116,113,114,1);
  margin-bottom: 40px;
}

/* Marquee area */
.club-marquee {
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
}

/* Row */
.marquee-row {
  overflow: hidden;
  width: 100%;
}

/* Track */
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
}

/* Images */
.marquee-track img {
  width: 350px;
  height: 204px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

/* Animations */
.marquee-row.left .marquee-track {
  animation: scrollLeft 35s linear infinite;
}

.marquee-row.right .marquee-track {
  animation: scrollRight 35s linear infinite;
}

/* Keyframes */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}











/* =========================
   CASE STUDY SECTION
========================= */

.case-study-section1 {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.case-pill {
  margin: 0 auto 14px;
  font-family: "General Sans Medium";
}

/* Glass pill */
.story-glass-pill {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;

  padding: 8px 15px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  border: 0.5px solid rgba(0, 0, 0, 0.099);

  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  overflow: hidden;
}

/* Keep text/icons above blobs */
.story-glass-pill > * {
  position: relative;
  z-index: 5;
}

.story-glass-pill span {
  font-family: "General Sans Medium";
  font-size: 13px;
  color: rgba(20, 20, 20, 1);
  font-weight: 100;
}

.story-glass-pill img {
  width: 14px;
  height: 14px;
}

/* =========================
   CLEAR LIQUID BLOBS
========================= */

.story-glass-pill::before {
  content: "";
  position: absolute;

  width: 30px;
  height: 16px;
  border-radius: 50%;
  background: transparent;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.12);

  filter: blur(1.5px);
  top: -10px;
  left: 12px;
  z-index: 1;
}

.story-glass-pill span::before {
  content: "";
  position: absolute;

  width: 30px;
  height: 12px;
  border-radius: 50%;
  background: transparent;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 1px 4px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);
  top: 13px;
  left: -50px;
  z-index: 1;
}

.story-glass-pill::after {
  content: "";
  position: absolute;

  width: 30px;
  height: 20px;
  border-radius: 50%;
  background: transparent;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 -2px 6px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);
  bottom: 50px;
  right: -10px;
  z-index: 2;
}

.story-glass-pill span::after {
  content: "";
  position: absolute;

  width: 30px;
  height: 14px;
  border-radius: 50%;
  background: transparent;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 2px 5px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);
  bottom: -5px;
  right: -50px;
  z-index: 0;
}

.story-glass-pill img {
  width: 14px;
}

/* Title */
.case-title {
  font-size: 40px;
  font-weight: 100;
  line-height: 1.2;
}

.case-title .regular {
  font-family: "Bw Gradual DEMO Regular";
}

.case-title .italic {
  font-family: "Bw Gradual DEMO Bold Italic";
}

/* Desc */
.case-desc {
  max-width: 620px;
  margin: 14px auto 40px;
  font-family: "General Sans Regular";
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(116,113,114,1);
}






/* Card */
.case-card1 {
  background: rgba(252,246,242,1);
  border-radius: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 30px;
  text-align: left;
}

/* ================= IMAGE SIDE ================= */

.case-image-box1 {
  position: relative;
  width: 400px;
  height: 500px;
  border-radius: 18px;
  overflow: hidden;
}

.case-main-img1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo */
.case-logo1 {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
}

/* Impact */
.impact-box1 {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 14px 16px;
}

.impact-box1 h4 {
  font-family: "Bw Gradual DEMO Bold";
  margin-bottom: 10px;
  font-family: 13px;
}


/* Lists */
.impact-icon1 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.impact-icon1 li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 5px;

  font-family: "General Sans Medium";
  font-size: 10.5px;
  line-height: 1.2;
  color: rgba(20,20,20,0.85);
}

/* Icon circle */
.impact-icon1 .icon1 {
  min-width: 12px;
  height: 12px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.green-list1 .icon1 {
  border: 1px solid rgba(66,158,33,1);
}

.impact-icon1 .icon1 img {
  width: 6px;
  height: 6px;
  align-items: center;
  justify-content: center;
}

/* ================= CONTENT ================= */

.case-content1 h3 {
  font-family: "Bw Gradual DEMO Bold";
  font-size: 35px;
  font-weight: 100;
  margin-bottom: 10px;
}

/* Tags */
.case-tags1 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.case-tags1 span {
  background: #fff;
  border-radius: 5px;
  padding: 6px 12px;
  font-family: "General Sans Medium";
  font-size: 10px;
}

/* Paragraphs */
.case-content1 p {
  font-family: "General Sans Regular";
  font-size: 11px;
  font-weight: 100;
  line-height: 1.7;
  color: rgba(116,113,114,1);
  margin-bottom: 15px;
}

/* Section headings */
.case-content1 h4 {
  font-family: "Bw Gradual DEMO Regular";
  font-size: 21px;
  font-weight: 100;
  margin-bottom: 6px;
}

/* Partnership list */
.partnership-list1 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-item1 {
  display: grid;
  grid-template-columns: 10px 140px 1fr;
  column-gap: 8px;
  align-items: start;
}

.p-item1 .dot1 {
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  margin-top: 8px;
}

.p-item1 strong {
  font-family: "General Sans Medium";
  font-size: 12px;
  white-space: nowrap;
}

.p-text1 {
  font-family: "General Sans Regular";
  font-size: 11px;
  line-height: 1.6;
  color: rgba(116,113,114,1);
}








/* ================= CARD 2 ================= */

.case-study-section2 {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

/* Card */
.case-card2 {
  background: rgba(242, 247, 252, 1);
  border-radius: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: stretch;
  gap: 30px;
  text-align: left;
}

/* ================= IMAGE SIDE ================= */

.case-image-box2 {
  position: relative;
  width: 400px;
  height: 500px;
  border-radius: 18px;
  overflow: hidden;
}

.case-main-img2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo */
.case-logo2 {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
}

/* Impact */
.impact-box2 {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 14px 16px;
}

.impact-box2 h4 {
  font-family: "Bw Gradual DEMO Bold";
  margin-bottom: 10px;
  font-family: 13px;
}


/* Lists */
.impact-icon2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.impact-icon2 li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 5px;

  font-family: "General Sans Medium";
  font-size: 10.5px;
  line-height: 1.2;
  color: rgba(20,20,20,0.85);
}

/* Icon circle */
.impact-icon2 .icon2 {
  min-width: 12px;
  height: 12px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.green-list2 .icon2 {
  border: 1px solid rgba(66,158,33,1);
}

.impact-icon2 .icon2 img {
  width: 6px;
  height: 6px;
  align-items: center;
  justify-content: center;
}

/* ================= CONTENT ================= */

.case-content2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-content2 h3 {
  font-family: "Bw Gradual DEMO Bold";
  font-size: 35px;
  font-weight: 100;
  margin-bottom: 10px;
}

/* Tags */
.case-tags2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.case-tags2 span {
  background: #fff;
  border-radius: 5px;
  padding: 6px 12px;
  font-family: "General Sans Medium";
  font-size: 10px;
}

/* Paragraphs */
.case-content2 p {
  font-family: "General Sans Regular";
  font-size: 11px;
  font-weight: 100;
  line-height: 1.7;
  color: rgba(116,113,114,1);
  margin-bottom: 15px;
}

/* Section headings */
.case-content2 h4 {
  font-family: "Bw Gradual DEMO Regular";
  font-size: 21px;
  font-weight: 100;
  margin-bottom: 6px;
}

/* Partnership list */
.partnership-list2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-item2 {
  display: grid;
  grid-template-columns: 10px 1fr;
  column-gap: 8px;
  align-items: start;
}

.p-item2 .dot2 {
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  margin-top: 8px;
}

.p-item2 strong {
  font-family: "General Sans Medium";
  font-size: 12px;
  white-space: normal;
  line-height: 1.5;
}









/* ================= CARD 3 ================= */

.case-study-section3 {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

/* MAIN CARD */
.case-card3 {
  background: rgba(249, 242, 252, 1);
  border-radius: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: stretch; /* IMPORTANT */
}

/* IMAGE PANEL */
.case-image-box3 {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 500px;
}

/* IMAGE */
.case-main-img3 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  object-position: left center;
}

/* LOGO */
.case-logo3 {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  z-index: 2;
}

/* IMPACT BOX */
.impact-box3 {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 14px 16px;
  z-index: 2;
}

.impact-box3 h4 {
  font-family: "Bw Gradual DEMO Bold";
  font-size: 13px;
  margin-bottom: 8px;
}

/* IMPACT LIST */
.impact-icon3 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.impact-icon3 li {
  display: flex;
  gap: 10px;
  font-family: "General Sans Medium";
  font-size: 10.5px;
  line-height: 1.3;
  margin-bottom: 6px;
}

.icon3 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(66,158,33,1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon3 img {
  width: 6px;
}

/* CONTENT PANEL */
.case-content3 {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
}

.case-content3 h3 {
  font-family: "Bw Gradual DEMO Bold";
  font-size: 34px;
  margin-bottom: 10px;
}

/* TAGS */
.case-tags3 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.case-tags3 span {
  background: #fff;
  border-radius: 5px;
  padding: 6px 10px;
  font-family: "General Sans Medium";
  font-size: 10px;
}

/* TEXT */
.case-content3 p {
  font-family: "General Sans Regular";
  font-size: 11px;
  line-height: 1.7;
  color: rgba(116,113,114,1);
  margin-bottom: 14px;
}

.case-content3 h4 {
  font-family: "Bw Gradual DEMO Regular";
  font-size: 20px;
  margin-bottom: 6px;
}

/* PARTNERSHIP */
.partnership-list3 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-item3 {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 8px;
}

.dot3 {
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  margin-top: 8px;
}

.p-item3 strong {
  font-family: "General Sans Medium";
  font-size: 12px;
  line-height: 1.5;
}


















/* ================= CARD 4 ================= */

.case-study-section4 {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.case-card4 {
  background: rgba(252, 247, 242, 1);
  border-radius: 22px;
  padding: 18px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}


/* IMAGE SIDE */
.case-image-box4 {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 18px;
  overflow: hidden;
}


.case-main-img4 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-logo4 {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
}


/* IMPACT */
.impact-box4 {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;

  background: #fff;
  border-radius: 14px;
  padding: 14px 14px 16px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

.impact-box4 h4 {
  font-family: "Bw Gradual DEMO Bold";
  font-size: 13px;
  margin-bottom: 10px;
}


.impact-icon4 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.impact-icon4 li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;

  font-family: "General Sans Medium";
  font-size: 10.5px;
  line-height: 1.3;
  color: rgba(20,20,20,0.85);
}

.icon4 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(66,158,33,1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon4 img {
  width: 6px;
  height: 6px;
}


.green-list4 .icon4 {
  border: 1px solid rgba(66,158,33,1);
}

/* CONTENT */
.case-content4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 6px;
}

.case-content4 h3 {
  font-family: "Bw Gradual DEMO Bold";
  font-size: 30px;
  margin-bottom: 8px;
}

.case-tags4 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.case-tags4 span {
  background: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: "General Sans Medium";
  font-size: 10px;
}

.case-content4 p {
  font-family: "General Sans Regular";
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(116,113,114,1);
  margin-bottom: 14px;
}

.case-content4 h4 {
  font-family: "Bw Gradual DEMO Regular";
  font-size: 18px;
  margin-bottom: 6px;
}

.partnership-list4 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.p-item4 {
  display: grid;
  grid-template-columns: 10px 1fr; /* dot + full text */
  column-gap: 10px;
  align-items: start;
}

.dot4 {
  width: 4px;
  height: 4px;
  background: rgba(20,20,20,1);
  border-radius: 50%;
  margin-top: 8px; /* aligns with first line of text */
}

.p-item4 strong {
  font-family: "General Sans Medium";
  font-size: 11.5px;
  font-weight: 100;
  line-height: 1.6;
  color: rgba(20,20,20,1);
  white-space: normal; /* allow line break */
}

































/* ================= CARD 5 ================= */

.case-study-section5 {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Card */
.case-card5 {
  background: rgba(242, 252, 247, 1);
  border-radius: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  text-align: left;
}

/* IMAGE SIDE */
.case-image-box5 {
  position: relative;
  width: 100%;
  min-height: 500px;
  border-radius: 18px;
  overflow: hidden;
}

.case-main-img5 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo */
.case-logo5 {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
}

/* Impact box */
.impact-box5 {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 14px 16px;
}

.impact-box5 h4 {
  font-family: "Bw Gradual DEMO Bold";
  font-size: 13px;
  margin-bottom: 8px;
}

/* Impact list */
.impact-icon5 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.impact-icon5 li {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  font-family: "General Sans Medium";
  font-size: 10.5px;
  line-height: 1.3;
  color: rgba(20,20,20,0.85);
}

.impact-icon5 .icon5 {
  min-width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(66,158,33,1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.impact-icon5 img {
  width: 6px;
  height: 6px;
}

/* CONTENT SIDE */
.case-content5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-content5 h3 {
  font-family: "Bw Gradual DEMO Bold";
  font-size: 32px;
  margin-bottom: 10px;
}

/* Tags */
.case-tags5 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.case-tags5 span {
  background: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  font-family: "General Sans Medium";
  font-size: 10px;
}

/* Text */
.case-content5 p {
  font-family: "General Sans Regular";
  font-size: 11px;
  line-height: 1.7;
  color: rgba(116,113,114,1);
  margin-bottom: 14px;
}

/* Headings */
.case-content5 h4 {
  font-family: "Bw Gradual DEMO Regular";
  font-size: 20px;
  margin-bottom: 6px;
}

/* Partnership */
.partnership-list5 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-item5 {
  display: grid;
  grid-template-columns: 10px 1fr;
  column-gap: 8px;
}

.dot5 {
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  margin-top: 7px;
}

.p-item5 strong {
  font-family: "General Sans Medium";
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}













/* =========================
   JOIN THE CLUB CTA SECTION
========================= */

.join-club-section {
  width: 100%;
  text-align: center;
  padding: 0px 20px 80px;
  background: #ffffff;
}

/* =========================
   TITLE
========================= */

.join-title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: rgba(20, 20, 20, 1);
}

.join-title .med {
  font-family: "Bw Gradual DEMO Medium";
  font-weight: 100;
}

.join-title .italic {
  font-family: "Bw Gradual DEMO Bold Italic";
  font-weight: 100;
}

/* =========================
   SUBTITLE
========================= */

.join-subtitle {
  font-family: "General Sans Regular";
  font-size: 20px;
  line-height: 1.6;
  color: rgba(20, 20, 20, 1);
  margin-bottom: 15px;
}

/* =========================
   BUTTON WRAP
========================= */

.cta-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Button spacing */
.cta-btn {
  margin-top: 10px;

  /* floating shadow like image */
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.161),
    0 6px 8px rgba(0, 0, 0, 0.058),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Hover lift */
.cta-btn:hover {
  transform: translateY(-2px);
}


/* =========================
   BASE BUTTON
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  height: 45px;
  padding: 6px 10px 6px 6px;

  border-radius: 999px;
  border: 0.5px solid rgba(0, 0, 0, 0.812);
  cursor: pointer;

  font-family: "General Sans Medium", sans-serif;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* =========================
   ICON CIRCLE
========================= */
.btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.btn-icon img {
  width: 13px;
  height: 13px;
}


/* =========================
   SECONDARY (GLASS WHITE)
========================= */
.btn-secondary {
  color: rgba(20, 20, 20, 1);

  /* Glass white */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(0, 0, 0, 0.213);

  /* BIG soft floating shadow (like image) */
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.133),
    0 5px 3px rgba(0, 0, 0, 0.018),
    inset 0 1px 0 rgba(255, 255, 255, 0.299);

  transition: all 0.3s ease;
}


.btn-secondary .btn-icon {
  background: linear-gradient(
    180deg,
    rgba(1, 39, 58, 1),
    rgba(1, 27, 41, 1)
  );

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}


/* Hover */
.btn-secondary:hover {
  background: linear-gradient(
    180deg,
    rgba(1, 39, 58, 1),
    rgba(1, 27, 41, 1)
  );

  color: #ffffff;
  transform: translateY(-2px);
}

.btn-secondary:hover .btn-icon {
  background: rgba(80, 164, 207, 1);
}


















/* =========================
   FOOTER
========================= */
.site-footer {
  width: 100%;
  background: rgba(20, 20, 20, 1);
  padding: 70px 20px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */
.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 70px;
  color: #fff;
}

.footer-container .footer-col:nth-child(2) {
  justify-self: center;
}


/* LEFT */
.footer-logo {
  width: 50px;
  margin-bottom: 25px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-item img {
  width: auto;
  height: auto;
  margin-top: 4px;
}

.footer-item span {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

/* CENTER */
.footer-links-col h4 {
  margin-bottom: 18px;
}

.footer-links-col a {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  text-decoration: none;
}

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

/* RIGHT */
.footer-about-col p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  margin-top: 18px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social img {
  width: 30px;
  opacity: 0.8;
  padding: 6px;
  border-radius: 6px;
  background: rgba(54, 54, 54, 0.75);
  transition: opacity 0.3s ease;
}

.footer-social img:hover {
  opacity: 1;
}



/* DIVIDER */
.footer-divider {
  max-width: 1000px;
  margin: 40px auto 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* BOTTOM BAR */
.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "General Sans Regular";
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}


/* =========================
   WAVING BRAND TEXT
========================= */

.footer-brand {
  margin-top: 60px;
  text-align: center;
  font-family: "Fanlste";
  font-size: 250px;
  line-height: 1;
  color: rgba(255, 255, 255, 1);
  pointer-events: none;
  white-space: nowrap;
}

/* wave container */
.wave-text span {
  display: inline-block;
  animation: waveMove 6s ease-in-out infinite;
}

/* stagger animation */
.wave-text span:nth-child(1) { animation-delay: 0s; }
.wave-text span:nth-child(2) { animation-delay: 0.2s; }
.wave-text span:nth-child(3) { animation-delay: 0.4s; }
.wave-text span:nth-child(4) { animation-delay: 0.6s; }
.wave-text span:nth-child(5) { animation-delay: 0.8s; }
.wave-text span:nth-child(6) { animation-delay: 1s; }
.wave-text span:nth-child(7) { animation-delay: 1.2s; }
.wave-text span:nth-child(8) { animation-delay: 1.4s; }
.wave-text span:nth-child(9) { animation-delay: 1.6s; }

/* =========================
   KEYFRAMES
========================= */
@keyframes waveMove {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-14px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0);
  }
}











































/* =========================
   RESPONSIVE
========================= */




/* =========================
   (min-width: 1440px)
========================= */

@media (min-width: 1440px) {

  .hero { margin-bottom: 22.5px; padding-top: 103.5px;}
  .header { padding: 18px 22.5px 9px;}
  .header-container { max-width: 1080px; height: 76.5px;}
  .logo { font-size: 29.25px;}
  .nav { gap: 31.5px;}
  .nav a { font-size: 15.75px;}

  .client-club-section { margin: 45px auto; padding: 0 22.5px;}
  .club-title { font-size: 45px;}
  .club-desc { margin-top: 11.25px; font-size: 13.5px; margin-bottom: 45px;}
  .club-marquee { gap: 20.25px;}
  .marquee-track { gap: 20.25px;}
  .marquee-track img { width: 393.75px; height: 229.5px;}
  
  .case-study-section1 { max-width: 1125px; margin: 67.5px auto; padding: 0 22.5px;}
  .case-pill { margin: 0 auto 15.75px;}
  .story-glass-pill { gap: 7.875px; padding: 9px 16.875px;}
  .story-glass-pill span { font-size: 14.625px;}
  .story-glass-pill img { width: 15.75px; height: 15.75px;}
  .story-glass-pill::before { width: 33.75px; height: 18px; top: -11.25px; left: 13.5px;}
  .story-glass-pill span::before { width: 33.75px; height: 13.5px; top: 14.625px; left: -56.25px;}
  .story-glass-pill::after { width: 33.75px; height: 22.5px; bottom: 56.25px; right: -11.25px;}
  .story-glass-pill span::after { width: 33.75px; height: 15.75px; bottom: -5.625px; right: -56.25px;}
  .story-glass-pill img { width: 15.75px;}
  .case-title { font-size: 45px;}
  .case-desc { max-width: 697.5px; margin: 15.75px auto 45px; font-size: 12.9375px;}
  .case-card1 { padding: 18px; gap: 33.75px;}
  .case-image-box1 { width: 450px; height: 562.5px;}
  .case-logo1 { top: 45px; width: 270px;}
  .impact-box1 { bottom: 15.75px; left: 15.75px; right: 15.75px; padding: 15.75px 15.75px 18px;}
  .impact-box1 h4 { margin-bottom: 11.25px;}
  .impact-icon1 li { gap: 11.25px; margin-bottom: 5.625px; font-size: 11.8125px;}
  .impact-icon1 .icon1 { min-width: 13.5px; height: 13.5px;}
  .impact-icon1 .icon1 img { width: 6.75px; height: 6.75px;}
  .case-content1 h3 { font-size: 39.375px; margin-bottom: 11.25px;}
  .case-tags1 { gap: 9px; margin-bottom: 15.75px;}
  .case-tags1 span { padding: 6.75px 13.5px; font-size: 11.25px;}
  .case-content1 p { font-size: 12.375px; margin-bottom: 16.875px;}
  .case-content1 h4 { font-size: 23.625px; margin-bottom: 6.75px;}
  .partnership-list1 { gap: 9px;}
  .p-item1 { grid-template-columns: 11.25px 157.5px 1fr; column-gap: 9px;}
  .p-item1 .dot1 { width: 4.5px; height: 4.5px; margin-top: 9px;}
  .p-item1 strong { font-size: 13.5px;}
  .p-text1 { font-size: 12.375px;}



  .case-study-section2 { max-width: 1125px; margin: 67.5px auto; padding: 0 22.5px;}
  .case-card2 { padding: 18px; gap: 33.75px;}
  .case-image-box2 { width: 450px; height: 562.5px;}
  .case-logo2 { top: 45px; width: 123.75px;}
  .impact-box2 { bottom: 15.75px; left: 15.75px; right: 15.75px; padding: 15.75px 15.75px 18px;}
  .impact-box2 h4 { margin-bottom: 11.25px;}
  .impact-icon2 li { gap: 11.25px; margin-bottom: 5.625px; font-size: 11.8125px;}
  .impact-icon2 .icon2 { min-width: 13.5px; height: 13.5px;}
  .impact-icon2 .icon2 img { width: 6.75px; height: 6.75px;}
  .case-content2 h3 { font-size: 39.375px; margin-bottom: 11.25px;}
  .case-tags2 { gap: 9px; margin-bottom: 15.75px;}
  .case-tags2 span { padding: 6.75px 13.5px; font-size: 11.25px;}
  .case-content2 p { font-size: 12.375px; margin-bottom: 16.875px;}
  .case-content2 h4 { font-size: 23.625px; margin-bottom: 6.75px;}
  .partnership-list2 { gap: 9px;}
  .p-item2 { grid-template-columns: 11.25px 1fr; column-gap: 9px;}
  .p-item2 .dot2 { width: 4.5px; height: 4.5px; margin-top: 9px;}
  .p-item2 strong { font-size: 13.5px;}
  
  .case-study-section3 { max-width: 1125px; margin: 67.5px auto; padding: 0 22.5px;}
  .case-card3 { padding: 18px; gap: 33.75px;}
  .case-image-box3 { height: 562.5px;}
  .case-logo3 { top: 27px; width: 135px;}
  .impact-box3 { left: 15.75px; right: 15.75px; bottom: 15.75px; padding: 15.75px 15.75px 18px;}
  .impact-box3 h4 { font-size: 14.625px; margin-bottom: 9px;}
  .impact-icon3 li { gap: 11.25px; font-size: 11.8125px; margin-bottom: 6.75px;}
  .icon3 { width: 13.5px; height: 13.5px;}
  .icon3 img { width: 6.75px;}
  .case-content3 h3 { font-size: 38.25px; margin-bottom: 11.25px;}
  .case-tags3 { gap: 9px; margin-bottom: 15.75px;}
  .case-tags3 span { padding: 6.75px 11.25px; font-size: 11.25px;}
  .case-content3 p { font-size: 12.375px; margin-bottom: 15.75px;}
  .case-content3 h4 { font-size: 22.5px; margin-bottom: 6.75px;}
  .partnership-list3 { gap: 11.25px;}
  .p-item3 { gap: 9px;}
  .dot3 { width: 4.5px; height: 4.5px; margin-top: 9px;}
  .p-item3 strong { font-size: 13.5px;}
  
  

  .case-study-section4 { max-width: 1125px; margin: 67.5px auto; padding: 0 22.5px;}
  .case-card4 { padding: 20.25px; gap: 31.5px;}
  .case-image-box4 { min-height: 562.5px;}
  .case-logo4 { top: 24.75px; width: 101.25px;}
  .impact-box4 { bottom: 18px; left: 18px; right: 18px; padding: 15.75px 15.75px 18px;}
  .impact-box4 h4 { font-size: 14.625px; margin-bottom: 11.25px;}
  .impact-icon4 li { gap: 11.25px; margin-bottom: 6.75px; font-size: 11.8125px;}
  .icon4 { width: 13.5px; height: 13.5px;}
  .icon4 img { width: 6.75px; height: 6.75px;}
  .case-content4 { padding: 9px 6.75px;}
  .case-content4 h3 { font-size: 33.75px; margin-bottom: 9px;}
  .case-tags4 { gap: 9px; margin-bottom: 15.75px;}
  .case-tags4 span { padding: 6.75px 13.5px; font-size: 11.25px;}
  .case-content4 p { font-size: 12.9375px; margin-bottom: 15.75px;}
  .case-content4 h4 { font-size: 20.25px; margin-bottom: 6.75px;}
  .partnership-list4 { gap: 11.25px; margin-top: 6.75px;}
  .p-item4 { grid-template-columns: 11.25px 1fr; column-gap: 11.25px;}
  .dot4 { width: 4.5px; height: 4.5px; margin-top: 9px;}
  .p-item4 strong { font-size: 12.9375px;}
  
  .case-study-section5 { max-width: 1125px; margin: 67.5px auto; padding: 0 22.5px;}
  .case-card5 { padding: 18px; gap: 33.75px;}
  .case-image-box5 { min-height: 562.5px;}
  .case-logo5 { top: 29.25px; width: 157.5px;}
  .impact-box5 { bottom: 15.75px; left: 15.75px; right: 15.75px; padding: 15.75px 15.75px 18px;}
  .impact-box5 h4 { font-size: 14.625px; margin-bottom: 9px;}
  .impact-icon5 li { gap: 9px; margin-bottom: 6.75px; font-size: 11.8125px;}
  .impact-icon5 .icon5 { min-width: 13.5px; height: 13.5px; margin-top: 3.375px;}
  .impact-icon5 img { width: 6.75px; height: 6.75px;}
  .case-content5 h3 { font-size: 36px; margin-bottom: 11.25px;}
  .case-tags5 { gap: 9px; margin-bottom: 15.75px;}
  .case-tags5 span { padding: 6.75px 13.5px; font-size: 11.25px;}
  .case-content5 p { font-size: 12.375px; margin-bottom: 15.75px;}
  .case-content5 h4 { font-size: 22.5px; margin-bottom: 6.75px;}
  .partnership-list5 { gap: 9px;}
  .p-item5 { grid-template-columns: 11.25px 1fr; column-gap: 9px;}
  .dot5 { width: 4.5px; height: 4.5px; margin-top: 7.875px;}
  .p-item5 strong { font-size: 13.5px;}
  
  .join-club-section { padding: 0px 22.5px 90px;}
  .join-title { font-size: 45px; margin-bottom: 16.875px;}
  .join-subtitle { font-size: 22.5px; margin-bottom: 16.875px;}
  .cta-btn { margin-top: 11.25px;}
  .btn { gap: 5.625px; height: 50.625px; padding: 6.75px 11.25px 6.75px 6.75px; font-size: 16.875px;}
  .btn-icon { width: 33.75px; height: 33.75px;}
  .btn-icon img { width: 14.625px; height: 14.625px;}
  
  

  .site-footer { padding: 78.75px 22.5px 45px;}
  .footer-container { max-width: 1125px; gap: 78.75px;}
  .footer-logo { width: 56.25px; margin-bottom: 28.125px;}
  .footer-item { gap: 13.5px; margin-bottom: 15.75px;}
  .footer-item img { margin-top: 4.5px;}
  .footer-item span { font-size: 14.625px;}
  .footer-links-col h4 { margin-bottom: 20.25px;}
  .footer-links-col a { font-size: 18px; margin-bottom: 15.75px;}
  .footer-about-col p { font-size: 16.875px; margin-bottom: 27px; margin-top: 20.25px;}
  .footer-social { gap: 18px;}
  .footer-social img { width: 33.75px; padding: 6.75px;}
  .footer-divider { max-width: 1125px; margin: 45px auto 22.5px; height: 1.125px;}
  .footer-bottom { max-width: 1125px; font-size: 13.5px;}
  .footer-bottom-links { gap: 20.25px;}
  .footer-brand { margin-top: 67.5px; font-size: 281.25px;}

  }
  
  
  
  
  /* =========================
     (min-width: 1600px)
  ========================= */
  
  @media (min-width: 1600px) {
  
    .hero { margin-bottom: 25px; padding-top: 115px; }
    .header { padding: 20px 25px 10px; }
    .header-container { max-width: 1200px; height: 85px; }
    .logo { font-size: 32.5px; }
    .nav { gap: 35px; }
    .nav a { font-size: 17.5px; }
    
    .client-club-section { margin: 50px auto; padding: 0 25px;}
    .club-title { font-size: 50px;}
    .club-desc { margin-top: 12.5px; font-size: 15px; margin-bottom: 50px;}
    .club-marquee { gap: 22.5px;}
    .marquee-track { gap: 22.5px;}
    .marquee-track img { width: 437.5px; height: 255px;}
    
    .case-study-section1 { max-width: 1250px; margin: 75px auto; padding: 0 25px;}
    .case-pill { margin: 0 auto 17.5px;}
    .story-glass-pill { gap: 8.75px; padding: 10px 18.75px;}
    .story-glass-pill span { font-size: 16.25px;}
    .story-glass-pill img { width: 17.5px; height: 17.5px;}
    .story-glass-pill::before { width: 37.5px; height: 20px; top: -12.5px; left: 15px;}
    .story-glass-pill span::before { width: 37.5px; height: 15px; top: 16.25px; left: -62.5px;}
    .story-glass-pill::after { width: 37.5px; height: 25px; bottom: 62.5px; right: -12.5px;}
    .story-glass-pill span::after { width: 37.5px; height: 17.5px; bottom: -6.25px; right: -62.5px;}
    .story-glass-pill img { width: 17.5px;}
    .case-title { font-size: 50px;}
    .case-desc { max-width: 775px; margin: 17.5px auto 50px; font-size: 14.375px;}
    .case-card1 { padding: 20px; gap: 37.5px;}
    .case-image-box1 { width: 500px; height: 625px;}
    .case-logo1 { top: 50px; width: 300px;}
    .impact-box1 { bottom: 17.5px; left: 17.5px; right: 17.5px; padding: 17.5px 17.5px 20px;}
    .impact-box1 h4 { margin-bottom: 12.5px;}
    .impact-icon1 li { gap: 12.5px; margin-bottom: 6.25px; font-size: 13.125px;}
    .impact-icon1 .icon1 { min-width: 15px; height: 15px;}
    .impact-icon1 .icon1 img { width: 7.5px; height: 7.5px;}
    .case-content1 h3 { font-size: 43.75px; margin-bottom: 12.5px;}
    .case-tags1 { gap: 10px; margin-bottom: 17.5px;}
    .case-tags1 span { padding: 7.5px 15px; font-size: 12.5px;}
    .case-content1 p { font-size: 13.75px; margin-bottom: 18.75px;}
    .case-content1 h4 { font-size: 26.25px; margin-bottom: 7.5px;}
    .partnership-list1 { gap: 10px;}
    .p-item1 { grid-template-columns: 12.5px 175px 1fr; column-gap: 10px;}
    .p-item1 .dot1 { width: 5px; height: 5px; margin-top: 10px;}
    .p-item1 strong { font-size: 15px;}
    .p-text1 { font-size: 13.75px;}
    

    .case-study-section2{max-width:1249.875px;margin:74.992px auto;padding:0 24.997px;}
    .case-card2{padding:19.998px;gap:37.496px;}
    .case-image-box2{width:499.95px;height:624.938px;}
    .case-logo2{top:49.995px;width:137.486px;}
    .impact-box2{bottom:17.498px;left:17.498px;right:17.498px;padding:17.498px 17.498px 19.998px;}
    .impact-box2 h4{margin-bottom:12.499px;}
    .impact-icon2 li{gap:12.499px;margin-bottom:6.249px;font-size:13.124px;}
    .impact-icon2 .icon2{min-width:14.998px;height:14.998px;}
    .impact-icon2 .icon2 img{width:7.499px;height:7.499px;}
    .case-content2 h3{font-size:43.746px;margin-bottom:12.499px;}
    .case-tags2{gap:9.999px;margin-bottom:17.498px;}
    .case-tags2 span{padding:7.499px 14.998px;font-size:12.499px;}
    .case-content2 p{font-size:13.749px;margin-bottom:18.748px;}
    .case-content2 h4{font-size:26.247px;margin-bottom:7.499px;}
    .partnership-list2{gap:9.999px;}
    .p-item2{grid-template-columns:12.499px 1fr;column-gap:9.999px;}
    .p-item2 .dot2{width:5px;height:5px;margin-top:9.999px;}
    .p-item2 strong{font-size:14.998px;}
    
    .case-study-section3{max-width:1249.875px;margin:74.992px auto;padding:0 24.997px;}
    .case-card3{padding:19.998px;gap:37.496px;}
    .case-image-box3{height:624.938px;}
    .case-logo3{top:29.997px;width:149.985px;}
    .impact-box3{left:17.498px;right:17.498px;bottom:17.498px;padding:17.498px 17.498px 19.998px;}
    .impact-box3 h4{font-size:16.248px;margin-bottom:9.999px;}
    .impact-icon3 li{gap:12.499px;font-size:13.124px;margin-bottom:7.499px;}
    .icon3{width:14.998px;height:14.998px;}
    .icon3 img{width:7.499px;}
    .case-content3 h3{font-size:42.496px;margin-bottom:12.499px;}
    .case-tags3{gap:9.999px;margin-bottom:17.498px;}
    .case-tags3 span{padding:7.499px 12.499px;font-size:12.499px;}
    .case-content3 p{font-size:13.749px;margin-bottom:17.498px;}
    .case-content3 h4{font-size:24.997px;margin-bottom:7.499px;}
    .partnership-list3{gap:12.499px;}
    .p-item3{gap:9.999px;}
    .dot3{width:5px;height:5px;margin-top:9.999px;}
    .p-item3 strong{font-size:14.998px;}
    


    .case-study-section4{max-width:1249.875px;margin:74.993px auto;padding:0 24.998px;}
    .case-card4{padding:22.498px;gap:34.997px;}
    .case-image-box4{min-height:624.938px;}
    .case-logo4{top:27.499px;width:112.499px;}
    .impact-box4{bottom:19.998px;left:19.998px;right:19.998px;padding:17.498px 17.498px 19.998px;}
    .impact-box4 h4{font-size:16.248px;margin-bottom:12.499px;}
    .impact-icon4 li{gap:12.499px;margin-bottom:7.499px;font-size:13.124px;}
    .icon4{width:14.998px;height:14.998px;}
    .icon4 img{width:7.499px;height:7.499px;}
    .case-content4{padding:9.999px 7.499px;}
    .case-content4 h3{font-size:37.496px;margin-bottom:9.999px;}
    .case-tags4{gap:9.999px;margin-bottom:17.498px;}
    .case-tags4 span{padding:7.499px 14.998px;font-size:12.499px;}
    .case-content4 p{font-size:14.373px;margin-bottom:17.498px;}
    .case-content4 h4{font-size:22.498px;margin-bottom:7.499px;}
    .partnership-list4{gap:12.499px;margin-top:7.499px;}
    .p-item4{grid-template-columns:12.499px 1fr;column-gap:12.499px;}
    .dot4{width:5px;height:5px;margin-top:9.999px;}
    .p-item4 strong{font-size:14.373px;}
    
    .case-study-section5{max-width:1249.875px;margin:74.993px auto;padding:0 24.998px;}
    .case-card5{padding:19.998px;gap:37.496px;}
    .case-image-box5{min-height:624.938px;}
    .case-logo5{top:32.498px;width:174.983px;}
    .impact-box5{bottom:17.498px;left:17.498px;right:17.498px;padding:17.498px 17.498px 19.998px;}
    .impact-box5 h4{font-size:16.248px;margin-bottom:9.999px;}
    .impact-icon5 li{gap:9.999px;margin-bottom:7.499px;font-size:13.124px;}
    .impact-icon5 .icon5{min-width:14.998px;height:14.998px;margin-top:3.749px;}
    .impact-icon5 img{width:7.499px;height:7.499px;}
    .case-content5 h3{font-size:39.996px;margin-bottom:12.499px;}
    .case-tags5{gap:9.999px;margin-bottom:17.498px;}
    .case-tags5 span{padding:7.499px 14.998px;font-size:12.499px;}
    .case-content5 p{font-size:13.749px;margin-bottom:17.498px;}
    .case-content5 h4{font-size:24.998px;margin-bottom:7.499px;}
    .partnership-list5{gap:9.999px;}
    .p-item5{grid-template-columns:12.499px 1fr;column-gap:9.999px;}
    .dot5{width:5px;height:5px;margin-top:8.749px;}
    .p-item5 strong{font-size:14.998px;}
    
    .join-club-section{padding:0 24.998px 99.99px;}
    .join-title{font-size:49.995px;margin-bottom:18.748px;}
    .join-subtitle{font-size:24.998px;margin-bottom:18.748px;}
    .cta-btn{margin-top:12.499px;}
    .btn{gap:6.249px;height:56.248px;padding:7.499px 12.499px 7.499px 7.499px;font-size:18.748px;}
    .btn-icon{width:37.496px;height:37.496px;}
    .btn-icon img{width:16.248px;height:16.248px;}



    .site-footer { padding: 87.5px 25px 50px; }
  .footer-container { max-width: 1250px; gap: 87.5px;}
  .footer-logo { width: 62.5px; margin-bottom: 31.25px;}
  .footer-item { gap: 15px; margin-bottom: 17.5px;}
  .footer-item img { margin-top: 5px;}
  .footer-item span { font-size: 16.25px;}
  .footer-links-col h4 { margin-bottom: 22.5px;}
  .footer-links-col a { font-size: 20px; margin-bottom: 17.5px;}
  .footer-about-col p { font-size: 18.75px; margin-bottom: 30px; margin-top: 22.5px;}
  .footer-social { gap: 20px;}
  .footer-social img { width: 37.5px; padding: 7.5px;}
  .footer-divider { max-width: 1250px; margin: 50px auto 25px; height: 1.25px; }
  .footer-bottom { max-width: 1250px; font-size: 15px; }
  .footer-bottom-links { gap: 22.5px; }
  .footer-brand { margin-top: 75px; font-size: 312.5px; }   
    
  }
  
  
  
  
  
  /* =========================
     (min-width: 1920px)
  ========================= */
  
  @media (min-width: 1920px) {
  
    .hero { margin-bottom: 30px; padding-top: 138px; }
    .header { padding: 24px 30px 12px; }
    .header-container { max-width: 1440px; height: 102px; }
    .logo { font-size: 39px; }
    .nav { gap: 42px; }
    .nav a { font-size: 21px; }
    
    
    .client-club-section { margin: 60px auto; padding: 0 30px;}
    .club-title { font-size: 60px;}
    .club-desc { margin-top: 15px; font-size: 18px; margin-bottom: 60px;}
    .club-marquee { gap: 27px;}
    .marquee-track { gap: 27px;}
    .marquee-track img { width: 525px; height: 306px;}
    
    .case-study-section1 { max-width: 1500px; margin: 90px auto; padding: 0 30px;}
    .case-pill { margin: 0 auto 21px;}
    .story-glass-pill { gap: 10.5px; padding: 12px 22.5px;}
    .story-glass-pill span { font-size: 19.5px;}
    .story-glass-pill img { width: 21px; height: 21px;}
    .story-glass-pill::before { width: 45px; height: 24px; top: -15px; left: 18px;}
    .story-glass-pill span::before { width: 45px; height: 18px; top: 19.5px; left: -75px;}
    .story-glass-pill::after { width: 45px; height: 30px; bottom: 75px; right: -15px;}
    .story-glass-pill span::after { width: 45px; height: 21px; bottom: -7.5px; right: -75px;}
    .story-glass-pill img { width: 21px;}
    .case-title { font-size: 60px;}
    .case-desc { max-width: 930px; margin: 21px auto 60px; font-size: 17.25px;}
    .case-card1 { padding: 24px; gap: 45px;}
    .case-image-box1 { width: 600px; height: 750px;}
    .case-logo1 { top: 60px; width: 360px;}
    .impact-box1 { bottom: 21px; left: 21px; right: 21px; padding: 21px 21px 24px;}
    .impact-box1 h4 { margin-bottom: 15px;}
    .impact-icon1 li { gap: 15px; margin-bottom: 7.5px; font-size: 15.75px;}
    .impact-icon1 .icon1 { min-width: 18px; height: 18px;}
    .impact-icon1 .icon1 img { width: 9px; height: 9px;}
    .case-content1 h3 { font-size: 52.5px; margin-bottom: 15px;}
    .case-tags1 { gap: 12px; margin-bottom: 21px;}
    .case-tags1 span { padding: 9px 18px; font-size: 15px;}
    .case-content1 p { font-size: 16.5px; margin-bottom: 22.5px;}
    .case-content1 h4 { font-size: 31.5px; margin-bottom: 9px;}
    .partnership-list1 { gap: 12px;}
    .p-item1 { grid-template-columns: 15px 210px 1fr; column-gap: 12px;}
    .p-item1 .dot1 { width: 6px; height: 6px; margin-top: 12px;}
    .p-item1 strong { font-size: 18px;}
    .p-text1 { font-size: 16.5px;}
    


    .case-study-section2{max-width:1499.85px;margin:89.99px auto;padding:0 29.996px;}
    .case-card2{padding:23.998px;gap:44.995px;}
    .case-image-box2{width:599.94px;height:749.926px;}
    .case-logo2{top:59.994px;width:164.983px;}
    .impact-box2{bottom:20.998px;left:20.998px;right:20.998px;padding:20.998px 20.998px 23.998px;}
    .impact-box2 h4{margin-bottom:14.999px;}
    .impact-icon2 li{gap:14.999px;margin-bottom:7.499px;font-size:15.749px;}
    .impact-icon2 .icon2{min-width:17.998px;height:17.998px;}
    .impact-icon2 .icon2 img{width:8.999px;height:8.999px;}
    .case-content2 h3{font-size:52.495px;margin-bottom:14.999px;}
    .case-tags2{gap:11.999px;margin-bottom:20.998px;}
    .case-tags2 span{padding:8.999px 17.998px;font-size:14.999px;}
    .case-content2 p{font-size:16.499px;margin-bottom:22.498px;}
    .case-content2 h4{font-size:31.496px;margin-bottom:8.999px;}
    .partnership-list2{gap:11.999px;}
    .p-item2{grid-template-columns:14.999px 1fr;column-gap:11.999px;}
    .p-item2 .dot2{width:6px;height:6px;margin-top:11.999px;}
    .p-item2 strong{font-size:17.998px;}
    
    .case-study-section3{max-width:1499.85px;margin:89.99px auto;padding:0 29.996px;}
    .case-card3{padding:23.998px;gap:44.995px;}
    .case-image-box3{height:749.926px;}
    .case-logo3{top:35.996px;width:179.982px;}
    .impact-box3{left:20.998px;right:20.998px;bottom:20.998px;padding:20.998px 20.998px 23.998px;}
    .impact-box3 h4{font-size:19.498px;margin-bottom:11.999px;}
    .impact-icon3 li{gap:14.999px;font-size:15.749px;margin-bottom:8.999px;}
    .icon3{width:17.998px;height:17.998px;}
    .icon3 img{width:8.999px;}
    .case-content3 h3{font-size:50.995px;margin-bottom:14.999px;}
    .case-tags3{gap:11.999px;margin-bottom:20.998px;}
    .case-tags3 span{padding:8.999px 14.999px;font-size:14.999px;}
    .case-content3 p{font-size:16.499px;margin-bottom:20.998px;}
    .case-content3 h4{font-size:29.996px;margin-bottom:8.999px;}
    .partnership-list3{gap:14.999px;}
    .p-item3{gap:11.999px;}
    .dot3{width:6px;height:6px;margin-top:11.999px;}
    .p-item3 strong{font-size:17.998px;}
    


    .case-study-section4{max-width:1499.85px;margin:89.992px auto;padding:0 29.998px;}
    .case-card4{padding:26.998px;gap:41.996px;}
    .case-image-box4{min-height:749.926px;}
    .case-logo4{top:32.999px;width:134.999px;}
    .impact-box4{bottom:23.998px;left:23.998px;right:23.998px;padding:20.998px 20.998px 23.998px;}
    .impact-box4 h4{font-size:19.498px;margin-bottom:14.999px;}
    .impact-icon4 li{gap:14.999px;margin-bottom:8.999px;font-size:15.749px;}
    .icon4{width:17.998px;height:17.998px;}
    .icon4 img{width:8.999px;height:8.999px;}
    .case-content4{padding:11.999px 8.999px;}
    .case-content4 h3{font-size:44.995px;margin-bottom:11.999px;}
    .case-tags4{gap:11.999px;margin-bottom:20.998px;}
    .case-tags4 span{padding:8.999px 17.998px;font-size:14.999px;}
    .case-content4 p{font-size:17.248px;margin-bottom:20.998px;}
    .case-content4 h4{font-size:26.998px;margin-bottom:8.999px;}
    .partnership-list4{gap:14.999px;margin-top:8.999px;}
    .p-item4{grid-template-columns:14.999px 1fr;column-gap:14.999px;}
    .dot4{width:6px;height:6px;margin-top:11.999px;}
    .p-item4 strong{font-size:17.248px;}
    
    .case-study-section5{max-width:1499.85px;margin:89.992px auto;padding:0 29.998px;}
    .case-card5{padding:23.998px;gap:44.995px;}
    .case-image-box5{min-height:749.926px;}
    .case-logo5{top:38.998px;width:209.98px;}
    .impact-box5{bottom:20.998px;left:20.998px;right:20.998px;padding:20.998px 20.998px 23.998px;}
    .impact-box5 h4{font-size:19.498px;margin-bottom:11.999px;}
    .impact-icon5 li{gap:11.999px;margin-bottom:8.999px;font-size:15.749px;}
    .impact-icon5 .icon5{min-width:17.998px;height:17.998px;margin-top:4.499px;}
    .impact-icon5 img{width:8.999px;height:8.999px;}
    .case-content5 h3{font-size:47.995px;margin-bottom:14.999px;}
    .case-tags5{gap:11.999px;margin-bottom:20.998px;}
    .case-tags5 span{padding:8.999px 17.998px;font-size:14.999px;}
    .case-content5 p{font-size:16.498px;margin-bottom:20.998px;}
    .case-content5 h4{font-size:29.998px;margin-bottom:8.999px;}
    .partnership-list5{gap:11.999px;}
    .p-item5{grid-template-columns:14.999px 1fr;column-gap:11.999px;}
    .dot5{width:6px;height:6px;margin-top:10.499px;}
    .p-item5 strong{font-size:17.998px;}
    
    .join-club-section{padding:0 29.998px 119.988px;}
    .join-title{font-size:59.994px;margin-bottom:22.498px;}
    .join-subtitle{font-size:29.998px;margin-bottom:22.498px;}
    .cta-btn{margin-top:14.999px;}
    .btn{gap:7.499px;height:67.498px;padding:8.999px 14.999px 8.999px 8.999px;font-size:22.498px;}
    .btn-icon{width:44.995px;height:44.995px;}
    .btn-icon img{width:19.498px;height:19.498px;}

    

    .site-footer { padding: 105px 30px 60px; }
    .footer-container { max-width: 1500px; gap: 105px;}
    .footer-logo { width: 75px; margin-bottom: 37.5px;}
    .footer-item { gap: 18px; margin-bottom: 21px;}
    .footer-item img { margin-top: 6px;}
    .footer-item span { font-size: 19.5px;}
    .footer-links-col h4 { margin-bottom: 27px;}
    .footer-links-col a { font-size: 24px; margin-bottom: 21px;}
    .footer-about-col p { font-size: 22.5px; margin-bottom: 36px; margin-top: 27px;}
    .footer-social { gap: 24px;}
    .footer-social img { width: 45px; padding: 9px;}
    .footer-divider { max-width: 1500px; margin: 60px auto 30px; height: 1.5px; }
    .footer-bottom { max-width: 1500px; font-size: 18px; }
    .footer-bottom-links { gap: 27px; }
    .footer-brand { margin-top: 90px; font-size: 375px; }

  }
  
  
  
  
  
  
  /* =========================
     (min-width: 2560px)
  ========================= */
  
  @media (min-width: 2560px) {
  
    .hero { margin-bottom: 40px; padding-top: 184px; }
    .header { padding: 32px 40px 16px; }
    .header-container { max-width: 1920px; height: 136px; }
    .logo { font-size: 52px; }
    .nav { gap: 56px; }
    .nav a { font-size: 28px; }
    


    .client-club-section { margin: 80px auto; padding: 0 40px;}
    .club-title { font-size: 80px;}
    .club-desc { margin-top: 20px; font-size: 24px; margin-bottom: 80px;}
    .club-marquee { gap: 36px;}
    .marquee-track { gap: 36px;}
    .marquee-track img { width: 700px; height: 408px;}
    
    .case-study-section1 { max-width: 2000px; margin: 120px auto; padding: 0 40px;}
    .case-pill { margin: 0 auto 28px;}
    .story-glass-pill { gap: 14px; padding: 16px 30px;}
    .story-glass-pill span { font-size: 26px;}
    .story-glass-pill img { width: 28px; height: 28px;}
    .story-glass-pill::before { width: 60px; height: 32px; top: -20px; left: 24px;}
    .story-glass-pill span::before { width: 60px; height: 24px; top: 26px; left: -100px;}
    .story-glass-pill::after { width: 60px; height: 40px; bottom: 100px; right: -20px;}
    .story-glass-pill span::after { width: 60px; height: 28px; bottom: -10px; right: -100px;}
    .story-glass-pill img { width: 28px;}
    .case-title { font-size: 80px;}
    .case-desc { max-width: 1240px; margin: 28px auto 80px; font-size: 23px;}
    .case-card1 { padding: 32px; gap: 60px;}
    .case-image-box1 { width: 800px; height: 1000px;}
    .case-logo1 { top: 80px; width: 480px;}
    .impact-box1 { bottom: 28px; left: 28px; right: 28px; padding: 28px 28px 32px;}
    .impact-box1 h4 { margin-bottom: 20px;}
    .impact-icon1 li { gap: 20px; margin-bottom: 10px; font-size: 21px;}
    .impact-icon1 .icon1 { min-width: 24px; height: 24px;}
    .impact-icon1 .icon1 img { width: 12px; height: 12px;}
    .case-content1 h3 { font-size: 70px; margin-bottom: 20px;}
    .case-tags1 { gap: 16px; margin-bottom: 28px;}
    .case-tags1 span { padding: 12px 24px; font-size: 20px;}
    .case-content1 p { font-size: 22px; margin-bottom: 30px;}
    .case-content1 h4 { font-size: 42px; margin-bottom: 12px;}
    .partnership-list1 { gap: 16px;}
    .p-item1 { grid-template-columns: 20px 280px 1fr; column-gap: 16px;}
    .p-item1 .dot1 { width: 8px; height: 8px; margin-top: 16px;}
    .p-item1 strong { font-size: 24px;}
    .p-text1 { font-size: 22px;}
    
    

    .case-study-section2{max-width:1999.6px;margin:119.98px auto;padding:0 39.994px;}
    .case-card2{padding:31.996px;gap:59.993px;}
    .case-image-box2{width:799.92px;height:999.9px;}
    .case-logo2{top:79.992px;width:219.976px;}
    .impact-box2{bottom:27.997px;left:27.997px;right:27.997px;padding:27.997px 27.997px 31.996px;}
    .impact-box2 h4{margin-bottom:19.997px;}
    .impact-icon2 li{gap:19.997px;margin-bottom:9.998px;font-size:20.997px;}
    .impact-icon2 .icon2{min-width:23.997px;height:23.997px;}
    .impact-icon2 .icon2 img{width:11.998px;height:11.998px;}
    .case-content2 h3{font-size:69.991px;margin-bottom:19.997px;}
    .case-tags2{gap:15.998px;margin-bottom:27.997px;}
    .case-tags2 span{padding:11.998px 23.997px;font-size:19.997px;}
    .case-content2 p{font-size:21.997px;margin-bottom:29.997px;}
    .case-content2 h4{font-size:41.994px;margin-bottom:11.998px;}
    .partnership-list2{gap:15.998px;}
    .p-item2{grid-template-columns:19.997px 1fr;column-gap:15.998px;}
    .p-item2 .dot2{width:7.999px;height:7.999px;margin-top:15.998px;}
    .p-item2 strong{font-size:23.997px;}
    
    .case-study-section3{max-width:1999.6px;margin:119.98px auto;padding:0 39.994px;}
    .case-card3{padding:31.996px;gap:59.993px;}
    .case-image-box3{height:999.9px;}
    .case-logo3{top:47.994px;width:239.975px;}
    .impact-box3{left:27.997px;right:27.997px;bottom:27.997px;padding:27.997px 27.997px 31.996px;}
    .impact-box3 h4{font-size:25.997px;margin-bottom:15.998px;}
    .impact-icon3 li{gap:19.997px;font-size:20.997px;margin-bottom:11.998px;}
    .icon3{width:23.997px;height:23.997px;}
    .icon3 img{width:11.998px;}
    .case-content3 h3{font-size:67.991px;margin-bottom:19.997px;}
    .case-tags3{gap:15.998px;margin-bottom:27.997px;}
    .case-tags3 span{padding:11.998px 19.997px;font-size:19.997px;}
    .case-content3 p{font-size:21.997px;margin-bottom:27.997px;}
    .case-content3 h4{font-size:39.994px;margin-bottom:11.998px;}
    .partnership-list3{gap:19.997px;}
    .p-item3{gap:15.998px;}
    .dot3{width:7.999px;height:7.999px;margin-top:15.998px;}
    .p-item3 strong{font-size:23.997px;}


    
    .case-study-section4{max-width:1999.8px;margin:119.99px auto;padding:0 39.996px;}
    .case-card4{padding:35.997px;gap:55.994px;}
    .case-image-box4{min-height:999.9px;}
    .case-logo4{top:43.998px;width:179.998px;}
    .impact-box4{bottom:31.997px;left:31.997px;right:31.997px;padding:27.997px 27.997px 31.997px;}
    .impact-box4 h4{font-size:25.997px;margin-bottom:19.997px;}
    .impact-icon4 li{gap:19.997px;margin-bottom:11.998px;font-size:20.997px;}
    .icon4{width:23.997px;height:23.997px;}
    .icon4 img{width:11.998px;height:11.998px;}
    .case-content4{padding:15.997px 11.998px;}
    .case-content4 h3{font-size:59.993px;margin-bottom:15.997px;}
    .case-tags4{gap:15.997px;margin-bottom:27.997px;}
    .case-tags4 span{padding:11.998px 23.997px;font-size:19.997px;}
    .case-content4 p{font-size:22.997px;margin-bottom:27.997px;}
    .case-content4 h4{font-size:35.997px;margin-bottom:11.998px;}
    .partnership-list4{gap:19.997px;margin-top:11.998px;}
    .p-item4{grid-template-columns:19.997px 1fr;column-gap:19.997px;}
    .dot4{width:7.999px;height:7.999px;margin-top:15.997px;}
    .p-item4 strong{font-size:22.997px;}
    
    .case-study-section5{max-width:1999.8px;margin:119.99px auto;padding:0 39.996px;}
    .case-card5{padding:31.997px;gap:59.993px;}
    .case-image-box5{min-height:999.9px;}
    .case-logo5{top:51.996px;width:279.973px;}
    .impact-box5{bottom:27.997px;left:27.997px;right:27.997px;padding:27.997px 27.997px 31.997px;}
    .impact-box5 h4{font-size:25.997px;margin-bottom:15.997px;}
    .impact-icon5 li{gap:15.997px;margin-bottom:11.998px;font-size:20.997px;}
    .impact-icon5 .icon5{min-width:23.997px;height:23.997px;margin-top:5.998px;}
    .impact-icon5 img{width:11.998px;height:11.998px;}
    .case-content5 h3{font-size:63.993px;margin-bottom:19.997px;}
    .case-tags5{gap:15.997px;margin-bottom:27.997px;}
    .case-tags5 span{padding:11.998px 23.997px;font-size:19.997px;}
    .case-content5 p{font-size:21.997px;margin-bottom:27.997px;}
    .case-content5 h4{font-size:39.997px;margin-bottom:11.998px;}
    .partnership-list5{gap:15.997px;}
    .p-item5{grid-template-columns:19.997px 1fr;column-gap:15.997px;}
    .dot5{width:7.999px;height:7.999px;margin-top:13.997px;}
    .p-item5 strong{font-size:23.997px;}
    
    .join-club-section{padding:0 39.996px 159.984px;}
    .join-title{font-size:79.992px;margin-bottom:29.997px;}
    .join-subtitle{font-size:39.997px;margin-bottom:29.997px;}
    .cta-btn{margin-top:19.997px;}
    .btn{gap:9.998px;height:89.994px;padding:11.998px 19.997px 11.998px 11.998px;font-size:29.997px;}
    .btn-icon{width:59.993px;height:59.993px;}
    .btn-icon img{width:25.997px;height:25.997px;}
    


    .site-footer { padding: 140px 40px 80px; }
    .footer-container { max-width: 2000px; gap: 140px;}
    .footer-logo { width: 100px; margin-bottom: 50px;}
    .footer-item { gap: 24px; margin-bottom: 28px;}
    .footer-item img { margin-top: 8px;}
    .footer-item span { font-size: 26px;}
    .footer-links-col h4 { margin-bottom: 36px;}
    .footer-links-col a { font-size: 32px; margin-bottom: 28px;}
    .footer-about-col p { font-size: 30px; margin-bottom: 48px; margin-top: 36px;}
    .footer-social { gap: 32px;}
    .footer-social img { width: 60px; padding: 12px;}
    .footer-divider { max-width: 2000px; margin: 80px auto 40px; height: 2px; }
    .footer-bottom { max-width: 2000px; font-size: 24px; }
    .footer-bottom-links { gap: 36px; }
    .footer-brand { margin-top: 120px; font-size: 500px; }  

  }































  /* =========================
   MOBILE VIEW
========================= */
@media (max-width:480px){

  body{ overflow-x:hidden;}
  
  .hero{ padding-top:90px; align-items:center;}

  .header{ position:fixed; top:0; left:0; width:100%; z-index:9999; display:flex; justify-content:center; padding:12px 0;}

  .header-container{ width:92%; max-width:420px; height:56px; display:flex; align-items:center; justify-content:space-between; margin:0 auto;background: rgba(255, 255, 255, 0.65);backdrop-filter: blur(8px);-webkit-backdrop-filter: blur(12px);border-radius: 999px;border: 0.5px solid rgba(0, 0, 0, 0.05);box-shadow:0 24px 60px rgba(0, 0, 0, 0.055),inset 0 1px 0 rgba(255, 255, 255, 0.32);}

  .logo{ font-size:20px;}

  .menu-toggle{ display:block; font-size:22px; color: #000; background:none; border:none; cursor:pointer;}

  .nav{ display:none; position:absolute; top:70px; left:50%; transform:translateX(-50%); width:92%; max-width:420px; background:#fff; border-radius:16px; padding:18px; flex-direction:column; gap:16px; box-shadow:0 20px 40px rgba(0,0,0,0.08);}

  .nav.show{ display:flex;}

  .nav a{ font-size:15px; text-align:center;}

  .client-club-section{margin:25px auto;padding:0 14px;}

  .club-title{font-size:22px;line-height:1.35;}
  
  .club-desc{font-size:12px;margin-bottom:22px;}
  
  .club-marquee{gap:10px;}
  
  .marquee-row{width:100%;overflow:hidden;}
  
  .marquee-track{gap:10px;width:max-content;will-change:transform;}
  
  .marquee-track img{width:200px;height:120px;border-radius:10px;object-fit:cover;}
  
  .marquee-row.left .marquee-track{animation:scrollLeft 18s linear infinite;}
  
  .marquee-row.right .marquee-track{animation:scrollRight 18s linear infinite;}

  .case-study-section1{margin:40px auto;padding:0 14px;text-align:center;}

  .story-glass-pill{padding:6px 12px;gap:6px;}
  .story-glass-pill span{font-size:12px;}
  .story-glass-pill img{width:12px;height:12px;}
  
  .case-title{font-size:24px;line-height:1.3;}
  
  .case-desc{font-size:12px;margin:12px auto 28px;line-height:1.6;}
  
  .case-card1{grid-template-columns:1fr;padding:12px;gap:18px;border-radius:16px;}
  
  .case-image-box1{width:100%;height:360px;border-radius:14px;}
  
  .case-logo1{width:160px;top:24px;}
  
  .impact-box1{padding:12px;border-radius:12px;}
  
  .impact-box1 h4{font-size:13px;margin-bottom:8px;}
  
  .impact-icon1 li{font-size:10.5px;gap:8px;}
  
  .case-content1 h3{font-size:26px;margin-bottom:8px;text-align:left;}
  
  .case-tags1{gap:6px;margin-bottom:12px;}
  
  .case-tags1 span{font-size:9.5px;padding:5px 10px;}
  
  .case-content1 p{font-size:12px;line-height:1.6;margin-bottom:14px;}
  
  .case-content1 h4{font-size:18px;margin-bottom:6px;}
  
  .partnership-list1{gap:10px;}
  
  .p-item1{grid-template-columns:8px 110px 1fr;column-gap:6px;}
  
  .p-item1 strong{font-size:11px;}
  
  .p-text1{font-size:11px;line-height:1.5;}

  .case-study-section2{margin:40px auto;padding:0 14px;text-align:center;}

  .case-card2{grid-template-columns:1fr;padding:12px;gap:18px;border-radius:16px;}
  
  .case-content2{order:2;justify-content:flex-start;}
  
  .case-content2 h3{font-size:26px;margin-bottom:8px;text-align:left;}
  
  .case-tags2{gap:6px;margin-bottom:12px;}
  
  .case-tags2 span{font-size:9.5px;padding:5px 10px;}
  
  .case-content2 p{font-size:12px;line-height:1.6;margin-bottom:14px;}
  
  .case-content2 h4{font-size:18px;margin-bottom:6px;}
  
  .partnership-list2{gap:10px;}
  
  .p-item2{grid-template-columns:8px 1fr;column-gap:6px;}
  
  .p-item2 strong{font-size:11px;line-height:1.5;}
  
  .case-image-box2{order:1;width:100%;height:360px;border-radius:14px;}
  
  .case-logo2{width:80px;top:24px;}
  
  .impact-box2{padding:12px;border-radius:12px;}
  
  .impact-box2 h4{font-size:13px;margin-bottom:8px;}
  
  .impact-icon2 li{font-size:10.5px;gap:8px;}

  .case-study-section3{margin:40px auto;padding:0 14px;}

  .case-card3{grid-template-columns:1fr;padding:12px;gap:18px;border-radius:16px;}
  
  .case-image-box3{order:1;height:360px;border-radius:14px;}
  
  .case-main-img3{transform:scale(1.05);object-position:center;}
  
  .case-logo3{width:85px;top:20px;}
  
  .impact-box3{padding:12px;border-radius:12px;}
  
  .impact-box3 h4{font-size:13px;margin-bottom:8px;}
  
  .impact-icon3 li{font-size:10.5px;gap:8px;line-height:1.3;}
  
  .case-content3{order:2;justify-content:flex-start;}
  
  .case-content3 h3{font-size:26px;margin-bottom:8px;}
  
  .case-tags3{gap:6px;margin-bottom:12px;}
  
  .case-tags3 span{font-size:9.5px;padding:5px 10px;}
  
  .case-content3 p{font-size:12px;line-height:1.6;margin-bottom:14px;}
  
  .case-content3 h4{font-size:18px;margin-bottom:6px;}
  
  .partnership-list3{gap:10px;}
  
  .p-item3{grid-template-columns:8px 1fr;gap:6px;}
  
  .p-item3 strong{font-size:11px;line-height:1.5;}

  .case-study-section4{margin:40px auto;padding:0 14px;}

  .case-card4{grid-template-columns:1fr;padding:12px;gap:18px;border-radius:16px;}
  
  .case-content4{order:2;justify-content:flex-start;padding:0;}
  
  .case-content4 h3{font-size:26px;margin-bottom:8px;}
  
  .case-tags4{gap:6px;margin-bottom:12px;}
  
  .case-tags4 span{font-size:9.5px;padding:5px 10px;}
  
  .case-content4 p{font-size:12px;line-height:1.6;margin-bottom:14px;}
  
  .case-content4 h4{font-size:18px;margin-bottom:6px;}
  
  .partnership-list4{gap:10px;}
  
  .p-item4{grid-template-columns:8px 1fr;column-gap:6px;}
  
  .p-item4 strong{font-size:11px;line-height:1.5;}
  
  .case-image-box4{order:1;min-height:auto;height:360px;border-radius:14px;}
  
  .case-logo4{width:70px;top:18px;}
  
  .impact-box4{padding:12px;border-radius:12px;}
  
  .impact-box4 h4{font-size:13px;margin-bottom:8px;}
  
  .impact-icon4 li{font-size:10.5px;gap:8px;line-height:1.3;}
  
  .case-study-section5{margin:40px auto;padding:0 14px;}

  .case-card5{grid-template-columns:1fr;padding:12px;gap:18px;border-radius:16px;}
  
  .case-image-box5{order:1;min-height:auto;height:360px;border-radius:14px;}
  
  .case-logo5{width:90px;top:20px;}
  
  .impact-box5{padding:12px;border-radius:12px;}
  
  .impact-box5 h4{font-size:13px;margin-bottom:8px;}
  
  .impact-icon5 li{font-size:10.5px;gap:8px;line-height:1.3;}
  
  .case-content5{order:2;justify-content:flex-start;}
  
  .case-content5 h3{font-size:26px;margin-bottom:8px;}
  
  .case-tags5{gap:6px;margin-bottom:12px;}
  
  .case-tags5 span{font-size:9.5px;padding:5px 10px;}
  
  .case-content5 p{font-size:12px;line-height:1.6;margin-bottom:14px;}
  
  .case-content5 h4{font-size:18px;margin-bottom:6px;}
  
  .partnership-list5{gap:10px;}
  
  .p-item5{grid-template-columns:8px 1fr;column-gap:6px;}
  
  .p-item5 strong{font-size:11px;line-height:1.5;}  

  .join-club-section{padding:0 14px 60px;}

  .join-title{font-size:26px;line-height:1.3;margin-bottom:12px;}
  
  .join-subtitle{font-size:14px;line-height:1.5;margin-bottom:14px;}
  
  .cta-btn-wrap{justify-content:center;}
  
  .cta-btn{margin-top:8px;}
  
  .btn{height:42px;padding:6px 10px 6px 6px;font-size:13px;gap:6px;}
  
  .btn-icon{width:26px;height:26px;}
  
  .btn-icon img{width:11px;height:11px;}
  
  .site-footer{padding:40px 14px 24px;}
  
  .footer-container{grid-template-columns:1fr;gap:30px;text-align:center;}
  
  .footer-container .footer-col:nth-child(2){justify-self:center;}
  
  .footer-logo{width:42px;margin:0 auto 18px;}
  
  .footer-item{justify-content:center;text-align:center;}
  
  .footer-item span{font-size:12px;line-height:1.5;}
  
  .footer-links-col a{font-size:14px;margin-bottom:10px;}
  
  .footer-about-col p{font-size:13px;margin:10px 0 18px;}
  
  .footer-social{justify-content:center;gap:12px;}
  
  .footer-social img{width:26px;padding:5px;}
  
  .footer-divider{margin:24px auto 16px;}
  
  .footer-bottom{flex-direction:column;gap:10px;font-size:11px;text-align:center;}
  
  .footer-bottom-links{gap:12px;flex-wrap:wrap;justify-content:center;}
  
  .footer-brand{margin-top:30px;font-size:80px;}
  
  .wave-text span{animation-duration:5s;}  
}