/* POSTRANET — Landing (Ayman-style fintech) */

:root {
  --ayman-blue: #1a1a1a;
  --ayman-blue-deep: #0d0d0d;
  --ayman-blue-bright: #333333;
  --ayman-red: #cc0000;
  --ayman-red-bright: #e60000;
  --gradient-brand: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #990000 70%, #e60000 100%);
  --gradient-soft: linear-gradient(135deg, rgba(204, 0, 0, 0.06) 0%, rgba(26, 26, 26, 0.06) 100%);
  --gradient-text: linear-gradient(135deg, #1a1a1a 0%, #cc0000 100%);
  --bg-page: #f8fafc;
  --bg-dark: #050b18;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow-sm: 0 4px 20px rgba(5, 25, 55, 0.06);
  --shadow-md: 0 12px 40px rgba(5, 25, 55, 0.1);
  --shadow-lg: 0 24px 60px rgba(5, 25, 55, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --font: "Poppins", "Inter", system-ui, sans-serif;
  --nav-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s, opacity 0.2s, transform 0.2s;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-pad {
  padding: 88px 0;
}

/* ── Buttons ── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient-brand);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 24px rgba(198, 33, 40, 0.25);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(198, 33, 40, 0.35);
  color: var(--white) !important;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 2px solid var(--ayman-blue);
  color: var(--ayman-blue) !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  background: transparent;
}

.btn-outline-custom:hover {
  background: var(--ayman-blue);
  color: var(--white) !important;
}

.btn-white-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--ayman-blue-deep) !important;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.btn-white-custom:hover {
  transform: translateY(-2px);
  color: var(--ayman-red) !important;
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── Navbar ── */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.navbar-custom:not(.scrolled) .navbar-nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.navbar-custom:not(.scrolled) .navbar-nav-links a:hover {
  color: var(--white);
}

.navbar-custom:not(.scrolled) .btn-outline-custom {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white) !important;
}

.navbar-custom:not(.scrolled) .btn-outline-custom:hover {
  background: var(--white);
  color: var(--ayman-blue-deep) !important;
}

.navbar-custom:not(.scrolled) .hamburger-btn {
  color: var(--white);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* App icon (header, sidebar, footer) — rounded white tile */
.brand-app-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.brand-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.brand-app-icon--sm {
  width: 40px;
  height: 40px;
  padding: 5px;
  border-radius: 12px;
}

.brand-app-icon--md {
  width: 52px;
  height: 52px;
  padding: 7px;
  border-radius: 14px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-custom.scrolled .brand-app-icon {
  box-shadow: var(--shadow-sm);
}

.navbar-nav-links {
  display: none;
  gap: 32px;
  align-items: center;
}

@media (min-width: 992px) {
  .navbar-nav-links {
    display: flex;
  }
}

.navbar-nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
}

.navbar-nav-links a:hover {
  color: var(--ayman-red);
}

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

.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--gradient-soft);
  border-radius: 10px;
  font-size: 18px;
  color: var(--ayman-blue);
  cursor: pointer;
}

@media (min-width: 992px) {
  .hamburger-btn {
    display: none;
  }
}

/* Offcanvas */
.offcanvas__overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 11, 24, 0.6);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.offcanvas__overlay.active {
  opacity: 1;
  visibility: visible;
}

.offcanvas__info {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--white);
  z-index: 1101;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
}

.offcanvas__info.active {
  transform: translateX(0);
}

.offcanvas__brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
  padding-right: 8px;
}

.brand-logo-straight {
  display: block;
  height: auto;
  max-height: 52px;
  max-width: min(200px, 100%);
  width: auto;
  object-fit: contain;
}

.brand-logo-straight--footer {
  max-height: 64px;
  max-width: 220px;
  background: var(--white);
  border-radius: 12px;
  padding: 8px 12px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.offcanvas__close button {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--gradient-soft);
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  color: var(--ayman-blue);
}

.offcanvas__info .nav-links {
  margin: 24px 0;
}

.offcanvas__info .nav-links li {
  border-bottom: 1px solid var(--border);
}

.offcanvas__info .nav-links a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  color: var(--text);
}

.offcanvas__info .nav-links a:hover {
  color: var(--ayman-red);
}

