:root {
  --bg-light: #ffffff;
  --bg-section-alt: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.9);
  --border-card: rgba(0, 0, 0, 0.05);
  --text-primary: #000000;
  --text-muted: #374151;
  --accent-amber: #FFB200;
  --accent-amber-glow: rgba(255, 178, 0, 0.2);
  --accent-amber-dark: #E09C00;
  --accent-purple: #6366f1;
  --font-main: "Outfit", sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: var(--bg-light);
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

/* Cross-browser Scrollbar Hiding */
::-webkit-scrollbar {
  display: none !important;
}

body {
  background-color: var(--bg-light);
  color: var(--text-primary);
  font-family: var(--font-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

/* Scroll reveal classes */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.content-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  z-index: 10;
}

/* Fixed Background System */
.bg-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
  background: var(--bg-light);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
}

.blob-1 {
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(255, 178, 0, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  top: -20%;
  left: -20%;
  animation: driftSlow 25s infinite alternate ease-in-out;
}

.blob-2 {
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(255, 230, 200, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -20%;
  right: -20%;
  animation: driftSlow 30s infinite alternate-reverse ease-in-out;
}

@keyframes driftSlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(8vw, -4vh) scale(1.08);
  }
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.75) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05) !important;
}

.site-header-inner {
  width: min(100% - 48px, 1240px);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 18px);
  color: #111111;
  text-decoration: none;
  flex: 0 0 auto;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-link:hover {
  transform: scale(1.02);
}

.brand-mark {
  width: clamp(48px, 5.5vw, 62px);
  height: clamp(48px, 5.5vw, 62px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: clamp(14px, 1.5vw, 18px);
  background: #111111;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text {
  font-size: 2.3rem !important;
  font-weight: 900 !important;
  letter-spacing: -1px !important;
  color: #111111;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.site-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 78px;
  color: #111111;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.24s ease, transform 0.24s ease;
}

.site-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a00 0%, #ffb200 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible {
  color: #e07f00;
  transform: translateY(-1px);
  outline: none;
}

.site-nav-links a:hover::after,
.site-nav-links a:focus-visible::after {
  transform: scaleX(1);
}

/* Premium "Invest In Us" Pill Button */
.site-nav-links a.nav-invest-btn {
  min-height: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #FFB200 !important;
  color: #000000 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  font-weight: 800 !important;
  border-radius: 999px !important;
  padding: 10px 22px !important;
  box-shadow: 0 6px 18px rgba(255, 178, 0, 0.22) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  line-height: 1 !important;
  margin-left: 10px !important;
}

.site-nav-links a.nav-invest-btn::after {
  display: none !important;
}

.site-nav-links a.nav-invest-btn:hover {
  background: #FFA500 !important;
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 10px 25px rgba(255, 178, 0, 0.32) !important;
  color: #000000 !important;
}

.mobile-nav-links a.nav-invest-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 90% !important;
  min-height: 50px !important;
  border-bottom: none !important;
  background: #FFB200 !important;
  color: #000000 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  font-weight: 800 !important;
  border-radius: 999px !important;
  padding: 10px 20px !important;
  margin: 15px auto !important;
  box-shadow: 0 6px 18px rgba(255, 178, 0, 0.2) !important;
  text-decoration: none !important;
  font-size: 1.15rem !important;
}

.mobile-nav-links a.nav-invest-btn:hover {
  background: #FFA500 !important;
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 10px 22px rgba(255, 178, 0, 0.3) !important;
  color: #000000 !important;
}

.site-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  position: relative;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
  transition: background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  outline: none;
}

.mobile-menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #111111;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.mobile-menu-toggle span:nth-child(1) {
  top: 15px;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 22px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 29px;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateX(-50%) translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateX(-50%) translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  z-index: 2000 !important;
  background: #ffffff !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden !important;
}

.mobile-drawer.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.mobile-drawer-content {
  width: 100% !important;
  height: 100% !important;
  padding: 40px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.mobile-drawer.open .mobile-drawer-content {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: relative !important;
  z-index: 5 !important;
  overflow: visible !important;
  background: transparent !important;
}

.mobile-drawer-header .brand-link {
  position: relative !important;
  z-index: 10 !important;
  overflow: visible !important;
  display: inline-flex !important;
  align-items: center !important;
  background: transparent !important;
  pointer-events: auto !important;
}

.mobile-drawer-header .brand-link img {
  display: block !important;
  object-fit: contain !important;
  background: transparent !important;
}

.mobile-drawer-header .brand-text {
  position: relative !important;
  z-index: 10 !important;
  color: #111111 !important;
  background: transparent !important;
  pointer-events: auto !important;
}

/* Completely eliminate any accidental overlay or masking pseudo-elements around the drawer logo */
.mobile-drawer-header::before,
.mobile-drawer-header::after,
.mobile-drawer-header .brand-link::before,
.mobile-drawer-header .brand-link::after,
.mobile-drawer-header .brand-text::before,
.mobile-drawer-header .brand-text::after {
  content: none !important;
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

.drawer-close {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  border-radius: 50%;
  color: #111111;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.drawer-close:hover,
.drawer-close:focus-visible {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transform: rotate(90deg);
  outline: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 600px;
  margin: 20px auto auto;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  color: #111111;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  transition: color 0.24s ease, transform 0.24s ease;
}

.mobile-nav-links a:last-child {
  border-bottom: none;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
  color: #ff8a00;
  transform: scale(1.02);
  outline: none;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .site-header-inner {
    width: min(100% - 36px, 1140px);
    gap: 16px;
  }

  .site-nav-links {
    gap: 16px;
  }

  .site-nav-links a {
    font-size: 0.89rem;
  }
}

@media (max-width: 900px) {
  .site-header-inner {
    min-height: 70px;
  }

  .site-nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  .site-header-inner {
    width: min(100% - 28px, 1240px);
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .brand-text {
    font-size: 1.7rem !important;
    letter-spacing: -1px !important;
  }
}

/* Redesigned Split Hero Section */
.scene {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10vh 7% 7vh;
  z-index: 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 180, 80, 0.18) 0%, transparent 70%),
    radial-gradient(circle at 30% 20%, rgba(255, 210, 150, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 35%, rgba(255, 180, 80, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, #ffffff 100%) !important;
  border-bottom: none !important;
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 70% 45%, black 0%, transparent 72%);
  pointer-events: none;
}

.hero-ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
  opacity: 0.85;
}

.hero-ambient-one {
  width: 240px;
  height: 240px;
  right: 18%;
  top: 12%;
  background: rgba(255, 184, 0, 0.2);
  animation: ambientDrift 12s ease-in-out infinite alternate;
}

.hero-ambient-two {
  width: 180px;
  height: 180px;
  right: 5%;
  bottom: 12%;
  background: rgba(99, 102, 241, 0.12);
  animation: ambientDrift 15s ease-in-out infinite alternate-reverse;
}

@keyframes ambientDrift {
  from { transform: translate3d(0, 0, 0) scale(0.95); }
  to { transform: translate3d(-26px, 22px, 0) scale(1.08); }
}

.hero-split-container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: clamp(36px, 6vw, 86px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 10;
  animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-brand-lockup {
  display: inline-flex;
  margin-bottom: 18px;
}

.hero-brand-name {
  color: #000000;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.hero-badge-active {
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.22);
  color: #8a5a00;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 8px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(255, 178, 0, 0.08);
}

.hero-badge-active::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 7px rgba(16, 185, 129, 0.11);
  animation: pulse 1.5s infinite alternate;
}

.hero-heading {
  max-width: 620px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 500;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 30px;
  animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s, border-color 0.28s, background 0.28s;
  overflow: hidden;
}

.btn-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero:hover::after {
  transform: translateX(120%);
}

.btn-hero.btn-primary {
  background: #FFB200;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 36px rgba(255, 178, 0, 0.22);
}

.btn-hero.btn-primary:hover {
  transform: translateY(-3px);
  background: #FFA500;
  box-shadow: 0 20px 46px rgba(255, 178, 0, 0.32);
}

.btn-hero.btn-secondary {
  width: min(348px, 100%);
  background: #ffffff;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.12);
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.035);
}

.btn-hero.btn-secondary:hover {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

#btn-hero-partner {
  background: #FFB200;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 36px rgba(255, 178, 0, 0.22);
}

#btn-hero-partner:hover {
  background: #FFA500;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(255, 178, 0, 0.32);
}

