/* ============================================
   AWOSEMUSI AKINOLA ENTERPRISES
   Design System
   ============================================ */

:root {
  /* Brand Colors */
  --primary: #0B6E4F;          /* Deep emerald - prosperity, trust */
  --primary-dark: #074F39;     /* Forest depth */
  --primary-light: #E8F3EE;    /* Soft mint wash */
  --accent: #D4A24C;           /* Warm gold - wealth */
  --accent-dark: #B8862F;
  --accent-light: #FBF3E2;

  /* Neutrals */
  --ink: #0A1F1C;              /* Near-black with green undertone */
  --ink-soft: #2C3E3A;
  --muted: #6B7C77;
  --line: #E5E0D7;
  --cream: #FAF7F2;
  --cream-warm: #F5EFE4;
  --white: #FFFFFF;

  /* Functional */
  --success: #16A34A;
  --whatsapp: #25D366;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & radius */
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10, 31, 28, 0.06), 0 1px 3px rgba(10, 31, 28, 0.04);
  --shadow: 0 4px 12px rgba(10, 31, 28, 0.06), 0 12px 32px rgba(10, 31, 28, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 31, 28, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-variation-settings: "SOFT" 30, "WONK" 1; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--ink-soft); }

/* ============================================
   Layout primitives
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  padding: 6px 14px;
  background: var(--primary-light);
  border-radius: 999px;
  margin-bottom: 20px;
}

.eyebrow-gold {
  color: var(--accent-dark);
  background: var(--accent-light);
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.08rem; margin-top: 14px; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(11, 110, 79, 0.25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 110, 79, 0.35);
}

.btn-gold {
  background: var(--accent);
  color: var(--ink);
}
.btn-gold:hover { background: var(--accent-dark); color: white; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: white; }

.btn-ghost {
  background: transparent;
  color: var(--primary);
}
.btn-ghost:hover { color: var(--primary-dark); gap: 14px; }

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.navbar.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.brand-mark {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-cta { display: flex; gap: 10px; align-items: center; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.83rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-tag .dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  position: relative;
}
.hero-tag .dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--success);
  opacity: 0.3;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--primary); font-style: italic; font-variation-settings: "SOFT" 100, "WONK" 1; }

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 540px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.hero-stat .label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Hero Visual — savings passbook stack */
.hero-visual {
  position: relative;
  height: 540px;
}

.savings-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.passbook {
  width: 320px;
  height: 460px;
  top: 20px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 28px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.passbook::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle at 70% 30%, rgba(212, 162, 76, 0.4), transparent 60%);
  pointer-events: none;
}
.passbook-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 32px;
}
.passbook-logo {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.passbook-logo small { display: block; opacity: 0.7; font-size: 0.7rem; }
.passbook-chip {
  width: 38px; height: 28px;
  background: linear-gradient(135deg, #E5C36A, #B8862F);
  border-radius: 5px;
  position: relative;
}
.passbook-chip::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 3px;
}
.passbook-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.6;
  margin-bottom: 6px;
}
.passbook-balance {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.passbook-balance .currency { font-size: 1.3rem; opacity: 0.7; margin-right: 4px; }
.passbook-rows { font-size: 0.8rem; line-height: 1.8; }
.passbook-row { display: flex; justify-content: space-between; opacity: 0.8; }
.passbook-row.highlight { opacity: 1; color: var(--accent); font-weight: 600; }
.passbook-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.7rem;
  display: flex;
  justify-content: space-between;
  opacity: 0.7;
}

.coin-stack {
  width: 180px;
  height: 180px;
  top: 0; right: -10px;
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  z-index: 3;
  transform: rotate(6deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: float 6s ease-in-out infinite;
}
.coin-stack .label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); }
.coin-stack .val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--primary); }
.coin-stack .ico {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: 50%;
  display: grid; place-items: center;
}