/* ── Hero ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 48px) 0 80px;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0.85;
}

.hero-hex-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 0 L56 16 L56 48 L28 64 L0 48 L0 16 Z' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 181, 0.35);
  top: -100px;
  right: -80px;
}

.hero-glow-2 {
  width: 320px;
  height: 320px;
  background: rgba(198, 33, 40, 0.3);
  bottom: 10%;
  left: -60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero-title .brand-ayman {
  color: #7eb3ff;
}

.hero-title .highlight {
  background: linear-gradient(90deg, #fff 0%, #ffc4c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta-block {
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.store-badges--hero {
  margin-top: 0;
  align-items: center;
}

/* Compact store buttons (hero + footer) */
.store-badges--compact {
  gap: 8px;
  align-items: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white) !important;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.store-btn i {
  font-size: 16px;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.store-btn--on-light {
  border-color: var(--border);
  color: var(--text) !important;
  background: var(--bg-page);
}

.store-btn--on-light:hover {
  background: var(--white);
  color: var(--ayman-blue) !important;
  border-color: var(--ayman-blue);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero-stat .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.hero-stat .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* Hero wallet card */
.hero-img-wrap {
  position: relative;
  padding: 20px 0;
}

.hero-phone-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.card-title {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.card-balance {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-card-logo .brand-app-icon {
  box-shadow: var(--shadow-sm);
}

.hero-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--bg-page);
  border-radius: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-service-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hero-service-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.icon-red { background: rgba(198, 33, 40, 0.12); color: var(--ayman-red); }
.icon-blue { background: rgba(26, 51, 101, 0.12); color: var(--ayman-blue); }
.icon-green { background: rgba(34, 197, 94, 0.12); color: #16a34a; }
.icon-orange { background: rgba(249, 115, 22, 0.12); color: #ea580c; }

.svc-name { font-weight: 600; font-size: 14px; }
.svc-desc { font-size: 12px; color: var(--text-muted); }

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: float-badge 4s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-badge.fb-top { top: 0; left: -12px; }
.floating-badge.fb-bottom { bottom: 24px; right: -8px; animation-delay: 1s; }

.fb-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.fb-title { font-weight: 700; font-size: 13px; }
.fb-sub { font-size: 11px; color: var(--text-muted); }

/* Billers strip */
.billers-strip {
  background: var(--white);
  padding: 40px 0 48px;
  border-bottom: 1px solid var(--border);
}

.billers-strip-title {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.billers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.biller-card {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.biller-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.biller-card img {
  max-height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Section typography */
.section-label {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gradient-soft);
  color: var(--ayman-red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  border: 1px solid rgba(198, 33, 40, 0.15);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-subtitle.center {
  margin-left: auto;
  margin-right: auto;
}

/* Benefits (Dancity-style) */
.benefits-section {
  padding: 72px 0;
  background: var(--white);
}

.benefit-card {
  height: 100%;
  padding: 28px 24px;
  background: var(--bg-page);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 51, 101, 0.2);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  background: var(--gradient-brand);
  color: var(--white);
}

.benefit-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* Services */
.services-section {
  background: var(--bg-page);
}

.service-card {
  height: 100%;
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.svc-red { background: rgba(198, 33, 40, 0.12); color: var(--ayman-red); }
.svc-blue { background: rgba(26, 51, 101, 0.12); color: var(--ayman-blue); }
.svc-orange { background: rgba(249, 115, 22, 0.12); color: #ea580c; }
.svc-green { background: rgba(34, 197, 94, 0.12); color: #16a34a; }
.svc-purple { background: rgba(139, 92, 246, 0.12); color: #7c3aed; }

.service-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 20px;
  line-height: 1.65;
}

.card-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--ayman-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-link:hover {
  gap: 12px;
  color: var(--ayman-blue);
}

/* Feature showcase */
.features-showcase {
  background: var(--white);
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 72px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 991px) {
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    text-align: center;
    margin-bottom: 56px;
  }
}

.feature-visual {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.feature-visual-inner {
  background: var(--gradient-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature-visual-inner::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: var(--gradient-brand);
  opacity: 0.15;
  border-radius: 50%;
}

.feature-visual .fv-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--gradient-brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.feature-copy {
  flex: 1;
}

.feature-copy h3 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 14px;
}

.feature-copy p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Stats */
.stats-section {
  padding: 64px 0;
  background: var(--gradient-brand);
  position: relative;
}

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

.stat-item .num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
}

.stat-item .num span {
  color: rgba(255, 255, 255, 0.75);
}

.stat-item .lbl {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
}

/* About */
.about-section {
  background: var(--white);
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  object-fit: cover;
}

.about-accent-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gradient-brand);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-accent-card .num {
  font-size: 36px;
  font-weight: 800;
}

.about-accent-card .lbl {
  font-size: 13px;
  opacity: 0.9;
}

.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text);
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--gradient-brand);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}

/* How it works */
.how-section {
  background: var(--bg-page);
}

.step-card {
  height: 100%;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: box-shadow 0.25s;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* Testimonials */
.testimonials-section {
  background: var(--white);
}

.testimonial-card {
  height: 100%;
  padding: 28px;
  background: var(--bg-page);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.testimonial-card .stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 14px;
}

.testimonial-card .quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.author-name {
  font-weight: 700;
  font-size: 14px;
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* FAQ */
.faq-section {
  background: var(--bg-page);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  cursor: pointer;
}

.faq-question i {
  color: var(--ayman-red);
  transition: transform 0.3s;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Feature opportunities */
.features-section {
  background: var(--white);
}

.feature-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow 0.25s;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
}

.feature-card .feature-img {
  height: 200px;
  overflow: hidden;
}

.feature-card .feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-body {
  padding: 24px;
}

.feature-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ayman-red);
}

.feature-body h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 12px;
}

.feature-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.6;
}

.feature-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--ayman-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feature-link:hover {
  color: var(--ayman-red);
  gap: 12px;
}

/* CTA */
.cta-section {
  padding: 88px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0.9;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 16px auto 28px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Footer */
.footer-section {
  background: var(--ayman-blue-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 72px 0 0;
}


.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--ayman-red);
}

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  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);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.fc-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7eb3ff;
}

.fc-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.fc-value {
  font-size: 14px;
  font-weight: 500;
}

.fc-value a {
  color: rgba(255, 255, 255, 0.85);
}

.fc-value a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-badges {
  display: flex;
  gap: 10px;
}

.footer-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── App store badges ── */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-badges--center {
  justify-content: center;
}

.store-badges--cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.store-badges--footer {
  flex-direction: column;
  align-items: flex-start;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 12px;
  min-width: 0;
  flex: 1 1 150px;
  max-width: 200px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.store-badge:hover {
  transform: translateY(-2px);
}

.store-badge--ghost {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.store-badge--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white) !important;
}

.store-badge--dark {
  background: var(--ayman-blue-deep);
  color: var(--white) !important;
  border: 1px solid var(--border);
  flex: 0 1 auto;
  max-width: 200px;
}

.store-badge--dark:hover {
  background: var(--ayman-blue);
  color: var(--white) !important;
}

.store-badge--lg {
  min-width: 190px;
  padding: 12px 20px 12px 16px;
}

.store-badge--sm {
  min-width: 150px;
  padding: 8px 14px 8px 12px;
}

.store-badge-icon {
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.store-badge--sm .store-badge-icon {
  font-size: 22px;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.store-badge-text small {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.85;
  text-transform: uppercase;
}

.store-badge-text strong {
  font-size: 15px;
  font-weight: 700;
}

.store-badge--sm .store-badge-text strong {
  font-size: 13px;
}

/* App download section */
.app-download-section {
  padding: 72px 0;
  background: var(--bg-page);
  border-top: 1px solid var(--border);
}

.download-panel {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.download-panel .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.store-badges--section {
  margin-top: 8px;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .section-pad {
    padding: 72px 0;
  }
}

@media (max-width: 991px) {
  :root {
    --nav-h: 68px;
  }

  .hero-section {
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 56px;
  }

  .hero-img-wrap {
    margin-top: 8px;
  }

  .floating-badge.fb-top {
    top: 0;
    left: 0;
  }

  .floating-badge.fb-bottom {
    right: 0;
    bottom: 8px;
  }

  .feature-row,
  .feature-row.reverse {
    gap: 28px;
  }

  .billers-grid {
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 56px 0;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-white-custom,
  .hero-actions .btn-ghost-white {
    width: 100%;
    justify-content: center;
  }

  .store-badges--hero.store-badges--compact {
    width: 100%;
  }

  .store-badges--compact .store-btn {
    flex: 1 1 auto;
    min-width: 0;
    padding: 8px 10px;
    font-size: 11px;
  }

  .store-badges--compact .store-btn i {
    font-size: 14px;
  }

  .hero-stats {
    gap: 20px;
    justify-content: space-between;
    width: 100%;
  }

  .hero-stat .num {
    font-size: 22px;
  }

  .hero-phone-card {
    padding: 20px;
  }

  .hero-service-grid {
    gap: 8px;
  }

  .hero-service-item {
    padding: 10px;
  }

  .hero-img-wrap .floating-badge {
    display: none;
  }

  .billers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .biller-card {
    min-height: 64px;
    padding: 10px 8px;
  }

  .biller-card img {
    max-height: 32px;
  }

  .download-panel {
    padding: 28px 18px;
  }

  .store-badges--section {
    flex-direction: column;
    align-items: center;
  }

  .store-badges--section .store-badge {
    width: 100%;
    max-width: 240px;
  }

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

  .cta-actions .btn-white-custom,
  .cta-actions .btn-ghost-white {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .store-badges--footer.store-badges--compact {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-app-icon {
    width: 42px;
    height: 42px;
  }

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

  .hero-service-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .service-card,
  .benefit-card {
    padding: 22px 18px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}
