
/* ========================= */
/* RESET & BASE              */
/* ========================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 400; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background: var(--bg-body); color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; }

/* ========================= */
/* THEME VARIABLES           */
/* ========================= */
:root {
  --bg-body: #0f1525;
  --bg-section-alt: #151d30;
  --bg-card: rgba(255,255,255,0.04);
  --border-card: rgba(255,255,255,0.07);
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.7);
  --text-muted: rgba(255,255,255,0.55);
  --text-faint: rgba(255,255,255,0.3);
  --nav-bg: rgba(10,14,26,0.6);
  --nav-border: rgba(255,255,255,0.06);
  --nav-text: rgba(255,255,255,0.55);
  --nav-text-hover: #ffffff;
  --tag-partner-bg: rgba(9,115,186,0.15);
  --tag-partner-text: #0b8bdf;
  --tag-default-bg: rgba(255,255,255,0.06);
  --tag-default-text: rgba(255,255,255,0.5);
  --tag-count-bg: rgba(247,151,100,0.12);
  --tag-count-text: #f79764;
  --card-hover-shadow: 0 12px 40px rgba(9,115,186,0.15);
  --card-hover-border: #0973ba;
  --toggle-bg: rgba(255,255,255,0.06);
  --toggle-border: rgba(255,255,255,0.1);
  --quote-text: rgba(255,255,255,0.65);
}

html[data-theme="light"] {
  --bg-body: #ffffff;
  --bg-section-alt: #f6f8fb;
  --bg-card: #ffffff;
  --border-card: #eef1f6;
  --text-primary: #111827;
  --text-secondary: #3a4555;
  --text-muted: #6b7a8d;
  --text-faint: #c0c8d6;
  --nav-bg: rgba(255,255,255,0.92);
  --nav-border: rgba(0,0,0,0.06);
  --nav-text: #6b7a8d;
  --nav-text-hover: #111827;
  --tag-partner-bg: rgba(9,115,186,0.08);
  --tag-partner-text: #0973ba;
  --tag-default-bg: #eef1f6;
  --tag-default-text: #6b7a8d;
  --tag-count-bg: #fef4ee;
  --tag-count-text: #f58040;
  --card-hover-shadow: 0 12px 40px rgba(9,115,186,0.1);
  --card-hover-border: #0973ba;
  --toggle-bg: #eef1f6;
  --toggle-border: #dde2eb;
  --quote-text: #3a4555;
}

/* ========================= */
/* LAYOUT                    */
/* ========================= */
.hp-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.hp-section { padding: 96px 0; }

/* ========================= */
/* HERO                      */
/* ========================= */
.hp-hero {
  background: #0a0e1a; overflow: hidden; position: relative;
  padding: 140px 0 100px;
}
.hp-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px; z-index: 0;
}
.hp-hero::after {
  content: ''; position: absolute; top: -200px; left: -100px;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(9,115,186,0.12) 0%, transparent 70%);
  z-index: 0;
}
.hp-hero-orb-orange {
  position: absolute; bottom: -100px; right: -50px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,151,100,0.06) 0%, transparent 70%);
  z-index: 0;
}
.hp-hero-centered {
  text-align: center; position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto;
}

/* Badge pill */
.hp-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; padding: 8px 20px 8px 14px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease both;
}
.hp-hero-badge strong { color: #fff; font-weight: 700; }
.hp-pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981; flex-shrink: 0;
  box-shadow: 0 0 8px rgba(16,185,129,0.5);
  animation: pulse 2s ease-in-out infinite;
}

/* Headline */
.hp-hero h1 {
  font-size: clamp(36px, 4.5vw, 56px); font-weight: 800;
  color: #fff; line-height: 1.12; margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.08s both;
}

