/* ==========================================================================
   DIGITECHZO CORPORATE DESIGN SYSTEM — FINTECH APP DEVELOPMENT SERVICES
   Design Tokens & Micro-Animations aligned with DigiTechzo Global Stylesheet
   Color Palette: Growth Green (#57B71B / #4EB028), Dark Charcoal (#1e242b), Clean White (#ffffff)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* DigiTechzo Official Brand Tokens */
  --primary-green: #57B71B;
  --primary-green-hover: #469815;
  --primary-green-light: rgba(87, 183, 27, 0.1);
  --primary-green-glow: rgba(87, 183, 27, 0.25);
  --primary-green-glow-lg: rgba(87, 183, 27, 0.35);
  --primary-green-border: rgba(87, 183, 27, 0.25);

  /* Alternative Green (Fintech Accent) */
  --green-primary: #57B71B;
  --green-dark: #469815;
  --green-light: rgba(87, 183, 27, 0.08);

  /* Neutrals */
  --text-dark: #1e242b;
  --text-heading: #1a202c;
  --text-body: #4a5568;
  --text-muted: #556070;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;

  /* Typography */
  --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
  --shadow-accent: 0 8px 20px rgba(87, 183, 27, 0.25);

  /* Transitions */
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base Typography & Layout
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Global Typography Standard - Manrope Font Family System */
html, body, p, li, label, input, select, textarea, div, button, span, a, strong, b, h1, h2, h3, h4, h5, h6, table, tr, th, td {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

body {
  font-family: var(--font-main) !important;
  color: var(--text-body);
  background-color: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .hero-title, .section-title, .font-headline {
  font-family: var(--font-main) !important;
  color: var(--text-heading) !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h1, .hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.03em !important;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem) !important;
  font-weight: 700 !important;
}

p, li, label, input, select, textarea {
  font-family: var(--font-main) !important;
  color: var(--text-body);
}

.text-accent {
  color: var(--primary-green) !important;
}

.bg-accent {
  background-color: var(--primary-green) !important;
}

.bg-accent-light {
  background-color: var(--primary-green-light) !important;
}

/* ==========================================================================
   Hero Section with DigiTechzo Signature Ambience
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 90px;
  background: #f7fbf5 url('/assets/images/hero-bg.png') no-repeat center bottom;
  background-size: cover;
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 20%, rgba(87, 183, 27, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero-image-animated {
  display: inline-block !important;
  vertical-align: middle !important;
  animation: heroFloat3D 3.5s ease-in-out infinite, heroGlow3D 2.5s ease-in-out infinite !important;
  max-height: 54px;
  width: auto;
}

@keyframes heroFloat3D {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-6px) rotate(3deg) scale(1.08);
  }
}

@keyframes heroGlow3D {
  0%, 100% {
    filter: drop-shadow(0 4px 12px rgba(87, 183, 27, 0.25)) brightness(1);
  }
  50% {
    filter: drop-shadow(0 8px 20px rgba(87, 183, 27, 0.5)) brightness(1.1);
  }
}

.hero-subtitle {
  font-size: 1.12rem !important;
  font-weight: 500 !important;
  color: #475569 !important;
  max-width: 760px !important;
  margin: 0 auto 28px;
  line-height: 1.7 !important;
}

/* ==========================================================================
   DigiTechzo Signature Badge Pills & Buttons
   ========================================================================== */
.section-pill {
  font-family: var(--font-main) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: var(--primary-green) !important;
  background: var(--primary-green-light) !important;
  border: 1px solid var(--primary-green-border) !important;
  padding: 5px 16px !important;
  border-radius: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.btn-pill-primary, .btn-accent {
  background: var(--primary-green) !important;
  color: #ffffff !important;
  border: 1px solid var(--primary-green) !important;
  border-radius: 50px !important;
  padding: 12px 28px !important;
  font-weight: 700 !important;
  font-size: 0.94rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: var(--transition-normal) !important;
  box-shadow: var(--shadow-accent) !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.btn-pill-primary:hover, .btn-accent:hover {
  background: var(--primary-green-hover) !important;
  border-color: var(--primary-green-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 24px rgba(87, 183, 27, 0.35) !important;
}

.btn-pill-secondary {
  background: transparent !important;
  color: var(--text-dark) !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 50px !important;
  padding: 11px 26px !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: var(--transition-normal) !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.btn-pill-secondary:hover {
  background: rgba(87, 183, 27, 0.08) !important;
  color: var(--primary-green) !important;
  border-color: var(--primary-green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(87, 183, 27, 0.15) !important;
}

/* ==========================================================================
   Platform Mockup Console (DigiTechzo Glassmorphic Theme)
   ========================================================================== */
.mockup-container {
  margin-top: 42px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
  text-align: left;
}

.mockup-header {
  padding: 12px 20px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-title {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.mockup-tabs-bar {
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 16px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.mockup-tab {
  background-color: #ffffff !important;
  color: #4a5568 !important;
  border: 1px solid var(--border-color) !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  padding: 8px 16px !important;
  font-size: 0.82rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: var(--transition-fast) !important;
  white-space: nowrap !important;
}

.mockup-tab:hover {
  background-color: #f1f5f9 !important;
  color: var(--text-dark) !important;
}

.mockup-tab.active {
  background-color: var(--primary-green) !important;
  color: #ffffff !important;
  border-color: var(--primary-green) !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 14px var(--primary-green-glow) !important;
}

.mockup-tab.active i {
  color: #ffffff !important;
}

.mockup-body {
  padding: 24px;
  background: #ffffff;
}

.mockup-view-content {
  animation: fadeInView 0.3s ease;
}

@keyframes fadeInView {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Cards & Hover Elevations (DigiTechzo Standard)
   ========================================================================== */
.chase-card, .custom-card {
  transition: var(--transition-normal);
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  height: 100%;
}

.chase-card:hover, .custom-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06), 0 0 20px rgba(87, 183, 27, 0.12) !important;
}

.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-green-light);
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: var(--transition-normal);
}

.chase-card:hover .card-icon-box {
  background: var(--primary-green);
  color: #ffffff;
  transform: scale(1.06);
}

.benefit-callout-box {
  background: #f8fafc;
  border-left: 3px solid var(--primary-green);
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  font-size: 0.85rem;
}

/* Platform Showcase Zig-Zag Images Frame */
.showcase-img-card {
  padding: 6px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(87, 183, 27, 0.14) 0%, rgba(87, 183, 27, 0.03) 100%);
  border: 1px solid rgba(87, 183, 27, 0.25);
  box-shadow: 0 18px 45px rgba(87, 183, 27, 0.12);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.showcase-img-card:hover {
  transform: translateY(-4px) scale(1.01);
}

.showcase-img-card img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

/* Step Number Box */
.step-number-box {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-green);
  margin-bottom: 12px;
  line-height: 1;
}

/* ==========================================================================
   Interactive FAQ Accordion
   ========================================================================== */
.faq-item-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  transition: var(--transition-fast);
}

.faq-item-card:hover {
  border-color: var(--primary-green-border);
}

.faq-header-btn {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-heading);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-header-btn:hover {
  background-color: #f8fafc;
}

.faq-header-btn i {
  color: var(--primary-green);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.faq-header-btn.active i {
  transform: rotate(180deg);
}

.faq-answer-body {
  padding: 0 22px 18px;
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.7;
  display: none;
}

.faq-answer-body.show {
  display: block;
  animation: fadeInView 0.25s ease;
}

/* ==========================================================================
   Sticky Bottom Bar
   ========================================================================== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 14px 0;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-heading);
}

.sticky-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .sticky-text span {
    display: none;
  }
}

/* ==========================================================================
   Hero Visual Dashboard Showcase with Floating Cards
   ========================================================================== */
.hero-dashboard-wrapper {
  position: relative;
  max-width: 1020px;
  margin: 40px auto 0;
  padding: 10px;
}

.hero-dashboard-img {
  width: 100%;
  border-radius: 20px;
  border: 2px solid rgba(87, 183, 27, 0.35);
  box-shadow: 0 20px 50px rgba(87, 183, 27, 0.18), 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-dashboard-wrapper:hover .hero-dashboard-img {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(87, 183, 27, 0.25), 0 15px 40px rgba(0, 0, 0, 0.12);
}

.floating-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 10;
  text-align: left;
}

.card-settlement {
  top: -15px;
  right: -15px;
  animation: floatBadge 6s ease-in-out infinite;
}

.card-security {
  bottom: 45px;
  right: -20px;
  animation: floatBadgeReverse 7s ease-in-out infinite;
  animation-delay: -1.5s;
}

.card-approval {
  bottom: -15px;
  left: -15px;
  animation: floatBadge 5.5s ease-in-out infinite;
  animation-delay: -3s;
}

.fc-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.fc-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.fc-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1.2;
  margin-top: 2px;
}

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

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

@media (max-width: 991px) {
  .floating-card {
    position: static;
    margin: 8px auto;
    width: fit-content;
  }
  .card-settlement, .card-security, .card-approval {
    animation: none;
  }
  .floating-cards-mobile-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
  }
}

/* ===== TAILORED CONSULTATION BOOKING MODAL (EXACT BINANCE SYSTEM) ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex !important;
}

.modal-card {
  background: #FFFFFF;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(78, 176, 40, 0.2);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  color: var(--green-primary);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(78, 176, 40, 0.12);
  color: var(--green-primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}

#fintech-lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input,
.form-group select {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px;
  color: var(--text-dark);
  font-family: var(--font-main);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--green-primary);
  background: #FFFFFF;
}

.form-note {
  font-size: 0.78rem;
  color: #94A3B8;
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0;
}

.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0;
}

.modal-success i {
  font-size: 3rem;
  color: var(--green-primary);
  margin-bottom: 14px;
}

.modal-success h4 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
}

@media (max-width: 575px) {
  .modal-card {
    padding: 20px 16px !important;
    margin: 10px;
    width: calc(100% - 20px);
  }
}