.hero-app-badges {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 9px 18px;
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s, border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.app-badge:hover {
  transform: translateY(-4px);
  background: #111111;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25), 0 0 12px rgba(255, 178, 0, 0.15);
}

.app-badge svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.badge-text span {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-text strong {
  font-size: 0.94rem;
  font-weight: 900;
  color: #ffffff;
}

.hero-right {
  position: relative;
  width: 100%;
  height: clamp(520px, 58vw, 660px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.hero-canvas-wrap {
  perspective: 1200px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dashboard-wrapper {
  position: relative;
  width: min(560px, 100%); /* Increased desktop size for greater visual presence */
  aspect-ratio: 1;
  margin-top: 120px; /* Moves entire dashboard section lower, providing massive breathing room under the navbar */
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dashboard-container {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255, 180, 0, 0.96), rgba(255, 211, 77, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.35); /* Subtle bright glass border */
  box-shadow: 0 25px 60px rgba(255, 170, 0, 0.22);
  padding: 68px 38px 38px 38px; /* Balanced spacing so canvas remains perfectly aligned */
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible; /* Mascot overflows naturally over the top edge */
  z-index: 5; /* Background container z-index */
}

/* Dashboard remains completely static on hover, no zoom, popups, or scaling */
.hero-dashboard-container:hover {
  transform: none !important;
  box-shadow: 0 25px 60px rgba(255, 170, 0, 0.22);
}

/* Premium Mascot Character: Leaning on Top Edge with strict lock positioning */
.hero-mascot {
  position: absolute;
  /* Mathematically locks the bottom edge of the mascot exactly 14px inside the box border, making detach impossible */
  bottom: calc(100% - 14px); 
  right: 40px; /* Locked to the top-right edge */
  width: clamp(220px, 20vw, 260px); /* Proportional viewport scaling as requested */
  height: clamp(220px, 20vw, 260px);
  pointer-events: none;
  transform-style: preserve-3d;
  display: block;
}

.hero-mascot.mascot-body {
  z-index: 2; /* Mascot body BEHIND the dashboard background */
}

.hero-mascot.mascot-hands {
  z-index: 8; /* Mascot hands IN FRONT OF the dashboard background and border */
  clip-path: inset(53% 0 0 0); /* Clips torso to only render arms/hands resting on the edge */
}

.hero-mascot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-mascot.mascot-body img {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}

.hero-mascot.mascot-hands img {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.28)); /* Soft realistic shadow under arms touching the box */
}

/* Subtle orange ambient glow behind mascot */
.mascot-glow {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 110, 0, 0.38) 0%, rgba(255, 178, 0, 0) 70%);
  filter: blur(14px);
  z-index: -1;
  pointer-events: none;
  animation: mascotGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes floatMascot {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.01); } /* Subtle floating animation */
}

@keyframes floatMascotMobile {
  0%, 100% { transform: translate3d(-50%, 0, 0) scale(1); }
  50% { transform: translate3d(-50%, -6px, 0) scale(1.02); }
}

@keyframes mascotGlowPulse {
  0% { opacity: 0.65; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1.08); }
}

/* Elevated container on hover */
.hero-dashboard-container:hover {
  transform: translateY(-8px) translateZ(15px) scale(1.01);
  box-shadow: 0 35px 80px rgba(255, 170, 0, 0.26);
}

/* White dotted pattern inside the container background */
.hero-dashboard-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.72) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

/* Decorative floating orange glow blobs */
.hero-glow-blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 136, 0, 0.26) 0%, rgba(255, 178, 0, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 2;
}

.hero-glow-blob.glow-1 {
  width: 250px;
  height: 250px;
  left: -50px;
  top: -50px;
  animation: glowFloatOne 9s ease-in-out infinite alternate;
}

.hero-glow-blob.glow-2 {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -60px;
  animation: glowFloatTwo 11s ease-in-out infinite alternate;
}

@keyframes glowFloatOne {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(20px, 30px, 0) scale(1.15); }
}

@keyframes glowFloatTwo {
  0% { transform: translate3d(0, 0, 0) scale(1.1); }
  100% { transform: translate3d(-30px, -20px, 0) scale(0.9); }
}

.hero-canvas {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
  z-index: 5;
}

.hero-canvas::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 248, 229, 0.68));
  border: 1px solid rgba(0, 0, 0, 0.055);
  box-shadow: 0 36px 95px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: rotateX(58deg) rotateZ(-38deg) translateZ(-80px);
}

.city-svg-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.07));
}

.city-grid path {
  fill: none;
  stroke: rgba(0, 0, 0, 0.08);
  stroke-width: 2;
  stroke-dasharray: 8 12;
  animation: gridFlow 12s linear infinite;
}

@keyframes gridFlow {
  to { stroke-dashoffset: -120; }
}

.idle-road {
  fill: none;
  stroke: rgba(0, 0, 0, 0.04);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-shadow {
  fill: none;
  stroke: rgba(255, 178, 0, 0.05);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-line {
  fill: none;
  stroke: url(#amberRoad);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 12 12;
  filter: url(#softGlow);
  animation: routeMotion 1.8s linear infinite;
}

.map-node {
  fill: #FFB200;
  opacity: 0.92;
  filter: drop-shadow(0 3px 12px rgba(255, 178, 0, 0.22));
}

@keyframes routeMotion {
  to { stroke-dashoffset: -50; }
}

.city-block {
  transform-box: fill-box;
  transform-origin: center;
  animation: cityFloat 5s ease-in-out infinite;
}

.city-block polygon:first-child {
  fill: #ffffff;
  stroke: rgba(0, 0, 0, 0.08);
}

.city-block polygon:nth-child(2) {
  fill: #f8fafc;
  stroke: rgba(0, 0, 0, 0.06);
}

.city-block polygon:nth-child(3) {
  fill: #fff0bf;
  stroke: rgba(245, 166, 35, 0.2);
}

.block-b { animation-delay: -1.4s; }
.block-c { animation-delay: -2.2s; }

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

.dashboard-panel-svg rect {
  fill: rgba(255, 255, 255, 0.88);
  stroke: rgba(0, 0, 0, 0.08);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.08));
}

.dashboard-panel-svg path {
  fill: none;
  stroke: #FFB200;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 220;
  animation: chartDraw 3.2s ease-in-out infinite alternate;
}

.dashboard-panel-svg circle {
  fill: #000000;
}

@keyframes chartDraw {
  from { stroke-dashoffset: 180; }
  to { stroke-dashoffset: 0; }
}

.hero-orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 178, 0, 0.24);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-38deg);
}

.ring-one {
  width: 80%;
  height: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-two {
  width: 58%;
  height: 36%;
  border-color: rgba(99, 102, 241, 0.16);
  animation: ringPulse 4s ease-in-out infinite 1.2s;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-38deg) scale(0.98); }
  50% { opacity: 0.92; transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-38deg) scale(1.03); }
}

.dispatch-rider {
  position: absolute;
  z-index: 25; /* Higher z-index to sit clearly above grid elements */
  pointer-events: none;
}

.dispatch-rider svg {
  width: 100%;
  height: 100%;
}

/* Active provider: glowing, premium, realistic travel timing */
.dispatch-rider.active-provider {
  width: 48px;
  height: 48px;
  offset-path: path("M88 358 C116 376 166 346 190 286 C210 238 234 200 272 178 C312 156 362 132 402 118");
  offset-rotate: auto;
  animation: activeDispatchMotion 7.5s infinite;
  filter: drop-shadow(0 10px 18px rgba(255, 178, 0, 0.45));
}

