/* Main Stylesheet for Credvue Payment Solution */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css?family=Cabin:400,400i,500,500i,600,600i,700,700i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Work+Sans:300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');

/* Base Styles */
:root {
  --primary-color: #0056b3;
  --secondary-color: #6c757d;
  --accent-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
}

body {
  font-family: 'Rubik', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.font-cabin {
  font-family: 'Cabin', sans-serif;
}

.font-rubik {
  font-family: 'Rubik', sans-serif;
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

.font-work-sans {
  font-family: 'Work Sans', sans-serif;
}

.font-roboto {
  font-family: 'Roboto', sans-serif;
}

/* Font Weights */
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }

/* Font Sizes */
.fz-12 { font-size: 12px; }
.fz-14 { font-size: 14px; }
.fz-16 { font-size: 16px; }
.fz-18 { font-size: 18px; }
.fz-20 { font-size: 20px; }
.fz-24 { font-size: 24px; }
.fz-28 { font-size: 28px; }
.fz-32 { font-size: 32px; }
.fz-36 { font-size: 36px; }
.fz-40 { font-size: 40px; }
.fz-48 { font-size: 48px; }
.fz-56 { font-size: 56px; }
.fz-64 { font-size: 64px; }

/* Line Heights */
.lh-1 { line-height: 1; }
.lh-1-2 { line-height: 1.2; }
.lh-1-4 { line-height: 1.4; }
.lh-1-6 { line-height: 1.6; }
.lh-1-8 { line-height: 1.8; }
.lh-2 { line-height: 2; }

/* Buttons */
.btn {
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #004494;
  border-color: #004494;
}

.btn-light {
  background-color: #fff;
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: #f8f9fa;
  color: #004494;
}

.btn-signup {
  background-color: #fff;
  color: var(--primary-color);
  border-radius: 30px;
  padding: 0.5rem 1.8rem;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-signup:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Navigation */
.navbar-style-1 {
  padding: 1.5rem 2rem;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-style-1.scrolled {
  background-color: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 2rem;
}

.navbar-style-1.scrolled .nav-link,
.navbar-style-1.scrolled .navbar-brand {
  color: #333 !important;
}

.navbar-nav-style-1 .nav-item {
  margin: 0 0.5rem;
}

.navbar-nav-style-1 .nav-link {
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-nav-style-1 .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-nav-style-1 .dropdown-menu {
  border: none;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-nav-style-1 .dropdown-item {
  padding: 0.5rem 1.5rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.navbar-nav-style-1 .dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0056b3 0%, #00a0e9 100%);
  color: #fff;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../media/banners/pattern-bg.png');
  background-size: cover;
  opacity: 0.1;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Features Section */
.features-section {
  padding: 80px 0;
}

.feature-card {
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.testimonial-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem 0;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

/* Contact Form */
.contact-section {
  padding: 80px 0;
}

.contact-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
  background-color: var(--primary-color);
  color: #fff;
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
}

.contact-info i {
  font-size: 1.5rem;
  margin-right: 1rem;
}

/* Footer */
.footer-section {
  background-color: var(--dark-color);
  color: #fff;
  padding: 80px 0 30px;
}

.footer-section h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: none;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  margin-right: 0.5rem;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .navbar-style-1 {
    background-color: #fff !important;
    padding: 0.8rem 1rem;
  }
  
  .navbar-style-1 .nav-link,
  .navbar-style-1 .navbar-brand {
    color: #333 !important;
  }
  
  .hero-section {
    padding: 120px 0 80px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .feature-card {
    margin-bottom: 1.5rem;
  }
}

/* ---------- GLOBAL SCROLL-REVEAL SYSTEM ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
  visibility: hidden;
}
.reveal.reveal-in {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
  visibility: hidden;
}
.reveal-left.reveal-in {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
  visibility: hidden;
}
.reveal-right.reveal-in {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.reveal-zoom {
  opacity: 0;
  transform: scale(.85);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
  visibility: hidden;
}
.reveal-zoom.reveal-in {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
.reveal-flip {
  opacity: 0;
  transform: perspective(1000px) rotateX(-20deg) translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
  visibility: hidden;
}
.reveal-flip.reveal-in {
  opacity: 1;
  transform: perspective(1000px) rotateX(0) translateY(0);
  visibility: visible;
}

/* Staggered delays inside grid / row containers */
.reveal-stagger > *:nth-child(1) { transition-delay: .00s; }
.reveal-stagger > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger > *:nth-child(6) { transition-delay: .40s; }
.reveal-stagger > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger > *:nth-child(8) { transition-delay: .56s; }
.reveal-stagger > *:nth-child(9) { transition-delay: .64s; }
.reveal-stagger > *:nth-child(10){ transition-delay: .72s; }
.reveal-stagger > *:nth-child(11){ transition-delay: .80s; }
.reveal-stagger > *:nth-child(12){ transition-delay: .88s; }

/* Delay modifiers */
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }
.delay-6 { transition-delay: .6s !important; }

/* ---------- HERO SECTION ENHANCEMENTS ---------- */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,.10), transparent 45%);
  pointer-events: none;
  animation: heroShimmer 7s ease-in-out infinite alternate;
}
@keyframes heroShimmer {
  0%   { background-position: 0% 0%, 100% 100%; opacity: .85; }
  100% { background-position: 10% 10%, 90% 60%;  opacity: 1;   }
}

/* Hero entrance animations */
.hero-enter h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp .9s cubic-bezier(.2,.8,.2,1) .15s forwards;
}
.hero-enter p {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp .9s cubic-bezier(.2,.8,.2,1) .35s forwards;
}
.hero-enter .hero-cta-1 {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp .8s cubic-bezier(.2,.8,.2,1) .55s forwards;
}
.hero-enter .hero-cta-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp .8s cubic-bezier(.2,.8,.2,1) .68s forwards;
}
.hero-enter .hero-image img {
  opacity: 0;
  transform: translateY(40px) scale(.95);
  animation: heroFadeZoom 1s cubic-bezier(.2,.8,.2,1) .3s forwards;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeZoom {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hero floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .35;
  animation: heroFloatShape 9s ease-in-out infinite;
}
.hero-shape.s1 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, #35c9ff 0%, transparent 70%);
  top: -40px; left: -60px;
  animation-delay: -1s;
}
.hero-shape.s2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #7fc4ff 0%, transparent 70%);
  bottom: -80px; right: -60px;
  animation-delay: -3s;
  animation-duration: 11s;
}
.hero-shape.s3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, #ffffff 0%, transparent 70%);
  top: 40%; right: 20%;
  animation-delay: -5s;
  animation-duration: 13s;
  opacity: .22;
}
@keyframes heroFloatShape {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(18px,-22px) scale(1.08); }
}

/* ---------- SECTION HEADING ANIMATION ---------- */
.section-head-reveal h2,
.section-head-reveal .section-title {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease .05s, transform .7s cubic-bezier(.2,.8,.2,1) .05s;
}
.section-head-reveal p,
.section-head-reveal .section-subtitle {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease .18s, transform .7s cubic-bezier(.2,.8,.2,1) .18s;
}
.section-head-reveal.reveal-in h2,
.section-head-reveal.reveal-in .section-title,
.section-head-reveal.reveal-in p,
.section-head-reveal.reveal-in .section-subtitle {
  opacity: 1;
  transform: translateY(0);
}
.section-underline {
  position: relative;
  display: inline-block;
}
.section-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #35c9ff, #0d6efd);
  transform: translateX(-50%);
  transition: width .6s cubic-bezier(.2,.8,.2,1) .35s;
}
.section-head-reveal.reveal-in .section-underline::after {
  width: 60px;
}

