/* About/Marketing Page Styles */

.about-hero {
  position: relative;
  padding: calc(var(--navbar-height) + 60px) 0 80px;
  background: linear-gradient(135deg, var(--primary-deepdark) 0%, var(--primary-dark) 50%, #122063 100%);
  overflow: hidden;
}
.about-hero .grid-bg-dark { position: absolute; inset: 0; }
.about-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.about-hero-content { color: white; }
.about-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.25); border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 600; color: var(--primary-lighter); margin-bottom: 24px;
}
.about-hero h1 { font-size: 3rem; color: white; margin-bottom: 20px; line-height: 1.15; letter-spacing: -0.03em; }
.about-hero h1 span {
  background: linear-gradient(135deg, var(--primary-lighter), #60A5FA);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-hero-desc { font-size: 1.1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 32px; max-width: 500px; }
.about-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.about-hero-visual { display: flex; justify-content: center; position: relative; }
.hero-visual-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-2xl); padding: 32px; backdrop-filter: blur(12px);
  width: 380px; position: relative;
}
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-card-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px rgba(16,185,129,0.4); }
.hero-card-label { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-stat { background: rgba(255,255,255,0.05); border-radius: var(--radius-md); padding: 16px; text-align: center; }
.hero-stat-value { font-size: 1.6rem; font-weight: 800; color: white; }
.hero-stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* Partners Marquee */
.partners-section { padding: 48px 0; background: white; border-bottom: 1px solid var(--border-light); overflow: hidden; }
.partners-label { text-align: center; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 28px; }
.marquee-wrapper { overflow: hidden; position: relative; }
.marquee-wrapper::before, .marquee-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; }
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, white, transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, white, transparent); }
.marquee-track { display: flex; gap: 48px; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 700; color: var(--text-muted); white-space: nowrap; opacity: 0.6; }
.marquee-item:hover { opacity: 1; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Stats */
.stats-section { padding: 80px 0; background: var(--bg-body); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 32px 20px; background: white; border-radius: var(--radius-xl); border: 1px solid var(--border-light); transition: all var(--transition); }
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stat-icon { width: 52px; height: 52px; background: var(--primary-bg); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; }
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.stat-suffix { font-size: 1.2rem; color: var(--primary-light); }
.stat-label { font-size: 0.9rem; color: var(--text-secondary); margin-top: 4px; }

/* Features */
.features-section { padding: 80px 0; background: white; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header .overline { margin-bottom: 12px; display: block; }
.section-header h2 { margin-bottom: 12px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { padding: 32px 28px; border-radius: var(--radius-xl); border: 1px solid var(--border-light); transition: all var(--transition); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); transform: scaleX(0); transition: transform var(--transition); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--primary-lighter); }
.feature-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.feature-icon.blue { background: #EFF6FF; }
.feature-icon.green { background: #ECFDF5; }
.feature-icon.purple { background: #F5F3FF; }
.feature-icon.orange { background: #FFF7ED; }
.feature-icon.pink { background: #FDF2F8; }
.feature-icon.cyan { background: #ECFEFF; }
.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* Payment Methods */
.payment-section { padding: 80px 0; background: var(--bg-body); }
.payment-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 40px; }
.payment-logo { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 28px; font-size: 0.9rem; font-weight: 700; color: var(--text-secondary); transition: all var(--transition); display: flex; align-items: center; gap: 8px; }
.payment-logo:hover { border-color: var(--primary-lighter); box-shadow: var(--shadow-sm); transform: translateY(-2px); }

/* Services */
.services-section { padding: 80px 0; background: white; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.service-card { background: linear-gradient(135deg, var(--primary-bg), #EFF6FF); border-radius: var(--radius-2xl); padding: 40px; border: 1px solid rgba(29,78,216,0.08); transition: all var(--transition); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card-icon { font-size: 2.5rem; margin-bottom: 20px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }

/* CTA */
.cta-section { padding: 80px 0; background: linear-gradient(135deg, var(--primary-dark), var(--primary-deepdark)); position: relative; overflow: hidden; }
.cta-section .grid-bg-dark { position: absolute; inset: 0; }
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-content h2 { color: white; font-size: 2.5rem; margin-bottom: 16px; }
.cta-content p { color: var(--text-light); font-size: 1.1rem; max-width: 500px; margin: 0 auto 32px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--primary-deepdark); padding: 60px 0 24px; color: var(--text-light); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { max-width: 280px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-logo .f-icon { width: 36px; height: 36px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 900; font-size: 16px; }
.footer-brand-logo span { font-size: 1.3rem; font-weight: 800; color: white; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: var(--text-muted); }
.footer-col h4 { color: white; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.85rem; color: var(--text-muted); padding: 6px 0; transition: color var(--transition-fast); }
.footer-col a:hover { color: white; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 16px; transition: all var(--transition-fast); }
.footer-socials a:hover { background: var(--primary); color: white; }

/* Responsive */
@media (max-width: 768px) {
  .about-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .about-hero h1 { font-size: 2rem; }
  .about-hero-desc { margin: 0 auto 24px; }
  .about-hero-actions { justify-content: center; }
  .hero-visual-card { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-content h2 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