@keyframes activeDispatchMotion {
  0% {
    offset-distance: 0%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  12% {
    offset-distance: 5%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1); /* premium ease-in-out glide */
  }
  82% {
    offset-distance: 95%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }
  90%, 100% {
    offset-distance: 100%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
}

/* Idle background providers: small, faint, semi-transparent, subtle active feel */
.dispatch-rider.idle-provider {
  width: 32px;
  height: 32px;
  filter: grayscale(0.8) opacity(0.3) drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}

.dispatch-rider.idle-provider-1 {
  offset-path: path("M 268,284 C 306,252 338,222 372,204");
  offset-rotate: auto;
  animation: idleDispatchOne 14s linear infinite;
}

.dispatch-rider.idle-provider-2 {
  offset-path: path("M 152,196 C 196,234 238,282 278,334");
  offset-rotate: auto;
  animation: idleDispatchTwo 18s linear infinite;
}

@keyframes idleDispatchOne {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  8%, 92% {
    opacity: 0.35;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

@keyframes idleDispatchTwo {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  6%, 94% {
    opacity: 0.35;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

.gps-pin-pulse {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.11);
}

.gps-pin-pulse.user-pin {
  background: #000000;
  top: 20%;
  left: 60%;
}

.gps-pin-pulse.provider-pin {
  background: #FFB200;
  top: 68%;
  left: 16%;
}

.gps-pin-pulse::after,
.gps-pin-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.gps-pin-pulse::after {
  border: 2px solid currentColor;
  animation: pinRadar 3s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

.gps-pin-pulse::before {
  border: 1px solid currentColor;
  animation: pinRadar 3s infinite cubic-bezier(0.16, 1, 0.3, 1) 1.5s;
}

.gps-pin-pulse.user-pin::after,
.gps-pin-pulse.user-pin::before { color: #000000; }
.gps-pin-pulse.provider-pin::after,
.gps-pin-pulse.provider-pin::before { color: #FFB200; }

.gps-pin-inner {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
}

@keyframes pinRadar {
  0% { transform: scale(0.9); opacity: 0.75; }
  100% { transform: scale(4.6); opacity: 0; }
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94); /* High opacity background for readability */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  padding: 14px 18px;
  z-index: 50; /* Placed high above map elements */
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s;
  pointer-events: auto;
}

.hero-card:hover {
  animation: none !important; /* Temporarily pause active float keyframes */
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-card-status {
  left: 2%;
  bottom: 15%;
  width: 240px;
  animation: floatingCard 5.5s ease-in-out infinite;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #047857;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.status-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}

.hero-card-status h6 {
  font-size: 0.88rem;
  font-weight: 900;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.3;
}

.loading-bar-wrap {
  width: 100%;
  height: 6px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
}

.loading-bar-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #FFB200, #FFC933, #F5A623);
  border-radius: 999px;
  animation: loadBarCycle 4s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes loadBarCycle {
  0% { width: 12%; }
  55% { width: 88%; }
  100% { width: 100%; }
}

.hero-card-booking {
  right: 1%;
  top: 16%;
  width: 260px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  animation: floatingCard 5s ease-in-out infinite -1.4s;
}

.booking-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
}

.booking-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-text-wrap { flex-grow: 1; }

.booking-text-wrap span {
  font-size: 0.68rem;
  color: #b25e00;
  background: rgba(255, 178, 0, 0.12);
  padding: 2px 8px;
  border-radius: 999px;
  display: inline-block;
  font-weight: 800;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.booking-ticker-msg {
  font-size: 0.82rem;
  font-weight: 900;
  color: #000000;
  margin-top: 3px;
  line-height: 1.3;
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}

.hero-card-badge {
  left: 15%;
  top: 7%;
  padding: 9px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 900;
  color: #000000;
  animation: floatingCard 6s ease-in-out infinite -2s;
}

.hero-card-badge::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 1.5s infinite alternate;
}

.hero-card-mini {
  width: 118px;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.hero-card-mini strong {
  color: #000000;
  font-size: 1.12rem;
  font-weight: 900;
}

.hero-card-mini span {
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-card-mini-one {
  right: 8%;
  bottom: 12%;
  animation: floatingCard 5.8s ease-in-out infinite -0.6s;
}

.hero-card-mini-two {
  left: 25%;
  top: 38%;
  animation: floatingCard 5.2s ease-in-out infinite -1.1s;
}

.hero-card-mini-two::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(255, 110, 0, 0.32) 0%, rgba(255, 178, 0, 0) 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: -1;
  animation: liveGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes liveGlowPulse {
  0% { transform: scale(0.9) translate3d(0, 0, -5px); opacity: 0.7; }
  100% { transform: scale(1.1) translate3d(0, 0, -5px); opacity: 1; }
}

@keyframes floatingCard {
  0%, 100% { transform: translate3d(0, 0, 35px); }
  50% { transform: translate3d(0, -12px, 35px); }
}

/* Scrollable Sections Global Layout */
.section-padding {
  padding: 100px 8% 80px;
  position: relative;
  width: 100%;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: #000000;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  color: var(--text-muted);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* 1. ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text-content {
  padding: 40px;
}

.about-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-amber);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}

.about-heading {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #000000;
}

.about-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-bullet-item {
  display: flex;
  gap: 16px;
}

.bullet-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: rgba(255, 178, 0, 0.05);
  border: 1px solid rgba(255, 178, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-amber-dark);
}

.bullet-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-amber-dark);
  flex-shrink: 0;
}

.mini-card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 178, 0, 0.05);
  border: 1px solid rgba(255, 178, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-amber-dark);
  margin-bottom: 20px;
}

.mini-card-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-amber-dark);
  flex-shrink: 0;
}

.bullet-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #000000;
}

.bullet-details p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   GRED PREMIUM ABOUT FEATURE CARD STYLES (Modern Luxury Stripe/Framer Style)
   ========================================================================== */
.about-feature-card {
  position: relative;
  border-radius: 28px;
  padding: 48px 40px;
  background: linear-gradient(135deg, 
    rgba(255, 253, 247, 0.96) 0%, 
    rgba(255, 244, 224, 0.93) 50%, 
    rgba(254, 235, 204, 0.90) 100%
  );
  border: 1px solid rgba(255, 178, 0, 0.28);
  box-shadow: 
    0 20px 50px rgba(255, 178, 0, 0.06),
    0 8px 30px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 178, 0, 0.45);
  box-shadow: 
    0 28px 56px rgba(255, 178, 0, 0.09),
    0 12px 36px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 #ffffff;
}

/* Elegant Soft Backdrops (GPU Accelerated Rotate) */
.card-ambient-glow {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 178, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: moveAmbientGlow 20s infinite linear;
}

@keyframes moveAmbientGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.card-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
  animation: pulseCardGlow 10s infinite alternate ease-in-out;
}

.card-glow-blob.blob-1 {
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(255, 178, 0, 0.4) 0%, transparent 70%);
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.card-glow-blob.blob-2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 130, 0, 0.2) 0%, transparent 70%);
  bottom: -40px;
  left: -40px;
  animation-delay: -5s;
}

@keyframes pulseCardGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.12; }
  50% { transform: scale(1.15) translate(15px, -15px); opacity: 0.22; }
  100% { transform: scale(0.9) translate(-10px, 10px); opacity: 0.10; }
}

/* Soft Reflection Sweep */
.card-reflection {
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 2;
  transition: none;
}

.about-feature-card:hover .card-reflection {
  left: 140%;
  transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Micro-Particles - very soft */
.card-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  opacity: 0.4;
}

.card-particles .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 178, 0, 0.25);
  border-radius: 50%;
  animation: cardFloat var(--speed, 10s) infinite linear;
}

.card-particles .particle.p-1 {
  top: 25%;
  left: 15%;
  --speed: 15s;
}

.card-particles .particle.p-2 {
  top: 70%;
  left: 75%;
  --speed: 18s;
  width: 4px;
  height: 4px;
}

.card-particles .particle.p-3 {
  top: 40%;
  left: 80%;
  --speed: 22s;
}

@keyframes cardFloat {
  0% { transform: translateY(60px) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-80px) translateX(15px); opacity: 0; }
}

/* Typography Hierarchy Inside Card (Visibility Booster) */
.card-inner-content {
  position: relative;
  z-index: 3;
}

.about-tag.premium-tag {
  color: #b45309 !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: none;
}

.about-heading.premium-heading {
  font-size: clamp(1.3rem, 2.5vw, 1.68rem);
  font-weight: 800;
  color: #111111 !important;
  line-height: 1.35;
  margin-bottom: 16px;
}

.about-desc.premium-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #334155 !important;
  margin-bottom: 28px;
}

/* Mini Stats Grid (Framer/Notion Widget Style) */
.stats-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-mini-box {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-mini-box:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 178, 0, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.12);
  border: 1px solid rgba(255, 140, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea580c;
  box-shadow: 0 0 12px rgba(255, 140, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: iconFloat 4s infinite alternate ease-in-out;
  flex-shrink: 0;
}

@keyframes iconFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-2px); }
}

.stat-mini-box:hover .stat-icon {
  background: #ea580c;
  color: #ffffff;
  border-color: #ea580c;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
  transform: translateY(-1px) scale(1.05);
  animation-play-state: paused;
}

.stat-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-mini-box .stat-number {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: #111111 !important;
  letter-spacing: -0.01em;
  line-height: 1.2;
  display: block;
}

.stat-mini-box .stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222222 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
  display: block;
}

/* Responsiveness Constraints */
@media (max-width: 1024px) {
  .about-feature-card {
    padding: 40px 32px;
  }
}

@media (max-width: 500px) {
  .about-feature-card {
    padding: 32px 20px;
    border-radius: 20px;
  }
  
  .about-heading.premium-heading {
    margin-bottom: 12px;
  }
  
  .about-desc.premium-desc {
    margin-bottom: 24px;
    font-size: 0.88rem;
  }

  .stats-mini-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .stat-mini-box {
    padding: 10px 12px;
  }
}


.about-cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-mini-card {
  padding: 30px;
  transition: var(--transition-smooth);
}

.about-mini-card:hover {
  transform: translateX(8px);
  border-color: rgba(255, 178, 0, 0.15);
  background: #ffffff;
}

.about-mini-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-mini-card h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-amber);
}

.about-mini-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* 2. SERVICES SECTION */
.services-carousel-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, #f7a600 0%, #ffb81c 45%, #f59e0b 100%);
  padding: 60px 0;
  overflow: hidden;
  box-shadow: inset 0 20px 40px rgba(0,0,0,0.02), inset 0 -20px 40px rgba(0,0,0,0.02);
}

/* Ambient Premium Glows */
.services-bg-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
  animation: moveServicesGlow 22s infinite alternate ease-in-out;
}

.services-bg-glow-blob.blob-orange {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 70%);
  top: -50px;
  left: 10%;
}

.services-bg-glow-blob.blob-yellow {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.18) 0%, transparent 70%);
  bottom: -80px;
  right: 15%;
  animation-delay: -6s;
}

@keyframes moveServicesGlow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.15); }
  100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Tech Dotted Grid Overlay */
.services-dots-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  opacity: 0.95;
  pointer-events: none;
  z-index: 2;
}

/* Premium Floating Sparks */
.services-floating-spark {
  position: absolute;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 2;
  user-select: none;
  animation: sparkFloat var(--speed, 12s) infinite ease-in-out;
}

.services-floating-spark.spark-1 {
  top: 15%;
  left: 8%;
  --speed: 14s;
}

.services-floating-spark.spark-2 {
  bottom: 25%;
  left: 45%;
  --speed: 18s;
  animation-delay: -4s;
}

.services-floating-spark.spark-3 {
  top: 20%;
  right: 12%;
  --speed: 16s;
  animation-delay: -2s;
  font-size: 1.3rem;
}

@keyframes sparkFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-30px) rotate(180deg); opacity: 0.7; }
}