.daily-tile {
  width: 200px;
  bottom: 20px; left: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 18px;
  z-index: 3;
  transform: rotate(-5deg);
  animation: float 7s ease-in-out infinite 1s;
}
.daily-tile .day-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}
.daily-tile .day {
  aspect-ratio: 1;
  background: var(--cream-warm);
  border-radius: 4px;
}
.daily-tile .day.saved { background: var(--primary); }
.daily-tile .day.today {
  background: var(--accent);
  box-shadow: 0 0 0 2px white, 0 0 0 4px var(--accent);
}
.daily-tile .label { font-size: 0.72rem; color: var(--muted); }
.daily-tile .stat { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }

@keyframes float {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-12px); }
}
.daily-tile { animation-name: floatLeft; }
@keyframes floatLeft {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-10px); }
}

/* Decorative pattern */
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* ============================================
   Trust strip
   ============================================ */
.trust-strip {
  padding: 28px 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.marquee {
  display: flex;
  gap: 60px;
  animation: scroll 35s linear infinite;
  white-space: nowrap;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee span::after {
  content: '✦';
  color: var(--accent);
  font-style: normal;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Services grid
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--primary);
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--accent);
  transform: rotate(-4deg) scale(1.05);
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { font-size: 0.95rem; }

.service-num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--line);
  font-style: italic;
}

/* ============================================
   Feature / Why Us
   ============================================ */
.why {
  background: var(--cream-warm);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
}
.why-visual .circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 30px 60px rgba(11, 110, 79, 0.3);
}
.why-visual .ring {
  position: absolute;
  border: 1.5px dashed var(--accent);
  border-radius: 50%;
  inset: -40px;
  animation: spin 40s linear infinite;
}
.why-visual .ring::before, .why-visual .ring::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%; left: 0;
  transform: translate(-50%, -50%);
}
.why-visual .ring::after { left: auto; right: 0; transform: translate(50%, -50%); background: var(--primary); }
@keyframes spin { to { transform: rotate(360deg); } }

.why-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  text-align: center;
}
.why-center .big {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--accent);
}
.why-center .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.9;
  margin-top: 8px;
}

.why-features { display: grid; gap: 24px; }
.why-feature {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.why-feature:hover { transform: translateX(6px); border-color: var(--primary); }
.why-feature .ico {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--accent-dark);
}
.why-feature h4 { margin-bottom: 6px; font-family: var(--font-display); font-size: 1.15rem; }
.why-feature p { font-size: 0.95rem; margin: 0; }

/* ============================================
   How it works
   ============================================ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%;
  width: 76%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.how-step {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-step .step-num {
  width: 70px; height: 70px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 auto 22px;
  box-shadow: 0 8px 20px rgba(11, 110, 79, 0.25);
  border: 4px solid var(--cream);
}
.how-step h3 { margin-bottom: 10px; }
.how-step p { font-size: 0.96rem; }

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(11, 110, 79, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}
.testimonials .section-head h2 { color: white; }
.testimonials .section-head p { color: rgba(250, 247, 242, 0.7); }
.testimonials .eyebrow { background: rgba(212, 162, 76, 0.15); color: var(--accent); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  position: relative;
}

.testimonial {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.8;
  color: var(--accent);
  margin-bottom: 14px;
}
.testimonial p {
  color: var(--cream);
  font-size: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author .name { font-weight: 600; color: white; font-size: 0.95rem; line-height: 1.3; }
.testimonial-author .role { font-size: 0.82rem; color: rgba(250, 247, 242, 0.6); }

/* ============================================
   CTA Band
   ============================================ */
.cta-band {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.25) 0%, transparent 70%);
}
.cta-band::before { top: -100px; left: -100px; }
.cta-band::after { bottom: -100px; right: -100px; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: white; margin-bottom: 16px; }
.cta-band h2 .accent { color: var(--accent); font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto 32px; font-size: 1.08rem; }
.cta-band .btn-gold { box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .brand { color: white; margin-bottom: 18px; }
.footer-brand .brand small { color: rgba(250, 247, 242, 0.6); }
.footer-brand p { color: rgba(250, 247, 242, 0.7); font-size: 0.95rem; max-width: 320px; }

.footer h5 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  color: rgba(250, 247, 242, 0.7);
  font-size: 0.93rem;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--accent); }

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(250, 247, 242, 0.75);
  font-size: 0.93rem;
}
.footer-contact svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.5);
}
.footer-bottom .tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
}

