/* ============================================
   MustMoney Fintech – Home Page Styles
   Canvas: 1440px | 12-col grid | 80px margin
   ============================================ */

:root {
  --primary-blue: #0D6EFD;
  --secondary-green: #00C853;
  --dark-navy: #0B1F3A;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --card-bg: #FFFFFF;
  --input-bg: #FFFFFF;
  --tag-bg: #f1f5f9;
  --border-color: #e2e8f0;
  --text: #1E293B;
  --text-muted: #64748B;
  --gutter: 24px;
  --margin: 80px;
  --max-width: 1440px;
  --content-width: calc(var(--max-width) - var(--margin) * 2);
  --radius: 16px;
  --shadow-soft: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-medium: 0 8px 32px rgba(15, 23, 42, 0.12);
  --font: 'Inter', 'Poppins', sans-serif;
  --transition: 0.3s ease;
  --hero-gradient: linear-gradient(135deg, #f0f7ff 0%, var(--bg) 50%, #e8f5e9 100%);
  --portal-gradient: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 50%, #dbeafe 100%);
}

[data-theme="dark"] {
  --bg: #0f172a;
  --white: #1e293b;
  --card-bg: #1e293b;
  --input-bg: #0f172a;
  --tag-bg: #334155;
  --border-color: #334155;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.4);
  --hero-gradient: linear-gradient(135deg, #0c1929 0%, #0f172a 50%, #0f2922 100%);
  --portal-gradient: linear-gradient(135deg, #1e3a5f 0%, #1e293b 50%, #1e3a5f 100%);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--margin);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--blue {
  background: var(--primary-blue);
  color: var(--white);
}

.btn--blue:hover {
  background: #0b5ed7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.35);
}

.btn--green {
  background: var(--secondary-green);
  color: var(--white);
}

.btn--green:hover {
  background: #00b34a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn--outline:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--primary-blue);
}

.btn--white:hover {
  background: #f0f4ff;
  transform: translateY(-1px);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
  padding: 14px;
}

/* ---- Section Titles ---- */
.section-title {
  font-family: 'Poppins', var(--font);
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  margin-bottom: 48px;
}

.section-title--light {
  color: var(--dark-navy);
}

.section-title--left {
  text-align: left;
}

/* ============================================
   SECTION 1: HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--card-bg);
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
  z-index: 1000;
  transition: var(--transition);
}

.header--scrolled {
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 180px;
  flex-shrink: 0;
}

.logo__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-blue), #4dabf7);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.logo__text {
  font-family: 'Poppins', var(--font);
  font-weight: 700;
  font-size: 20px;
  color: var(--dark-navy);
}

.logo__highlight {
  color: var(--primary-blue);
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--primary-blue);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 1px;
}

.header__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Theme Toggle ---- */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle__moon {
  display: none;
}

[data-theme="dark"] .theme-toggle__sun {
  display: none;
}

[data-theme="dark"] .theme-toggle__moon {
  display: block;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark-navy);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark-navy);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* ============================================
   SECTION 2: HERO BANNER
   ============================================ */
.hero {
  padding-top: 80px;
  min-height: 700px;
  background: var(--hero-gradient);
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 580px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero__title {
  font-family: 'Poppins', var(--font);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark-navy);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Illustration */
.hero__illustration {
  position: relative;
  height: 480px;
}

.mockup-dashboard {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.mockup-dashboard__bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: #f1f5f9;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot--red { background: #ef4444; }
.dot--yellow { background: #f59e0b; }
.dot--green { background: #22c55e; }

.mockup-dashboard__body {
  padding: 20px;
}

.mockup-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.mockup-stat__icon {
  width: 44px;
  height: 44px;
  background: #e8f4ff;
  color: var(--primary-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.mockup-stat__label {
  font-size: 12px;
  color: var(--text-muted);
}

.mockup-stat__value {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-navy);
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.mockup-chart .bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary-blue), #74b9ff);
  border-radius: 4px 4px 0 0;
  min-height: 20%;
}

.mockup-phone {
  position: absolute;
  top: 60px;
  right: 20px;
  width: 140px;
  height: 260px;
  background: var(--dark-navy);
  border-radius: 20px;
  padding: 8px;
  box-shadow: var(--shadow-medium);
  animation: float 6s ease-in-out infinite 1s;
}

.mockup-phone__screen {
  background: linear-gradient(180deg, var(--primary-blue), #4dabf7);
  border-radius: 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 16px;
}

.mockup-phone__header {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.mockup-phone__amount {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mockup-phone__btn {
  background: rgba(255,255,255,0.25);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
}

.mockup-device {
  position: absolute;
  bottom: 40px;
  left: 60px;
  width: 120px;
  background: #334155;
  border-radius: 8px;
  padding: 10px;
  box-shadow: var(--shadow-soft);
  animation: float 6s ease-in-out infinite 2s;
}

.mockup-device__screen {
  background: #1e293b;
  color: var(--secondary-green);
  text-align: center;
  padding: 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.mockup-device__keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.mockup-device__keypad span {
  background: #475569;
  height: 16px;
  border-radius: 3px;
}

.mockup-transfer {
  position: absolute;
  bottom: 80px;
  right: 80px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 6s ease-in-out infinite 0.5s;
}

.mockup-transfer__icon {
  width: 36px;
  height: 36px;
  background: #e8f5e9;
  color: var(--secondary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.mockup-transfer__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Stats Bar */
.stats-bar {
  height: 120px;
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  width: 100%;
}

.stat-item {
  text-align: center;
  padding: 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: #e2e8f0;
}

.stat-item__value {
  font-family: 'Poppins', var(--font);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.2;
}

.stat-item__label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   SECTION 3: SERVICES
   ============================================ */
.services {
  background: var(--card-bg);
  padding: 80px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.service-card {
  width: 100%;
  max-width: 380px;
  height: 220px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  margin: 0 auto;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: #e2e8f0;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__icon--aeps { background: #e8f4ff; color: var(--primary-blue); }
.service-card__icon--dmt { background: #e8f5e9; color: var(--secondary-green); }
.service-card__icon--bbps { background: #fef3c7; color: #d97706; }
.service-card__icon--recharge { background: #fce7f3; color: #db2777; }
.service-card__icon--pan { background: #ede9fe; color: #7c3aed; }
.service-card__icon--atm { background: #e0f2fe; color: #0284c7; }
.service-card__icon--payout { background: #ecfdf5; color: #059669; }
.service-card__icon--travel { background: #fff7ed; color: #ea580c; }
.service-card__icon--insurance { background: #f0fdf4; color: #16a34a; }

.service-card__title {
  font-family: 'Poppins', var(--font);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.5;
}

.service-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-blue);
  margin-top: 8px;
  transition: var(--transition);
}

.service-card__link:hover {
  color: #0b5ed7;
}

/* ============================================
   SECTION 4: LOGIN PORTAL
   ============================================ */
.portal {
  padding: 80px 0;
  background: var(--portal-gradient);
}

.portal__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.portal-card {
  width: 520px;
  max-width: 100%;
  height: 350px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  padding: 40px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.portal-card__badge {
  display: inline-block;
  background: #e8f4ff;
  color: var(--primary-blue);
  font-family: 'Poppins', var(--font);
  font-size: 22px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  width: fit-content;
}

.portal-card__badge--green {
  background: #e8f5e9;
  color: var(--secondary-green);
}

.portal-card__features {
  flex: 1;
}

.portal-card__features li {
  padding: 8px 0;
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.portal-card__features li::before {
  content: '✓';
  color: var(--primary-blue);
  font-weight: 700;
}

.portal-card--distributor .portal-card__features li::before {
  color: var(--secondary-green);
}

.portal-card__signup {
  margin-bottom: 12px;
}

/* ============================================
   SECTION 5: WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 80px 0;
  background: var(--bg);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #e8f4ff, #dbeafe);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-blue);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card__title {
  font-family: 'Poppins', var(--font);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================
   SECTION 6: HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 80px 0;
  background: var(--card-bg);
}

.timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.timeline__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), #4dabf7);
  color: var(--white);
  font-family: 'Poppins', var(--font);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(13, 110, 253, 0.3);
}

.timeline__label {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  max-width: 120px;
  color: var(--text);
}

.timeline__arrow {
  font-size: 24px;
  color: var(--primary-blue);
  padding: 0 12px;
  margin-bottom: 28px;
}

/* ============================================
   SECTION 7: DISTRIBUTOR PROGRAM
   ============================================ */
.distributor {
  height: 450px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1a5fb4 50%, var(--dark-navy) 100%);
  display: flex;
  align-items: center;
}

.distributor__inner {
  width: 100%;
}

.distributor__content {
  max-width: 560px;
}

.distributor__title {
  font-family: 'Poppins', var(--font);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.distributor__subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.distributor__list {
  margin-bottom: 32px;
}

.distributor__list li {
  color: var(--white);
  font-size: 16px;
  padding: 6px 0;
  font-weight: 500;
}

/* ============================================
   SECTION 8: MOBILE APP
   ============================================ */
.mobile-app {
  height: 600px;
  display: flex;
  align-items: center;
  background: var(--bg);
}

.mobile-app__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.phone-mockup {
  width: 280px;
  height: 520px;
  background: var(--dark-navy);
  border-radius: 36px;
  padding: 12px;
  margin: 0 auto;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.phone-mockup__notch {
  width: 100px;
  height: 24px;
  background: var(--dark-navy);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}

.phone-mockup__screen {
  background: linear-gradient(180deg, #f8fafc, #e2e8f0);
  border-radius: 28px;
  height: calc(100% - 32px);
  overflow: hidden;
  padding: 20px 16px;
}

.app-header {
  text-align: center;
  font-family: 'Poppins', var(--font);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.app-item {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.app-item:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.mobile-app__desc {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 16px;
}

.mobile-app__list {
  margin-bottom: 32px;
}

.mobile-app__list li {
  padding: 10px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.mobile-app__check {
  color: var(--secondary-green);
  font-weight: 700;
  font-size: 18px;
}

.play-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 10px;
  transition: var(--transition);
}

.play-store-btn:hover {
  background: #152a4a;
  transform: translateY(-2px);
}

.play-store-btn__small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
}

.play-store-btn__large {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

/* ============================================
   SECTION 9: TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 80px 0;
  background: var(--card-bg);
  overflow: hidden;
}

.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.testimonial-card__stars {
  color: #f59e0b;
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-card__text {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card__author {
  font-family: 'Poppins', var(--font);
  font-weight: 600;
  font-size: 16px;
  color: var(--dark-navy);
}

.testimonial-card__role {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel__dot--active {
  background: var(--primary-blue);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   SECTION 10: FOOTER
   ============================================ */
.footer {
  background: var(--dark-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  font-family: 'Poppins', var(--font);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__intro {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer__heading {
  font-family: 'Poppins', var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact li {
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  :root {
    --margin: 40px;
  }

  .hero__title {
    font-size: 44px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portal-card {
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 992px) {
  .nav,
  .header__actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav--open {
    display: block;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    padding: 24px;
    box-shadow: var(--shadow-medium);
  }

  .theme-toggle {
    display: none;
  }

  .nav--open .nav__list {
    flex-direction: column;
    gap: 16px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__illustration {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-app__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-title--left {
    text-align: center;
  }

  .mobile-app__list {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline__arrow {
    display: none;
  }

  .timeline {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  :root {
    --margin: 20px;
  }

  .hero__title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .services__grid,
  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    max-width: 100%;
  }

  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item::after {
    display: none !important;
  }

  .distributor__title {
    font-size: 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .portal-card {
    height: auto;
    min-height: 320px;
  }

  .mobile-app {
    height: auto;
    padding: 60px 0;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float__tooltip {
    display: none;
  }
}

[data-theme="dark"] .mockup-dashboard,
[data-theme="dark"] .mockup-transfer {
  background: var(--card-bg);
}

[data-theme="dark"] .mockup-dashboard__bar {
  background: var(--tag-bg);
}

[data-theme="dark"] .section-title--light {
  color: var(--text);
}

[data-theme="dark"] .app-item {
  background: var(--card-bg);
}

[data-theme="dark"] .phone-mockup__screen {
  background: linear-gradient(180deg, var(--bg), var(--card-bg));
}