.services-carousel-wrapper {
  width: 100%;
  position: relative;
  z-index: 5;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
  padding: 20px 0 45px;
}

.services-carousel-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.services-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 36px;
  padding-left: 8%;
  padding-right: 8%;
}

.service-card {
  position: relative;
  flex: 0 0 320px; /* Don't shrink, fixed premium width */
  scroll-snap-align: start;
  padding: 48px 28px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 440px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  border-radius: 32px;
  transition: all 0.45s cubic-bezier(.19,1,.22,1);
  z-index: 10;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.015);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 
    0 24px 55px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.94);
}

.service-status-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 15;
}

.service-status-badge.available {
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.05);
}

.service-status-badge.available::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.service-status-badge.coming-soon {
  background: rgba(249, 115, 22, 0.08);
  color: #ea580c;
  border: 1px solid rgba(249, 115, 22, 0.2);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.05);
}

.service-card-btn.disabled {
  background: rgba(241, 245, 249, 0.8) !important;
  color: #94a3b8 !important;
  border-color: rgba(226, 232, 240, 0.8) !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
}

.service-card:hover .service-card-btn.disabled {
  background: rgba(241, 245, 249, 0.8) !important;
  color: #94a3b8 !important;
  border-color: rgba(226, 232, 240, 0.8) !important;
  box-shadow: none !important;
  transform: none !important;
}

.service-card-icon-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #ffffff; /* Blends flawlessly with transparent PNG padding */
  border: 2px solid rgba(255, 178, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 24px;
  transition: all 0.45s cubic-bezier(.19,1,.22,1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03), inset 0 2px 8px rgba(0, 0, 0, 0.01);
  overflow: hidden; /* Perfect masking */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  mask-image: radial-gradient(circle, white 100%, black 100%);
  -webkit-mask-image: radial-gradient(circle, white 100%, black 100%);
}

.service-card-icon-wrap img {
  width: 88%;
  height: 88%;
  object-fit: contain; /* Proportional centering with zero edge cropping */
  transition: all 0.45s cubic-bezier(.19,1,.22,1);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.05));
}

.service-card-icon-wrap svg {
  width: 44px;
  height: 44px;
  transition: all 0.45s cubic-bezier(.19,1,.22,1);
  filter: drop-shadow(0 5px 10px rgba(255, 178, 0, 0.15));
}

.service-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 178, 0, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transition: all 0.45s cubic-bezier(.19,1,.22,1);
}

.service-card:hover .service-card-icon-wrap {
  background: rgba(255, 178, 0, 0.03);
  border-color: rgba(255, 178, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(255, 178, 0, 0.12);
}

.service-card:hover .service-card-icon-wrap img {
  transform: scale(1.06) rotate(3deg);
}

.service-card:hover .service-card-icon-wrap svg {
  transform: scale(1.06) rotate(3deg);
  stroke: var(--accent-amber);
}

.service-card:hover .service-card-glow {
  opacity: 1;
}

.service-card-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-family: var(--font-main);
}

.service-card-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

.service-card-btn {
  width: 100%;
  padding: 12px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 178, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.19,1,.22,1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.service-card:hover .service-card-btn {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.25);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .services-carousel-container {
    padding: 40px 0;
  }
  .services-grid {
    padding-left: 5%;
    padding-right: 5%;
    gap: 20px;
  }
}


/* 3. HOW GRED WORKS - PREMIUM INTERACTIVE DARK WORKFLOW */
#how-it-works {
  padding: 140px 8% 120px;
  background: linear-gradient(180deg, #050505 0%, #0c0c0c 100%);
  position: relative;
  overflow: hidden;
}

/* Faint Cyber Grid Overlay shifting diagonally */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  animation: gridShift 50s linear infinite;
}

@keyframes gridShift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Giant breathing atmospheric ambient glow blurs */
.glow-blob-1, .glow-blob-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
  will-change: transform, opacity;
}

.glow-blob-1 {
  top: 15%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, rgba(249, 115, 22, 0) 70%);
  animation: pulseBlob1 15s infinite alternate ease-in-out;
}

.glow-blob-2 {
  bottom: 12%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  animation: pulseBlob2 20s infinite alternate ease-in-out;
}

@keyframes pulseBlob1 {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.08; }
  100% { transform: translate3d(60px, 40px, 0) scale(1.15); opacity: 0.16; }
}

@keyframes pulseBlob2 {
  0% { transform: translate3d(0, 0, 0) scale(1.1); opacity: 0.1; }
  100% { transform: translate3d(-50px, -30px, 0) scale(0.9); opacity: 0.18; }
}

/* Floating Cyber Geometric Outlines */
.cyber-ring {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 1px dashed rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: rotateRing 30s linear infinite;
  transform-origin: center;
}

.cyber-ring::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.8);
}

@keyframes rotateRing {
  0% { transform: rotate(0deg) scale(var(--scale, 1)); }
  100% { transform: rotate(360deg) scale(var(--scale, 1)); }
}

.cyber-cross {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
  animation: floatShape var(--speed, 20s) infinite ease-in-out alternate;
}

.cyber-cross::before, .cyber-cross::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.35);
}

.cyber-cross::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.cyber-cross::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.cyber-circle {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: floatShape var(--speed, 25s) infinite ease-in-out alternate-reverse;
}

@keyframes floatShape {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--scale, 1)); opacity: 0.08; }
  50% { transform: translate3d(30px, -50px, 0) rotate(90deg) scale(calc(var(--scale, 1) * 1.1)); opacity: 0.22; }
  100% { transform: translate3d(-15px, 25px, 0) rotate(180deg) scale(var(--scale, 1)); opacity: 0.12; }
}

/* Cinematic Accent Lights */
#how-it-works::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.035) 0%, rgba(249, 115, 22, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

#how-it-works::after {
  content: "";
  position: absolute;
  bottom: -15%;
  right: 15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.025) 0%, rgba(249, 115, 22, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

#how-it-works .section-title {
  color: #ffffff !important;
}

#how-it-works .section-subtitle {
  color: rgba(255, 255, 255, 0.5) !important;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 65px;
  position: relative;
  z-index: 5;
}

/* Upgraded Cinematic 24-Particle Background field */
.dots-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

#workflow-particles-canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

/* Grid Layout */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* Glassmorphic Visual Cards with upgraded linear gradient, shadows, and optimized padding */
.workflow-card {
  background: linear-gradient(135deg, rgba(20, 20, 25, 0.6) 0%, rgba(10, 10, 15, 0.8) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 28px !important;
  padding: 40px 0 36px !important; /* No side padding to support precise 90% landscape sizing */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  position: relative !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              background 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: transform, box-shadow !important;
  z-index: 5 !important;
}

/* Soft breathing orange ambient glow behind cards */
.workflow-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 28px !important;
  background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.16), transparent 72%) !important;
  opacity: 0 !important;
  z-index: -1 !important;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  pointer-events: none !important;
}

.workflow-card.active::before {
  opacity: 1 !important;
}

.workflow-card:hover {
  transform: translateY(-10px) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: linear-gradient(135deg, rgba(30, 30, 38, 0.75) 0%, rgba(15, 15, 22, 0.9) 100%) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* Badge Styling */
.workflow-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 6px 14px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  border-radius: 999px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 24px !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Landscape 1.25 Illustration Wrapper */
.workflow-image-wrapper {
  width: 90% !important;
  aspect-ratio: 1.25 / 1 !important;
  height: auto !important;
  margin: 0 auto 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  position: relative !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  box-shadow: none !important;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black) !important;
}

/* Modern Soft-Edged Image styling - uncropped containment & direct border radius */
.workflow-img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important; /* Contain fits full original frame */
  display: block !important;
  image-rendering: -webkit-optimize-contrast !important;
  border-radius: 18px !important; /* Permanent rounded corners */
  overflow: hidden !important; /* Prevent edge bleed */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
  filter: grayscale(100%) brightness(0.65) contrast(0.85) !important;
  transition: filter 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: filter, transform !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black) !important;
}

/* Card Active State with glowing outline and breathing shadows */
.workflow-card.active {
  transform: translateY(-14px) !important;
  background: linear-gradient(135deg, rgba(35, 35, 45, 0.8) 0%, rgba(20, 20, 28, 0.95) 100%) !important;
  border-color: rgba(249, 115, 22, 0.6) !important;
  box-shadow: 0 30px 65px rgba(249, 115, 22, 0.16), 
              0 0 35px rgba(249, 115, 22, 0.06),
              inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  animation: activeCardPulse 4s infinite ease-in-out alternate !important;
}