/* ============================================
   WhatsApp floating button
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: all 0.3s;
  color: white;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: white; }
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: 0.35;
  z-index: -1;
  animation: pulse 2s ease-out infinite;
}
.whatsapp-fab .tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-fab .tip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--ink);
}
.whatsapp-fab:hover .tip { opacity: 1; }

/* ============================================
   Page header (inner pages)
   ============================================ */
.page-header {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--line); }

/* ============================================
   About page specifics
   ============================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-grid img, .story-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.story-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.story-image .badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--accent);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}
.story-image .big-year {
  font-family: var(--font-display);
  font-size: 9rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.story-image .icon-display {
  width: 180px; height: 180px;
  background: rgba(212, 162, 76, 0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.story-image .icon-display svg { width: 80px; height: 80px; }

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vm-card {
  padding: 40px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.vm-card.dark {
  background: var(--ink);
  color: white;
  border: none;
}
.vm-card.dark h3 { color: white; }
.vm-card.dark p, .vm-card.dark ul li { color: rgba(255,255,255,0.85); }
.vm-card.dark .vm-icon { background: rgba(212, 162, 76, 0.15); color: var(--accent); }

.vm-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.vm-card h3 { margin-bottom: 14px; font-size: 1.5rem; }
.vm-card ul { list-style: none; margin-top: 14px; }
.vm-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.96rem;
  line-height: 1.55;
}
.vm-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.9rem;
}

.declaration {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--accent);
  position: relative;
}
.declaration .quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 14px;
}
.declaration p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

/* Values strip */
.values-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-pill {
  padding: 28px;
  background: white;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--line);
}
.value-pill .ico {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.value-pill h4 { font-size: 1.1rem; margin-bottom: 6px; }
.value-pill p { font-size: 0.9rem; }

/* ============================================
   Services page
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.3s;
  margin-bottom: 16px;
}
.service-detail:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.service-detail .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent);
  width: 60px;
  text-align: center;
  font-weight: 500;
}
.service-detail .body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.service-detail .body p { font-size: 0.96rem; margin: 0; }
.service-detail .ico {
  width: 56px; height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pos-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.pos-item {
  padding: 14px 18px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 0.92rem;
}
.pos-item svg { width: 18px; height: 18px; }

/* ============================================
   Contact page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  padding: 28px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.3s;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--primary); }
.contact-card .ico {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 12px;
  display: grid; place-items: center;
}
.contact-card .ico.gold { background: var(--accent); color: var(--ink); }
.contact-card .ico.green { background: var(--whatsapp); color: white; }
.contact-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-card .val { font-weight: 500; color: var(--ink); font-size: 1rem; line-height: 1.5; word-break: break-word; }
.contact-card a.val:hover { color: var(--primary); }

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--cream);
  transition: all 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px var(--primary-light);
}
.form-group textarea { min-height: 130px; resize: vertical; }

.map-card {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}
.map-card .pin {
  width: 72px; height: 72px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.map-card h4 { margin-bottom: 6px; }
.map-card p { margin: 0; font-size: 0.96rem; }

/* FAQ */
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--primary); }
.faq-q .icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: grid; place-items: center;
  transition: all 0.3s;
  font-size: 1.2rem;
}
.faq-item.open .faq-q .icon { background: var(--primary); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 280px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================
   Responsive — Tablet (≤ 960px)
   ============================================ */
@media (max-width: 960px) {
  body { font-size: 15.5px; }
  .container { padding: 0 20px; }

  .section { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }

  /* Two-column layouts stack */
  .hero-grid,
  .why-grid,
  .story-grid,
  .contact-grid,
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-grid { gap: 40px; }
  .hero-visual { height: 460px; max-width: 360px; margin: 0 auto; }

  .how-grid { grid-template-columns: 1fr; gap: 20px; }
  .how-grid::before { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-strip { grid-template-columns: 1fr; }

  /* Navbar: show hamburger, hide ALL inline nav-cta buttons */
  .menu-toggle { display: flex; }
  .nav-cta .btn { display: none; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 28px 24px 40px;
    gap: 0;
    transform: translateX(105%);
    transition: transform 0.32s ease;
    border-top: 1px solid var(--line);
    overflow-y: auto;
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--primary); font-weight: 600; }

  /* Mobile drawer CTA block */
  .nav-cta-mobile {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    margin-top: 12px;
    border-top: 1px solid var(--line);
  }
  .nav-cta-mobile .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    border-bottom: none !important;
  }
  .nav-cta-mobile a { border-bottom: none !important; padding: 0 !important; }
}