/* Orange subtitle in h1 */
.hp-hero-orange {
  background: linear-gradient(135deg, #f79764, #fbbf78);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scrolling cert marquee */
.hp-marquee-wrap {
  overflow: hidden; margin-bottom: 32px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  animation: fadeUp 0.6s ease 0.12s both;
}
.hp-marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marqueeScroll 25s linear infinite;
}
.hp-marquee-item {
  font-size: clamp(22px, 3vw, 36px); font-weight: 800;
  letter-spacing: -0.02em; color: #0973ba; white-space: nowrap;
  padding: 0 20px;
}
.hp-marquee-sep {
  font-size: clamp(22px, 3vw, 36px); font-weight: 300;
  color: rgba(255,255,255,0.15); white-space: nowrap;
  padding: 0;
}
html[data-theme="light"] .hp-marquee-sep { color: rgba(0,0,0,0.1); }

/* Subheadline */
.hp-hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.45);
  line-height: 1.75; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto;
  animation: fadeUp 0.6s ease 0.16s both;
}

/* CTAs */
.hp-hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px;
  justify-content: center;
  animation: fadeUp 0.6s ease 0.24s both;
}
.hp-btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f79764; color: #fff; font-size: 15px; font-weight: 700;
  padding: 15px 30px; border-radius: 16px;
  box-shadow: 0 4px 24px rgba(247,151,100,0.25);
  transition: all 0.25s;
}
.hp-btn-primary:hover { background: #f58040; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(247,151,100,0.35); }
.hp-btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8);
  font-size: 15px; font-weight: 600; padding: 15px 30px;
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.25s;
}
.hp-btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Stats row */
.hp-hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.6s ease 0.32s both;
}
.hp-hero-stat-val { font-size: 24px; font-weight: 800; color: #fff; }
.hp-hero-stat-lbl { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.3); }

/* ========================= */
/* PARTNER BAR               */
/* ========================= */
.hp-partners {
  background: #0f1525; border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 32px 0;
  animation: fadeUp 0.6s ease 0.4s both;
}
.hp-partners-inner {
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.hp-partners-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.2);
}
.hp-partner-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 100px; padding: 6px 14px 6px 6px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55);
  transition: background 0.2s;
}
.hp-partner-chip:hover { background: rgba(255,255,255,0.08); }
.hp-partner-icon {
  width: 24px; height: 24px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: #fff; flex-shrink: 0;
}

/* ========================= */
/* SECTION HEADER            */
/* ========================= */
.hp-section-hdr { text-align: center; margin-bottom: 48px; }
.hp-section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: #0973ba;
  margin-bottom: 16px;
}
.hp-section-label::before {
  content: ''; width: 20px; height: 2px; background: #0973ba; border-radius: 1px;
}
.hp-section-title {
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 800;
  color: var(--text-primary); margin-bottom: 12px;
}
.hp-section-sub {
  font-size: 16px; color: var(--text-muted); max-width: 460px;
  margin: 0 auto; line-height: 1.7;
}