@keyframes activeCardPulse {
  0% {
    box-shadow: 0 30px 65px rgba(249, 115, 22, 0.14), 
                0 0 35px rgba(249, 115, 22, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 35px 75px rgba(249, 115, 22, 0.22), 
                0 0 45px rgba(249, 115, 22, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
}

.workflow-card.active .workflow-image-wrapper {
  transform: scale(1.02) !important;
}

.workflow-card.active .workflow-img {
  filter: grayscale(0%) brightness(1) contrast(1) !important;
  transform: scale(1.04) !important;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.3) !important;
}

.workflow-card.active .workflow-badge {
  background: rgba(249, 115, 22, 0.15) !important;
  border-color: rgba(249, 115, 22, 0.4) !important;
  color: #ff8c3a !important;
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.2) !important;
}

.workflow-card-title {
  width: 85% !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin: 0 auto 12px !important;
  color: #ffffff !important;
  letter-spacing: -0.01em !important;
  transition: color 0.35s ease !important;
}

.workflow-card.active .workflow-card-title {
  color: #ff8c3a !important;
  text-shadow: 0 0 10px rgba(249, 115, 22, 0.15) !important;
}

.workflow-card-desc {
  width: 85% !important;
  font-size: 0.92rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  line-height: 1.55 !important;
  margin: 0 auto !important;
  transition: color 0.35s ease !important;
}

.workflow-card.active .workflow-card-desc {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Card Completed Progressive State */
.workflow-card.completed {
  background: rgba(255, 255, 255, 0.035) !important;
  border-color: rgba(249, 115, 22, 0.2) !important;
}

.workflow-card.completed .workflow-img {
  filter: grayscale(0%) brightness(0.92) contrast(0.95) !important;
}

.workflow-card.completed .workflow-badge {
  background: rgba(249, 115, 22, 0.08) !important;
  border-color: rgba(249, 115, 22, 0.25) !important;
  color: #ff8c3a !important;
}

/* Staggered Scroll Reveal Animations */
.workflow-card:nth-child(1) { transition-delay: 0.05s; }
.workflow-card:nth-child(2) { transition-delay: 0.15s; }
.workflow-card:nth-child(3) { transition-delay: 0.25s; }
.workflow-card:nth-child(4) { transition-delay: 0.35s; }

/* Desktop Connection Glowing Lines */
@media (min-width: 1025px) {
  .workflow-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    width: 16px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 10;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .workflow-card.line-active:not(:last-child)::after {
    background: #f97316;
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.8), 0 0 4px rgba(249, 115, 22, 0.4);
    animation: flowPulse 2s infinite ease-in-out;
  }
}

@keyframes flowPulse {
  0%, 100% { opacity: 0.85; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.1); }
}

/* 4. WHY CHOOSE GRED */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 44px 34px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 178, 0, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.015);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 178, 0, 0.3);
  box-shadow: 0 24px 50px rgba(255, 178, 0, 0.08), 0 2px 10px rgba(255, 178, 0, 0.02);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 180, 0, 0.18), rgba(255, 140, 0, 0.08));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 30px rgba(255, 165, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) translateY(-4px) rotate(-1deg);
  background: linear-gradient(135deg, rgba(255, 180, 0, 0.26), rgba(255, 140, 0, 0.14));
  border-color: rgba(255, 178, 0, 0.45);
  box-shadow: 0 12px 36px rgba(255, 165, 0, 0.24);
}

.feature-svg-illustration {
  width: 38px;
  height: 38px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-svg-illustration {
  transform: scale(1.08);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000000;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Custom SVG Interactive Micro-Animations */

/* Feature 1: Verified Providers - Rotate dash ring & pulse dots */
#card-feature-vetted:hover .feature-svg-illustration circle[stroke-dasharray] {
  transform-origin: 24px 24px;
  animation: vettedRotate 20s linear infinite;
}
#card-feature-vetted:hover .feature-svg-illustration circle:nth-of-type(3) {
  animation: vettedOrbitDot 3s ease-in-out infinite;
}
#card-feature-vetted:hover .feature-svg-illustration circle:nth-of-type(4) {
  animation: vettedOrbitDot 4s ease-in-out infinite alternate;
}
@keyframes vettedRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes vettedOrbitDot {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2px, -3px); opacity: 0.8; }
}

/* Feature 2: Fast Booking - Wind lines slide & bolt flashes */
#card-feature-speed:hover .feature-svg-illustration line {
  animation: speedWind 1.8s ease-in-out infinite;
}
#card-feature-speed:hover .feature-svg-illustration line:nth-of-type(2) {
  animation-delay: 0.3s;
}
#card-feature-speed:hover .feature-svg-illustration line:nth-of-type(3) {
  animation-delay: 0.6s;
}
#card-feature-speed:hover .feature-svg-illustration path[stroke="#ffffff"] {
  transform-origin: 24px 24px;
  animation: speedBolt 2s ease-in-out infinite;
}
@keyframes speedWind {
  0%, 100% { transform: translateX(0); opacity: 0.3; }
  50% { transform: translateX(4px); opacity: 0.8; }
}
@keyframes speedBolt {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.04); filter: brightness(1.15); }
}

/* Feature 3: Affordable Pricing - Bars grow & tag tilts */
#card-feature-pricing:hover .feature-svg-illustration rect[width="4"] {
  transform-origin: bottom;
  animation: pricingBar 2s ease-in-out infinite;
}
#card-feature-pricing:hover .feature-svg-illustration rect[width="4"]:nth-of-type(2) {
  animation-delay: 0.4s;
}
#card-feature-pricing:hover .feature-svg-illustration rect[width="22"] {
  transform-origin: 19px 12px;
  animation: pricingTag 2.5s ease-in-out infinite;
}
@keyframes pricingBar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.18); }
}
@keyframes pricingTag {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
}

/* Feature 4: Real-time Updates - Radar rings expand & GPS Pin floats */
#card-feature-updates:hover .feature-svg-illustration circle[stroke-dasharray] {
  transform-origin: 24px 24px;
  animation: updatesRadar 2s ease-in-out infinite;
}
#card-feature-updates:hover .feature-svg-illustration path[d*="M24 8c-5.5"] {
  transform-origin: 24px 18px;
  animation: updatesPin 2s ease-in-out infinite;
}
@keyframes updatesRadar {
  0%, 100% { transform: scale(0.95); opacity: 0.4; }
  50% { transform: scale(1.04); opacity: 0.85; }
}
@keyframes updatesPin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3.5px); }
}

/* Feature 5: Safe Payments - Lock shackle pulses & sparkles pulse */
#card-feature-security:hover .feature-svg-illustration path[d^="M19"] {
  transform-origin: 24px 15px;
  animation: securityShackle 2s ease-in-out infinite;
}
#card-feature-security:hover .feature-svg-illustration path[d^="M37"] {
  transform-origin: 37px 12px;
  animation: securitySparkle 1.5s ease-in-out infinite;
}
@keyframes securityShackle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1.5px); }
}
@keyframes securitySparkle {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* Feature 6: Trusted Marketplace - Concentric circles rotate & star emblem pulses */
#card-feature-trust:hover .feature-svg-illustration circle[stroke] {
  transform-origin: 24px 24px;
  animation: trustRotate 24s linear infinite;
}
#card-feature-trust:hover .feature-svg-illustration path[d^="M24 8"] {
  transform-origin: 24px 20px;
  animation: trustStar 2s ease-in-out infinite;
}
@keyframes trustRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes trustStar {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}


/* 5. APP FEATURES SECTION */
.app-showcase-box {
  position: relative;
  width: 100%;
  border-radius: 36px;
  padding: 60px;
  background: 
    radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px),
    linear-gradient(135deg, #ffb300 0%, #ff9800 45%, #ea580c 100%);
  background-size: 24px 24px, 100% 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 
    0 30px 70px rgba(255, 140, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 0 50px rgba(255, 255, 255, 0.12);
  overflow: hidden;
  z-index: 1;
}

.showcase-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(60px);
}

.showcase-dots-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.showcase-dot {
  position: absolute;
  background: rgba(255, 255, 255, 0.5); /* White floating particles! */
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(0.5px);
  animation: floatShowcaseDot 18s infinite ease-in-out;
  will-change: transform, opacity;
}

@keyframes floatShowcaseDot {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.1;
  }
  50% {
    transform: translate3d(var(--dx), var(--dy), 0);
    opacity: 0.35;
  }
}

.app-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-feature-btn {
  width: 100%;
  padding: 24px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-muted);
  text-align: left;
  cursor: pointer;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.015),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-feature-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.app-feature-btn.active {
  background: #ffffff;
  border-color: #ff9800;
  color: #000000;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 16px 36px rgba(255, 140, 0, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.app-feature-btn-num {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #1e293b;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-feature-btn.active .app-feature-btn-num {
  background: linear-gradient(135deg, #ff9800, #ea580c);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.app-feature-btn-text h4 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: #0f172a;
  transition: color 0.35s ease;
}

.app-feature-btn-text p {
  font-size: 0.88rem;
  font-weight: 550;
  line-height: 1.45;
  color: #475569;
  transition: color 0.35s ease;
}

/* Phone Simulator CSS */
.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-container {
  width: 320px;
  height: 640px;
  border-radius: 46px;
  background: #0d0d11;
  border: 12px solid #1a1a24;
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.4), 
    0 0 40px rgba(255, 178, 0, 0.15);
  position: relative;
  overflow: hidden;
  animation: phoneFloat 6s ease-in-out infinite;
  will-change: transform;
}

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

.phone-dynamic-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.dynamic-island-camera {
  width: 8px;
  height: 8px;
  background: #0d0d1a;
  border-radius: 50%;
}

.dynamic-island-speaker {
  width: 30px;
  height: 4px;
  background: #111;
  border-radius: 4px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 44px 16px 20px;
  position: relative;
  scrollbar-width: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-screen::-webkit-scrollbar {
  display: none;
}

.phone-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.phone-app-brand {
  font-size: 1.15rem;
  font-weight: 850;
  color: #000000;
  letter-spacing: 0.5px;
}

.phone-app-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* 6. TRUST & SAFETY SECTION */
#trust-safety {
  position: relative !important;
  overflow: hidden !important;
}

