@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Nunito:wght@400;500;600&display=swap");

:root {
  --teal: #40e0d0;
  --teal-light: #e6faf8;
  --teal-mid: rgba(64, 224, 208, 0.15);
  --dark: #333333;
  --dark2: #222222;
  --white: #ffffff;
  --gray: #666666;
  --border: rgba(64, 224, 208, 0.2);
  --radius: 14px;
  --nav-h: 60px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  background: var(--white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}
/* .nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--teal); text-decoration: none;
  letter-spacing: -.5px;
} */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 70px;
  width: auto;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  /* border-radius: 75%; */
}
.nav-logo span {
  color: var(--white);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}
nav ul a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
nav ul a:hover,
nav ul a.active {
  color: var(--teal);
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
}

/* ── HERO ── */
.hero {
  background: var(--dark);
  padding: 72px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1.5px solid rgba(64, 224, 208, 0.12);
}
.hero::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -30px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1.5px solid rgba(64, 224, 208, 0.08);
}
.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(64, 224, 208, 0.12);
  border: 1px solid rgba(64, 224, 208, 0.3);
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 em {
  color: var(--teal);
  font-style: normal;
}
.hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  max-width: 380px;
  margin-bottom: 28px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-visual {
  background: rgba(64, 224, 208, 0.07);
  border: 1px solid rgba(64, 224, 208, 0.18);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-inner {
  font-size: 80px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    opacity 0.15s;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.btn-primary {
  background: var(--teal);
  color: var(--dark);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ── SHARED SECTION STYLES ── */
.container {
  max-width: 1000px;
  margin: 0 auto;
}
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.section-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 36px;
}
.teal-label {
  color: var(--teal);
}
.white-title {
  color: var(--white);
}

/* ── WAVE DIVIDERS ── */
.wave-down {
  display: block;
  line-height: 0;
}
.wave-up {
  display: block;
  line-height: 0;
}

/* ── SECTION 2: OFFER ── */
.offer-section {
  background: var(--teal-light);
  padding: 72px 5%;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.offer-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}
.offer-icon {
  width: 50px;
  height: 50px;
  background: var(--teal-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.offer-card h4 {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.offer-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}
.offer-card strong {
  color: var(--dark);
}

/* ── SECTION 3: PARTNERS ── */
.partners-section {
  background: var(--white);
  padding: 72px 5%;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.partner-card {
  background: var(--teal-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--dark);
  display: block;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.partner-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: 0 12px 32px rgba(64, 224, 208, 0.18);
}
.partner-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  max-height: 270px;
}
.partner-card-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(64, 224, 208, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}
.partner-card-body {
  padding: 18px 20px 20px;
}
.partner-card-body h3 {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.partner-cuisine {
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}
.partner-phone {
  font-size: 13px;
  color: var(--gray);
}
.loading-msg {
  color: var(--gray);
  font-size: 14px;
  padding: 40px 0;
}
.error-msg {
  color: #e24b4a;
  font-size: 14px;
  padding: 40px 0;
}

/* ── SECTION 4: HOW TO ORDER ── */
.how-section {
  background: var(--dark);
  padding: 72px 5%;
}
.steps-track {
  position: relative;
  margin-top: 40px;
  margin-bottom: 52px;
}
.steps-line {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: rgba(64, 224, 208, 0.2);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.step {
  text-align: center;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(64, 224, 208, 0.1);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--teal);
  margin: 0 auto 16px;
}
.step h4 {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.step p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}
.cta-box {
  text-align: center;
  border-top: 1px solid rgba(64, 224, 208, 0.15);
  padding-top: 40px;
}
.cta-box p {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

/* ── FAQ ACCORDION ── */
.faq-list {
  max-width: 720px;
}
.faq-item {
  border-bottom: 1px solid rgba(64, 224, 208, 0.2);
  padding: 20px 0;
}
.faq-q {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
}
.faq-a p {
  padding-top: 12px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* ── MENU PAGE ── */
.menu-header {
  background: var(--dark);
  padding: 56px 5% 48px;
  position: relative;
  overflow: hidden;
}
.menu-header::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(64, 224, 208, 0.1);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 24px;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}
.back-link:hover {
  color: var(--teal);
}
.menu-header h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.cuisine-tag {
  display: inline-block;
  background: var(--teal);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.menu-phone {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.menu-content {
  padding: 56px 5%;
  max-width: 900px;
}
.menu-section {
  margin-bottom: 52px;
}
.menu-section-title {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  border-bottom: 2.5px solid var(--teal);
  padding-bottom: 8px;
  margin-bottom: 20px;
  display: inline-block;
}
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-item {
  background: var(--teal-light);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  gap: 20px;
  transition: border-color 0.2s;
}
.menu-item:hover {
  border-color: var(--teal);
}
.menu-item-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}
.menu-item-info p {
  font-size: 12px;
  color: var(--gray);
}
.menu-item-price {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--teal);
  flex-shrink: 0;
}

/* ── ABOUT PAGE ── */
.about-hero {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 80px 5%;
}
.about-hero .section-title {
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 16px;
}
.about-hero p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto;
  font-size: 16px;
}
.about-section {
  padding: 72px 5%;
}
.about-section.alt {
  background: var(--teal-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.about-feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--border);
}
.about-feature-card .feat-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.about-feature-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-feature-card p {
  font-size: 13px;
  color: var(--gray);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 36px;
  max-width: 1000px;
}
.why-card {
  border-left: 3px solid var(--teal);
  padding: 22px 22px 22px 26px;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.why-card p {
  font-size: 13px;
  color: var(--gray);
}

/* ── FOOTER ── */
footer {
  background: var(--dark2);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 28px 5%;
  font-size: 13px;
}
footer a {
  color: var(--teal);
  text-decoration: none;
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   ══════════════════════════════════════════ */

/* ── TABLET (≤768px) ── */
@media (max-width: 768px) {
  nav {
    padding: 0 5%;
    position: relative;
  }
  nav ul {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 2px solid rgba(64, 224, 208, 0.2);
    z-index: 200;
  }
  nav ul.open {
    display: flex;
  }
  nav ul li a {
    display: block;
    padding: 12px 5%;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-right: -8px;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.25s;
  }
  .nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding: 48px 5% 56px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-visual {
    display: none;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 15px;
    max-width: 100%;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .hero-btns .btn {
    text-align: center;
    width: 100%;
    padding: 14px;
  }

  .offer-section,
  .partners-section,
  .how-section,
  .about-section {
    padding: 52px 5%;
  }
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .offer-card {
    padding: 22px 20px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps-line {
    display: none;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .step-num {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .cta-box {
    padding-top: 32px;
  }

  .faq-q {
    font-size: 15px;
  }

  .about-hero {
    padding: 52px 5%;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }

  .menu-header {
    padding: 40px 5% 36px;
  }
  .menu-content {
    padding: 40px 5%;
  }
  .menu-item {
    padding: 14px 16px;
  }
  .menu-item-info h4 {
    font-size: 14px;
  }
  .menu-item-price {
    font-size: 15px;
  }
}

/* ── PHONE (≤480px) ── */
@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .nav-logo {
    font-size: 18px;
  }

  .offer-section,
  .partners-section,
  .how-section,
  .about-section {
    padding: 44px 4%;
  }
  .offer-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .offer-card h4 {
    font-size: 14px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
  .step-num {
    flex-shrink: 0;
    margin: 0;
  }
  .step h4 {
    margin-bottom: 4px;
  }

  .cta-box p {
    font-size: 16px;
  }
  .cta-box .btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .faq-q {
    font-size: 14px;
  }
  .faq-a p {
    font-size: 13px;
  }

  .about-hero p {
    font-size: 14px;
  }

  .menu-header h1 {
    font-size: 26px;
  }
  .menu-section-title {
    font-size: 18px;
  }
  .menu-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .menu-item-price {
    font-size: 16px;
  }

  footer {
    font-size: 12px;
    padding: 24px 4%;
  }
}

/* ── FOOTER LAYOUT ── */
footer {
  background: var(--dark2);
  color: rgba(255, 255, 255, 0.4);
  padding: 24px 5%;
  font-size: 13px;
  text-align: left;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-right {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}
.footer-instagram {
  color: var(--teal);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.footer-instagram:hover {
  opacity: 0.75;
  transform: scale(1.1);
}

/* ── HERO VISUAL IMAGE ── */
.hero-visual {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  background: rgba(64, 224, 208, 0.07);
  border: 1px solid rgba(64, 224, 208, 0.18);
}
.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* ── MENU ACCORDION ── */
.accordion-section {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  transition: background 0.2s;
}
.accordion-header:hover {
  background: var(--teal-light);
}
.accordion-section.open .accordion-header {
  background: var(--teal-light);
}
.accordion-header span:first-child {
  flex: 1;
}
.accordion-count {
  font-size: 11px;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  color: var(--teal) !important;
  background: rgba(64, 224, 208, 0.12);
  padding: 3px 10px;
  border-radius: 99px;
  flex-shrink: 0;
}
.accordion-arrow {
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.accordion-section.open .accordion-arrow {
  transform: rotate(180deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-section.open .accordion-body {
  max-height: 2000px;
}
.accordion-body .menu-items {
  padding: 4px 22px 20px;
}

@media (max-width: 480px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .accordion-header {
    padding: 16px 18px;
    font-size: 15px;
  }
  .accordion-body .menu-items {
    padding: 4px 14px 16px;
  }
  .hero-visual {
    display: block;
    margin-top: 28px;
    aspect-ratio: 16/9;
  }
}

/* ── REWARDS SECTION ── */
.rewards-inner {
  background: var(--dark);
  border-radius: 20px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(64, 224, 208, 0.15);
}

@media (max-width: 768px) {
  .rewards-inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }
  .rewards-inner h3 {
    font-size: 20px !important;
  }
  .rewards-inner > div:last-child {
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .rewards-inner {
    padding: 24px 18px;
    border-radius: 14px;
  }
  .rewards-inner > div:first-child > div:first-child {
    font-size: 36px !important;
  }
}

/* ── PARTNERSHIPS SECTION ── */
.partnership-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.partnership-card {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  padding: 20px 16px;
}
.partnership-stat-num {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
}
.partnership-stat-label {
  font-size: 12px;
  color: var(--dark);
  opacity: 0.65;
  margin-top: 4px;
}

/* ── HAMBURGER NAV FIX (about page) ── */
nav {
  position: sticky;
  z-index: 300;
}
nav ul {
  z-index: 400;
}

@media (max-width: 768px) {
  .partnership-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .partnership-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
  }
  .partnership-stat-num {
    font-size: 22px;
    flex-shrink: 0;
    min-width: 80px;
  }
  .partnership-stat-label {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .partnership-stat-num {
    font-size: 20px;
  }
}
