/* ============================================================
   ZETPY OMNI — Main Stylesheet
   Color Palette: #FFD503 (Yellow), #000000 (Black), #FFFFFF (White)
   Design: Clean, Modern, Future-Proof — Light Theme
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --yellow: #FFD503;
  --yellow-dark: #e6be02;
  --yellow-light: #fff9cc;
  /* "black" tokens now map to white/light tones */
  --black: #ffffff;
  --black-soft: #f7f8fa;
  --black-card: #ffffff;
  --black-border: #e5e7eb;
  /* "white" tokens now map to black/dark tones */
  --white: #0d0d0d;
  --white-muted: #1a1a1a;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #555555;
  --gray-600: #888888;

  --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.24);
  --shadow-yellow: 0 4px 24px rgba(255, 213, 3, 0.35);

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 72px;
  --section-pad: clamp(64px, 8vw, 120px);
  --container: 1180px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: #ffffff;
  color: #0d0d0d;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  line-height: 1.7;
  color: #555555;
}

.text-yellow {
  color: var(--yellow);
}

.text-white {
  color: #0d0d0d;
}

.text-muted {
  color: #555555;
}

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

.text-bold {
  font-weight: 700;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background: #ffffff;
}

.section--darker {
  background: #f7f8fa;
}

.section--card {
  background: #f3f4f6;
}

.section--yellow {
  background: var(--yellow);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.flex {
  display: flex;
}

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

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

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav__logo-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.nav__logo-wordmark {
  color: #0d0d0d;
}

.nav__logo-wordmark span {
  color: var(--yellow);
}

/* Footer logo — invert the yellow/black PNG to white */
.footer .nav__logo-icon img {
  filter: brightness(0) invert(1);
}
.footer .nav__logo-wordmark {
  color: #ffffff;
}
.footer .nav__logo-wordmark span {
  color: var(--yellow);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555555;
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow-dark);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav__links a:hover,
.nav__links a.active {
  color: #0d0d0d;
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0d0d0d;
  transition: var(--transition);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.06);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: #FFD503;
  color: #0d0d0d;
  box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 213, 3, 0.45);
}

.btn-outline {
  border: 1.5px solid #d1d5db;
  color: #0d0d0d;
}

.btn-outline:hover {
  border-color: var(--yellow-dark);
  color: #0d0d0d;
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--yellow);
  padding: 10px 0;
}

.btn-ghost:hover {
  color: var(--yellow-dark);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.82rem;
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a6200;
  background: rgba(255, 213, 3, 0.18);
  border: 1px solid rgba(230, 190, 2, 0.4);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  color: #0d0d0d;
  margin-bottom: 16px;
}

.section-desc {
  color: #555555;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ---------- Cards ---------- */
.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(230, 190, 2, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.card__icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 213, 3, 0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}

.card:hover .card__icon {
  background: rgba(255, 213, 3, 0.3);
}

.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 10px;
}

.card__desc {
  font-size: 0.92rem;
  color: #555555;
  line-height: 1.7;
}

/* ---------- SVG Icon helpers ---------- */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card__icon svg {
  width: 24px;
  height: 24px;
  color: #b38a00;
}

.step-icon {
  font-size: inherit;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  color: #b38a00;
}

.pain-point__icon svg {
  width: 22px;
  height: 22px;
  color: #dc2626;
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: #b38a00;
}

.method-icon svg {
  width: 24px;
  height: 24px;
  color: #b38a00;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: #b38a00;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: #ffffff;
  padding-bottom: 50px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(255, 213, 3, 0.22) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 213, 3, 0.2);
  border: 1px solid rgba(230, 190, 2, 0.45);
  color: #7a6200;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--yellow-dark);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__title {
  color: #0d0d0d;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: normal;
  color: var(--yellow);
  position: relative;
}

.hero__desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #555555;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 40px);
  align-items: start;
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.hero__stat {
  min-width: 0;
  text-align: center;
}

.hero__stat-value {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0d0d0d;
  letter-spacing: -0.03em;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: #555555;
  margin-top: 4px;
}

