/* ============================================================
   Voryn Connect — Website Styles
   One app. Every need.
   ============================================================ */

:root {
  --blue: #1a6df0;
  --blue-dark: #0d47c2;
  --blue-deep: #0b2a66;
  --navy: #0e1b3d;
  --ink: #0f1e3d;
  --muted: #5b6b85;
  --bg: #f4f8fd;
  --white: #ffffff;
  --green: #1fa356;
  --orange: #f6841f;
  --purple: #7c3aed;
  --red: #e5484d;
  --gold: #f5b301;
  --card-blue: #e9f1fe;
  --card-green: #e7f6ee;
  --card-orange: #fdf2e3;
  --card-purple: #f3edfe;
  --border: #e3ebf6;
  --shadow: 0 10px 30px rgba(15, 45, 110, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 45, 110, 0.14);
  --radius: 18px;
  --radius-lg: 26px;
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--ink); }

.accent { color: var(--blue); }

/* ---------- badges / buttons ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card-blue); color: var(--blue);
  font-weight: 600; font-size: 0.85rem;
  padding: 8px 18px; border-radius: 999px;
  font-family: var(--font-head);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 10px 24px rgba(26, 109, 240, 0.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-3px); }
.btn-outline {
  border: 1.5px solid #cfdcf2; color: var(--blue); background: #fff;
}
.btn-outline:hover { border-color: var(--blue); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { transform: translateY(-3px); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,0.45); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.btn-ghost { border: 1.5px solid var(--border); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }
.arrow { transition: transform 0.25s ease; }
.btn:hover .arrow, .link-more:hover .arrow { transform: translateX(4px); }

.link-more {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-weight: 600; font-family: var(--font-head); font-size: 0.92rem;
}

/* ---------- section headers ---------- */
.section { padding: 72px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .badge { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.section-head p { color: var(--muted); margin-top: 14px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 6px 24px rgba(15, 45, 110, 0.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 20px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.93rem;
  color: var(--ink); position: relative; padding: 24px 0;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 16px;
  height: 3px; border-radius: 3px; background: var(--blue);
}
.nav-right { display: flex; align-items: center; gap: 14px; }
.location-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border); border-radius: 999px;
  padding: 9px 16px; font-family: var(--font-head); font-weight: 500;
  font-size: 0.88rem; background: #fff;
}
.location-pill svg { color: var(--blue); }
.btn-nav { padding: 11px 22px; font-size: 0.9rem; }
.nav-bell {
  position: relative; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink); background: #fff;
  border: 1.5px solid var(--border);
}
.nav-bell .dot {
  position: absolute; top: -4px; right: -4px; background: var(--red); color: #fff;
  font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px;
  border-radius: 50%; display: grid; place-items: center;
}
.nav-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--blue);
  display: grid; place-items: center; color: #fff;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* ============================================================
   HERO (shared pattern)
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 56px 0 40px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 700; margin: 22px 0 20px;
}
.hero-copy { color: var(--muted); font-size: 1.05rem; max-width: 480px; }
.hero-copy strong { color: var(--ink); }
.hero-actions { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.play-link { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.play-circle {
  width: 46px; height: 46px; border-radius: 50%; background: #fff;
  border: 1.5px solid var(--border); display: grid; place-items: center;
  color: var(--blue); box-shadow: var(--shadow); transition: transform 0.25s ease;
}
.play-link:hover .play-circle { transform: scale(1.08); }

.hero-visual { position: relative; }
.hero-visual > img { width: 100%; height: auto; animation: floaty 7s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* mini features row */
.mini-feats { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.mini-feat { display: flex; gap: 12px; align-items: flex-start; max-width: 160px; }
.mini-feat .ic {
  width: 42px; height: 42px; border-radius: 12px; background: #fff;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  display: grid; place-items: center; color: var(--blue); flex-shrink: 0;
}
.mini-feat h4 { font-size: 0.88rem; font-weight: 600; }
.mini-feat p { font-size: 0.76rem; color: var(--muted); line-height: 1.45; }

/* stats card */
.stats-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); display: flex; flex-wrap: wrap;
  padding: 20px 10px; margin-top: 42px; position: relative; z-index: 3;
}
.stat-item {
  flex: 1 1 150px; display: flex; align-items: center; gap: 14px;
  justify-content: center; padding: 8px 12px; border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item .ic { color: var(--blue); }
.stat-item .num { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; }
.stat-item .lbl { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   HOME: quick service cards + trust bar
   ============================================================ */
.quick-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 26px; position: relative; z-index: 3;
}
.quick-card {
  border-radius: var(--radius); padding: 22px;
  display: flex; gap: 14px; align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quick-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quick-card img { width: 108px; height: auto; border-radius: 12px; }
.quick-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.quick-card p { font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; }
.quick-card .link-more { font-size: 0.82rem; }
.bg-blue-l { background: var(--card-blue); }
.bg-green-l { background: var(--card-green); }
.bg-orange-l { background: var(--card-orange); }
.bg-purple-l { background: var(--card-purple); }
.qc-green .link-more { color: var(--green); }
.qc-orange .link-more { color: var(--orange); }
.qc-purple .link-more { color: var(--purple); }
.qc-green h3 { color: var(--green); }
.qc-orange h3 { color: var(--orange); }
.qc-purple h3 { color: var(--purple); }
.quick-card h3 { color: inherit; }
.qc-blue h3 { color: var(--ink); }

.trust-bar {
  background: linear-gradient(100deg, #0d3aa9, #1a56d6);
  border-radius: var(--radius-lg); color: #fff;
  display: flex; flex-wrap: wrap; margin-top: 34px;
  padding: 26px 10px;
}
.trust-item {
  flex: 1 1 220px; display: flex; align-items: center; gap: 16px;
  justify-content: center; padding: 10px 16px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.trust-item:last-child { border-right: none; }
.trust-item .ic {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  display: grid; place-items: center; flex-shrink: 0;
}
.trust-item h4 { color: #fff; font-size: 0.98rem; }
.trust-item p { font-size: 0.8rem; color: rgba(255,255,255,0.75); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  border-radius: var(--radius-lg); padding: 26px 24px 24px; position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card .chip {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  color: #fff; margin-bottom: 14px;
}
.service-card img.ill { height: 96px; width: auto; margin: 6px auto 14px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card > p { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }
.check-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.85rem; margin-bottom: 9px; color: var(--ink);
}
.check-list .ck {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: #fff; font-size: 0.6rem;
}
.card-arrow {
  position: absolute; right: 20px; bottom: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  transition: transform 0.25s ease;
}
.service-card:hover .card-arrow { transform: translateX(4px) scale(1.06); }
.c-blue { background: var(--blue); }
.c-green { background: var(--green); }
.c-orange { background: var(--orange); }
.c-purple { background: var(--purple); }
.t-blue { color: var(--blue); }
.t-green { color: var(--green); }
.t-orange { color: var(--orange); }
.t-purple { color: var(--purple); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.steps-grid.five { grid-template-columns: repeat(5, 1fr); }
.step-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 22px; text-align: center; position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-ic {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--card-blue); display: grid; place-items: center; color: var(--blue);
  position: relative;
}
.step-ic img { width: 56px; height: 56px; object-fit: contain; border-radius: 50%; }
.step-num {
  position: absolute; top: -4px; left: -4px; width: 26px; height: 26px;
  border-radius: 50%; background: var(--blue); color: #fff;
  font-size: 0.75rem; font-weight: 700; display: grid; place-items: center;
  font-family: var(--font-head);
}
.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.83rem; color: var(--muted); }
.step-connector {
  position: absolute; top: 50%; right: -19px; z-index: 4;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--blue); color: #fff; display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(26,109,240,0.4);
}

/* ============================================================
   LOYALTY BANNER (home)
   ============================================================ */
.loyalty-banner {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: linear-gradient(115deg, #dcebfd, #eaf3ff 45%, #d6e7fc);
  display: grid; grid-template-columns: 300px 1fr 380px; align-items: center;
  gap: 12px; min-height: 300px;
}
.loyalty-banner .art-l, .loyalty-banner .art-r { height: 100%; }
.loyalty-banner .art-l img, .loyalty-banner .art-r img {
  height: 100%; width: 100%; object-fit: cover;
}
.loyalty-banner .mid { padding: 34px 6px; }
.loyalty-banner h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 14px 0 12px; }
.loyalty-banner p { color: var(--muted); font-size: 0.93rem; max-width: 380px; margin-bottom: 20px; }

/* ============================================================
   PARTNER LOGOS ROW
   ============================================================ */
.pay-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.pay-logo {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  min-height: 74px; display: grid; place-items: center; padding: 14px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pay-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pay-logo img { max-height: 34px; width: auto; }
.visa-txt { color: #1434cb; font-style: italic; letter-spacing: 1px; font-size: 1.4rem; }
.mc { display: flex; }
.mc i { width: 30px; height: 30px; border-radius: 50%; display: block; }
.mc i:first-child { background: #eb001b; }
.mc i:last-child { background: #f79e1b; margin-left: -12px; mix-blend-mode: multiply; }
.gpay { display: flex; align-items: center; gap: 8px; font-size: 1.1rem; color: #5f6368; }
.applepay { display: flex; align-items: center; gap: 6px; font-size: 1.15rem; color: #000; }
.vs-badge { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; text-align: left; color: var(--ink); }
.vs-badge .sh { color: var(--green); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-card .quote-mark {
  position: absolute; top: 22px; right: 24px; color: var(--card-blue); font-size: 2.4rem;
  font-family: Georgia, serif; line-height: 1;
}
.testi-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.testi-top img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }
.testi-card blockquote { font-size: 0.92rem; color: var(--ink); margin-bottom: 14px; }
.testi-card .who { font-weight: 700; font-family: var(--font-head); font-size: 0.9rem; }
.testi-card .role { font-size: 0.8rem; color: var(--blue); font-weight: 600; }
.dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.dots span { width: 8px; height: 8px; border-radius: 50%; background: #c9d8ef; cursor: pointer; transition: 0.3s; }
.dots span.active { background: var(--blue); width: 22px; border-radius: 6px; }

/* ============================================================
   DARK CTA BANNERS
   ============================================================ */
.dark-banner {
  background: linear-gradient(110deg, #0b2a66, #10409f 55%, #0b2a66);
  border-radius: var(--radius-lg); color: #fff; position: relative; overflow: hidden;
}
.dark-banner h2, .dark-banner h3 { color: #fff; }
.cta-ready {
  display: grid; grid-template-columns: 240px 1fr auto; gap: 30px; align-items: center;
  padding: 10px 46px 10px 10px; min-height: 210px;
}
.cta-ready .phone-art img { width: 100%; max-width: 220px; margin-top: -1px; }
.cta-ready h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.cta-ready p { color: rgba(255,255,255,0.75); margin: 10px 0 20px; font-size: 0.93rem; }
.store-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 10px; background: #000; color: #fff;
  border: 1px solid rgba(255,255,255,0.35); border-radius: 12px; padding: 9px 18px;
  transition: transform 0.25s ease;
}
.store-btn:hover { transform: translateY(-3px); }
.store-btn .txt { text-align: left; line-height: 1.15; }
.store-btn .small { font-size: 0.62rem; opacity: 0.8; display: block; }
.store-btn .big { font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; }
.qr-block { display: flex; align-items: center; gap: 14px; }
.qr-block img { width: 84px; height: 84px; border-radius: 12px; background: #fff; padding: 6px; }
.qr-block .lbl { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; }

/* ============================================================
   WHY CHOOSE (home)
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card .chip {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 8px 18px rgba(15,45,110,0.18);
}
.why-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: var(--muted); }

/* ---------- growing stats band ---------- */
.grow-band {
  background: linear-gradient(110deg, #0a2357, #103d95 60%, #0a2357);
  border-radius: var(--radius-lg); color: #fff; text-align: center;
  padding: 44px 30px;
}
.grow-band h2 { color: #fff; font-size: 1.6rem; margin-bottom: 30px; }
.grow-stats { display: flex; flex-wrap: wrap; }
.grow-stat { flex: 1 1 150px; padding: 6px 14px; border-right: 1px solid rgba(255,255,255,0.16); }
.grow-stat:last-child { border-right: none; }
.grow-stat .ic { margin-bottom: 8px; color: #9dc0ff; }
.grow-stat .num { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; }
.grow-stat .lbl { font-size: 0.83rem; color: rgba(255,255,255,0.72); }

/* ============================================================
   SPLIT SECTIONS (partner grow / about story ...)
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.split h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 16px 0 16px; }
.split .copy { color: var(--muted); margin-bottom: 20px; max-width: 460px; }
.split .check-list li { font-size: 0.95rem; margin-bottom: 12px; }
.split-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 40px; overflow: hidden;
}
.split-visual img { width: 100%; border-radius: var(--radius-lg); }

/* ---------- newsletter ---------- */
.newsletter {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 34px 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center;
}
.newsletter .lead { display: flex; gap: 20px; align-items: flex-start; }
.newsletter .chip {
  width: 56px; height: 56px; border-radius: 50%; background: var(--blue);
  color: #fff; display: grid; place-items: center; flex-shrink: 0;
}
.newsletter h3 { font-size: 1.25rem; margin-bottom: 6px; }
.newsletter p { color: var(--muted); font-size: 0.9rem; }
.news-form { display: flex; gap: 12px; }
.news-form input {
  flex: 1; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 14px 18px; font-size: 0.92rem; outline: none; transition: border 0.25s;
}
.news-form input:focus { border-color: var(--blue); }
.news-note {
  grid-column: 2; display: flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.8rem; margin-top: -16px;
}

/* ---------- take anywhere ---------- */
.take-anywhere {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 28px; padding: 20px 48px 0; min-height: 300px;
}
.take-anywhere h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.take-anywhere p { color: rgba(255,255,255,0.75); margin: 12px 0 22px; }
.take-anywhere .phones img { width: 100%; max-width: 360px; margin-bottom: -6px; }
.qr-center { text-align: center; color: #fff; }
.qr-center img { width: 92px; height: 92px; border-radius: 14px; background: #fff; padding: 6px; margin: 0 auto 10px; }
.qr-center .lbl { font-size: 0.85rem; font-family: var(--font-head); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0a1836; color: #c6d2e8; margin-top: 72px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr; gap: 34px;
  padding: 60px 0 40px;
}
.f-brand .logo-line { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.f-brand .logo-line img { height: 46px; }
.f-brand .logo-line .wordmark { font-family: var(--font-head); line-height: 1.05; }
.f-brand .logo-line .wordmark b { color: #fff; font-size: 1.15rem; letter-spacing: 0.5px; }
.f-brand .logo-line .wordmark span { color: #3f8cff; font-weight: 700; font-size: 0.9rem; letter-spacing: 1.5px; display: block; }
.f-brand p { font-size: 0.87rem; color: #93a5c4; max-width: 260px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: #dbe6f8; transition: 0.25s;
}
.socials a:hover { background: var(--blue); transform: translateY(-3px); }
.footer h4 { color: #fff; font-size: 0.98rem; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 0.88rem; color: #93a5c4; transition: 0.2s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.f-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.88rem; color: #93a5c4; }
.f-contact .ic { color: #3f8cff; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 0.83rem; color: #93a5c4; flex-wrap: wrap; gap: 12px;
}
.footer-bottom .made { display: flex; align-items: center; gap: 6px; }
.footer-bottom .heart { color: #e5484d; }

/* ============================================================
   REWARDS PAGE
   ============================================================ */
.balance-card {
  background: linear-gradient(115deg, #0f43b8, #1a6df0 60%, #2f7ef7);
  border-radius: var(--radius-lg); color: #fff; padding: 32px 36px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.balance-card .art {
  position: absolute; right: 0; top: 0; height: 100%; width: 46%;
  object-fit: cover; object-position: left center; opacity: 0.95;
  mask-image: linear-gradient(to right, transparent, black 26%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 26%);
}
.balance-card .lbl { font-family: var(--font-head); font-weight: 600; }
.balance-card .points {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  display: flex; align-items: center; gap: 12px; margin: 6px 0 2px;
}
.balance-card .sub { color: rgba(255,255,255,0.8); }
.balance-stats {
  display: flex; margin-top: 22px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.25); position: relative; z-index: 2;
}
.balance-stats > div { padding: 0 22px; border-right: 1px solid rgba(255,255,255,0.25); }
.balance-stats > div:first-child { padding-left: 0; }
.balance-stats > div:last-child { border-right: none; }
.balance-stats .k { font-size: 0.78rem; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 6px; }
.balance-stats .v { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; }

.filter-pills { display: flex; gap: 12px; flex-wrap: wrap; margin: 34px 0; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 12px 22px; font-family: var(--font-head); font-weight: 500; font-size: 0.9rem;
  transition: 0.25s; color: var(--ink);
}
.pill:hover { border-color: var(--blue); color: var(--blue); }
.pill.active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(26,109,240,0.35); }

.panel {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 32px;
}
.panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; gap: 14px; flex-wrap: wrap; }
.panel-head h2 { font-size: 1.3rem; }

.rw-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rw-step { text-align: center; position: relative; }
.rw-step .disc {
  width: 104px; height: 104px; border-radius: 50%; background: #f1f6fd;
  margin: 0 auto 16px; display: grid; place-items: center; overflow: hidden;
}
.rw-step .disc img { width: 74px; height: 74px; object-fit: contain; }
.rw-step h3 { font-size: 0.98rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.rw-step .n {
  width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: #fff;
  font-size: 0.7rem; display: inline-grid; place-items: center; font-family: var(--font-head);
}
.rw-step p { font-size: 0.82rem; color: var(--muted); margin-top: 8px; }

.rewards-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.reward-card {
  border-radius: var(--radius); padding: 18px; position: relative; overflow: hidden;
  min-height: 210px; display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reward-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.reward-card .tag {
  align-self: flex-start; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.6px;
  background: #fff; padding: 4px 10px; border-radius: 999px; margin-bottom: 8px;
  font-family: var(--font-head);
}
.reward-card .off { font-family: var(--font-head); font-weight: 700; font-size: 1.45rem; line-height: 1.1; }
.reward-card .name { font-size: 0.85rem; color: var(--ink); }
.reward-card img.ill { height: 74px; width: auto; align-self: flex-end; margin: 6px 0; object-fit: contain; }
.reward-foot {
  margin-top: auto; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; font-weight: 600;
}
.reward-foot .pts { display: flex; align-items: center; gap: 6px; }
.reward-foot .go {
  width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid currentColor;
  display: grid; place-items: center; transition: transform 0.25s;
}
.reward-card:hover .go { transform: translateX(3px); }

.membership-card {
  background: linear-gradient(150deg, #0d2f7d, #1a4fd8);
  border-radius: var(--radius-lg); color: #fff; padding: 28px; position: sticky; top: 96px;
}
.membership-card .mtop { display: flex; justify-content: space-between; align-items: flex-start; }
.membership-card .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.membership-card h3 { color: #fff; font-size: 1.5rem; display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.membership-card .medal { width: 62px; height: 62px; object-fit: contain; border-radius: 12px; }
.progress { background: rgba(255,255,255,0.22); border-radius: 999px; height: 9px; margin: 20px 0 8px; overflow: hidden; }
.progress i { display: block; height: 100%; width: 0; background: var(--gold); border-radius: 999px; transition: width 1.4s ease; }
.membership-card .prog-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.benefit { display: flex; gap: 14px; margin-bottom: 16px; }
.benefit .ic {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.4);
  display: grid; place-items: center; flex-shrink: 0;
}
.benefit h4 { color: #fff; font-size: 0.92rem; }
.benefit p { font-size: 0.78rem; color: rgba(255,255,255,0.75); }
.membership-card .btn { width: 100%; margin-top: 8px; border: 1.5px solid rgba(255,255,255,0.5); color: #fff; }
.membership-card .btn:hover { background: rgba(255,255,255,0.12); }

.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier-card {
  border-radius: var(--radius-lg); padding: 26px; border: 1.5px solid var(--border);
  background: #f8fafd; position: relative; transition: transform 0.3s ease;
}
.tier-card:hover { transform: translateY(-5px); }
.tier-card.current { background: #fdf8ec; border-color: #f2ddad; }
.tier-card.platinum { background: #f3f7ff; }
.tier-card img.medal { width: 62px; height: 62px; object-fit: contain; margin-bottom: 12px; border-radius: 10px; }
.tier-card h3 { font-size: 1.15rem; display: flex; align-items: center; gap: 10px; }
.tier-card .range { font-size: 0.83rem; color: var(--muted); margin: 4px 0 14px; }
.you-here {
  background: var(--gold); color: #5c4302; font-size: 0.68rem; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; font-family: var(--font-head);
  display: inline-flex; align-items: center; gap: 5px;
}
.earn-banner {
  display: grid; grid-template-columns: 200px 1fr auto; gap: 26px; align-items: center;
  padding: 26px 36px;
}
.earn-banner img { width: 100%; max-width: 170px; }
.earn-banner h3 { font-size: 1.3rem; }
.earn-banner p { color: rgba(255,255,255,0.78); font-size: 0.9rem; margin-top: 6px; }

.earn-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.earn-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 14px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.earn-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.earn-card img { height: 86px; width: auto; margin: 0 auto 12px; object-fit: contain; }
.earn-card h4 { font-size: 0.9rem; }
.earn-card p { font-size: 0.75rem; color: var(--muted); margin-top: 5px; }

.unlock-banner {
  display: grid; grid-template-columns: 1fr 220px auto; align-items: center;
  gap: 26px; padding: 30px 40px;
}
.unlock-banner h3 { font-size: 1.4rem; }
.unlock-banner p { color: rgba(255,255,255,0.78); margin-top: 8px; font-size: 0.92rem; }
.unlock-banner img { width: 100%; max-width: 190px; }

.redeem-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.redeem-card {
  border-radius: var(--radius); padding: 20px 14px; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.redeem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.redeem-card .ic {
  width: 58px; height: 58px; border-radius: 16px; margin: 0 auto 12px;
  display: grid; place-items: center; color: #fff; font-size: 1.4rem;
}
.redeem-card .off { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.redeem-card .what { font-size: 0.78rem; color: var(--muted); margin: 2px 0 10px; }
.redeem-card .pts { font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; }
.redeem-btn {
  width: 100%; color: #fff; border-radius: 10px; padding: 9px 0;
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  transition: filter 0.2s, transform 0.2s;
}
.redeem-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }

.info-strip {
  background: #f1f6fd; border-radius: var(--radius);
  display: flex; align-items: center; gap: 16px; padding: 18px 26px; flex-wrap: wrap;
}
.info-strip .ic {
  width: 38px; height: 38px; border-radius: 50%; background: var(--blue);
  color: #fff; display: grid; place-items: center; flex-shrink: 0;
}
.info-strip p { flex: 1; font-size: 0.88rem; }
.info-strip p b { display: block; }

.soon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.soon-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; align-items: center; gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.soon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.soon-card img { width: 58px; height: 58px; object-fit: contain; }
.soon-card h4 { font-size: 0.92rem; }
.soon-card p { font-size: 0.76rem; color: var(--muted); margin-top: 4px; }

.loved-dark { padding: 40px; display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: center; }
.loved-dark h2 { font-size: 1.6rem; }
.loved-dark .intro p { color: rgba(255,255,255,0.75); margin-top: 12px; font-size: 0.9rem; }
.loved-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.loved-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: 22px; }
.loved-card blockquote { font-size: 0.85rem; color: #eaf1ff; margin: 12px 0 16px; }
.loved-card .who { display: flex; align-items: center; gap: 12px; }
.loved-card .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.loved-card .who b { font-size: 0.88rem; display: block; color: #fff; font-family: var(--font-head); }
.loved-card .who span { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.nav-arrows { display: flex; gap: 10px; margin-top: 18px; }
.nav-arrows button {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff; display: grid; place-items: center; transition: 0.25s;
}
.nav-arrows button:hover { background: rgba(255,255,255,0.15); }

.rw-cta {
  display: grid; grid-template-columns: 280px 1fr auto; gap: 30px; align-items: center;
  padding: 14px 44px 0 30px;
}
.rw-cta .phone img { width: 100%; max-width: 280px; margin-bottom: -6px; }
.rw-cta h2 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
.rw-cta h2 .accent2 { color: #7db4ff; }
.rw-cta p { color: rgba(255,255,255,0.78); margin: 10px 0 20px; font-size: 0.9rem; }

/* ============================================================
   PARTNERS PAGE
   ============================================================ */
.pwhy-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.pwhy-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 16px; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pwhy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pwhy-card .chip {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 14px;
  display: grid; place-items: center; color: #fff;
}
.pwhy-card h3 { font-size: 0.92rem; margin-bottom: 8px; }
.pwhy-card p { font-size: 0.76rem; color: var(--muted); }
.c-teal { background: #0fb5ba; }
.c-pink { background: #ef4b81; }

.cats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.cat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card .ph { position: relative; }
.cat-card .ph img { width: 100%; height: 132px; object-fit: cover; }
.cat-card .chip {
  position: absolute; top: 10px; left: 10px; width: 38px; height: 38px;
  border-radius: 12px; display: grid; place-items: center; color: #fff;
}
.cat-card .body { padding: 16px; }
.cat-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.cat-card p { font-size: 0.78rem; color: var(--muted); margin-bottom: 10px; }

.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.req-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 36px;
  display: grid; grid-template-columns: 1fr 160px; gap: 20px; align-items: center;
}
.req-card h2 { font-size: 1.35rem; margin-bottom: 20px; }
.req-card img { width: 100%; }
.ready-card {
  background: linear-gradient(140deg, #0d2f7d, #1a4fd8);
  border-radius: var(--radius-lg); color: #fff; padding: 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.ready-card h2 { color: #fff; font-size: 1.35rem; }
.ready-card p { color: rgba(255,255,255,0.8); margin: 12px 0 22px; font-size: 0.92rem; }
.ready-card .contact-line {
  border-top: 1px solid rgba(255,255,255,0.25); margin-top: 24px; padding-top: 18px;
  font-size: 0.85rem; color: rgba(255,255,255,0.85);
}
.ready-card .contact-line .row { display: flex; gap: 20px; margin-top: 10px; flex-wrap: wrap; }
.ready-card .contact-line .row span { display: inline-flex; align-items: center; gap: 8px; }

.impact-banner {
  background: linear-gradient(100deg, #e8f1fe, #f2f7ff);
  border-radius: var(--radius-lg); padding: 24px 36px;
  display: grid; grid-template-columns: 130px 1fr auto; gap: 26px; align-items: center;
}
.impact-banner img { width: 100%; max-width: 110px; }
.impact-banner h3 { font-size: 1.15rem; }
.impact-banner p { color: var(--muted); font-size: 0.88rem; margin-top: 4px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.purpose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.purpose-card {
  background: #fbfcfe; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.purpose-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.purpose-card .chip {
  width: 54px; height: 54px; border-radius: 50%; color: #fff;
  display: grid; place-items: center; margin-bottom: 16px;
}
.purpose-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.purpose-card p { font-size: 0.9rem; color: var(--muted); }
.purpose-card .underline { width: 34px; height: 3px; border-radius: 3px; margin-top: 18px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-top { display: flex; gap: 14px; align-items: center; margin-bottom: 12px; }
.team-top img { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; }
.team-card h3 { font-size: 0.98rem; }
.team-card .role { font-size: 0.78rem; color: var(--blue); font-weight: 600; }
.team-card p { font-size: 0.8rem; color: var(--muted); }
.team-card .li {
  margin-top: 14px; width: 32px; height: 32px; border-radius: 8px;
  background: var(--card-blue); color: var(--blue); display: grid; place-items: center;
  transition: 0.25s;
}
.team-card .li:hover { background: var(--blue); color: #fff; }

.journey-banner {
  display: grid; grid-template-columns: 1fr 320px; gap: 30px; align-items: end;
  padding: 40px 46px 0;
}
.journey-banner h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); }
.journey-banner p { color: rgba(255,255,255,0.78); margin: 12px 0 22px; max-width: 440px; }
.journey-banner .btns { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.journey-banner img { width: 100%; }

.partners-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.partner-logo-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 16px; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner-logo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.partner-logo-card img { height: 52px; width: auto; margin: 0 auto 12px; object-fit: contain; }
.partner-logo-card p { font-size: 0.76rem; color: var(--muted); }

.impact-grid {
  background: #f1f6fd; border-radius: var(--radius-lg); padding: 40px;
  display: grid; grid-template-columns: 1.1fr repeat(4, 1fr); gap: 24px; align-items: start;
}
.impact-grid .lead h2 { font-size: 1.35rem; margin-bottom: 12px; }
.impact-grid .lead p { color: var(--muted); font-size: 0.9rem; }
.impact-stat { text-align: center; padding: 0 8px; }
.impact-stat .ic {
  width: 62px; height: 62px; border-radius: 50%; background: #dcebfd; color: var(--blue);
  display: grid; place-items: center; margin: 0 auto 12px;
}
.impact-stat .num { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--ink); }
.impact-stat .lbl { font-weight: 600; font-size: 0.86rem; font-family: var(--font-head); }
.impact-stat p { font-size: 0.76rem; color: var(--muted); margin-top: 4px; }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quote-card .qm { font-family: Georgia, serif; font-size: 2rem; line-height: 1; }
.quote-card .stars { margin: 4px 0 12px; }
.quote-card blockquote { font-size: 0.9rem; margin-bottom: 16px; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.quote-card .who b { font-size: 0.88rem; display: block; font-family: var(--font-head); }
.quote-card .who span { font-size: 0.76rem; color: var(--muted); }

.news-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.news-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  display: grid; place-items: center; padding: 18px; min-height: 84px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card img { max-height: 44px; width: auto; object-fit: contain; }
.news-note-txt { text-align: center; color: var(--muted); font-size: 0.86rem; margin-top: 22px; }

.future-banner {
  background: linear-gradient(110deg, #081c46, #0d3aa9);
  display: grid; grid-template-columns: 1fr 300px; gap: 30px; align-items: end;
  padding: 44px 46px 0;
}
.future-banner h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); }
.future-banner p { color: rgba(255,255,255,0.78); margin: 12px 0 22px; max-width: 440px; }
.future-banner .btns { display: flex; gap: 14px; margin-bottom: 44px; flex-wrap: wrap; }
.future-banner img { width: 100%; border-radius: 18px 18px 0 0; }

.app-strip {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 30px 36px;
  display: grid; grid-template-columns: auto 1.3fr 1.6fr auto; gap: 30px; align-items: center;
}
.app-strip .icon img { width: 84px; border-radius: 20px; }
.app-strip h3 { font-size: 1.1rem; margin-bottom: 6px; }
.app-strip p { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; }
.app-strip .store-btns .store-btn { padding: 7px 14px; }
.app-strip .feats { display: flex; gap: 22px; }
.app-strip .feat { text-align: center; font-size: 0.72rem; color: var(--muted); }
.app-strip .feat .ic {
  width: 46px; height: 46px; border-radius: 50%; background: var(--card-blue); color: var(--blue);
  display: grid; place-items: center; margin: 0 auto 8px;
}
.app-strip .feat b { color: var(--ink); display: block; font-size: 0.8rem; }
.app-strip .qr { text-align: center; font-size: 0.78rem; font-weight: 600; font-family: var(--font-head); }
.app-strip .qr img { width: 84px; border-radius: 10px; margin: 0 auto 8px; border: 1px solid var(--border); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 390px; gap: 24px; align-items: stretch; }
.form-panel h2 { font-size: 1.35rem; margin-bottom: 8px; }
.form-panel .sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { position: relative; margin-bottom: 14px; }
.field .f-ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #9fb0ca; }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 14px 16px 14px 46px; font-size: 0.92rem; outline: none;
  transition: border 0.25s; background: #fbfcfe; color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field.ta .f-ic { top: 24px; transform: none; }
.field :focus { border-color: var(--blue); background: #fff; }
.form-panel .btn { width: 100%; }

.contact-info h2 { font-size: 1.25rem; margin-bottom: 20px; }
.ci-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.ci-item:last-child { border-bottom: none; }
.ci-item .ic {
  width: 52px; height: 52px; border-radius: 14px; color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.ci-item h4 { font-size: 0.95rem; }
.ci-item .big { font-weight: 700; font-family: var(--font-head); font-size: 0.95rem; margin: 2px 0; }
.ci-item p { font-size: 0.8rem; color: var(--muted); }

.map-grid { display: grid; grid-template-columns: 1fr 390px; gap: 24px; align-items: stretch; }
.map-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.map-card img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.hours-card h2 { font-size: 1.2rem; margin-bottom: 10px; }
.hours-card .underline { width: 36px; height: 3px; background: var(--blue); border-radius: 3px; margin-bottom: 20px; }
.hour-row { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.hour-row:last-child { border-bottom: none; }
.hour-row .ic {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex-shrink: 0;
}
.hour-row .day { flex: 1; font-weight: 600; font-family: var(--font-head); font-size: 0.9rem; }
.hour-row .time { font-size: 0.88rem; color: var(--muted); }

.faq-grid { display: grid; grid-template-columns: 1fr 390px; gap: 24px; align-items: start; }
.faq-panel h2 { font-size: 1.25rem; margin-bottom: 8px; }
.faq-panel .underline { width: 36px; height: 3px; background: var(--blue); border-radius: 3px; margin-bottom: 20px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: #fbfcfe; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; font-family: var(--font-head); font-weight: 500;
  font-size: 0.93rem; color: var(--ink); text-align: left; gap: 12px;
}
.faq-q .chev { transition: transform 0.3s ease; color: var(--muted); flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(180deg); color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 20px 18px; font-size: 0.87rem; color: var(--muted); }
.help-card {
  background: linear-gradient(150deg, #0d2f7d, #1a4fd8);
  border-radius: var(--radius-lg); color: #fff; padding: 30px; position: sticky; top: 96px;
}
.help-card .htop { display: flex; justify-content: space-between; gap: 14px; }
.help-card h3 { color: #fff; font-size: 1.25rem; }
.help-card p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin: 10px 0 20px; }
.help-card .hd-ic {
  width: 64px; height: 64px; border-radius: 50%; background: var(--blue);
  display: grid; place-items: center; flex-shrink: 0; animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.25); }
  50% { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
}
.help-card hr { border: none; border-top: 1px solid rgba(255,255,255,0.22); margin: 24px 0 18px; }
.help-card .follow { font-family: var(--font-head); font-weight: 600; margin-bottom: 14px; }
.satisfy-strip {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 24px 32px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.satisfy-strip .ic {
  width: 54px; height: 54px; border-radius: 50%; background: var(--blue); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.satisfy-strip p { flex: 1; font-size: 0.9rem; color: var(--muted); min-width: 260px; }
.satisfy-strip p b { color: var(--ink); display: block; font-size: 0.98rem; }
.satisfy-strip .thanks { display: flex; align-items: center; gap: 10px; font-weight: 600; font-family: var(--font-head); }
.satisfy-strip .heart { color: var(--red); animation: beat 1.6s infinite; display: inline-block; }
@keyframes beat { 0%,100% { transform: scale(1);} 30% { transform: scale(1.25);} }

/* ============================================================
   REVEAL / SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; }

/* toast */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 80px);
  background: var(--navy); color: #fff; padding: 14px 26px; border-radius: 12px;
  font-family: var(--font-head); font-weight: 500; font-size: 0.9rem;
  box-shadow: var(--shadow-lg); opacity: 0; transition: 0.4s ease; z-index: 200;
  display: flex; align-items: center; gap: 10px;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast .ck { color: #4ade80; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .services-grid, .quick-cards { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .steps-grid.five { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .earn-grid, .redeem-grid { grid-template-columns: repeat(3, 1fr); }
  .pwhy-grid { grid-template-columns: repeat(3, 1fr); }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .news-row, .pay-logos { grid-template-columns: repeat(3, 1fr); }
  .partners-row { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .rewards-layout { grid-template-columns: 1fr; }
  .membership-card { position: static; }
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid .lead { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .app-strip { grid-template-columns: 1fr 1fr; }
  .loved-dark { grid-template-columns: 1fr; }
  .loved-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-grid, .split, .newsletter, .req-grid, .contact-grid, .map-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .loyalty-banner { grid-template-columns: 1fr; text-align: center; }
  .loyalty-banner .art-l { display: none; }
  .loyalty-banner .mid { padding: 30px; }
  .loyalty-banner p { margin: 0 auto 20px; }
  .cta-ready, .rw-cta, .take-anywhere, .unlock-banner, .earn-banner,
  .journey-banner, .future-banner, .impact-banner { grid-template-columns: 1fr; text-align: center; padding: 30px; }
  .cta-ready .phone-art img, .rw-cta .phone img, .take-anywhere .phones img,
  .earn-banner img, .unlock-banner img, .impact-banner img { margin: 0 auto; }
  .store-btns, .journey-banner .btns, .future-banner .btns { justify-content: center; }
  .qr-block { justify-content: center; }
  .rw-steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid, .quote-grid, .why-grid, .purpose-grid, .tiers-grid { grid-template-columns: 1fr; }
  .loved-cards { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; background: #fff; flex-direction: column;
    gap: 0; padding: 12px 6%; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; width: 100%; }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: flex; }
  .location-pill { display: none; }
  .split-card { padding: 26px; }
  .app-strip { grid-template-columns: 1fr; text-align: center; }
  .app-strip .icon img, .app-strip .qr img { margin: 0 auto; }
  .app-strip .feats { justify-content: center; }
  .app-strip .store-btns { justify-content: center; }
  .balance-card .art { display: none; }
  .req-card { grid-template-columns: 1fr; }
  .req-card img { max-width: 180px; margin: 0 auto; }
}

@media (max-width: 560px) {
  .services-grid, .quick-cards, .earn-grid, .redeem-grid, .pwhy-grid,
  .cats-grid, .news-row, .pay-logos, .partners-row, .team-grid,
  .steps-grid, .steps-grid.five, .soon-grid, .featured-grid,
  .footer-top, .impact-grid, .rw-steps { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .balance-stats { flex-direction: column; gap: 14px; }
  .balance-stats > div { border-right: none; padding: 0; }
  .section { padding: 52px 0; }
}