/* Hide mobile-only CTAs on desktop */
.nav-cta-mobile { display: none; }

/* ============================================
   Responsive — Phone (≤ 640px)
   ============================================ */
@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { padding: 0 18px; }

  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head p { font-size: 1rem; }

  /* Navbar */
  .nav-inner { padding: 14px 0; }
  .brand { gap: 10px; font-size: 0.95rem; }
  .brand-mark { width: 38px; height: 38px; font-size: 1.15rem; }
  .brand-text small { font-size: 0.62rem; }
  .nav-links {
    top: 64px;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
  }

  /* Hero */
  .hero { padding: 32px 0 56px; }
  .hero-tag { font-size: 0.78rem; padding: 6px 12px; margin-bottom: 18px; }
  .hero h1 { font-size: 2.3rem; line-height: 1.1; }
  .hero-lead { font-size: 1.02rem; margin-bottom: 26px; }
  .hero-actions { gap: 10px; margin-bottom: 32px; }
  .hero-actions .btn { padding: 13px 20px; font-size: 0.9rem; flex: 1 1 auto; justify-content: center; }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 24px;
  }
  .hero-stat .num { font-size: 1.5rem; }
  .hero-stat .label { font-size: 0.74rem; line-height: 1.3; }

  /* Hero visual: scale everything down, keep all elements */
  .hero-visual { height: 420px; max-width: 320px; }
  .passbook {
    width: 260px;
    height: 380px;
    padding: 22px;
  }
  .passbook-header { margin-bottom: 24px; }
  .passbook-balance { font-size: 1.9rem; margin-bottom: 18px; }
  .passbook-balance .currency { font-size: 1.05rem; }
  .passbook-rows { font-size: 0.74rem; line-height: 1.7; }
  .passbook-footer { font-size: 0.65rem; padding-top: 14px; }

  .coin-stack {
    width: 140px;
    height: 140px;
    padding: 16px;
    top: 10px;
    right: -8px;
  }
  .coin-stack .val { font-size: 1.25rem; }
  .coin-stack .label { font-size: 0.62rem; letter-spacing: 0.1em; }
  .coin-stack .ico { width: 32px; height: 32px; }
  .coin-stack .ico svg { width: 18px; height: 18px; }

  .daily-tile {
    width: 160px;
    bottom: 16px;
    left: -10px;
    padding: 14px;
  }
  .daily-tile .day-grid { gap: 3px; margin-bottom: 10px; }
  .daily-tile .stat { font-size: 0.95rem; }
  .daily-tile .label { font-size: 0.65rem; }

  /* Section heads */
  .eyebrow { font-size: 0.72rem; padding: 5px 12px; margin-bottom: 16px; }

  /* Services grid */
  .services-grid { gap: 16px; }
  .service-card { padding: 26px 22px; }
  .service-card h3 { font-size: 1.1rem; }
  .service-card p { font-size: 0.92rem; }
  .service-num { font-size: 1.1rem; top: 18px; right: 18px; }

  /* Why us */
  .why-visual { max-width: 280px; }
  .why-visual .ring { inset: -16px; }
  .why-visual .ring::before, .why-visual .ring::after { width: 10px; height: 10px; }
  .why-center .big { font-size: 3.5rem; }
  .why-center .label { font-size: 0.72rem; }
  .why-feature { padding: 20px; gap: 16px; }
  .why-feature .ico { width: 42px; height: 42px; }
  .why-feature h4 { font-size: 1.05rem; }
  .why-feature p { font-size: 0.9rem; }

  /* How it works */
  .how-step { padding: 28px 22px; }
  .how-step .step-num { width: 60px; height: 60px; font-size: 1.7rem; }

  /* Testimonials */
  .testimonial { padding: 26px 22px; }
  .testimonial p { font-size: 0.96rem; }
  .testimonial .quote-mark { font-size: 3rem; }

  /* CTA band */
  .cta-band { padding: 60px 0; }
  .cta-band p { font-size: 1rem; margin-bottom: 26px; }
  .cta-band .btn,
  .cta-band div .btn { padding: 13px 22px; font-size: 0.9rem; }

  /* Marquee */
  .marquee { gap: 36px; }
  .marquee span { font-size: 0.95rem; gap: 36px; }

  /* Footer */
  .footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; text-align: left; }

  /* Page header (inner pages) */
  .page-header { padding: 48px 0 36px; }
  .page-header h1 { font-size: 2.1rem; }
  .page-header p { font-size: 1rem; }
  .breadcrumb { font-size: 0.82rem; }

  /* Services page */
  .service-detail {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 20px;
  }
  .service-detail .num { font-size: 1.6rem; width: 40px; }
  .service-detail .ico { display: none; }
  .service-detail .body h3 { font-size: 1.1rem; }
  .service-detail .body p { font-size: 0.9rem; }

  .pos-services { grid-template-columns: 1fr 1fr; }
  .pos-item { padding: 12px 14px; font-size: 0.85rem; }

  /* About page */
  .story-image { aspect-ratio: 5/4; }
  .story-image .big-year { font-size: 5.5rem; }
  .story-image .icon-display { width: 130px; height: 130px; }
  .story-image .icon-display svg { width: 60px; height: 60px; }
  .story-image .badge { font-size: 0.74rem; padding: 6px 12px; top: 16px; right: 16px; }

  .vm-card { padding: 28px 24px; }
  .vm-card h3 { font-size: 1.3rem; }
  .vm-card ul li { font-size: 0.92rem; }

  .declaration { padding: 40px 22px; }
  .declaration p { font-size: 1.15rem; line-height: 1.5; }
  .declaration .quote-mark { font-size: 3.5rem; }

  .value-pill { padding: 24px 20px; }
  .value-pill .ico { width: 50px; height: 50px; }

  /* Contact page */
  .contact-form { padding: 26px 22px; }
  .contact-form h3 { font-size: 1.2rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 12px 14px; font-size: 0.95rem; }

  .contact-card { padding: 20px; gap: 14px; }
  .contact-card .ico { width: 42px; height: 42px; }
  .contact-card .ico svg { width: 18px; height: 18px; }
  .contact-card .val { font-size: 0.94rem; }

  .map-card { padding: 28px 22px; gap: 18px; margin-top: 24px; flex-direction: column; text-align: left; align-items: flex-start; }
  .map-card .pin { width: 58px; height: 58px; }
  .map-card .pin svg { width: 26px; height: 26px; }

  /* FAQ */
  .faq-q { padding: 18px 20px; font-size: 0.95rem; gap: 12px; }
  .faq-a-inner { padding: 0 20px 20px; font-size: 0.92rem; }
  .faq-item.open .faq-a { max-height: 400px; }

  /* WhatsApp FAB */
  .whatsapp-fab { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
  .whatsapp-fab .tip { display: none; }
}

/* ============================================
   Responsive — Small phone (≤ 400px)
   ============================================ */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .brand-text { font-size: 0.88rem; }
  .brand-text small { display: none; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stat .num { font-size: 1.3rem; }
  .hero-stat .label { font-size: 0.68rem; }

  .hero-visual { max-width: 280px; height: 380px; }
  .passbook { width: 240px; height: 350px; }
  .coin-stack { width: 120px; height: 120px; right: -4px; }
  .daily-tile { width: 140px; left: -6px; }

  h2 { font-size: 1.7rem; }
  .declaration p { font-size: 1.05rem; }
  .why-center .big { font-size: 2.8rem; }

  .footer h5 { font-size: 0.72rem; }
}