/* ---------- Marquee / Trust Bar ---------- */
.marquee-bar {
  overflow: hidden;
  padding: 20px 0;
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555555;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-item-dot {
  width: 5px;
  height: 5px;
  background: var(--yellow-dark);
  border-radius: 50%;
}

/* ---------- Pain Points ---------- */
.pain-point {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pain-point:hover {
  border-color: rgba(230, 190, 2, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pain-point__icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 80, 80, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pain-point__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 6px;
}

.pain-point__desc {
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.65;
}

/* ---------- Feature Section ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse>* {
  direction: ltr;
}

.feature-content .section-label {
  text-align: left;
  display: inline-block;
}

.feature-content h2 {
  margin-bottom: 20px;
}

.feature-content p {
  margin-bottom: 28px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #555555;
}

.feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255, 213, 3, 0.25);
  color: #7a6200;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-visual {
  background: #f7f8fa;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-visual__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  width: 200px;
  height: 380px;
  background: #ffffff;
  border-radius: 28px;
  border: 2px solid #d1d5db;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  margin: 0 auto;
}

.phone-mockup__bar {
  height: 40px;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
}

.phone-mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
}

.phone-mockup__dot.yellow {
  background: var(--yellow-dark);
}

.phone-mockup__screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
}

.phone-mockup__icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.phone-mockup__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0d0d0d;
  text-align: center;
}

.phone-mockup__sublabel {
  font-size: 0.65rem;
  color: #888888;
  text-align: center;
}

.phone-mockup__btn {
  width: 100%;
  padding: 8px;
  background: var(--yellow);
  color: #0d0d0d;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
}

/* ---------- 6 Steps Section ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.step-card {
  padding: 36px 32px;
  border: 1px solid #e5e7eb;
  position: relative;
  transition: background var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  background: #fffbea;
  box-shadow: inset 0 0 0 1px rgba(230, 190, 2, 0.3);
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(230, 190, 2, 0.18);
  line-height: 1;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.step-card:hover .step-number {
  color: rgba(230, 190, 2, 0.4);
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.65;
}

/* ---------- Stats Strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
  transition: background var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: #fffbea;
}

.stat-value {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0d0d0d;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: #555555;
  line-height: 1.5;
}

/* ---------- Testimonial / Quote ---------- */
.quote-block {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 3px solid var(--yellow-dark);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  position: relative;
}

.quote-block__text {
  font-size: 1.05rem;
  color: #0d0d0d;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}

.quote-block__source {
  font-size: 0.82rem;
  color: #7a6200;
  font-weight: 600;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--yellow);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0d0d0d;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.cta-banner__desc {
  color: rgba(0, 0, 0, 0.65);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-banner .btn-primary {
  background: #0d0d0d;
  color: #FFD503;
  box-shadow: none;
}

.cta-banner .btn-primary:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.cta-banner .btn-outline {
  border-color: rgba(0, 0, 0, 0.25);
  color: #0d0d0d;
}

.cta-banner .btn-outline:hover {
  border-color: #0d0d0d;
  color: #0d0d0d;
}

/* ---------- Integrations ---------- */
.integration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.integration-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: #555555;
  transition: all var(--transition);
}

.integration-chip:hover {
  border-color: var(--yellow-dark);
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ---------- Accordion (FAQ) ---------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.accordion-item.open {
  border-color: var(--yellow-dark);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: #0d0d0d;
  transition: color var(--transition);
}

.accordion-trigger:hover {
  color: #7a6200;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 213, 3, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #7a6200;
  transition: transform var(--transition), background var(--transition);
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: rgba(255, 213, 3, 0.35);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.75;
}

/* ---------- Footer ---------- */
.footer {
  background: #0d0d0d;
  border-top: 1px solid #1e1e1e;
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 0.88rem;
  color: #aaaaaa;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

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

.footer__social-link {
  width: 38px;
  height: 38px;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #aaaaaa;
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--yellow);
  color: #0d0d0d;
  border-color: var(--yellow);
}

.footer__col-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.88rem;
  color: #aaaaaa;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--yellow);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #aaaaaa;
  margin-bottom: 12px;
}

.footer__contact-icon {
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid #1e1e1e;
  font-size: 0.82rem;
  color: #666666;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: #666666;
  transition: color var(--transition);
}

.footer__bottom-links a:hover {
  color: var(--yellow);
}

/* ---------- Page Banner ---------- */
.page-banner {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  text-align: center;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at top, rgba(255, 213, 3, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner h1 {
  color: #0d0d0d;
  margin-bottom: 16px;
  position: relative;
}

.page-banner p {
  color: #555555;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #ffffff;
  padding: calc(var(--nav-height) + 24px) 24px 40px;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #555555;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: #0d0d0d;
}

.mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ---------- Utilities ---------- */
.divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 213, 3, 0.2);
  color: #7a6200;
  border: 1px solid rgba(230, 190, 2, 0.4);
}

.highlight-box {
  background: rgba(255, 213, 3, 0.1);
  border: 1px solid rgba(230, 190, 2, 0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.highlight-box p {
  color: #0d0d0d;
  font-weight: 500;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row {
    gap: 40px;
  }

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

  .stats-strip .stat-item:nth-child(2) {
    border-right: none;
  }

  .stats-strip .stat-item:nth-child(3) {
    border-top: 1px solid #e5e7eb;
  }

  .stats-strip .stat-item:nth-child(4) {
    border-top: 1px solid #e5e7eb;
    border-right: none;
  }
}

@media (max-width: 768px) {

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner__btns {
    flex-direction: column;
    align-items: center;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    padding-top: 32px;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .stats-strip .stat-item {
    border-right: 1px solid var(--black-border);
  }

  .stats-strip .stat-item:nth-child(even) {
    border-right: none;
  }

  .stats-strip .stat-item:nth-child(3),
  .stats-strip .stat-item:nth-child(4) {
    border-top: 1px solid #e5e7eb;
  }
}

/* ---------- Highlight Box Variants ---------- */
.highlight-box--centered {
  margin-top: 40px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-box__strong { color: #b38a00; }

.highlight-box__muted {
  color: #555555;
  font-size: 0.82rem;
}

/* ---------- Solution Stack ---------- */
.solution-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.solution-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  border-left: 3px solid var(--yellow);
}

.solution-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b38a00;
  margin-bottom: 6px;
}

.solution-item__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 4px;
}

.solution-item__desc {
  font-size: 0.82rem;
  color: #555555;
  margin: 0;
}

/* ---------- Channel Visual (Unified Platform Diagram) ---------- */
.channel-visual {
  text-align: center;
  padding: 32px;
}

.channel-chips {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.channel-chip {
  background: #f3f4f6;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0d0d0d;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 8px;
}

.channel-arrow {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.channel-platform {
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.platform-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-tag {
  background: rgba(255, 213, 3, 0.1);
  border: 1px solid rgba(255, 213, 3, 0.2);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.8rem;
  color: #b38a00;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Feature Visual Modifiers ---------- */
.feature-visual--square {
  aspect-ratio: 1 / 1;
  max-height: 320px;
}

.feature-visual__inner--stacked {
  flex-direction: column;
  gap: 12px;
  padding: 28px;
}

.feature-visual__inner--pos {
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  text-align: center;
}

/* ---------- Product Cards (Three Products section) ---------- */
.products-grid { gap: 28px; }
.products-cta { text-align: center; margin-top: 48px; }

.product-card {
  border-top: 3px solid var(--yellow);
  padding: 36px 32px;
}

.product-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b38a00;
  margin-bottom: 12px;
}

.product-card .card__title {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.product-badge {
  background: rgba(255, 213, 3, 0.1);
  border: 1px solid rgba(255, 213, 3, 0.2);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 0.75rem;
  color: #7a6200;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 16px;
}

.product-features { margin: 16px 0 20px; }
.product-link { font-size: 0.84rem; }

/* ---------- O2O Section ---------- */
.o2o-section { gap: 48px; }
.o2o-section-row { grid-column: 1 / -1; }
.o2o-section-gap { gap: 48px; margin-top: 64px; }

.o2o-result {
  background: rgba(255, 213, 3, 0.08);
  border: 1px solid rgba(255, 213, 3, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 0.82rem;
  color: #7a6200;
  font-weight: 600;
}

.o2o-arrow {
  margin: 8px 0;
  display: flex;
  justify-content: center;
}

.o2o-icon {
  display: flex;
  justify-content: center;
  color: #b38a00;
}

.o2o-text-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d0d0d;
  text-align: center;
}

.o2o-text-subtitle {
  font-size: 0.75rem;
  color: #555555;
  text-align: center;
}

.o2o-redeemed {
  font-size: 0.85rem;
  color: #b38a00;
  font-weight: 600;
  text-align: center;
}

.o2o-scan-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d0d0d;
  text-align: center;
}

.o2o-cart-label {
  font-size: 0.75rem;
  color: #555555;
  text-align: center;
}

.o2o-badge {
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 4px;
  text-align: center;
}

/* ---------- POS Visual ---------- */
.pos-icon {
  display: flex;
  justify-content: center;
  color: #b38a00;
}

.pos-title {
  font-weight: 800;
  color: #0d0d0d;
  font-size: 1.1rem;
}

.pos-sync {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.pos-sync__line {
  height: 1px;
  flex: 1;
  background: #f3f4f6;
}

.pos-sync__label {
  font-size: 0.8rem;
  color: #b38a00;
  font-weight: 700;
  background: rgba(255, 213, 3, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 213, 3, 0.2);
}

.pos-platform {
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  font-weight: 800;
  font-size: 1rem;
}

.pos-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 0.75rem;
  color: #555555;
}

.pos-data-item {
  background: #f3f4f6;
  padding: 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ---------- CTA Banner Label Override ---------- */
.cta-banner .section-label {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--black);
  margin-bottom: 16px;
}

/* ---------- Footer brand logo nudge ---------- */
.footer__brand .nav__logo { margin-bottom: 4px; }

/* ---------- Footer contact CTA ---------- */
.footer__contact-cta { margin-top: 16px; }

/* ============================================================
   SHARED UTILITIES (all pages)
   ============================================================ */

/* Page banner em highlight */
.page-banner h1 em { font-style: normal; color: var(--yellow); }

/* Icon color */
.icon-gold { color: #b38a00; }
.icon-green { color: #16a34a; }
.icon-shrink { flex-shrink: 0; }

/* Full-width button helper */
.btn--full { width: 100%; justify-content: center; }

/* Flex-center button (icon + text rows) */
.btn--flex-center { justify-content: center; display: flex; align-items: center; gap: 8px; }

/* Section padding variants */
.section--tight { padding: 32px 0; }
.section--compact { padding-top: 48px; padding-bottom: 48px; }

/* Source / attribution text */
.card-source { font-size: 0.75rem; color: #888888; margin-top: 8px; }

/* Form privacy note */
.form-privacy-note { text-align: center; font-size: 0.78rem; color: #888888; margin-top: 12px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Mission visual */
.feature-visual__inner--about { flex-direction: column; gap: 12px; padding: 40px; text-align: center; }
.float-icon-wrap { display: flex; justify-content: center; animation: float 6s ease-in-out infinite; }
.visual-heading { font-size: 1.1rem; font-weight: 800; color: #0d0d0d; }
.visual-subtext { font-size: 0.85rem; max-width: 240px; margin: 0 auto; }
.mission-cta { margin-top: 28px; }
.mission-p { margin-bottom: 20px; }
.mission-p--lg { margin-bottom: 24px; }

/* Vision */
.vision-icon-wrap { margin-bottom: 16px; }
.vision-card h3 { color: #0d0d0d; margin-bottom: 12px; }

/* Results cards (reuse product-card pattern) */
.result-card-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #b38a00; margin-bottom: 8px; }

/* Problem visual */
.feature-visual__inner--problem { flex-direction: column; padding: 40px; gap: 16px; }
.problem-box { border-radius: var(--radius-md); padding: 16px 20px; }
.problem-box--bad { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); }
.problem-box--bad .problem-label { font-size: 0.7rem; font-weight: 700; color: #ef4444; letter-spacing: 0.1em; margin-bottom: 6px; }
.problem-box--good { background: rgba(255,213,3,0.08); border: 1px solid rgba(255,213,3,0.2); }
.problem-box--good .problem-label { font-size: 0.7rem; font-weight: 700; color: #b38a00; letter-spacing: 0.1em; margin-bottom: 6px; }
.problem-box__desc { font-size: 0.82rem; color: #555555; margin: 0; }
.problem-arrow { text-align: center; display: flex; justify-content: center; }

/* Team */
.team-wrapper { max-width: 400px; margin: 0 auto; }
.team-card h3 { color: #0d0d0d; margin-bottom: 4px; }
.team-card__role { font-size: 0.85rem; color: #b38a00; margin-bottom: 4px; font-weight: 600; }
.team-card__reg { font-size: 0.8rem; color: #888888; margin-bottom: 12px; }
.team-card__bio { font-size: 0.85rem; color: #555555; margin-bottom: 20px; }
.team-card__actions { display: flex; flex-direction: column; gap: 10px; }

/* Belief section */
.belief-wrapper { max-width: 860px; margin: 0 auto; text-align: center; }
.belief-title { color: #0d0d0d; margin: 16px 0; font-size: clamp(2rem, 4vw, 3.2rem); }
.belief-intro { font-size: 1.05rem; max-width: 680px; margin: 0 auto 20px; }
.belief-text { max-width: 680px; margin: 0 auto 40px; }

/* ============================================================
   FEATURES PAGE
   ============================================================ */

/* Anchor nav */
.anchor-nav-hint { text-align: center; margin-bottom: 20px; }
.anchor-nav-hint p { font-size: 0.82rem; color: #555555; }
.feature-tabs--primary { justify-content: center; gap: 12px; margin-bottom: 16px; }
.tab-trigger--lg { font-size: 0.9rem; padding: 10px 24px; }
.feature-tabs--secondary { justify-content: center; flex-wrap: wrap; }

/* Goal section dividers */
.goal-section { padding: 48px 0 24px; }
.goal-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.goal-divider__line { flex: 1; height: 1px; background: var(--black-border); }
.goal-divider__label { background: rgba(255,213,3,0.1); border: 1px solid rgba(255,213,3,0.25); border-radius: var(--radius-full); padding: 8px 24px; font-size: 0.82rem; font-weight: 700; color: #7a6200; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.goal-desc { text-align: center; font-size: 0.88rem; color: #555555; max-width: 560px; margin: 0 auto; }

/* Feature visual pads */
.fv-pad { padding: 32px; position: relative; z-index: 1; width: 100%; }
.fv-pad--center { padding: 32px; position: relative; z-index: 1; width: 100%; text-align: center; }
.fv-pad--tall { padding: 40px; position: relative; z-index: 1; width: 100%; text-align: center; }
.fv-pad--crm { padding: 28px; position: relative; z-index: 1; width: 100%; }

/* Phone mockup screen elements */
.phone-screen-input { width: 100%; background: #f3f4f6; border-radius: 6px; padding: 8px; text-align: left; font-size: 0.65rem; color: #555555; margin: 6px 0; }
.phone-screen-icon { display: flex; justify-content: center; align-items: center; }
.phone-screen-sublabel { margin-top: 8px; }

/* eCommerce control panel visual */
.ecom-panel { background: #f3f4f6; border-radius: var(--radius-lg); padding: 20px; font-size: 0.8rem; color: #0d0d0d; }
.ecom-panel__header { font-weight: 700; margin-bottom: 12px; color: #b38a00; display: flex; align-items: center; justify-content: center; gap: 6px; }
.ecom-panel__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.ecom-panel__channel { background: #ffffff; padding: 10px; border-radius: 8px; border: 1px solid #e5e7eb; display: flex; align-items: center; justify-content: center; gap: 6px; }
.ecom-panel__desc { color: #555555; font-size: 0.72rem; line-height: 1.6; }
.ecom-panel__sync { margin-top: 12px; background: var(--yellow); color: var(--black); border-radius: 6px; padding: 8px; font-weight: 700; font-size: 0.78rem; }

/* Voucher list visual */
.voucher-list { display: flex; flex-direction: column; gap: 10px; }
.voucher-item { background: #f3f4f6; border-radius: var(--radius-md); padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; }
.voucher-item--gold { background: rgba(255,213,3,0.08); border: 1px solid rgba(255,213,3,0.2); }
.voucher-item__label { font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 8px; color: #0d0d0d; }
.voucher-item__label--gold { color: #b38a00; }

/* Membership tier cards */
.tier-list { display: flex; flex-direction: column; gap: 12px; }
.tier-card { border-radius: var(--radius-md); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; }
.tier-card--platinum { background: linear-gradient(135deg, #b8860b, #ffd503); }
.tier-card--silver { background: linear-gradient(135deg, #888, #ccc); }
.tier-card--bronze { background: linear-gradient(135deg, #c17f36, #e8a85f); }
.tier-card__tier { font-size: 0.7rem; font-weight: 700; color: rgba(0,0,0,0.6); letter-spacing: 0.1em; }
.tier-card__name { font-size: 0.9rem; font-weight: 700; color: var(--black); }

/* Loyalty points visual */
.loyalty-icon { display: flex; justify-content: center; margin-bottom: 12px; }
.loyalty-balance { font-size: 2rem; font-weight: 800; color: #b38a00; margin-bottom: 4px; }
.loyalty-balance-label { font-size: 0.82rem; color: #555555; margin-bottom: 20px; }
.loyalty-items { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.loyalty-item { background: #f3f4f6; border-radius: var(--radius-sm); padding: 10px 14px; display: flex; justify-content: space-between; font-size: 0.78rem; color: #0d0d0d; }
.loyalty-item__name { display: flex; align-items: center; gap: 6px; }
.loyalty-item__pts--earn { color: #b38a00; }
.loyalty-item__pts--spend { color: #ef4444; }

/* CRM automation visual */
.crm-auto-label { font-size: 0.7rem; font-weight: 700; color: #b38a00; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.crm-trigger { background: #ffffff; border: 1px solid #e5e7eb; border-radius: var(--radius-md); padding: 12px; margin-bottom: 10px; box-shadow: var(--shadow-sm); }
.crm-trigger__label { font-size: 0.72rem; color: #555555; margin-bottom: 6px; }
.crm-trigger__name { font-size: 0.78rem; font-weight: 600; color: #0d0d0d; }
.crm-trigger__action { display: flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 0.7rem; color: #555555; }
.crm-segments { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.crm-segment { background: #f3f4f6; border-radius: 8px; padding: 10px; font-size: 0.7rem; }
.crm-segment__label { color: #555555; margin-bottom: 4px; }
.crm-segment__value { font-weight: 700; color: #0d0d0d; }
.crm-preview { background: linear-gradient(135deg, rgba(255,213,3,0.12), rgba(255,213,3,0.04)); border: 1px solid rgba(230,190,2,0.35); border-radius: var(--radius-md); padding: 12px; }
.crm-preview__label { font-size: 0.68rem; color: #7a6200; font-weight: 600; margin-bottom: 6px; }
.crm-preview__text { font-size: 0.75rem; color: #0d0d0d; line-height: 1.45; }
.crm-achieve { background: rgba(255,213,3,0.08); border: 1px solid rgba(255,213,3,0.2); border-radius: var(--radius-md); padding: 12px 16px; margin: 16px 0; font-size: 0.82rem; color: #7a6200; font-weight: 600; }

/* eWallet grid visual */
.ewallet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ewallet-item { background: linear-gradient(135deg, rgba(255,213,3,0.15), rgba(255,213,3,0.05)); border: 1px solid rgba(255,213,3,0.25); border-radius: var(--radius-md); padding: 16px; text-align: center; }
.ewallet-item__icon { display: flex; justify-content: center; margin-bottom: 6px; }
.ewallet-item__type { font-size: 0.72rem; color: #555555; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.ewallet-item__value { font-size: 1.1rem; font-weight: 700; color: #b38a00; margin-top: 4px; }
.ewallet-item__link { font-size: 0.78rem; color: #b38a00; margin-top: 4px; font-weight: 600; }

/* Referral visual */
.referral-icon { display: flex; justify-content: center; margin-bottom: 8px; }
.referral-title { font-size: 1.1rem; font-weight: 700; color: #0d0d0d; margin-bottom: 4px; }
.referral-subtitle { font-size: 0.82rem; color: #555555; margin-bottom: 16px; }
.referral-link-box { background: #f3f4f6; border-radius: var(--radius-md); padding: 12px; margin-bottom: 12px; }
.referral-link-box__label { font-size: 0.72rem; color: #555555; margin-bottom: 4px; }
.referral-link-box__url { font-size: 0.78rem; color: #b38a00; font-weight: 600; }
.referral-rewards { display: flex; justify-content: center; gap: 12px; font-size: 0.78rem; color: #555555; }
.referral-reward { text-align: center; }
.referral-reward__icon { display: flex; justify-content: center; margin-bottom: 4px; }
.referral-reward__sep { font-size: 1.2rem; align-self: center; }

/* Gamification visual */
.game-header { font-size: 0.82rem; font-weight: 700; color: #b38a00; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.game-items { display: flex; flex-direction: column; gap: 10px; }
.game-item { background: #f3f4f6; border-radius: var(--radius-md); padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.game-item__info { text-align: left; }
.game-item__title { font-size: 0.82rem; font-weight: 600; color: #0d0d0d; }
.game-item__desc { font-size: 0.7rem; color: #555555; }
.game-item__done { margin-left: auto; font-size: 0.72rem; color: #b38a00; font-weight: 600; }
.game-item__play { margin-left: auto; font-size: 0.72rem; background: var(--yellow); color: var(--black); padding: 3px 10px; border-radius: var(--radius-full); font-weight: 700; }

/* Reviews visual */
.reviews-box { background: #f3f4f6; border-radius: var(--radius-md); padding: 16px; }
.reviews-box__title { font-size: 0.82rem; font-weight: 700; color: #0d0d0d; margin-bottom: 12px; }
.reviews-box__stars { display: flex; gap: 4px; margin-bottom: 12px; }
.reviews-box__textarea { background: #f7f8fa; border-radius: 6px; padding: 10px; font-size: 0.72rem; color: #555555; margin-bottom: 12px; }
.reviews-box__rewards { display: flex; gap: 8px; flex-wrap: wrap; }
.review-reward-badge { background: rgba(255,213,3,0.1); border: 1px solid rgba(255,213,3,0.2); border-radius: var(--radius-full); padding: 5px 12px; font-size: 0.72rem; color: #b38a00; font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* Analytics visual */
.analytics-label { font-size: 0.72rem; font-weight: 700; color: #b38a00; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.analytics-chart { background: #f3f4f6; border-radius: var(--radius-md); padding: 14px; margin-bottom: 10px; }
.analytics-chart__bars { height: 60px; background: linear-gradient(to top, rgba(255,213,3,0.3), rgba(255,213,3,0.05)); border-radius: 4px; position: relative; }
.analytics-chart__bar-row { position: absolute; bottom: 0; left: 0; right: 0; height: 100%; display: flex; align-items: flex-end; justify-content: space-around; padding: 0 4px; }
.analytics-bar { width: 8%; background: rgba(255,213,3,0.6); border-radius: 2px 2px 0 0; height: var(--bar-h, 50%); }
.analytics-bar--full { background: var(--yellow); height: 100%; }
.analytics-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 0.72rem; margin-bottom: 8px; }
.analytics-stat { background: #f3f4f6; padding: 8px; border-radius: 6px; }
.analytics-stat__label { color: #555555; }
.analytics-stat__value { color: #b38a00; font-weight: 700; }
.analytics-footnote { font-size: 0.68rem; color: #555555; text-align: center; padding: 6px; border: 1px dashed #e5e7eb; border-radius: 6px; }
.analytics-achieve { background: rgba(255,213,3,0.08); border: 1px solid rgba(255,213,3,0.2); border-radius: var(--radius-md); padding: 12px 16px; margin: 16px 0; font-size: 0.82rem; color: #7a6200; font-weight: 600; }

/* Digital receipts visual */
.receipt-list { display: flex; flex-direction: column; gap: 8px; }
.receipt-item { background: #f3f4f6; border-radius: var(--radius-md); padding: 14px; display: flex; align-items: center; gap: 12px; }
.receipt-item__info { flex: 1; }
.receipt-item__title { font-size: 0.8rem; font-weight: 600; color: #0d0d0d; }
.receipt-item__meta { font-size: 0.7rem; color: #555555; }
.receipt-item__amount { margin-left: auto; font-size: 0.75rem; color: #b38a00; font-weight: 600; }
.receipt-download { text-align: center; margin-top: 4px; }
.receipt-download-btn { background: rgba(255,213,3,0.1); border: 1px solid rgba(255,213,3,0.2); border-radius: var(--radius-full); padding: 6px 16px; font-size: 0.75rem; color: #b38a00; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   PRICING PAGE
   ============================================================ */

/* "What you'll achieve" box */
.achieve-box { border-radius: var(--radius-md); padding: 12px 14px; margin-bottom: 16px; font-size: 0.8rem; color: #7a6200; }
.achieve-box--default { background: rgba(255,213,3,0.07); border: 1px solid rgba(255,213,3,0.18); }
.achieve-box--featured { background: rgba(255,213,3,0.1); border: 1px solid rgba(255,213,3,0.3); }
.achieve-box__title { font-weight: 700; margin-bottom: 4px; }

/* Pricing card CTA note featured override */
.pricing-cta-note--featured { background: rgba(255,213,3,0.1); border-color: rgba(255,213,3,0.3); }

/* Pricing card CTA button (full-width + bottom gap) */
.pricing-card-btn { width: 100%; justify-content: center; margin-bottom: 24px; }

/* Pricing features section header */
.pricing-features-title { font-size: 0.75rem; font-weight: 700; color: #0d0d0d; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }

/* Compare table wrappers / heading */
.compare-table-wrap { overflow-x: auto; }
.compare-th-icon { display: inline; vertical-align: middle; }
.compare-category-row { font-size: 0.75rem; font-weight: 700; color: #b38a00; letter-spacing: 0.1em; text-transform: uppercase; padding: 16px 20px 8px !important; }
.compare-th-feature { width: 40%; }

/* ROI section highlight card */
.roi-card--highlight { border-color: rgba(255,213,3,0.3); }
.roi-card--highlight .card__icon { background: rgba(255,213,3,0.2); }
.roi-card--highlight .card__title { color: #b38a00; }

/* Highlight box centered variant (pricing) */
.highlight-box--centered { margin-top: 40px; text-align: center; max-width: 660px; margin-left: auto; margin-right: auto; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Method card desc margin */
.method-desc--mt { margin-top: 4px; }

/* Static method card */
.method-card--static { cursor: default; }

/* Pulse dot */
.pulse-dot { display: inline-block; width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; animation: pulse 2s infinite; }

/* Info card typography */
.contact-info-card > h2 { color: #0d0d0d; margin-bottom: 8px; }
.contact-info-card > p { color: #555555; font-size: 0.9rem; margin-bottom: 28px; }

/* "What happens next" steps */
.next-steps { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--black-border); }
.next-steps__title { font-size: 0.75rem; font-weight: 700; color: #0d0d0d; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.next-steps__list { display: flex; flex-direction: column; gap: 12px; }
.next-step { display: flex; gap: 12px; align-items: flex-start; }
.next-step__num { width: 24px; height: 24px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; color: var(--black); flex-shrink: 0; }
.next-step__text { font-size: 0.84rem; color: #555555; }

/* Booking widget header */
.booking-header > h2 { color: #0d0d0d; margin-bottom: 8px; }
.booking-header > p { color: #555555; font-size: 0.9rem; margin-bottom: 20px; }

/* Section header compact (centred, narrower) */
.section-header--compact { text-align: center; max-width: 560px; margin: 0 auto 32px; }

/* Demo highlight box and reasons */
.demo-highlight-box { margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.demo-reasons-title { font-size: 0.75rem; font-weight: 700; color: #b38a00; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.demo-reasons { display: flex; flex-direction: column; gap: 10px; }
.demo-reason { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: #555555; }
.demo-reason__check { color: #b38a00; font-weight: 700; flex-shrink: 0; }