/* FinTech & Financial Services — fintech.css v1 */

:root {
  --ft-gold:    #C9A84C;
  --ft-gold2:   #F0C040;
  --ft-emerald: #00C896;
  --ft-dark:    #020810;
  --ft-dark2:   #030C18;
  --ft-card:    #050E1C;
  --ft-border:  rgba(201, 168, 76, 0.14);
  --ft-border2: rgba(0, 200, 150, 0.14);
}

/* ── SHARED ── */
.ft-accent {
  background: linear-gradient(135deg, var(--ft-gold), var(--ft-gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ft-section-header { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.ft-section-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--ft-gold); margin-bottom: 14px;
  font-family: 'Courier New', monospace;
}
.ft-section-header h2 { font-size: 42px; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 0; letter-spacing: -1px; }

/* ── CTA BUTTONS ── */
.ft-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #8B6914, var(--ft-gold));
  color: #fff !important; -webkit-text-fill-color: #fff !important;
  border: none; border-radius: 10px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(201,168,76,0.3); text-decoration: none;
}
.ft-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,168,76,0.5); }
.ft-cta-btn i { color: #fff !important; -webkit-text-fill-color: #fff !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; transition: transform 0.2s; }
.ft-cta-btn:hover i { transform: translateX(4px); }
.ft-cta-large { font-size: 16px; padding: 18px 40px; }
.ft-cta-gold { background: linear-gradient(135deg, var(--ft-gold), var(--ft-gold2)) !important; color: #0a0a0a !important; -webkit-text-fill-color: #0a0a0a !important; }
.ft-cta-gold i { color: #0a0a0a !important; -webkit-text-fill-color: #0a0a0a !important; }

/* ── HERO ── */
.ft-hero {
  position: relative; min-height: 94vh; display: flex; align-items: center;
  justify-content: center; background: var(--ft-dark); padding: 130px 60px 80px;
  overflow: hidden; text-align: center;
}
.ft-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.ft-hero-inner { position: relative; z-index: 10; max-width: 900px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.ft-hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px;
  border: 1px solid rgba(201,168,76,0.35); border-radius: 50px;
  font-size: 11px; font-weight: 700; color: var(--ft-gold); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 30px;
  background: rgba(201,168,76,0.06);
}
.ft-hero-badge i { color: var(--ft-gold) !important; -webkit-text-fill-color: var(--ft-gold) !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; }
.ft-hero-title { font-size: 62px; font-weight: 900; color: #fff; line-height: 1.06; margin-bottom: 24px; letter-spacing: -2px; }
.ft-hero-sub { font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 760px; margin-bottom: 48px; }

/* ── IMPACT BAR ── */
.ft-impact { background: var(--ft-dark2) !important; padding: 64px 60px; border-top: 1px solid var(--ft-border); border-bottom: 1px solid var(--ft-border); }
.ft-impact-grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1200px; margin: 0 auto; }
.ft-impact-item { text-align: center; padding: 20px 24px; border-right: 1px solid var(--ft-border); }
.ft-impact-item:last-child { border-right: none; }
.ft-impact-num { font-size: 58px; font-weight: 900; line-height: 1; letter-spacing: -2px; background: linear-gradient(135deg, var(--ft-gold), var(--ft-gold2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.ft-impact-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.5; }

/* ── BENTO GRID ── */
.ft-caps { background: var(--ft-dark) !important; padding: 100px 60px; }
.ft-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.ft-bento-wide { grid-column: span 1; }

.ft-bento-card {
  position: relative; overflow: hidden;
  background: var(--ft-card);
  border: 1px solid var(--ft-border);
  border-radius: 20px; padding: 36px 36px 30px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

/* Scanning border animation on hover */
.ft-bento-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 21px;
  background: linear-gradient(90deg, transparent 0%, var(--ft-gold) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 1px;
}
.ft-bento-card:hover::before {
  opacity: 1;
  animation: ftScan 1.6s linear infinite;
}
@keyframes ftScan {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.ft-bento-card:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15), 0 20px 60px rgba(201,168,76,0.1);
}

/* Glow orb */
.ft-card-scan {
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.ft-card-icon {
  position: relative; z-index: 2;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.ft-card-icon i { font-size: 22px; color: var(--ft-gold) !important; -webkit-text-fill-color: var(--ft-gold) !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; }
.ft-bento-card h3 { position: relative; z-index: 2; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.ft-bento-card p { position: relative; z-index: 2; font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.8; margin-bottom: 20px; }
.ft-card-tags { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 8px; }
.ft-card-tags span { padding: 4px 12px; background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.18); border-radius: 50px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); }

/* ── STICKY SCROLL SECTORS ── */
.ft-sectors { background: var(--ft-dark2) !important; padding: 100px 60px; border-top: 1px solid var(--ft-border); }
.ft-sectors-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.ft-sectors-pin { position: sticky; top: 110px; }
.ft-sectors-pin h2 { font-size: 38px; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 16px; letter-spacing: -1px; }
.ft-sectors-sub { font-size: 14px; color: rgba(255,255,255,0.48); line-height: 1.7; }
.ft-sectors-scroll { display: flex; flex-direction: column; gap: 24px; }

.ft-sector-item {
  background: var(--ft-card); border: 1px solid var(--ft-border);
  border-radius: 20px; padding: 36px 32px; position: relative; overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ft-sector-item:hover { border-color: rgba(201,168,76,0.4); transform: translateX(6px); }
.ft-sector-num {
  position: absolute; top: 24px; right: 28px;
  font-size: 72px; font-weight: 900; line-height: 1;
  color: rgba(201,168,76,0.05); letter-spacing: -3px;
  font-family: 'Courier New', monospace;
}
.ft-sector-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.ft-sector-icon i { font-size: 20px; color: var(--ft-gold) !important; -webkit-text-fill-color: var(--ft-gold) !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; }
.ft-sector-item h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.ft-sector-item > p { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.8; margin-bottom: 20px; }
.ft-sector-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ft-sector-tags span { padding: 4px 12px; background: rgba(0,200,150,0.06); border: 1px solid rgba(0,200,150,0.18); border-radius: 50px; font-size: 11px; font-weight: 600; color: rgba(0,200,150,0.8); }

/* ── CASE STUDIES CAROUSEL ── */
.ft-cases { background: var(--ft-dark) !important; padding: 100px 60px; overflow: hidden; }
.ft-carousel-wrap { max-width: 1200px; margin: 0 auto; }
.ft-carousel {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  overflow: visible; scroll-snap-type: none; scrollbar-width: none;
}
.ft-carousel::-webkit-scrollbar { display: none; }

.ft-case-card {
  background: var(--ft-card); border: 1px solid var(--ft-border);
  border-radius: 20px; padding: 32px 30px; position: relative; overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ft-case-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }

/* Big metric number */
.ft-case-metric {
  font-size: 80px; font-weight: 900; line-height: 1; letter-spacing: -3px;
  background: linear-gradient(135deg, var(--ft-gold), var(--ft-gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px; font-family: 'Syne', sans-serif;
}
.ft-case-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22); border-radius: 50px;
  font-size: 10px; font-weight: 700; color: var(--ft-gold);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.ft-case-tag i { color: var(--ft-gold) !important; -webkit-text-fill-color: var(--ft-gold) !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; }
.ft-case-card h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.ft-case-desc { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.7; margin-bottom: 20px; }
.ft-case-section { margin-bottom: 20px; }
.ft-case-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--ft-gold); opacity: 0.7; display: block; margin-bottom: 6px; font-family: 'Courier New', monospace; }
.ft-case-section p { font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.7; margin: 0; }
.ft-case-impact { display: flex; flex-direction: column; gap: 8px; padding-top: 18px; border-top: 1px solid rgba(201,168,76,0.08); }
.ft-impact-pill {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.65);
}
.ft-impact-pill i { font-size: 11px; color: var(--ft-emerald) !important; -webkit-text-fill-color: var(--ft-emerald) !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; flex-shrink: 0; }

.ft-carousel-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.ft-carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25);
  color: var(--ft-gold); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease; font-size: 14px;
}
.ft-carousel-btn:hover { background: rgba(201,168,76,0.18); border-color: rgba(201,168,76,0.5); }
.ft-carousel-btn i { color: var(--ft-gold) !important; -webkit-text-fill-color: var(--ft-gold) !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; }
.ft-carousel-dots { display: flex; gap: 8px; }
.ft-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(201,168,76,0.2); border: none; cursor: pointer; transition: all 0.25s ease; padding: 0; }
.ft-dot.active { background: var(--ft-gold); width: 24px; border-radius: 4px; }
@media (min-width: 701px) { .ft-carousel-controls { display: none; } }

/* ── COMPLIANCE SPLIT SCREEN ── */
.ft-compliance { background: var(--ft-dark2) !important; padding: 100px 60px; border-top: 1px solid var(--ft-border); }
.ft-compliance-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ft-compliance-left .ft-section-label { text-align: left; }
.ft-compliance-left h2 { font-size: 42px; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; text-align: left; }
.ft-compliance-copy { font-size: 15px; color: rgba(255,255,255,0.52); line-height: 1.85; margin-bottom: 36px; }
.ft-compliance-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.ft-badge {
  padding: 10px 20px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  font-size: 14px; font-weight: 800; color: var(--ft-gold);
  letter-spacing: 1px; font-family: 'Courier New', monospace;
  transition: all 0.25s ease;
}
.ft-badge:hover { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.5); transform: translateY(-2px); }
.ft-compliance-right { position: relative; height: 420px; }
.ft-lock-canvas { width: 100%; height: 100%; display: block; }

/* ── FINAL CTA ── */
.ft-final-cta {
  position: relative; padding: 130px 60px; text-align: center;
  overflow: hidden; background: #010508 !important;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.ft-cta-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.ft-final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 55%),
              radial-gradient(circle at 70% 50%, rgba(0,200,150,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.ft-final-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.ft-final-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px; font-size: 11px; font-weight: 700;
  color: var(--ft-gold); letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 28px; background: rgba(201,168,76,0.06);
}
.ft-final-badge i { color: var(--ft-gold) !important; -webkit-text-fill-color: var(--ft-gold) !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; }
.ft-final-cta h2 { font-size: 52px; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1.5px; }
.ft-final-cta p { font-size: 17px; color: rgba(255,255,255,0.52); line-height: 1.75; margin-bottom: 44px; }

/* ── LIGHT THEME OVERRIDES ── */
body.light-theme .ft-hero,
body.light-theme .ft-caps,
body.light-theme .ft-cases,
body.light-theme .ft-final-cta { background: #ffffff !important; }
body.light-theme .ft-impact,
body.light-theme .ft-sectors,
body.light-theme .ft-compliance { background: #f4f6fb !important; border-color: rgba(0,0,0,0.07) !important; }
body.light-theme .ft-section-label { color: #ff7b00 !important; -webkit-text-fill-color: #ff7b00 !important; }
body.light-theme .ft-accent { background: linear-gradient(135deg, #ff7b00, #e65c00) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
body.light-theme .ft-section-header h2,
body.light-theme .ft-hero-title,
body.light-theme .ft-bento-card h3,
body.light-theme .ft-sector-item h3,
body.light-theme .ft-case-card h3,
body.light-theme .ft-sectors-pin h2,
body.light-theme .ft-compliance-left h2,
body.light-theme .ft-final-cta h2 { color: #1a1f3a !important; -webkit-text-fill-color: #1a1f3a !important; }
body.light-theme .ft-hero-sub,
body.light-theme .ft-bento-card p,
body.light-theme .ft-sector-item > p,
body.light-theme .ft-case-desc,
body.light-theme .ft-case-section p,
body.light-theme .ft-sectors-sub,
body.light-theme .ft-compliance-copy,
body.light-theme .ft-final-cta p { color: rgba(26,31,58,0.65) !important; -webkit-text-fill-color: rgba(26,31,58,0.65) !important; }
body.light-theme .ft-hero-badge { border-color: rgba(255,123,0,0.3) !important; background: #ffedd5 !important; color: #ff7b00 !important; -webkit-text-fill-color: #ff7b00 !important; }
body.light-theme .ft-impact-num { background: linear-gradient(135deg, #ff7b00, #e65c00) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
body.light-theme .ft-impact-item { border-right-color: rgba(0,0,0,0.08) !important; }
body.light-theme .ft-impact-label { color: rgba(26,31,58,0.5) !important; -webkit-text-fill-color: rgba(26,31,58,0.5) !important; }
body.light-theme .ft-bento-card,
body.light-theme .ft-sector-item,
body.light-theme .ft-case-card { background: #fff !important; border-color: rgba(0,0,0,0.1) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important; }
body.light-theme .ft-bento-card:hover,
body.light-theme .ft-sector-item:hover,
body.light-theme .ft-case-card:hover { border-color: rgba(255,123,0,0.3) !important; box-shadow: 0 12px 40px rgba(255,123,0,0.1) !important; }
body.light-theme .ft-card-icon,
body.light-theme .ft-sector-icon { background: #ffedd5 !important; border-color: rgba(255,123,0,0.25) !important; }
body.light-theme .ft-badge { background: #ffedd5 !important; border-color: rgba(255,123,0,0.3) !important; color: #ff7b00 !important; }
body.light-theme .ft-case-metric { background: linear-gradient(135deg, #ff7b00, #e65c00) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
body.light-theme .ft-case-tag { background: #ffedd5 !important; border-color: rgba(255,123,0,0.25) !important; color: #ff7b00 !important; -webkit-text-fill-color: #ff7b00 !important; }
body.light-theme .ft-case-label { color: #ff7b00 !important; -webkit-text-fill-color: #ff7b00 !important; opacity: 1 !important; }
body.light-theme .ft-impact-pill { color: rgba(26,31,58,0.7) !important; -webkit-text-fill-color: rgba(26,31,58,0.7) !important; }
body.light-theme .ft-final-badge { border-color: rgba(255,123,0,0.3) !important; background: #ffedd5 !important; color: #ff7b00 !important; -webkit-text-fill-color: #ff7b00 !important; }
body.light-theme .ft-cta-btn { background: #ff7b00 !important; color: #fff !important; -webkit-text-fill-color: #fff !important; box-shadow: 0 8px 30px rgba(255,123,0,0.3) !important; }
body.light-theme .ft-cta-btn:hover { background: #e65c00 !important; }
body.light-theme .ft-cta-gold { background: #ff7b00 !important; color: #fff !important; -webkit-text-fill-color: #fff !important; }
body.light-theme .ft-cta-gold i { color: #fff !important; -webkit-text-fill-color: #fff !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ft-bento-grid { grid-template-columns: repeat(2,1fr); }
  .ft-bento-wide { grid-column: span 1; }
  .ft-sectors-inner { grid-template-columns: 1fr; gap: 40px; }
  .ft-sectors-pin { position: static; }
  .ft-compliance-inner { grid-template-columns: 1fr; gap: 40px; }
  .ft-compliance-right { height: 300px; }
  .ft-impact-grid { grid-template-columns: repeat(2,1fr); }
  .ft-impact-item:nth-child(2) { border-right: none; }
  .ft-impact-item:nth-child(3) { border-top: 1px solid var(--ft-border); }
}
@media (max-width: 700px) {
  .ft-hero-title { font-size: 36px; }
  .ft-section-header h2 { font-size: 30px; }
  .ft-final-cta h2 { font-size: 32px; }
  .ft-hero, .ft-caps, .ft-sectors, .ft-cases, .ft-compliance, .ft-final-cta, .ft-impact { padding-left: 24px; padding-right: 24px; }
  .ft-bento-grid { grid-template-columns: 1fr; }
  .ft-bento-wide { grid-column: span 1; }
  .ft-carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .ft-case-card { flex: 0 0 300px; scroll-snap-align: start; transform: none !important; }
  .ft-carousel-controls { display: flex; }
  .ft-impact-grid { grid-template-columns: 1fr 1fr; }
  .ft-compliance-left h2 { font-size: 30px; }
}