/* ---------- CARD HOVER MICRO-INTERACTIONS ---------- */
.hover-lift {
  transition: transform .35s cubic-bezier(.2,.8,.2,1),
              box-shadow .35s ease,
              border-color .3s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(13,30,77,.12) !important;
}
.card-icon-bounce {
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.card:hover .card-icon-bounce,
.hover-lift:hover .card-icon-bounce {
  transform: translateY(-4px) scale(1.12) rotate(-4deg);
}

/* Image hover zoom */
.img-hover-zoom {
  overflow: hidden;
}
.img-hover-zoom img {
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .4s ease;
}
.img-hover-zoom:hover img {
  transform: scale(1.07);
  filter: saturate(1.1);
}

/* Pricing card feature-list stagger */
.pricing-card {
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 52px rgba(13,110,253,.18);
}
.pricing-card.border-primary {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(13,110,253,.22);
}
.pricing-card.border-primary:hover {
  transform: translateY(-14px);
}

/* Bank / client logos hover */
.bank-logo,
.client-logo-img {
  filter: grayscale(20%);
  opacity: .82;
  transition: transform .35s ease, filter .35s ease, opacity .35s ease;
}
.bank-logo:hover,
.client-logo-img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-4px) scale(1.06);
}

/* ---------- CTA SECTION PULSE BG ---------- */
.cta-gradient-pulse {
  background: linear-gradient(135deg, #0d6efd 0%, #35c9ff 100%);
  background-size: 200% 200%;
  animation: ctaGradientPulse 6s ease infinite;
}
@keyframes ctaGradientPulse {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* ---------- BUTTON GLOW ---------- */
.btn-glow {
  position: relative;
  z-index: 1;
}
.btn-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #0d6efd, #35c9ff);
  filter: blur(8px);
  opacity: 0;
  z-index: -1;
  transition: opacity .35s ease;
}
.btn-glow:hover::before {
  opacity: .55;
}

/* ---------- FLOATING NUMBERS / BADGES ---------- */
.float-num {
  display: inline-block;
  animation: floatBadge 3.5s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* ---------- ONE-SHOT KEYFRAMES (compat) ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.animate-fadeIn {
  animation: fadeIn 1s ease-in-out;
}

.animate-slideInUp {
  animation: slideInUp 1s ease-in-out;
}

/* ---------- INDEX / HOME PAGE ADVANCED ANIMATIONS ---------- */

/* ===== Index Hero (v2 — advanced) ===== */
.index-hero {
  min-height: 100vh;
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 10% 10%, rgba(53, 201, 255, 0.22), transparent 55%),
    radial-gradient(ellipse at 90% 15%, rgba(124, 58, 237, 0.18), transparent 55%),
    linear-gradient(135deg, #0a1f5a 0%, #0d6efd 55%, #0a58ca 100%);
  z-index: 0;
}
.index-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.14), transparent 40%),
    radial-gradient(circle at 80% 75%, rgba(255,255,255,.08), transparent 45%);
  pointer-events: none;
  animation: heroShimmer 7s ease-in-out infinite alternate;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero-blob.b1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #35c9ff 0%, transparent 65%);
  top: -120px; left: -120px;
  animation: blobFloatA 13s ease-in-out infinite;
}
.hero-blob.b2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 65%);
  bottom: -160px; right: -120px;
  animation: blobFloatB 16s ease-in-out infinite;
}
.hero-blob.b3 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, #22d3ee 0%, transparent 65%);
  top: 40%; right: 18%;
  animation: blobFloatC 18s ease-in-out infinite reverse;
  opacity: 0.35;
}
@keyframes blobFloatA {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(28px,-18px) scale(1.06); }
  66%     { transform: translate(-14px,24px) scale(.96); }
}
@keyframes blobFloatB {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-34px,-28px) scale(1.1); }
}
@keyframes blobFloatC {
  0%,100% { transform: translate(0,0) rotate(0deg) scale(1); }
  50%     { transform: translate(20px,30px) rotate(8deg) scale(1.08); }
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  box-shadow: 0 0 20px rgba(255,255,255,0.35);
  animation: orbRise linear infinite;
}
@keyframes orbRise {
  0%   { transform: translateY(110vh) scale(0.2); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-15vh) scale(1.1); opacity: 0; }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-copy {
  position: relative;
  z-index: 3;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem 0.4rem 0.45rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp .8s cubic-bezier(.2,.8,.2,1) .05s forwards;
}
.hero-badge .dot {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  position: relative;
}
.hero-badge .dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 2px solid rgba(74, 222, 128, 0.55);
  animation: pingDot 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes pingDot {
  75%, 100% { transform: scale(1.8); opacity: 0; }
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.08;
  margin-bottom: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(180deg, #ffffff 0%, #cfe0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp .95s cubic-bezier(.2,.8,.2,1) .2s forwards;
}
.hero-title .gradient-word {
  background: linear-gradient(90deg, #35c9ff 0%, #a5f3fc 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}
.hero-title .cursor {
  display: inline-block;
  width: 3px;
  height: 0.95em;
  background: #35c9ff;
  margin-left: 4px;
  vertical-align: -12%;
  animation: cursorBlink 1s steps(2) infinite;
  -webkit-text-fill-color: initial;
  color: #35c9ff;
  border-radius: 2px;
}
@keyframes cursorBlink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0; }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.86);
  margin-bottom: 2.1rem;
  max-width: 560px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeUp .85s cubic-bezier(.2,.8,.2,1) .42s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.4rem;
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp .85s cubic-bezier(.2,.8,.2,1) .58s forwards;
}
.btn-hero-primary {
  padding: 0.9rem 1.6rem;
  border-radius: 14px;
  color: #0b3f94;
  background: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  border: 0;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  color: #0a58ca;
}
.btn-hero-primary i.arrow {
  transition: transform .3s ease;
}
.btn-hero-primary:hover i.arrow {
  transform: translateX(4px);
}
.btn-hero-ghost {
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-3px);
  color: #fff;
}
.btn-hero-ghost .play {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform .3s ease, background .3s ease;
}
.btn-hero-ghost:hover .play {
  background: #fff;
  color: #0d6efd;
  transform: scale(1.08);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.2rem;
  align-items: center;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp .9s cubic-bezier(.2,.8,.2,1) .75s forwards;
}
.trust-avatars {
  display: inline-flex;
  align-items: center;
}
.trust-avatars img,
.trust-avatars .ta {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.95);
  object-fit: cover;
  background: linear-gradient(135deg, #35c9ff, #0d6efd);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}
.trust-avatars > * + * { margin-left: -10px; }
.trust-text { color: rgba(255,255,255,0.84); font-size: 0.92rem; }
.trust-stars { color: #fbbf24; font-size: 0.95rem; letter-spacing: 1px; }
.trust-stars span { color: rgba(255,255,255,0.78); font-weight: 500; margin-left: 0.35rem; letter-spacing: 0; }

.hero-visual {
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(40px) scale(.97);
  animation: heroFadeZoom 1.05s cubic-bezier(.2,.8,.2,1) .35s forwards;
}
.mock-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(2, 18, 54, 0.35);
  padding: 1rem 1.1rem;
  z-index: 5;
  will-change: transform;
}
.mock-main {
  position: relative;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 40px 80px rgba(2, 18, 54, 0.35);
  padding: 1.1rem 1.1rem 1.3rem;
  overflow: hidden;
  z-index: 4;
  transform-style: preserve-3d;
}
.mock-main::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 40px;
  background: linear-gradient(90deg, #0d6efd, #35c9ff);
}
.mock-tabs {
  display: flex;
  gap: 6px;
  position: relative;
  z-index: 2;
  margin-bottom: 0.85rem;
}
.mock-tabs span {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.mock-tabs .t1 { background: #ef4444; }
.mock-tabs .t2 { background: #f59e0b; }
.mock-tabs .t3 { background: #10b981; }
.mock-title {
  color: #0f172a;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 0.85rem;
}
.mock-metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.mock-metric {
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
}
.mock-metric.mm2 { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.mock-metric.mm3 { background: linear-gradient(135deg, #fefce8, #fef3c7); }
.mock-metric.mm4 { background: linear-gradient(135deg, #fdf2f8, #fce7f3); }
.mock-metric .lbl { color: #64748b; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase; }
.mock-metric .val { color: #0f172a; font-weight: 800; font-size: 1.1rem; margin-top: 0.1rem; }
.mock-metric .delta { font-size: 0.72rem; font-weight: 700; }
.mock-metric .delta.up   { color: #059669; }
.mock-metric .delta.down { color: #dc2626; }

.mock-chart {
  height: 110px;
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.mock-chart svg { width: 100%; height: 100%; display: block; }
.mock-chart .bar {
  fill: url(#barGradient);
  transform-origin: bottom center;
  animation: barGrow 1.8s cubic-bezier(.2,.8,.2,1) 1.2s both;
}
@keyframes barGrow {
  0%   { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}

.mock-float-top-left {
  top: -28px; left: -34px;
  width: 200px;
  animation: mockFloatA 5.5s ease-in-out infinite;
}
.mock-float-top-right {
  top: 30px; right: -30px;
  width: 220px;
  animation: mockFloatB 6s ease-in-out infinite;
}
.mock-float-bottom-left {
  bottom: -36px; left: -24px;
  width: 230px;
  animation: mockFloatC 7s ease-in-out infinite;
}
.mock-float-bottom-right {
  bottom: 22px; right: -28px;
  width: 180px;
  padding: 0.8rem 0.9rem;
  background: linear-gradient(135deg, #0d6efd 0%, #35c9ff 100%);
  color: #fff;
  animation: mockFloatA 6.5s ease-in-out infinite reverse;
}
@keyframes mockFloatA {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
@keyframes mockFloatB {
  0%,100% { transform: translateY(0) rotate(1deg); }
  50%     { transform: translateY(16px) rotate(-1deg); }
}
@keyframes mockFloatC {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(12px,-12px); }
}
.mock-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}
.mock-mini-head .icn {
  width: 30px; height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
}
.mock-mini-head .icn.green { background: linear-gradient(135deg, #10b981, #34d399); }
.mock-mini-head .icn.blue  { background: linear-gradient(135deg, #0d6efd, #35c9ff); }
.mock-mini-head .icn.pink  { background: linear-gradient(135deg, #db2777, #f472b6); }
.mock-mini-title { color: #0f172a; font-weight: 700; font-size: 0.85rem; margin: 0; }
.mock-mini-sublabel { color: #64748b; font-size: 0.7rem; margin: 0; }
.mock-mini-val { color: #0f172a; font-weight: 800; font-size: 1.05rem; margin-top: 0.25rem; }
.mock-progress {
  margin-top: 0.5rem;
  height: 6px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}
.mock-progress > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d6efd, #35c9ff);
  transform-origin: left center;
  animation: progressGrow 2s cubic-bezier(.2,.8,.2,1) 1.1s both;
}
@keyframes progressGrow {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
.mock-tx-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.22rem 0;
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
}
.mock-tx-row .tx-name { font-weight: 600; }
.mock-tx-row .tx-amt  { font-weight: 800; color: #bbf7d0; }

/* ===== Stats / Counter strip ===== */
.stats-strip {
  margin-top: -60px;
  position: relative;
  z-index: 20;
}
.stats-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 25px 55px rgba(2, 18, 54, 0.12);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  overflow: hidden;
  position: relative;
}
.stats-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0d6efd, #35c9ff);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.stats-card.reveal-in::after,
body .stats-card.revealed::after {
  transform: scaleX(1);
}
.stat-item {
  text-align: center;
  padding: 0.4rem 0.3rem;
  position: relative;
}
.stat-item .stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 0.65rem;
  color: #fff;
  font-size: 1.1rem;
}
.stat-item .s-blue   { background: linear-gradient(135deg, #0d6efd, #35c9ff); }
.stat-item .s-green  { background: linear-gradient(135deg, #059669, #34d399); }
.stat-item .s-amber  { background: linear-gradient(135deg, #d97706, #fbbf24); color: #111; }
.stat-item .s-purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.stat-item .num {
  display: block;
  font-size: 2.15rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  font-family: 'Cabin', sans-serif;
}
.stat-item .num .suffix {
  font-size: 1.15rem;
  margin-left: 2px;
  color: #0d6efd;
}
.stat-item .lbl {
  display: block;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.35rem;
  letter-spacing: 0.2px;
}

/* ===== Trusted-by marquee ===== */
.trusted-section {
  padding: 60px 0 40px;
}
.trusted-tag {
  text-align: center;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.marquee-track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track-wrap:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.62;
  transition: opacity .35s ease, transform .35s ease;
  filter: grayscale(40%);
  color: #475569;
  font-weight: 700;
  font-size: 1.05rem;
}
.marquee-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter: grayscale(0%);
}
.marquee-logo img {
  max-height: 34px;
  width: auto;
  display: block;
}
.marquee-logo .m-icn {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
}

/* ===== Feature cards with tilt + glow ===== */
.features-2 {
  padding: 90px 0;
  position: relative;
}
.features-2::before {
  content: "";
  position: absolute;
  top: 30%; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(53,201,255,.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.feat-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 20px;
  padding: 1.9rem 1.65rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform .45s cubic-bezier(.2,.8,.2,1),
              box-shadow .45s ease,
              border-color .35s ease;
  transform-style: preserve-3d;
  z-index: 2;
  will-change: transform;
}
.feat-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(13,110,253,.0), rgba(53,201,255,.0), rgba(124,58,237,.0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  transition: background .55s ease;
  pointer-events: none;
}
.feat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(2, 18, 54, 0.12);
  border-color: transparent;
}
.feat-card:hover::before {
  background: linear-gradient(135deg, rgba(13,110,253,.5), rgba(53,201,255,.5), rgba(124,58,237,.5));
}
.feat-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53,201,255,.28), transparent 65%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.feat-card:hover .feat-glow {
  opacity: 1;
}
.feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  transition: transform .45s cubic-bezier(.2,.8,.2,1),
              box-shadow .45s ease;
}
.feat-card:hover .feat-icon {
  transform: translateY(-2px) rotate(-4deg) scale(1.06);
  box-shadow: 0 12px 24px rgba(13,110,253,0.35);
}
.fi-blue   { background: linear-gradient(135deg, #0d6efd 0%, #35c9ff 100%); }
.fi-green  { background: linear-gradient(135deg, #059669 0%, #34d399 100%); }
.fi-amber  { background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%); }
.fi-purple { background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); }
.fi-pink   { background: linear-gradient(135deg, #db2777 0%, #f472b6 100%); }
.fi-teal   { background: linear-gradient(135deg, #0f766e 0%, #2dd4bf 100%); }

.feat-card h4 {
  color: #0f172a;
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
  font-weight: 700;
}
.feat-card p {
  color: #64748b;
  margin-bottom: 1.1rem;
  line-height: 1.65;
}
.feat-arrow {
  color: #0d6efd;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  transition: gap .3s ease, color .3s ease;
}
.feat-arrow:hover {
  gap: 0.7rem;
  color: #0a58ca;
  text-decoration: none;
}
.feat-arrow i {
  transition: transform .3s ease;
}
.feat-card:hover .feat-arrow i {
  animation: arrowWiggle 1.1s ease-in-out infinite;
}
@keyframes arrowWiggle {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(5px); }
}

/* ===== Bank integrations (animated cards) ===== */
.banks-section {
  padding: 90px 0;
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.bank-tile {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 18px;
  padding: 1.3rem 1rem;
  height: 100%;
  text-align: center;
  transition: transform .45s cubic-bezier(.2,.8,.2,1),
              box-shadow .45s ease,
              border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.bank-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(13,110,253,.12), transparent 55%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.bank-tile:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 44px rgba(2, 18, 54, 0.10);
  border-color: rgba(13,110,253,.25);
}
.bank-tile:hover::after {
  opacity: 1;
}
.bank-tile img {
  max-height: 44px;
  margin: 0 auto 0.55rem;
  transition: transform .45s ease;
  filter: grayscale(20%);
}
.bank-tile:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.bank-tile span {
  color: #475569;
  font-weight: 600;
  font-size: 0.88rem;
}

/* ===== Testimonials upgraded ===== */
.testimonial-card {
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(226,232,240,.8);
  background: #fff;
  box-shadow: 0 8px 24px rgba(15,23,42,.05);
  transition: transform .45s cubic-bezier(.2,.8,.2,1),
              box-shadow .45s ease,
              border-color .35s ease;
  position: relative;
  transform-style: preserve-3d;
  overflow: hidden;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -24px; right: 12px;
  font-size: 7rem;
  color: #e0f2fe;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  transition: color .35s ease, transform .45s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(2,18,54,.10);
  border-color: rgba(53,201,255,.35);
}
.testimonial-card:hover::before {
  color: #bae6fd;
  transform: translateY(-3px) rotate(3deg);
}
.testimonial-card p:last-child {
  position: relative;
  z-index: 2;
  color: #475569;
  line-height: 1.65;
}
.tc-stars { color: #fbbf24; margin-bottom: 0.55rem; letter-spacing: 2px; font-size: 0.85rem; }

/* ===== CTA section advanced ===== */
.cta-advanced {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 80px 40px;
  background: linear-gradient(135deg, #0d6efd 0%, #7c3aed 50%, #0a58ca 100%);
  background-size: 200% 200%;
  animation: ctaGradientMove 8s ease infinite;
  color: #fff;
}
@keyframes ctaGradientMove {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.cta-advanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.20), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,.12), transparent 55%);
  pointer-events: none;
}
.cta-advanced::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  pointer-events: none;
  opacity: 0.5;
}
.cta-confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.cta-confetti span {
  position: absolute;
  width: 8px; height: 14px;
  top: -20px;
  opacity: 0.85;
  border-radius: 2px;
  animation: ctaConfetti linear infinite;
}
@keyframes ctaConfetti {
  0%   { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(110vh) rotate(540deg); opacity: 0; }
}

.cta-advanced h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
}
.cta-advanced p {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  margin-bottom: 1.9rem;
}
.cta-advanced .btn-cta-white {
  padding: 0.95rem 1.7rem;
  border-radius: 14px;
  background: #fff;
  color: #0d47a1;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  border: 0;
}
.cta-advanced .btn-cta-white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 44px rgba(0,0,0,.3);
}
.cta-advanced .btn-cta-outline {
  padding: 0.95rem 1.6rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  margin-left: 0.7rem;
}
.cta-advanced .btn-cta-outline:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
}

.mock-mini-head .icn.purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }

.rounded-20 { border-radius: 20px; }

.section-underline-inline {
  position: relative;
  display: inline-block;
  padding-bottom: 0.6rem;
}
.section-underline-inline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d6efd, #7c3aed);
}

.faq-card {
  position: relative;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06) !important;
  transition: box-shadow .3s ease, transform .3s ease;
}
.faq-card:hover {
  box-shadow: 0 10px 30px rgba(55, 48, 163, 0.10) !important;
  transform: translateY(-2px);
}
.faq-left-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #3730a3, #4f46e5, #6366f1);
  border-radius: 16px 0 0 16px;
}
.faq-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, #334155 0%, #475569 50%, #64748b 100%);
  box-shadow: 0 4px 10px rgba(51, 65, 85, 0.25);
  flex-shrink: 0;
}
.faq-chevron {
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  color: #6366f1;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.btn[aria-expanded="true"] .faq-chevron,
button:not(.collapsed) .faq-chevron {
  transform: rotate(180deg);
  color: #3730a3;
}
.faq-card .card-header {
  border-bottom: 0 !important;
  background: transparent !important;
}
.faq-card .btn-link {
  text-decoration: none !important;
  color: inherit !important;
}
.faq-card .btn-link:hover,
.faq-card .btn-link:focus {
  text-decoration: none !important;
}

/* ===== INTEGRATIONS TILES (PROFESSIONAL) ===== */
.integrations-wrap {
  width: 100%;
}
.integrations-category-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.cat-banks  { background: rgba(13,110,253,0.10); color: #0d6efd; }
.cat-erp    { background: rgba(124,58,237,0.10); color: #7c3aed; }
.cat-pay    { background: rgba(16,185,129,0.10); color: #059669; }
.cat-ecom   { background: rgba(219,39,119,0.10); color: #db2777; }
.cat-all    { background: rgba(245,158,11,0.10); color: #d97706; }

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
@media (max-width: 575.98px) {
  .integrations-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
.integration-tile {
  position: relative;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.75);
  border-radius: 20px;
  padding: 1.4rem 1rem 1.2rem;
  text-align: center;
  height: 100%;
  overflow: hidden;
  transition:
    transform .5s cubic-bezier(.2,.8,.2,1),
    box-shadow .5s ease,
    border-color .4s ease;
  will-change: transform;
}
.integration-tile::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(13,110,253,0), rgba(99,102,241,0), rgba(124,58,237,0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  transition: background .55s ease;
  pointer-events: none;
}
.integration-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(13,110,253,.14), transparent 60%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.integration-tile:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow:
    0 22px 44px rgba(2, 18, 54, 0.10),
    0 0 0 1px rgba(13,110,253,0.08);
  border-color: transparent;
}
.integration-tile:hover::before {
  background: linear-gradient(135deg, rgba(13,110,253,0.55), rgba(99,102,241,0.55), rgba(124,58,237,0.55));
}
.integration-tile:hover::after { opacity: 1; }

.integration-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  position: relative;
  transition:
    transform .5s cubic-bezier(.2,.8,.2,1),
    box-shadow .5s ease;
}
.integration-tile:hover .integration-icon {
  transform: translateY(-3px) rotate(-5deg) scale(1.08);
}
.ig-bank  { background: linear-gradient(135deg, #0d6efd 0%, #35c9ff 100%); box-shadow: 0 10px 22px rgba(13,110,253,.30); }
.ig-green { background: linear-gradient(135deg, #059669 0%, #34d399 100%); box-shadow: 0 10px 22px rgba(16,185,129,.30); }
.ig-amber { background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%); box-shadow: 0 10px 22px rgba(245,158,11,.30); }
.ig-purple{ background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); box-shadow: 0 10px 22px rgba(124,58,237,.30); }
.ig-pink  { background: linear-gradient(135deg, #db2777 0%, #f472b6 100%); box-shadow: 0 10px 22px rgba(219,39,119,.30); }
.ig-teal  { background: linear-gradient(135deg, #0f766e 0%, #2dd4bf 100%); box-shadow: 0 10px 22px rgba(15,118,110,.30); }
.ig-blue2 { background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%); box-shadow: 0 10px 22px rgba(2,132,199,.30); }
.ig-red   { background: linear-gradient(135deg, #dc2626 0%, #f87171 100%); box-shadow: 0 10px 22px rgba(220,38,38,.30); }
.ig-lime  { background: linear-gradient(135deg, #65a30d 0%, #a3e635 100%); box-shadow: 0 10px 22px rgba(101,163,13,.30); }
.ig-indigo{ background: linear-gradient(135deg, #4f46e5 0%, #818cf8 100%); box-shadow: 0 10px 22px rgba(79,70,229,.30); }

.integration-name {
  color: #0f172a;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  display: block;
  transition: color .3s ease;
}
.integration-tile:hover .integration-name {
  color: #0d6efd;
}
.integration-sub {
  display: block;
  color: #94a3b8;
  font-size: 0.74rem;
  margin-top: 0.2rem;
  font-weight: 500;
}

/* ===== PRICING CARDS (PROFESSIONAL) ===== */
.pricing-custom-card {
  position: relative;
  border-radius: 24px !important;
  overflow: hidden;
  padding: 2.2rem 1.8rem 2rem;
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(13, 110, 253, 0.04)),
    #fff;
  transition:
    transform .55s cubic-bezier(.2,.8,.2,1),
    box-shadow .55s ease;
  will-change: transform;
  height: 100%;
}
.pricing-custom-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(99,102,241,0.35), rgba(13,110,253,0.35), rgba(124,58,237,0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
  transition:
    opacity .5s ease,
    background .5s ease;
}
.pricing-custom-card::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.14), transparent 65%);
  opacity: 0;
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}
.pricing-custom-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 32px 60px rgba(2, 18, 54, 0.14),
    0 0 0 1px rgba(13,110,253,0.06);
}
.pricing-custom-card:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, #6366f1, #0d6efd, #7c3aed);
}
.pricing-custom-card:hover::after {
  opacity: 1;
  transform: scale(1.15);
}

/* Popular plan elevated */
.pricing-custom-card.popular-card {
  background:
    linear-gradient(180deg, rgba(99,102,241,0.08) 0%, rgba(13,110,253,0.04) 40%, #fff 100%);
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(99,102,241,0.18);
}
.pricing-custom-card.popular-card::before {
  opacity: 1;
  background: linear-gradient(135deg, #6366f1, #0d6efd, #a855f7, #ec4899);
  background-size: 300% 300%;
  animation: pricingBorderShift 6s ease infinite;
}
@keyframes pricingBorderShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.pricing-custom-card.popular-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 40px 72px rgba(99,102,241,0.26);
}

.pricing-badge {
  position: absolute;
  top: 1.15rem;
  right: -36px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.35rem 3rem;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(239,68,68,0.35);
  z-index: 3;
}
.pricing-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  animation: badgeShine 2.8s ease-in-out infinite;
}
@keyframes badgeShine {
  0%,70%,100% { transform: translateX(-100%); }
  85%         { transform: translateX(100%); }
}

.pricing-title {
  color: #0f172a;
  font-size: 1.35rem !important;
  margin: 0 0 0.6rem !important;
  letter-spacing: -0.01em;
}
.popular-card .pricing-title {
  background: linear-gradient(135deg, #4f46e5, #0d6efd);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-price {
  font-size: 2.6rem !important;
  line-height: 1.1 !important;
  color: #0f172a !important;
  margin: 0.4rem 0 0.4rem !important;
  letter-spacing: -0.03em;
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
}
.popular-card .pricing-price {
  background: linear-gradient(135deg, #0d6efd 0%, #7c3aed 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-period {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: #64748b !important;
  -webkit-text-fill-color: #64748b !important;
  margin-top: 0.75rem;
  letter-spacing: 0;
}
.pricing-sub {
  color: #64748b;
  font-size: 0.92rem;
  margin: 0 0 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed rgba(148,163,184,0.35);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.7rem;
  text-align: left;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(226,232,240,0.5);
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    color .3s ease;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-custom-card:hover .pricing-features li {
  transform: translateX(2px);
}
.pricing-features li i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.95rem;
  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    color .3s ease;
}
.pricing-custom-card:hover .pricing-features li i {
  transform: scale(1.2);
}
.popular-card .pricing-features li i {
  color: #0d6efd !important;
}

/* Pricing CTA buttons */
.pricing-custom-card .btn {
  position: relative;
  border-radius: 14px !important;
  padding: 0.85rem 1.2rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s ease;
  z-index: 2;
}
.pricing-custom-card .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-100%);
  transition: transform .55s ease;
  z-index: -1;
}
.pricing-custom-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(13,110,253,0.30);
}
.pricing-custom-card .btn:hover::before {
  transform: translateX(100%);
}
.pricing-custom-card.popular-card .btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #0d6efd 60%, #7c3aed 100%);
  background-size: 200% 200%;
  border: none;
  animation: pricingBtnShift 4.5s ease infinite;
}
@keyframes pricingBtnShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.pricing-custom-card.popular-card .btn-primary:hover {
  box-shadow: 0 16px 30px rgba(99,102,241,0.45);
}

/* Bank tile icon polish (legacy) */
.bank-tile i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d6efd 0%, #35c9ff 100%);
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s ease;
  box-shadow: 0 8px 18px rgba(13,110,253,0.28);
}
.bank-tile:hover i {
  transform: translateY(-3px) rotate(-4deg) scale(1.08);
  box-shadow: 0 14px 26px rgba(13,110,253,0.40);
}

/* ===== Stagger delays for 15-item grids ===== */
.reveal-stagger-15 > *:nth-child(1)  { transition-delay: .00s; }
.reveal-stagger-15 > *:nth-child(2)  { transition-delay: .06s; }
.reveal-stagger-15 > *:nth-child(3)  { transition-delay: .12s; }
.reveal-stagger-15 > *:nth-child(4)  { transition-delay: .18s; }
.reveal-stagger-15 > *:nth-child(5)  { transition-delay: .24s; }
.reveal-stagger-15 > *:nth-child(6)  { transition-delay: .30s; }
.reveal-stagger-15 > *:nth-child(7)  { transition-delay: .36s; }
.reveal-stagger-15 > *:nth-child(8)  { transition-delay: .42s; }
.reveal-stagger-15 > *:nth-child(9)  { transition-delay: .48s; }
.reveal-stagger-15 > *:nth-child(10) { transition-delay: .54s; }
.reveal-stagger-15 > *:nth-child(11) { transition-delay: .60s; }
.reveal-stagger-15 > *:nth-child(12) { transition-delay: .66s; }
.reveal-stagger-15 > *:nth-child(13) { transition-delay: .72s; }
.reveal-stagger-15 > *:nth-child(14) { transition-delay: .78s; }
.reveal-stagger-15 > *:nth-child(15) { transition-delay: .84s; }
.reveal-stagger-15 > *:nth-child(16) { transition-delay: .90s; }
.reveal-stagger-15 > *:nth-child(17) { transition-delay: .96s; }
.reveal-stagger-15 > *:nth-child(18) { transition-delay: 1.02s; }
.reveal-stagger-15 > *:nth-child(19) { transition-delay: 1.08s; }
.reveal-stagger-15 > *:nth-child(20) { transition-delay: 1.14s; }

.pricing-feature-list {
  position: relative;
  border-radius: 24px !important;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(13, 110, 253, 0.04)),
    #fff;
}
.pricing-custom-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, #6366f1, #0d6efd, #7c3aed);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}
.pricing-feature-list {
  text-align: left;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-feature-list li {
  color: #334155;
  font-size: 1rem;
  padding-left: 4px;
}

.magnetic {
  will-change: transform;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}

/* ===== Process Steps (How It Works) ===== */
.process-step {
  position: relative;
  padding: 1.6rem 1.2rem 1.2rem;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.7);
  height: 100%;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(13,110,253,.08), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(2, 18, 54, 0.12);
  border-color: rgba(99,102,241,.2);
}
.process-step:hover::before { opacity: 1; }
.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(13,110,253,.25);
  margin-bottom: 1rem;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.process-step:hover .process-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.06);
  box-shadow: 0 16px 34px rgba(13,110,253,.35);
}
.process-step h5 {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.process-step p {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.process-step-number {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13,110,253,.1), rgba(124,58,237,.1));
  color: #4f46e5;
  font-weight: 800;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99,102,241,.15);
}

/* ===== FAQ Accordion Enhancements ===== */
.faq-card .card-body {
  animation: faqBodyFade .45s cubic-bezier(.2,.8,.2,1) both;
  padding: 0.5rem 1.5rem 1.6rem;
  color: #475569;
  line-height: 1.75;
  font-size: 0.96rem;
}
@keyframes faqBodyFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.collapsing {
  transition: height .35s cubic-bezier(.2,.8,.2,1) !important;
}
.faq-card .card-header .btn {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.5rem 1.1rem 3.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  color: #0f172a !important;
  font-size: 1rem;
  line-height: 1.4;
}
.faq-card .card-header .btn:focus { outline: none; box-shadow: none; }
.faq-num-badge + span { flex: 1; }
.faq-card .card-header {
  padding: 0;
  position: relative;
  z-index: 1;
}
.faq-card:not(:last-child) { margin-bottom: 1rem; }

/* ===== Glassmorphism Form Cards ===== */
.glass-card {
  position: relative;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 25px 60px rgba(2, 18, 54, 0.12);
  border: 1px solid rgba(255,255,255,0.8);
  overflow: hidden;
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(99,102,241,.2), rgba(13,110,253,.2), rgba(53,201,255,.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.glass-card .form-control {
  border-radius: 12px;
  border-color: #e2e8f0;
  padding: 0.75rem 1rem;
  transition: all .25s ease;
}
.glass-card .form-control:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.glass-card .custom-control-label::before {
  border-radius: 6px;
}
.glass-card .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #4f46e5;
  border-color: #4f46e5;
}

/* ===== Code Blocks (Developer Page) ===== */
.code-block {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(2, 6, 23, 0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.code-block::before {
  content: "";
  display: block;
  height: 40px;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.code-block::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 16px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 20px 0 0 #f59e0b, 40px 0 0 #10b981;
}
.code-block pre {
  margin: 0;
  padding: 1.3rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, #0f172a 0%, #0a0f1f 100%);
  overflow-x: auto;
  font-size: 0.84rem;
  line-height: 1.7;
  color: #e2e8f0;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}
.code-block code {
  background: transparent !important;
  padding: 0 !important;
  color: inherit;
  font-size: inherit;
}

/* ===== Tier Cards Highlight ===== */
.tier-card {
  position: relative;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(2, 18, 54, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all .45s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(2, 18, 54, 0.15);
}
.tier-card.popular-tier {
  border: none;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  box-shadow: 0 22px 55px rgba(99, 102, 241, 0.22);
  transform: translateY(-6px) scale(1.02);
}
.tier-card.popular-tier::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #6366f1, #0d6efd, #7c3aed);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.tier-card:hover.popular-tier {
  transform: translateY(-14px) scale(1.025);
  box-shadow: 0 38px 80px rgba(99, 102, 241, 0.28);
}
.popular-badge {
  position: absolute;
  top: 18px;
  right: -34px;
  transform: rotate(35deg);
  background: linear-gradient(90deg, #6366f1, #4f46e5);
  color: #fff;
  padding: 5px 48px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(79, 70, 229, 0.35);
  z-index: 3;
}

/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
  .hero-title { font-size: 3rem; }
  .mock-float-top-left   { left: -10px; top: -20px; }
  .mock-float-top-right  { right: -10px; }
  .mock-float-bottom-left{ left: -10px; }
  .mock-float-bottom-right{right: -10px; }
}
@media (max-width: 991.98px) {
  .index-hero { padding: 140px 0 80px; min-height: auto; }
  .hero-title { font-size: 2.35rem; }
  .hero-visual { margin-top: 3rem; }
  .cta-advanced { padding: 56px 24px; }
  .cta-advanced h2 { font-size: 1.9rem; }
  .stats-strip { margin-top: -30px; }
  .stat-item .num { font-size: 1.7rem; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 1.95rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas > a { justify-content: center; }
  .stats-card { padding: 1.4rem 1rem; }
  .cta-advanced { border-radius: 20px; padding: 40px 20px; text-align: center; }
  .cta-advanced h2 { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-zoom, .reveal-flip,
  .hero-shape, .hero-enter h1, .hero-enter p,
  .hero-enter .hero-cta-1, .hero-enter .hero-cta-2,
  .hero-enter .hero-image img, .hero-section::after,
  .cta-gradient-pulse, .float-num,
  .index-hero, .index-hero::after,
  .hero-blob, .hero-orb,
  .hero-badge, .hero-badge .dot::after,
  .hero-title, .hero-title .cursor,
  .hero-subtitle, .hero-ctas, .hero-trust,
  .hero-visual,
  .mock-float-top-left, .mock-float-top-right,
  .mock-float-bottom-left, .mock-float-bottom-right,
  .mock-chart .bar, .mock-progress > span,
  .stats-card::after,
  .marquee-track,
  .feat-card, .feat-card:hover .feat-icon, .feat-card:hover .feat-arrow i,
  .bank-tile,
  .testimonial-card,
  .cta-advanced, .cta-confetti span,
  .btn-hero-primary, .btn-hero-ghost,
  .integration-tile, .integration-tile:hover .integration-icon,
  .pricing-custom-card, .pricing-custom-card:hover,
  .pricing-custom-card::before, .pricing-custom-card.popular-card::before,
  .pricing-badge, .pricing-badge::before,
  .pricing-features li, .pricing-features li i,
  .pricing-custom-card .btn,
  .pricing-custom-card.popular-card .btn-primary,
  .process-step, .process-step:hover,
  .process-step::before, .process-icon,
  .process-step:hover .process-icon,
  .faq-card, .faq-card:hover,
  .faq-card .card-body,
  .faq-chevron,
  .glass-card,
  .code-block,
  .tier-card, .tier-card:hover,
  .tier-card.popular-tier, .tier-card.popular-tier:hover,
  .tier-card::before, .popular-badge {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE FIXES — MOBILE + WEB COMPATIBILITY
   ============================================================ */

/* --- Base resets (images, tables, forms always fit viewport) --- */
img, svg, video { max-width: 100%; height: auto; }
table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.form-control, .custom-select, textarea, input[type="text"], input[type="email"],
input[type="password"], input[type="number"], input[type="tel"], select {
  max-width: 100%;
}
.container { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; }
.row { margin-right: 0; margin-left: 0; }
.row > [class*="col-"] { padding-right: 15px; padding-left: 15px; }
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }

/* --- Mobile auth buttons (inside collapse) --- */
.border-white-10 { border-color: rgba(255,255,255,0.12) !important; }
.mobile-auth .btn-login { color: rgba(255,255,255,0.92); text-align: center; background: rgba(255,255,255,0.06); border-radius: 12px; padding: 0.75rem 1rem; }
.mobile-auth .btn-signup { background: #fff; color: #0d6efd; border-radius: 12px; padding: 0.75rem 1rem; }

/* =============== XL & LG (≤ 1199px)  Tablet / Small Desktop =============== */
@media (max-width: 1199.98px) {
  .fz-64 { font-size: 52px !important; }
  .fz-56 { font-size: 46px !important; }
  .fz-48 { font-size: 40px !important; }
  .fz-40 { font-size: 34px !important; }
  .fz-36 { font-size: 30px !important; }
  .features-2, .banks-section, .trusted-section, .stats-strip,
  .testimonial-section, .features-section, .contact-section {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .hero-subtitle { font-size: 1.08rem; }
}

/* =============== MD (≤ 991px)  Tablet Landscape =============== */
@media (max-width: 991.98px) {
  /* Typography fluid scale */
  .fz-64 { font-size: 44px !important; }
  .fz-56 { font-size: 40px !important; }
  .fz-48 { font-size: 34px !important; }
  .fz-40 { font-size: 30px !important; }
  .fz-36 { font-size: 27px !important; }
  .fz-32 { font-size: 24px !important; }
  .fz-28 { font-size: 22px !important; }
  .fz-24 { font-size: 20px !important; }

  /* Navbar - mobile theme */
  #credvueNav {
    background: rgba(8, 24, 69, 0.96) !important;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
  }
  #credvueNav .nav-link, #credvueNav .brand-link { color: #fff !important; }
  #credvueNav .hamburger-inner,
  #credvueNav .hamburger-inner::before,
  #credvueNav .hamburger-inner::after { background-color: #fff !important; }
  #credvueNav.nav-scrolled { padding: 0.6rem 0.8rem; }
  .brand-img { width: 88px !important; }
  #credvueNav.nav-scrolled .brand-img { width: 72px !important; }

  /* Collapse menu scrollable */
  #navbarSupportedContent {
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Dropdowns stack & scrollable */
  .dropdown-animated {
    position: static !important;
    float: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none !important;
    background: rgba(255,255,255,0.04) !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    margin-top: 8px !important;
    max-height: 55vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mega-parent.show > .dropdown-animated,
  .mega-parent.dropdown > .dropdown-menu.show {
    display: block !important;
  }
  .wide-dropdown { min-width: 100% !important; padding: 0.8rem 0.9rem !important; }
  .wide-dropdown .dd-column { flex: 0 0 100% !important; min-width: 0 !important; }
  .navbar-nav-style-1 .nav-item { margin: 0.2rem 0 !important; }
  .navbar-nav-style-1 .nav-link {
    padding: 0.7rem 0.8rem !important;
    color: #fff !important;
    border-radius: 10px;
  }
  .navbar-nav-style-1 .nav-link:hover { background: rgba(255,255,255,0.06); }
  .navbar-nav-style-1 .dropdown-item {
    color: #e2e8f0 !important;
    padding: 0.6rem 0.7rem !important;
  }
  .navbar-nav-style-1 .dropdown-item small { color: #94a3b8 !important; }
  .navbar-nav-style-1 .dropdown-item:hover {
    background: rgba(53, 201, 255, 0.1) !important;
    color: #7fc4ff !important;
    transform: none !important;
  }
  .dd-title { color: #7fc4ff !important; border-bottom-color: rgba(127,196,255,0.18) !important; }
  .dd-icon, .dd-icon-sm { background: rgba(53, 201, 255, 0.15) !important; }
  .nav-underline::after { display: none !important; }

  /* Hero padding */
  .index-hero { padding: 130px 0 70px; }
  .hero-section { padding: 140px 0 70px; }

  /* Floating mock cards - scale down */
  .mock-card { transform: scale(0.9); padding: 0.85rem 0.95rem; }
  .mock-float-top-left   { left: -6px !important; top: -16px !important; width: 180px !important; }
  .mock-float-top-right  { right: -6px !important; top: 18px !important; width: 190px !important; }
  .mock-float-bottom-left{ left: -6px !important; bottom: -22px !important; width: 200px !important; }
  .mock-float-bottom-right{ right: -6px !important; bottom: 16px !important; width: 160px !important; }
  .mock-main { padding: 1rem; }
  .mock-metric-row { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .mock-metric .val { font-size: 0.95rem; }

  /* Feature cards spacing */
  .feat-card, .bank-tile, .testimonial-card, .process-step,
  .integration-tile, .pricing-custom-card, .tier-card, .faq-card {
    margin-bottom: 1.1rem;
  }

  /* Sections padding reduce */
  .features-2, .banks-section, .trusted-section,
  .testimonial-section, .features-section, .contact-section,
  .cta-advanced {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .stats-strip { margin-top: -22px; }

  /* Footer */
  .footer-animated { padding-top: 220px !important; }
  .footer-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-cta-right { width: 100%; display: flex; }
  .footer-cta-right .btn { flex: 1; text-align: center; justify-content: center; }
}

/* =============== SM (≤ 767px)  Tablet Portrait / Large Phone =============== */
@media (max-width: 767.98px) {
  .fz-64 { font-size: 36px !important; }
  .fz-56 { font-size: 32px !important; }
  .fz-48 { font-size: 28px !important; }
  .fz-40 { font-size: 26px !important; }
  .fz-36 { font-size: 24px !important; }
  .fz-32 { font-size: 22px !important; }
  .fz-28 { font-size: 20px !important; }
  .fz-24 { font-size: 18px !important; }
  .fz-20 { font-size: 17px !important; }
  .fz-18 { font-size: 16px !important; }
  .fz-16 { font-size: 15px !important; }

  body { font-size: 15px; line-height: 1.55; }
  .container { padding-right: 14px; padding-left: 14px; }

  /* Hero */
  .index-hero { padding: 115px 0 60px; min-height: auto; }
  .hero-section { padding: 120px 0 60px; }
  .hero-title { font-size: 1.9rem !important; line-height: 1.15; letter-spacing: -0.3px; }
  .hero-subtitle { font-size: 0.98rem; line-height: 1.55; margin-bottom: 1.6rem; }
  .hero-badge { font-size: 0.75rem; padding: 0.35rem 0.75rem; margin-bottom: 1rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 0.7rem; margin-bottom: 1.8rem; }
  .hero-ctas > a { width: 100%; justify-content: center; text-align: center; }
  .btn-hero-primary, .btn-hero-ghost { padding: 0.8rem 1.2rem; font-size: 0.95rem; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .hero-visual { margin-top: 2.4rem; }

  /* Floating mock cards - hide outer floats, only keep main dashboard */
  .mock-float-top-left,
  .mock-float-top-right,
  .mock-float-bottom-left,
  .mock-float-bottom-right {
    display: none !important;
  }
  .mock-main { border-radius: 18px; padding: 0.9rem; }
  .mock-title { font-size: 0.88rem; }
  .mock-metric { padding: 0.6rem 0.7rem; }
  .mock-metric .lbl { font-size: 0.62rem; }
  .mock-metric .val { font-size: 0.9rem; }
  .mock-chart { height: 90px; }

  /* Hero decorative blobs reduce size */
  .hero-blob.b1 { width: 260px; height: 260px; top: -80px; left: -80px; }
  .hero-blob.b2 { width: 300px; height: 300px; bottom: -100px; right: -90px; }
  .hero-blob.b3 { width: 200px; height: 200px; }

  /* Stats strip */
  .stats-card { padding: 1.3rem 1.1rem; border-radius: 18px; }
  .stat-item { padding: 0.5rem 0.3rem; }
  .stat-item .stat-icon { width: 42px; height: 42px; border-radius: 12px; font-size: 0.95rem; }
  .stat-item .num { font-size: 1.4rem !important; }
  .stat-item .num .suffix { font-size: 0.85rem; }
  .stat-item .lbl { font-size: 0.78rem; }

  /* Marquee logos */
  .marquee-track { gap: 2.2rem; }
  .marquee-logo { font-size: 0.92rem; }
  .marquee-logo img { max-height: 28px; }
  .marquee-logo .m-icn { width: 28px; height: 28px; border-radius: 8px; font-size: 0.8rem; }

  /* Cards general */
  .feat-card { padding: 1.5rem 1.3rem; border-radius: 18px; }
  .feat-icon { width: 52px; height: 52px; border-radius: 16px; font-size: 1.25rem; }
  .feat-card h4 { font-size: 1.1rem; }
  .feat-card p { font-size: 0.9rem; line-height: 1.55; }

  .bank-tile { padding: 1.1rem 0.8rem; border-radius: 16px; }
  .bank-tile img { max-height: 36px; }
  .testimonial-card { padding: 1.3rem 1.2rem; border-radius: 16px; }
  .testimonial-card::before { font-size: 5rem; top: -18px; right: 6px; }
  .process-step { padding: 1.3rem 1rem; border-radius: 18px; }
  .process-icon { width: 60px; height: 60px; border-radius: 18px; font-size: 1.35rem; }

  /* Pricing */
  .pricing-custom-card { padding: 1.8rem 1.4rem 1.6rem; border-radius: 20px; }
  .popular-card { transform: none; margin-top: 0.5rem; }
  .pricing-title { font-size: 1.15rem !important; }
  .pricing-price { font-size: 2.1rem !important; }
  .pricing-period { font-size: 0.88rem !important; margin-top: 0.6rem !important; }
  .pricing-features li { font-size: 0.88rem; padding: 0.5rem 0; }
  .pricing-badge { font-size: 0.65rem; top: 1rem; right: -34px; padding: 0.3rem 2.6rem; }

  /* CTA advanced */
  .cta-advanced { border-radius: 20px; padding: 44px 20px; text-align: center; }
  .cta-advanced h2 { font-size: 1.5rem !important; }
  .cta-advanced p { font-size: 0.98rem; margin-bottom: 1.5rem; }
  .cta-advanced .btn-cta-white,
  .cta-advanced .btn-cta-outline {
    width: 100%;
    margin-left: 0 !important;
    justify-content: center;
    text-align: center;
    margin-bottom: 0.7rem;
    padding: 0.85rem 1.3rem;
  }

  /* FAQ */
  .faq-card .card-header .btn {
    padding: 1rem 1.1rem 1rem 2.8rem;
    font-size: 0.95rem;
    gap: 0.6rem;
  }
  .faq-num-badge { min-width: 32px; height: 32px; padding: 0 8px; border-radius: 8px; font-size: 0.78rem; }
  .faq-card .card-body { padding: 0.4rem 1.1rem 1.3rem; font-size: 0.92rem; line-height: 1.65; }

  /* Glass card / forms */
  .glass-card { border-radius: 20px; }
  .glass-card .form-control { padding: 0.7rem 0.9rem; font-size: 0.95rem; border-radius: 10px; }
  .form-row, .form-group { margin-bottom: 0.9rem; }

  /* Code block */
  .code-block { border-radius: 16px; }
  .code-block pre { padding: 1rem 1.1rem 1.2rem; font-size: 0.78rem; line-height: 1.6; }

  /* Tiers */
  .tier-card.popular-tier { transform: none; margin-top: 0.5rem; }
  .popular-badge { top: 16px; right: -32px; transform: rotate(40deg); padding: 4px 44px; font-size: 0.68rem; }

  /* Integrations grid */
  .integrations-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 0.7rem !important; }
  .integration-tile { padding: 1.1rem 0.7rem 1rem; border-radius: 16px; }
  .integration-icon { width: 44px; height: 44px; border-radius: 14px; font-size: 1.05rem; }
  .integration-name { font-size: 0.82rem; }
  .integration-sub { font-size: 0.68rem; }

  /* Footer */
  .footer-animated { padding-top: 210px !important; margin-top: 60px; padding-bottom: 24px; }
  .footer-cta { margin: -120px 0 48px; padding: 22px 18px; border-radius: 18px; }
  .footer-cta h3 { font-size: 1.2rem !important; }
  .footer-cta p { font-size: 0.9rem; }
  .footer-brand-col .footer-logo img { width: 110px; }
  .footer-tagline { font-size: 0.9rem; line-height: 1.6; }
  .footer-contact-info p { font-size: 0.88rem; }
  .footer-heading { font-size: 0.95rem; margin-bottom: 1rem; }
  .footer-links a { font-size: 0.88rem; }
  .footer-col { margin-bottom: 1.8rem; }
  .footer-bottom p { font-size: 0.82rem; }
  .footer-bottom-link { font-size: 0.8rem; margin-left: 0.7rem; }
  .social-icon { width: 36px; height: 36px; }

  /* General buttons stacking in forms */
  .btn-group > .btn,
  form .btn + .btn {
    margin-top: 0.5rem;
  }

  /* Hero sections common patterns */
  .hero-content h1 { font-size: 1.85rem; line-height: 1.18; }
  .hero-content p { font-size: 0.98rem; margin-bottom: 1.5rem; }
  .hero-image { margin-top: 1.8rem; }
  .feature-card { margin-bottom: 1.1rem; padding: 1.5rem; }
  .feature-icon { font-size: 2rem; margin-bottom: 1rem; }
  .features-section, .testimonial-section, .contact-section {
    padding: 50px 0;
  }
  .contact-form, .contact-info { padding: 1.4rem; }
}

/* =============== XS (≤ 575px)  Small Phones =============== */
@media (max-width: 575.98px) {
  .fz-64 { font-size: 30px !important; }
  .fz-56 { font-size: 28px !important; }
  .fz-48 { font-size: 25px !important; }
  .fz-40 { font-size: 23px !important; }
  .fz-36 { font-size: 22px !important; }
  .fz-32 { font-size: 20px !important; }
  .fz-28 { font-size: 19px !important; }
  .fz-24 { font-size: 17px !important; }

  .container { padding-right: 12px; padding-left: 12px; }

  #credvueNav { padding: 0.55rem 0.6rem !important; }
  .brand-img { width: 78px !important; }
  #credvueNav.nav-scrolled .brand-img { width: 64px !important; }
  .hamburger { padding: 8px 6px; }
  .hamburger-box { width: 26px; height: 18px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after { width: 26px; height: 2.5px; }
  .hamburger-inner::before { top: -7px; }
  .hamburger-inner::after  { top:  7px; }

  .index-hero { padding: 105px 0 52px; }
  .hero-section { padding: 110px 0 52px; }
  .hero-title { font-size: 1.65rem !important; }
  .hero-subtitle { font-size: 0.92rem; }
  .hero-badge { font-size: 0.7rem; padding: 0.3rem 0.65rem; }

  .cta-pulse { padding: 0.55rem 1.05rem !important; font-size: 0.88rem !important; }

  .stats-strip { margin-top: -18px; }
  .stats-card { padding: 1.1rem 0.85rem; border-radius: 16px; }
  .stat-item .num { font-size: 1.2rem !important; }
  .stat-item .lbl { font-size: 0.72rem; margin-top: 0.25rem; }
  .stat-item .stat-icon { width: 38px; height: 38px; border-radius: 10px; font-size: 0.88rem; margin-bottom: 0.5rem; }

  .marquee-logo img { max-height: 24px; }

  .cta-advanced { padding: 36px 18px; }
  .cta-advanced h2 { font-size: 1.35rem !important; }
  .cta-advanced p { font-size: 0.92rem; }

  .feat-card { padding: 1.3rem 1.15rem; }
  .feat-icon { width: 48px; height: 48px; border-radius: 14px; font-size: 1.15rem; margin-bottom: 1rem; }

  .pricing-custom-card { padding: 1.6rem 1.2rem 1.4rem; }
  .pricing-price { font-size: 1.9rem !important; }

  .integrations-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.6rem !important; }

  .footer-cta { margin-top: -110px; padding: 20px 16px; }
  .footer-cta h3 { font-size: 1.1rem !important; }
  .footer-animated { padding-top: 200px !important; }

  .trust-avatars img, .trust-avatars .ta { width: 34px; height: 34px; font-size: 0.74rem; }
  .trust-text { font-size: 0.86rem; }

  .faq-card .card-header .btn {
    padding: 0.9rem 1rem 0.9rem 2.5rem;
    font-size: 0.9rem;
  }

  .hero-blob.b1 { width: 220px; height: 220px; }
  .hero-blob.b2 { width: 250px; height: 250px; }
  .hero-blob.b3 { display: none; }
}

/* =============== XXS (≤ 380px)  Extra small phones =============== */
@media (max-width: 379.98px) {
  .fz-64 { font-size: 26px !important; }
  .fz-56 { font-size: 24px !important; }
  .fz-48 { font-size: 22px !important; }
  .fz-40 { font-size: 21px !important; }
  .fz-36 { font-size: 20px !important; }
  .fz-32 { font-size: 19px !important; }
  .hero-title { font-size: 1.5rem !important; }
  .btn-hero-primary, .btn-hero-ghost { padding: 0.75rem 1rem; font-size: 0.9rem; }
  .stat-item .num { font-size: 1.08rem !important; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-bottom-link { margin-left: 0.5rem; font-size: 0.76rem; }
  .trust-avatars img, .trust-avatars .ta { width: 32px; height: 32px; }
  .pricing-custom-card { padding: 1.4rem 1rem 1.2rem; }
}

/* =============== LANDSCAPE PHONE (≤ 991px + short height) =============== */
@media (max-width: 991.98px) and (max-height: 500px) {
  #navbarSupportedContent { max-height: calc(100vh - 70px); }
  .index-hero { padding: 100px 0 50px; min-height: auto; }
  .hero-title { font-size: 1.7rem !important; }
  .hero-subtitle { margin-bottom: 1.2rem; }
  .hero-ctas { margin-bottom: 1.2rem; }
}