#trust-safety::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: radial-gradient(rgba(255, 178, 0, 0.05) 1.5px, transparent 1.5px) !important;
  background-size: 32px 32px !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.8 !important;
}

#trust-safety::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 600px !important;
  height: 600px !important;
  background: radial-gradient(circle, rgba(255, 178, 0, 0.06) 0%, rgba(255, 178, 0, 0) 70%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
  filter: blur(50px) !important;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.trust-badge-card {
  padding: 44px 28px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 248, 235, 0.92)
  ) !important;
  border: 1px solid rgba(255, 180, 0, 0.14) !important;
  box-shadow: 0 12px 40px rgba(255, 170, 0, 0.10) !important;
  border-radius: 28px !important;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) !important;
  z-index: 1 !important;
}

.trust-badge-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  border-color: rgba(255, 152, 0, 0.35) !important;
  background: #ffffff !important;
  box-shadow: 
    0 20px 48px rgba(255, 152, 0, 0.16),
    0 4px 12px rgba(255, 152, 0, 0.04) !important;
}

.trust-badge-icon {
  width: 80px !important;
  height: 80px !important;
  border-radius: 24px !important;
  background: linear-gradient(135deg, rgba(255, 180, 0, 0.2), rgba(255, 140, 0, 0.08)) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 
    0 8px 24px rgba(255, 165, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 26px !important;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) !important;
  position: relative !important;
}

.trust-badge-card:hover .trust-badge-icon {
  background: linear-gradient(135deg, rgba(255, 180, 0, 0.3), rgba(255, 140, 0, 0.16)) !important;
  border-color: rgba(255, 178, 0, 0.45) !important;
  transform: scale(1.08) translateY(-4px) !important;
  box-shadow: 
    0 12px 30px rgba(255, 165, 0, 0.24),
    0 0 20px rgba(255, 178, 0, 0.2) !important;
}

.trust-badge-title {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 12px !important;
  color: #0f172a !important;
  transition: color 0.35s ease !important;
}

.trust-badge-desc {
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  color: #475569 !important;
  line-height: 1.55 !important;
}

/* Trust SVG Micro-Animations */
#card-trust-verification:hover .trust-anim-rotate {
  transform-origin: 24px 24px;
  animation: trustRotate 15s linear infinite;
}
#card-trust-verification:hover .trust-anim-pulse-dot {
  transform-origin: 24px 22px;
  animation: trustMedalPulse 2s ease-in-out infinite;
}
#card-trust-verification:hover .trust-anim-check {
  transform-origin: 24px 22px;
  animation: trustPulseCheck 1.5s ease-in-out infinite;
}

#card-trust-booking:hover .trust-anim-shackle {
  animation: trustShackleSpring 1.8s ease-in-out infinite;
}
#card-trust-booking:hover .trust-anim-ticket {
  animation: trustTicketSlide 2s ease-in-out infinite;
}

#card-trust-support:hover .trust-anim-bubble {
  transform-origin: 28px 16px;
  animation: trustBubbleFloat 2.2s ease-in-out infinite;
}
#card-trust-support:hover .trust-anim-support-radar {
  transform-origin: 24px 24px;
  animation: trustRadarSignal 2.5s ease-in-out infinite;
}
#card-trust-support:hover .trust-anim-support-radar2 {
  transform-origin: 24px 24px;
  animation: trustRadarSignal 2s ease-in-out infinite alternate;
}

#card-trust-warranty:hover .trust-anim-medal {
  transform-origin: 24px 20px;
  animation: trustMedalPulse 2s ease-in-out infinite;
}
#card-trust-warranty:hover .trust-anim-ribbon-left {
  transform-origin: 24px 20px;
  animation: trustRibbonLeftSwing 2s ease-in-out infinite alternate;
}
#card-trust-warranty:hover .trust-anim-ribbon-right {
  transform-origin: 24px 20px;
  animation: trustRibbonRightSwing 2s ease-in-out infinite alternate;
}

@keyframes trustRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes trustPulseCheck {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
@keyframes trustShackleSpring {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes trustTicketSlide {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(1px, -2px); }
}
@keyframes trustBubbleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes trustRadarSignal {
  0% { transform: scale(0.9); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.6; }
  100% { transform: scale(0.9); opacity: 0.2; }
}
@keyframes trustMedalPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes trustRibbonLeftSwing {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-2deg); }
}
@keyframes trustRibbonRightSwing {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
}

/* 7. TESTIMONIALS SECTION */
#testimonials {
  position: relative !important;
  overflow: hidden !important;
  background: radial-gradient(circle at center, #ffffff 0%, #fefcf9 100%) !important;
  padding: 100px 0 80px !important; /* Full width edge-to-edge */
}

#testimonials .section-title,
#testimonials .section-subtitle {
  padding-left: 8% !important;
  padding-right: 8% !important;
  box-sizing: border-box !important;
}

.testimonials-viewport {
  width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
  padding: 24px 0 32px !important; /* zero side padding for full-width look */
  z-index: 2 !important;
}

.testimonials-track {
  display: flex !important;
  gap: 30px !important;
  transition: transform 0.85s cubic-bezier(.19,1,.22,1) !important; /* Premium cinematic bezier */
  will-change: transform !important;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(255, 180, 0, 0.10) !important;
  box-shadow: 0 12px 40px rgba(255, 170, 0, 0.08) !important;
  border-radius: 30px !important;
  padding: 42px 34px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 290px !important;
  transition: all 0.45s cubic-bezier(.19,1,.22,1) !important; /* Cinematic transition */
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.015) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(255, 178, 0, 0.28) !important;
  box-shadow: 0 20px 48px rgba(255, 152, 0, 0.12) !important;
}

.testimonial-stars {
  color: #FFB200 !important;
  font-size: 15px !important;
  margin-bottom: 18px !important;
  text-shadow: 0 0 8px rgba(255, 178, 0, 0.35) !important;
  letter-spacing: 2px !important;
}

.quote-decal {
  position: absolute !important;
  top: -24px !important;
  right: 24px !important;
  font-size: 9.5rem !important;
  font-family: Georgia, serif !important;
  color: rgba(255, 178, 0, 0.05) !important;
  line-height: 1 !important;
  pointer-events: none !important;
  user-select: none !important;
}

.testimonial-text {
  font-size: 0.98rem !important;
  line-height: 1.68 !important;
  color: #334155 !important; /* Premium Slate-700 for better contrast */
  font-style: normal !important; /* Clean, modern, highly readable */
  font-weight: 550 !important; /* Semi-bold medium weight */
  margin-bottom: 28px !important;
  flex-grow: 1 !important;
  position: relative !important;
  z-index: 1 !important;
}

.testimonial-user {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  position: relative !important;
  z-index: 1 !important;
  border-top: 1px solid rgba(255, 180, 0, 0.08) !important;
  padding-top: 18px !important;
}

.testimonial-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #FFB200, #ea580c) !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.16) !important;
  flex-shrink: 0 !important;
}

.testimonial-user-info h5 {
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  margin-bottom: 3px !important;
  color: #0f172a !important;
}

.testimonial-user-info span {
  font-size: 0.8rem !important;
  color: #64748b !important;
  font-weight: 600 !important;
}

.testimonial-glow-1 {
  position: absolute !important;
  top: -100px !important;
  right: -50px !important;
  width: 350px !important;
  height: 350px !important;
  background: radial-gradient(circle, rgba(255, 178, 0, 0.08) 0%, rgba(255, 178, 0, 0) 70%) !important;
  filter: blur(60px) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.testimonial-glow-2 {
  position: absolute !important;
  bottom: -150px !important;
  left: -80px !important;
  width: 400px !important;
  height: 400px !important;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.05) 0%, rgba(234, 88, 12, 0) 70%) !important;
  filter: blur(80px) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.testimonial-particle {
  position: absolute !important;
  border-radius: 50% !important;
  background: rgba(255, 178, 0, 0.12) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.particle-1 {
  width: 8px !important;
  height: 8px !important;
  top: 15% !important;
  left: 8% !important;
  animation: testimonialFloatParticle 6s ease-in-out infinite alternate !important;
}

.particle-2 {
  width: 12px !important;
  height: 12px !important;
  bottom: 20% !important;
  right: 6% !important;
  background: rgba(234, 88, 12, 0.08) !important;
  animation: testimonialFloatParticle 8s ease-in-out infinite alternate-reverse !important;
}

.particle-3 {
  width: 6px !important;
  height: 6px !important;
  top: 45% !important;
  right: 15% !important;
  animation: testimonialFloatParticle 5s ease-in-out infinite alternate !important;
}

@keyframes testimonialFloatParticle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  100% { transform: translateY(-15px) rotate(15deg); opacity: 0.8; }
}

.testimonials-controls {
  display: flex !important;
  justify-content: center !important;
  margin-top: 35px !important;
  z-index: 2 !important;
  position: relative !important;
}

.testimonials-indicators {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
}

.indicator-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: rgba(15, 23, 42, 0.15) !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  padding: 0 !important;
}

.indicator-dot:hover {
  background: rgba(255, 178, 0, 0.4) !important;
}