/* ========================= */
/* APP GRID                  */
/* ========================= */
.hp-apps { background: var(--bg-body); transition: background 0.3s; }
.hp-apps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  align-items: stretch; gap: 20px;
}
.hp-app-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--bg-card); border: 1.5px solid var(--border-card);
  border-radius: 24px; padding: 40px 24px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hp-app-card:hover {
  border-color: #f79764;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-6px);
  text-decoration: none;
}
.hp-app-icon {
  width: 64px; height: 64px; border-radius: 16px;
  object-fit: cover; flex-shrink: 0;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(247,151,100,0.25);
  transition: box-shadow 0.35s;
}
.hp-app-card:hover .hp-app-icon {
  box-shadow: 0 12px 48px rgba(247,151,100,0.4);
}
.hp-app-name { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; transition: color 0.3s; }
.hp-app-certs { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; transition: color 0.3s; }
html[data-theme="light"] .hp-app-certs { color: #4a5568; }

/* ========================= */
/* FEATURES                  */
/* ========================= */
.hp-features { background: var(--bg-section-alt); transition: background 0.3s; }
.hp-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.hp-feat-card {
  background: var(--bg-card); border: 1.5px solid var(--border-card);
  border-radius: 24px; padding: 32px 28px;
  transition: all 0.3s;
}
.hp-feat-card:hover { border-color: transparent; box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-2px); }
.hp-feat-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.hp-feat-icon--blue { color: #0b8bdf; }
.hp-feat-icon--orange { color: #f79764; }
.hp-feat-icon--green { color: #10b981; }
html[data-theme="light"] .hp-feat-icon--blue { color: #0973ba; }
html[data-theme="light"] .hp-feat-icon--orange { color: #f58040; }
html[data-theme="light"] .hp-feat-icon--green { color: #0d9668; }
.hp-feat-card h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; transition: color 0.3s; }
.hp-feat-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; transition: color 0.3s; }

/* ========================= */
/* PASS GUARANTEE            */
/* ========================= */
.hp-guarantee { background: var(--bg-body); transition: background 0.3s; }
.hp-guarantee-card {
  background: #0a0e1a; border-radius: 32px; padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  position: relative; overflow: hidden;
}
.hp-guarantee-card::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(9,115,186,0.12) 0%, transparent 70%);
}
.hp-guarantee-card::after {
  content: ''; position: absolute; bottom: -100px; left: -50px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,151,100,0.06) 0%, transparent 70%);
}
.hp-guarantee-text { position: relative; z-index: 1; }
.hp-guarantee-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(247,151,100,0.1); border: 1px solid rgba(247,151,100,0.2);
  border-radius: 100px; padding: 8px 16px;
  font-size: 14px; font-weight: 700; color: #f79764;
  margin-bottom: 24px;
}
.hp-guarantee-badge i { color: #f79764; font-size: 14px; }
.hp-guarantee-card h2 {
  font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 16px;
}
.hp-guarantee-card > div:first-child p {
  font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7;
}
.hp-guarantee-link {
  display: inline-block; margin-top: 20px;
  font-size: 14px; font-weight: 600; color: #0b8bdf;
  text-decoration: none; transition: color 0.2s;
}
.hp-guarantee-link:hover { color: #3aa8f0; }
.hp-guarantee-steps { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.hp-step {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 18px;
  transition: background 0.2s; position: relative;
}
.hp-step:not(:last-child)::after {
  content: ''; position: absolute;
  left: 34px; top: calc(18px + 32px);
  width: 1px; height: calc(100% - 32px + 14px);
  background: rgba(255,255,255,0.06);
}
.hp-step:hover { background: rgba(255,255,255,0.06); }
.hp-step-num {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  background: rgba(9,115,186,0.2); border: 1px solid rgba(9,115,186,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #0b8bdf;
}
.hp-step h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; letter-spacing: 0; }
.hp-step p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ========================= */
/* TESTIMONIALS              */
/* ========================= */
.hp-testimonials { background: var(--bg-section-alt); transition: background 0.3s; }
.hp-test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.hp-test-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1.5px solid var(--border-card);
  border-radius: 24px; padding: 28px;
  transition: all 0.3s;
}
.hp-test-card:hover { border-color: transparent; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.hp-test-stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }
.hp-test-quote {
  font-size: 14px; color: var(--quote-text); line-height: 1.75;
  font-style: italic; flex: 1; margin-bottom: 20px; transition: color 0.3s;
}
.hp-test-attr { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.hp-test-source {
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
}
.hp-test-source-app { background: rgba(9,115,186,0.12); color: #0b8bdf; }
.hp-test-source-play { background: rgba(16,185,129,0.12); color: #10b981; }
.hp-test-source-reddit { background: rgba(247,151,100,0.12); color: #f79764; }
.hp-test-name { font-size: 12px; color: var(--text-faint); transition: color 0.3s; }

/* ========================= */
/* ORGANIZATIONS             */
/* ========================= */
.hp-orgs { background: var(--bg-body); transition: background 0.3s; }
.hp-orgs-header { text-align: center; margin-bottom: 40px; }
.hp-orgs-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: #f79764; margin-bottom: 16px;
}
.hp-orgs-label::before { content: ''; width: 20px; height: 2px; background: #f79764; }
.hp-orgs-header h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.hp-orgs-header > p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 600px; margin: 0 auto; }
.hp-orgs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.hp-orgs-offering {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 36px;
  display: flex; flex-direction: column;
}
.hp-orgs-offering--wl { border-left: 3px solid rgba(247,151,100,0.4); }
.hp-orgs-offering--vl { border-left: 3px solid rgba(9,115,186,0.3); }
.hp-orgs-pill {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; padding: 4px 12px; border-radius: 20px; margin-bottom: 20px; width: fit-content;
}
.hp-orgs-pill--orange { background: rgba(247,151,100,0.12); color: #f79764; }
.hp-orgs-pill--blue { background: rgba(9,115,186,0.15); color: #4db0e8; }
.hp-orgs-offering h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.hp-orgs-offering > p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.hp-orgs-checks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; flex-grow: 1; }
.hp-orgs-check {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7);
}
.hp-orgs-check-icon {
  width: 22px; height: 22px; border-radius: 7px;
  background: #ecfdf5; color: #10b981;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}
.hp-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.2); color: #fff; background: transparent;
  text-decoration: none; transition: all 0.2s; width: fit-content;
}
.hp-btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); }

/* ========================= */
/* COMMUNITY STUDY FUND      */
/* ========================= */
.hp-fund {
  background: var(--bg-body); border-top: 1px solid var(--border-card);
  padding: 48px 0; transition: background 0.3s, border-color 0.3s;
}
.hp-fund-inner {
  max-width: 780px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
}
.hp-fund-icon {
  width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, #fef4ee, #fff7ed);
  border: 1px solid rgba(247,151,100,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.hp-fund h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; transition: color 0.3s; }
.hp-fund p { font-size: 14px; color: var(--text-muted); line-height: 1.7; transition: color 0.3s; }
.hp-fund a { color: #0973ba; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ========================= */
/* FOOTER                    */
/* ========================= */
.hp-footer { background: #0a0e1a; padding: 44px 0; }
.hp-footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.hp-footer-left { }
.hp-footer-logo { font-weight: 800; font-size: 17px; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.hp-footer-logo .hp-logo-z { font-size: 15px; }
.hp-footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.hp-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.hp-footer-link { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.hp-footer-link:hover { color: rgba(255,255,255,0.7); }

/* ========================= */
/* ANIMATIONS                */
/* ========================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s cubic-bezier(0.2,0.8,0.2,1), transform 0.55s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================= */
/* RESPONSIVE                */
/* ========================= */
@media (max-width: 900px) {
  .hp-container { padding: 0 1.25rem; }
  .hp-hero { padding: 110px 0 60px; }
  .hp-apps-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-test-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-guarantee-card { grid-template-columns: 1fr; padding: 40px 28px; }
  .hp-orgs-grid { grid-template-columns: 1fr; }
  .hp-section { padding: 56px 0; }
}

@media (max-width: 640px) {
  .hp-apps-grid { grid-template-columns: 1fr; }
  .hp-features-grid { grid-template-columns: 1fr; }
  .hp-test-grid { grid-template-columns: 1fr; }
  .hp-hero-stats { gap: 16px; }
  .hp-hero-ctas { flex-direction: column; align-items: center; }
  .hp-btn-primary, .hp-btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
  .hp-partners-inner { flex-direction: column; gap: 16px; }
  .hp-fund-inner { flex-direction: column; text-align: center; }
  .hp-footer-inner { flex-direction: column; text-align: center; }
  .hp-footer-links { justify-content: center; }
  .hp-guarantee-card { padding: 32px 20px; gap: 32px; }
  .hp-orgs-offering { padding: 28px 20px; }
}