.indicator-dot.active {
  width: 24px !important;
  border-radius: 10px !important;
  background: #FFB200 !important;
  box-shadow: 0 2px 8px rgba(255, 178, 0, 0.3) !important;
}


/* 8. STATS SECTION */
#stats {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background-color: #0b0f19; /* Premium black-dark tech background */
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  overflow: hidden;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Glowing tech gradient shape accents */
#stats::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 178, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

#stats::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 178, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.stat-item {
  padding: 45px 24px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 178, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 178, 0, 0.06);
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 850;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -1px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover .stat-number {
  color: #FFB200;
  text-shadow: 0 0 10px rgba(255, 178, 0, 0.25);
}

.stat-label {
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover .stat-label {
  color: #ffffff;
}

/* 8.1 STATS FLOATING DOT PARTICLES BACKGROUND */
.stats-dots-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.stats-dot {
  position: absolute;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(0.5px);
  animation: floatDot 15s infinite ease-in-out;
  will-change: transform, opacity;
}

/* Subtle brand amber colored floating dots */
.stats-dot.amber {
  background: var(--accent-amber);
  opacity: 0.18;
}

@keyframes floatDot {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.15;
  }
  50% {
    transform: translate3d(var(--dx), var(--dy), 0);
    opacity: 0.45;
  }
}

/* 9. FAQ SECTION */
#faq {
  position: relative !important;
  overflow: hidden !important;
  background: radial-gradient(circle at center, #ffffff 0%, #fefcf9 100%) !important;
}

.faq-glow-1 {
  position: absolute !important;
  top: -120px !important;
  left: -80px !important;
  width: 380px !important;
  height: 380px !important;
  background: radial-gradient(circle, rgba(255, 178, 0, 0.07) 0%, rgba(255, 178, 0, 0) 70%) !important;
  filter: blur(70px) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.faq-glow-2 {
  position: absolute !important;
  bottom: -150px !important;
  right: -80px !important;
  width: 400px !important;
  height: 400px !important;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.05) 0%, rgba(234, 88, 12, 0) 70%) !important;
  filter: blur(80px) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.faq-particle {
  position: absolute !important;
  border-radius: 50% !important;
  background: rgba(255, 178, 0, 0.1) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.faq-p-1 {
  width: 8px !important;
  height: 8px !important;
  top: 20% !important;
  right: 12% !important;
  animation: faqFloatParticle 7s ease-in-out infinite alternate !important;
}

.faq-p-2 {
  width: 12px !important;
  height: 12px !important;
  bottom: 25% !important;
  left: 10% !important;
  background: rgba(234, 88, 12, 0.06) !important;
  animation: faqFloatParticle 9s ease-in-out infinite alternate-reverse !important;
}

.faq-p-3 {
  width: 6px !important;
  height: 6px !important;
  top: 55% !important;
  left: 18% !important;
  animation: faqFloatParticle 6s ease-in-out infinite alternate !important;
}

@keyframes faqFloatParticle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  100% { transform: translateY(-20px) rotate(15deg); opacity: 0.7; }
}

.faq-container {
  max-width: 820px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  position: relative !important;
  z-index: 2 !important;
}

.faq-item {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(255, 180, 0, 0.12) !important;
  box-shadow: 0 12px 40px rgba(255, 170, 0, 0.08) !important;
  border-radius: 24px !important;
  transition: all 0.4s cubic-bezier(.19,1,.22,1) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.faq-item:hover {
  transform: translateY(-4px) !important;
  background: #ffffff !important;
  border-color: rgba(255, 178, 0, 0.28) !important;
  box-shadow: 0 20px 48px rgba(255, 152, 0, 0.12) !important;
}

.faq-header {
  padding: 28px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  cursor: pointer !important;
  background: transparent !important;
  transition: all 0.35s cubic-bezier(.19,1,.22,1) !important;
}

.faq-question {
  font-size: 1.12rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  transition: color 0.3s ease !important;
  line-height: 1.4 !important;
  user-select: none !important;
}

.faq-item:hover .faq-question {
  color: #ea580c !important;
}

.faq-chevron-wrapper {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 178, 0, 0.06) !important;
  border: 1px solid rgba(255, 178, 0, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #FFB200 !important;
  transition: all 0.4s cubic-bezier(.19,1,.22,1) !important;
  flex-shrink: 0 !important;
  box-shadow: 0 2px 8px rgba(255, 178, 0, 0.04) !important;
}

.faq-chevron-icon {
  width: 16px !important;
  height: 16px !important;
  transition: transform 0.4s cubic-bezier(.19,1,.22,1) !important;
}

.faq-item.active {
  background: #ffffff !important;
  border-color: rgba(255, 152, 0, 0.35) !important;
  box-shadow: 0 20px 48px rgba(255, 152, 0, 0.14) !important;
}

.faq-item.active .faq-chevron-wrapper {
  background: #FFB200 !important;
  border-color: #FFB200 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(255, 178, 0, 0.35) !important;
}

.faq-item.active .faq-chevron-icon {
  transform: rotate(180deg) !important;
}

.faq-item.active .faq-question {
  color: #ea580c !important;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.19,1,.22,1) !important;
  background: transparent !important;
}

.faq-answer {
  padding: 0 28px 28px !important;
  font-size: 0.96rem !important;
  color: #475569 !important;
  line-height: 1.68 !important;
  font-weight: 550 !important;
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  transition: opacity 0.35s cubic-bezier(.19,1,.22,1), transform 0.35s cubic-bezier(.19,1,.22,1) !important;
}

.faq-item.active .faq-answer {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 10. CONNECT / CONTACT SHOWCASE SECTION */
.showcase-section {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  z-index: 1;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.showcase-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.showcase-bg-effects .glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.4;
  pointer-events: none;
}

.showcase-bg-effects .glow-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 178, 0, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  top: 5%;
  left: 20%;
  filter: blur(120px);
}

.showcase-bg-effects .glow-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 136, 0, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: 5%;
  right: 20%;
  filter: blur(100px);
}

.showcase-grid-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.85;
}

.showcase-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 80px 40px 60px;
  box-sizing: border-box;
  width: 100%;
}

.showcase-image-container {
  width: 100%;
  max-width: 1050px;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.showcase-main-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.05));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: floatIllustration 8s infinite alternate ease-in-out;
}

.showcase-main-img:hover {
  transform: translateY(-6px) scale(1.015);
  filter: drop-shadow(0 30px 60px rgba(255, 178, 0, 0.12));
}

@keyframes floatIllustration {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, -10px, 0); }
}

.showcase-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.showcase-brand-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFB200;
  background: rgba(255, 178, 0, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 178, 0, 0.15);
}

.showcase-main-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #000000;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.showcase-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: #4b5563;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 500;
}

.showcase-app-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.mobile-only-buttons {
  display: none !important;
}

.store-badge-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 14px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.store-badge-btn:hover {
  background: #FFB200;
  color: #000000;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(255, 178, 0, 0.3);
  border-color: rgba(255, 178, 0, 0.15);
}

.store-badge-icon svg {
  width: 24px;
  height: 24px;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
}

.store-pre {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* Bottom floating tags */
.showcase-bottom-tags {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  z-index: 2;
}

.bottom-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 178, 0, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  cursor: pointer;
}

.bottom-tag:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 178, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 178, 0, 0.08);
}

.bottom-tag svg {
  width: 18px;
  height: 18px;
  color: #FFB200;
  stroke-width: 2.2px;
}

.bottom-tag span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #000000;
}

/* Laptop Spacing (width <= 1280px): Already styled via flexible flexbox, no override needed */

/* Tablet Spacing (width <= 1024px): 30px safe padding */
@media (max-width: 1024px) {
  .showcase-container {
    padding: 60px 30px;
  }
  .showcase-image-container {
    margin: 30px auto;
  }
  .showcase-main-img {
    max-height: 450px;
  }
}

@media (max-width: 768px) {
  .showcase-main-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .showcase-subtitle {
    margin-bottom: 24px;
    font-size: 0.95rem;
  }
  .showcase-app-buttons {
    gap: 12px;
  }
  .store-badge-btn {
    padding: 10px 18px;
    border-radius: 12px;
  }
  .showcase-image-container {
    margin: 24px auto;
  }
  .showcase-main-img {
    max-height: 380px;
    animation-name: floatIllustrationMobile;
  }
}

@keyframes floatIllustrationMobile {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, -6px, 0); }
}

/* Mobile Spacing (width <= 640px): 20px safe padding */
@media (max-width: 640px) {
  .showcase-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .showcase-bottom-tags {
    gap: 10px;
    margin-top: 30px;
  }
  .bottom-tag {
    padding: 8px 16px;
    border-radius: 20px;
  }
  .bottom-tag span {
    font-size: 0.8rem;
  }
}


/* 11. FOOTER SECTION */
.footer-section {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 8% 40px;
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h4 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-top: -10px;
  margin-bottom: -10px;
  margin-left: -11px;
  margin-right: -3px;
  filter: invert(1);
  display: inline-block;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-col h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: #ffffff;
}

.footer-col h5::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent-amber);
  margin-top: 8px;
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.95rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition-smooth);
  align-self: flex-start;
}

.footer-links a:hover {
  color: var(--accent-amber);
  transform: translateX(4px);
}

/* ==========================================================================
   CONNECT WITH GRED - PREMIUM SOCIAL LINKS
   ========================================================================== */
.footer-connect p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icon-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.social-icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: radial-gradient(circle at center, rgba(255, 178, 0, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

/* Premium Hover Transitions */
.social-icon-link:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 178, 0, 0.4);
  color: var(--accent-amber);
  box-shadow: 0 8px 20px rgba(255, 178, 0, 0.2);
}

.social-icon-link:hover svg {
  transform: scale(1.1);
}

.social-icon-link:hover::before {
  opacity: 1;
}

.social-icon-link:active {
  transform: translateY(-2px) scale(0.98);
}

/* Mobile & Tablet Centering Alignment */
@media (max-width: 768px) {
  .footer-col.footer-connect {
    text-align: center;
  }
  .footer-col.footer-connect h5::after {
    margin-left: auto;
    margin-right: auto;
  }
  .social-links-container {
    justify-content: center;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: var(--accent-amber);
}

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

@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .scene {
    min-height: auto;
    padding-top: 120px;
  }
  .hero-split-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 34px;
  }
  .hero-left {
    display: contents; /* Disbands layout box to promote children to direct flex items */
  }
  .hero-heading {
    max-width: 760px;
    order: 1; /* First: Main Heading Title */
    margin-bottom: 0 !important; /* Reset margin to let flex gap handle spacing precisely */
  }
  .hero-right {
    order: 2; /* Second: The Premium Illustration Container! */
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-subtitle {
    order: 3; /* Third: Subtitle Description Text */
    max-width: 680px;
    margin: 0 auto;
    margin-bottom: 0 !important; /* Reset margin to let flex gap handle spacing precisely */
  }
  .hero-cta-group {
    order: 4; /* Fourth: Become a Partner CTA Button */
    justify-content: center;
    width: 100%;
  }
  .hero-app-badges {
    order: 5; /* Fifth: App Store & Play Store Download Badges */
    justify-content: center;
    width: 100%;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .workflow-image-wrapper {
    height: 240px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .about-grid, .app-section-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .phone-mockup-wrapper {
    order: -1;
  }

  /* Tablet Spacing and Mascot Scaling Lock */
  .hero-dashboard-wrapper {
    margin-top: 0; /* Clean spacing below heading, handled entirely by flex gap */
    width: min(90vw, 480px); /* Increased size on tablet as requested! */
  }
  .hero-mascot.mascot-body, .hero-mascot.mascot-hands {
    width: 190px; /* Scaled tablet size exactly as requested */
    height: 190px;
    bottom: calc(100% - 12px); /* Maintain 12px overlap perfectly */
    right: 30px; /* Aligned nicely to the right */
  }
}

@media (max-width: 768px) {
  .hero-split-container {
    gap: 24px; /* Tighter spacing on mobile for clean, modern aesthetics */
  }
  .app-showcase-box {
    padding: 30px 20px;
    border-radius: 24px;
  }
  .section-padding {
    padding: 70px 5% 60px;
  }
  .scene {
    padding: 112px 5% 56px;
  }
  .hero-brand-lockup {
    margin-bottom: 18px;
  }
  .hero-heading {
    font-size: clamp(1.6rem, 7.5vw, 2.2rem);
    margin-bottom: 0 !important;
  }
  .hero-proof-strip {
    grid-template-columns: 1fr;
    max-width: 310px;
  }
  .hero-right {
    height: auto; /* Remove rigid hardcoded height to eliminate empty vertical spacing */
  }
  .hero-dashboard-wrapper {
    width: min(96vw, 420px); /* Increased size on mobile as requested! */
    margin-top: 0; /* Remove top margin completely to eliminate gap below heading */
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
  }
  .hero-dashboard-container {
    width: 100%;
    height: 100%;
    padding: 42px 20px 20px 20px; /* Adjusted padding to match compact mobile canvas */
    border-radius: 28px;
    overflow: visible;
  }
  .hero-mascot.mascot-body, .hero-mascot.mascot-hands {
    width: clamp(150px, 18vw, 170px); /* Proportional scaling on mobile as requested! */
    height: clamp(150px, 18vw, 170px);
    bottom: calc(100% - 10px); /* Mathematically locked 10px overlap on mobile top border */
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .hero-canvas {
    width: 100%;
    height: 100%;
  }
  .dispatch-rider {
    width: 38px;
    height: 38px;
    offset-path: path("M 73,315 L 202,244 L 330,174 L 260,102 L 124,178 Z");
    animation-duration: 8s;
  }
  .hero-card {
    border-radius: 15px;
    padding: 11px 13px;
  }
  .hero-card-status {
    left: 0;
    bottom: 12%;
    width: 178px;
  }
  .hero-card-booking {
    right: 0;
    top: 14%;
    width: 190px;
  }
  .hero-card-badge {
    left: 6%;
    top: 4%;
  }
  .hero-card-mini {
    width: 96px;
    min-height: 68px;
  }
  .hero-card-mini-two {
    left: 16%;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .workflow-card {
    padding: 36px 20px 28px;
  }
  .workflow-image-wrapper {
    height: 220px;
  }
  .workflow-card:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 16px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 10;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .workflow-card.line-active:not(:last-child)::after {
    background: #f97316;
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.8), 0 0 4px rgba(249, 115, 22, 0.4);
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px !important;
  }
  .feature-card {
    display: grid !important;
    grid-template-columns: 52px 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 6px 16px !important;
    padding: 22px 20px !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 248, 235, 0.92)
    ) !important;
    border: 1px solid rgba(255, 180, 0, 0.12) !important;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.08) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
  }
  .feature-card::before {
    content: "" !important;
    position: absolute !important;
    top: -20px !important;
    right: -20px !important;
    width: 80px !important;
    height: 80px !important;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.15) 0%, rgba(255, 180, 0, 0) 70%) !important;
    pointer-events: none !important;
    z-index: -1 !important;
  }
  .feature-card::after {
    content: "" !important;
    position: absolute !important;
    bottom: 12px !important;
    right: 12px !important;
    width: 6px !important;
    height: 6px !important;
    background: linear-gradient(135deg, #ff9800, #ea580c) !important;
    border-radius: 50% !important;
    opacity: 0.3 !important;
    filter: blur(0.5px) !important;
    pointer-events: none !important;
  }
  .feature-icon {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    align-self: start !important;
    margin-bottom: 0 !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, rgba(255, 180, 0, 0.22), rgba(255, 140, 0, 0.12)) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .feature-icon .feature-svg-illustration {
    width: 28px !important;
    height: 28px !important;
  }
  .feature-title {
    grid-column: 2 !important;
    grid-row: 1 !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
    align-self: end !important;
    color: #000000 !important;
  }
  .feature-desc {
    grid-column: 2 !important;
    grid-row: 2 !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
    align-self: start !important;
  }
  .feature-card:hover,
  .feature-card:active {
    transform: scale(0.985) translateY(-2px) !important;
    background: #ffffff !important;
    border-color: rgba(255, 178, 0, 0.25) !important;
    box-shadow: 0 14px 35px rgba(255, 152, 0, 0.14) !important;
  }
  .feature-card:hover .feature-icon {
    transform: scale(1.04) translateY(-2px) !important;
    background: linear-gradient(135deg, rgba(255, 180, 0, 0.26), rgba(255, 140, 0, 0.14)) !important;
    border-color: rgba(255, 178, 0, 0.45) !important;
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.22) !important;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .trust-badge-card {
    padding: 32px 20px !important;
    border-radius: 24px !important;
  }
  .testimonials-viewport {
    padding: 24px 24px 32px !important; /* Small side padding for breathing space */
    box-sizing: border-box !important;
  }
  .testimonials-track {
    gap: 24px !important;
  }
  .testimonial-card {
    flex: 0 0 calc(50% - 12px) !important; /* Perfect half width slider */
    padding: 34px 26px !important;
    min-height: 270px !important;
    border-radius: 26px !important;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-info-panel, .contact-form-panel {
    padding: 30px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
  
}

@media (max-width: 500px) {
  .trust-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .testimonials-viewport {
    padding: 24px 20px 32px !important; /* 20px side offsets */
    box-sizing: border-box !important;
  }
  .testimonials-track {
    gap: 20px !important;
  }
  .testimonial-card {
    flex: 0 0 calc(100% - 20px) !important; /* Leaves 20px space for right side card peek */
    padding: 30px 22px !important;
    min-height: 250px !important;
    border-radius: 24px !important;
  }
  .quote-decal {
    font-size: 6.5rem !important;
    right: 16px !important;
    top: -16px !important;
  }
  .testimonial-text {
    font-size: 0.92rem !important;
    line-height: 1.58 !important;
    margin-bottom: 22px !important;
  }

  /* FAQ Mobile adjustments */
  .faq-container {
    gap: 16px !important;
  }
  .faq-item {
    border-radius: 20px !important;
  }
  .faq-header {
    padding: 22px 20px !important;
  }
  .faq-question {
    font-size: 1.02rem !important;
    line-height: 1.45 !important;
  }
  .faq-chevron-wrapper {
    width: 32px !important;
    height: 32px !important;
  }
  .faq-chevron-icon {
    width: 14px !important;
    height: 14px !important;
  }
  .faq-answer {
    padding: 0 20px 22px !important;
    font-size: 0.9rem !important;
    line-height: 1.58 !important;
  }
}


