/* ============================================================
   ALCAS — Deep Velocity Blue Theme Override
   Polished Glassmorphism & Bioluminescent Accents
   ============================================================ */

/* ── Custom Fonts ──────────────────────────────────────────── */
@font-face {
  font-family: 'SeasonSerif';
  src: url('../SeasonSerif-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../Aeonik Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'AeonikBold';
  src: url('../Aeonik Pro Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Variables ─ Deeper Darks, Brighter Glows ───────────── */
:root {
  --blue:         #1C77FF;
  --blue-bright:  #4A94FF;
  --blue-glow:    rgba(28, 119, 255, 0.4);
  --blue-glow-sm: rgba(28, 119, 255, 0.15);
  
  /* Deep void backgrounds matching Velocity aesthetic */
  --dark-bg:      #030509; 
  --dark-mid:     #05080E;
  
  /* Glass card surfaces */
  --card-bg:      linear-gradient(180deg, rgba(16, 23, 38, 0.8) 0%, rgba(8, 12, 20, 0.6) 100%);
  --card-glow:    radial-gradient(circle at 50% 120%, rgba(28,119,255,0.15) 0%, transparent 60%);
  
  --border:       rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.12);
  --border-blue:  rgba(74, 148, 255, 0.35);
  
  --text:         #FFFFFF;
  --text-muted:   rgba(255,255,255,0.6);
  --text-dim:     rgba(255,255,255,0.35);
}

/* ── Universal Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* ── Global Base Resets ────────────────────────────────────── */
body, html {
  background-color: var(--dark-bg) !important;
  color: var(--text) !important;
  font-family: 'Aeonik', sans-serif !important;
  overflow-x: hidden !important;
}

.heading-style-h2 {
  font-family: 'SeasonSerif', serif !important;
  font-size: 48px !important;
  margin-bottom: 24px !important;
  line-height: 1.2 !important;
  font-weight: normal !important;
}

/* Aggressively strip white backgrounds from all Webflow containers */
.page-wrapper, .main-wrapper, .section, section, .services, .about, .process, .review, .contact, .footer,
.page-vertical-padding, .section-padding-large, .container, .page-padding {
  background-color: transparent !important;
}

section, .services, .testimonials-section, .contact, .review {
  background-color: var(--dark-bg) !important;
}

/* Typographic Service Numbers */
.service-number {
  font-family: 'AeonikBold', sans-serif !important;
  font-size: 48px !important;
  line-height: 1 !important;
  color: transparent !important;
  -webkit-text-stroke: 1px rgba(74, 148, 255, 0.4);
  margin-bottom: 24px;
  display: block;
}

p, span, div, a, li, label, input, textarea {
  font-family: 'Aeonik', sans-serif;
}

/* body text helpers */
.body-text-b1, .body-text-b2,
.body-text-b3, .body-text-b4 { color: var(--text-muted) !important; }

/* scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
::selection { background: rgba(74,148,255,0.4); color: #fff; }

/* ============================================================
   SPLASH SCREEN
   ============================================================ */
.splash-bg {
  background: var(--dark-bg) !important;
  position: relative;
  z-index: 99999;
}
.splash-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(28,119,255,0.2) 0%, transparent 50%);
}

/* ============================================================
   NAVBAR & BUTTONS
   ============================================================ */
.navbar.w-nav {
  position: absolute !important; /* Floating entirely gracefully until sticky replaces it via scrolled class */
  top: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  transition: all 0.4s ease !important;
  padding: 24px 0 !important;
}
.navbar.w-nav {
  position: absolute !important; /* Floating entirely gracefully until sticky replaces it via scrolled class */
  top: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  transition: all 0.4s ease !important;
  padding: 24px 0 !important;
}

@media (min-width: 992px) {
  .nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
  }
  .nav-menu-block {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex: 1;
    background: transparent !important;
  }
  .nav-menu-block-inner {
    display: flex !important;
    align-items: center !important;
    width: 100%;
    justify-content: center !important;
  }
  .nav-links-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 40px !important;
    background: transparent !important;
  }
  .nav-link, .nav-link.w--current { 
    padding: 0 !important; margin: 0 !important; 
    background: transparent !important; 
  }
  .nav-brand img { max-height: 32px !important; width: auto !important; }
}

.navbar.w-nav.scrolled {
  position: fixed !important;
  background: rgba(3, 5, 9, 0.75) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5) !important;
  padding: 10px 0 !important;
}

.nav-link, .nav-link > div {
  color: rgba(255,255,255,0.65) !important;
  font-size: 14px !important;
  letter-spacing: 0.02em !important;
  transition: color 0.2s, text-shadow 0.2s !important;
}
.nav-link:hover, .nav-link:hover > div { 
  color: #fff !important; 
  text-shadow: 0 0 12px rba(255,255,255,0.4) !important; 
}

/* Pill CTA Buttons */
.button-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 100%) !important;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.4), 0 0 20px rgba(28,119,255,0.5), 0 4px 14px rgba(0,0,0,0.5) !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  padding: 14px 32px !important;
  opacity: 1 !important; visibility: visible !important; transform: none !important;
}
.button-primary:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.6), 0 0 30px rgba(74,148,255,0.7), 0 8px 20px rgba(0,0,0,0.6) !important;
}
.button-primary * { color: #fff !important; font-family: 'AeonikBold', sans-serif !important; letter-spacing: 0.03em !important; margin: 0 !important; }

/* In-nav or secondary outlined buttons */
.button-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 1px solid rgba(74,148,255,0.7) !important; /* Elegant blue outline */
  border-radius: 50px !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: inset 0 1px 1px rgba(74,148,255,0.2), 0 0 15px rgba(28,119,255,0.2) !important;
  transition: all 0.3s ease !important;
  padding: 12px 28px !important;
  opacity: 1 !important; visibility: visible !important; transform: none !important;
}
.button-secondary:hover {
  background: rgba(74,148,255,0.15) !important;
  border-color: var(--blue-bright) !important;
  box-shadow: inset 0 1px 1px rgba(74,148,255,0.4), 0 0 25px rgba(28,119,255,0.4) !important;
}
.button-secondary * { color: #fff !important; font-family: 'AeonikBold', sans-serif !important; margin: 0 !important; }

/* ============================================================
   HERO ─ Velocity Style Massive Glow & Abstract Elements
   ============================================================ */
.hero {
  background-color: var(--dark-bg) !important;
  position: relative !important;
  min-height: 85vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}
/* Center huge blue glow */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%; transform: translateX(-50%);
  width: 1400px; height: 1000px;
  background: radial-gradient(ellipse at center 40%, rgba(28,119,255,0.25) 0%, rgba(28,119,255,0.08) 35%, transparent 70%);
  pointer-events: none; z-index: 0;
}
/* Grid pattern / Star dots */
.hero::after {
  content: '';
  position: absolute;
  inset: 0; 
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
  pointer-events: none; z-index: 0;
}

/* Force override Webflow inline animations */
.hero-content-wrapper, .hero-top-bg-image-block, .hero-wrapper, .hero-button-block {
  transform: none !important;
  opacity: 1 !important;
  filter: none !important;
  visibility: visible !important;
}

/* Hero Content alignment */
.text-center { text-align: center !important; }
.justify-center { display: flex !important; justify-content: center !important; gap: 16px; align-items: center; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.hero-content-wrapper { position: relative; z-index: 2; width: 100%; top: -80px !important; }

/* Hero Badge */
.hero-badge-wrapper {
  display: flex; justify-content: center; margin-bottom: 32px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(16, 23, 38, 0.6) !important;
  border: 1px solid rgba(74, 148, 255, 0.4) !important;
  border-radius: 50px !important;
  padding: 6px 18px !important;
  color: var(--text-muted);
  font-family: 'Aeonik', sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 0 15px rgba(28, 119, 255, 0.2);
}

.hero-title-block { margin-top: 0 !important; }

.hero h1 {
  font-family: 'SeasonSerif', Georgia, serif !important;
  font-size: clamp(52px, 7vw, 92px) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
  text-shadow: 0 0 40px rgba(255,255,255,0.1) !important;
  margin-bottom: 32px !important;
}
.hero h1 span, .heading-style-h1 span, h2 span, h3 span {
  font-family: inherit !important;
}
.text-gradient {
  background: linear-gradient(90deg, #FFFFFF 0%, #4A94FF 60%, #1C77FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent !important;
}
.hero-description-block p {
  color: rgba(255,255,255,0.7) !important;
  font-size: 18px !important;
  max-width: 650px;
  margin: 0 auto 48px auto !important;
  line-height: 1.65 !important;
}
.hero-top-bg-image-block, .hero-bg-bottom-block { display: none !important; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background-color: var(--dark-bg) !important; position: relative; padding-top: 100px !important; }
.about::before {
  content: ''; position: absolute; top: 0; left: 50%; width: 100%; height: 100%; transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.about h2 { font-size: 42px !important; color: #fff; }

/* Pure Web Design CSS for "Why Clients Choose Us" Grid */
.why-choose-us-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 32px !important;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .why-choose-us-grid { grid-template-columns: 1fr !important; }
}

.pure-text-card {
  padding: 48px !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(28, 119, 255, 0.05) 0%, rgba(8, 12, 20, 0.6) 100%) !important;
}
.pure-text-card .card-number {
  font-family: 'SeasonSerif', Georgia, serif !important;
  font-size: 48px !important;
  color: var(--blue-bright) !important;
  line-height: 1 !important;
  margin-bottom: 24px !important;
  opacity: 0.6 !important;
  text-shadow: 0 0 40px rgba(74,148,255,0.4);
}
.pure-text-card h3 {
  font-family: 'SeasonSerif', Georgia, serif !important;
  font-size: 28px !important;
  margin-bottom: 16px !important;
  color: #fff !important;
}
.pure-text-card p {
  color: rgba(255,255,255,0.7) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-family: 'Aeonik', sans-serif !important;
}

/* ============================================================
   PROCESS SECTION (Elegant 3-Step)
   ============================================================ */
.process { background-color: var(--dark-bg) !important; position: relative; padding: 100px 0 !important; }
.process-steps-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .process-steps-grid { grid-template-columns: 1fr !important; }
}
.process-step-card {
  padding: 48px 40px !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.4) 0%, rgba(3, 5, 9, 0.8) 100%) !important;
  border: 1px solid rgba(255,255,255,0.04) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease !important;
}
.process-step-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(74, 148, 255, 0.3) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}
.process-glow {
  position: absolute;
  top: -50px; left: -50px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(28, 119, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.process-step-card:hover .process-glow { opacity: 1; }
.process-step-number {
  font-family: 'AeonikBold', sans-serif !important;
  font-size: 16px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 100%);
  width: 48px; height: 48px;
  display: flex !important; align-items: center !important; justify-content: center !important;
  border-radius: 50% !important;
  margin-bottom: 32px !important;
  box-shadow: 0 10px 20px rgba(28,119,255,0.3) !important;
}

/* ============================================================
   ELEGANT CORE SERVICES SECTION
   ============================================================ */
.elegant-services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .elegant-services-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 767px) {
  .elegant-services-grid { grid-template-columns: 1fr !important; }
}

.elegant-service-card {
  padding: 40px !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  position: relative;
  transition: all 0.4s ease !important;
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.4) 0%, rgba(3, 5, 9, 0.8) 100%) !important;
}

.service-icon-box {
  background: rgba(28, 119, 255, 0.05) !important;
  border: 1px solid rgba(74, 148, 255, 0.2) !important;
  border-radius: 16px !important;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--blue-bright);
}
.service-icon-box img, .service-icon-box svg {
  width: 32px; height: 32px;
}

.service-glow-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.5;
}

/* ============================================================
   ELEGANT TESTIMONIALS SECTION
   ============================================================ */
.elegant-testimonials-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .elegant-testimonials-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 767px) {
  .elegant-testimonials-grid { grid-template-columns: 1fr !important; }
}

.testimonial-card {
  padding: 40px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.testimonial-stars {
  display: flex; gap: 4px; margin-bottom: 24px;
}

.testimonial-quote {
  font-family: 'Aeonik', sans-serif !important;
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  opacity: 0.9;
  margin-bottom: 32px !important;
}
.testimonial-quote strong {
  color: var(--blue-bright);
}

.testimonial-author {
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  margin-top: auto;
}
.author-logo-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
}
.author-logo-wrap img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
.author-details h4 {
  color: #fff !important; font-size: 16px !important; margin: 0 0 4px 0 !important;
  font-family: 'SeasonSerif', serif !important;
}
.author-details span {
  color: rgba(255,255,255,0.5) !important; font-size: 13px !important;
}

/* ============================================================
   ELEGANT WORK / CASE STUDY SECTION
   ============================================================ */
.elegant-work-card {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr !important;
  padding: 0 !important; /* Override standard padding to let image hit edge */
  align-items: stretch !important;
  min-height: 500px !important;
}
@media (max-width: 991px) {
  .elegant-work-card { grid-template-columns: 1fr !important; }
}

.work-card-content {
  padding: 64px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}
@media (max-width: 767px) {
  .work-card-content { padding: 32px !important; }
}

.work-badge-wrap { margin-bottom: 24px !important; }
.work-badge {
  display: inline-block !important;
  padding: 6px 14px !important;
  border: 1px solid rgba(74, 148, 255, 0.3) !important;
  border-radius: 20px !important;
  color: var(--blue-bright) !important;
  font-family: 'Aeonik', sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  background: rgba(28, 119, 255, 0.05) !important;
}

.work-details {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .work-details { grid-template-columns: 1fr !important; gap: 24px !important; }
}

.work-detail-label {
  font-family: 'AeonikBold', sans-serif !important;
  font-size: 14px !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 12px !important;
  opacity: 0.9 !important;
}

.work-detail-text {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
}

.work-metrics-quote {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 40px !important;
  padding-top: 32px !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  margin-top: auto !important;
  align-items: center !important;
}
@media (max-width: 767px) {
  .work-metrics-quote { grid-template-columns: 1fr !important; gap: 24px !important; }
}

.work-highlight-metric {
  display: flex !important;
  flex-direction: column !important;
}

.metric-value {
  font-family: 'AeonikBold', sans-serif !important;
  font-size: 56px !important;
  line-height: 1 !important;
  background: linear-gradient(135deg, #fff 0%, var(--blue-bright) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 8px !important;
}

.metric-label {
  font-size: 14px !important;
  color: rgba(255,255,255,0.7) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.quote-text {
  font-family: 'SeasonSerif', serif !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
  color: #fff !important;
  font-style: italic !important;
  margin: 0 !important;
  opacity: 0.9 !important;
}

.work-card-visual {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 300px !important;
}
.work-card-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.visual-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, var(--dark-bg) 0%, transparent 30%) !important;
}
@media (max-width: 991px) {
  .visual-overlay { background: linear-gradient(180deg, var(--dark-bg) 0%, transparent 30%) !important; }
}

/* ============================================================
   SHARED BEAUTIFUL CARD STYLES (Velocity Aesthetic)
   ============================================================ */
.velocity-card {
  position: relative;
  background: var(--card-bg) !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), inset 0 0 20px rgba(0,0,0,0.5), 0 20px 40px rgba(0,0,0,0.4) !important;
  overflow: hidden !important;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.velocity-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: var(--card-glow); opacity: 0; transition: opacity 0.4s ease;
}
.velocity-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(74,148,255,0.3) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 20px 50px rgba(0,0,0,0.6), 0 0 40px rgba(28,119,255,0.15) !important;
}
.velocity-card:hover::before { opacity: 1; }

/* Icon inside Cards */
.velocity-icon-wrapper {
  background: linear-gradient(180deg, rgba(74,148,255,0.15) 0%, rgba(28,119,255,0.05) 100%) !important;
  border: 1px solid rgba(74,148,255,0.3) !important;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.2), 0 10px 20px rgba(0,0,0,0.5), 0 0 20px rgba(28,119,255,0.3) !important;
  border-radius: 16px !important;
  padding: 14px !important;
  display: inline-flex !important;
  align-items: center; justify-content: center;
}
.velocity-icon-wrapper svg, .velocity-icon-wrapper img {
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.8));
  color: #fff !important;
}

/* ============================================================
   APPLY SHARED CARD STYLE TO EXISTING CLASSES
   ============================================================ */
   
/* "Why Businesses Trust Us" - .why-card */
.why { background: var(--dark-bg) !important; }

/* Grid Layout matching reference 2x2 */
.why-cards-wrapper { gap: 24px !important; }
.why-cards-block { display: grid !important; grid-template-columns: 1fr 1fr; gap: 24px !important; margin-bottom: 24px; }
@media (max-width: 767px) { .why-cards-block { grid-template-columns: 1fr; } }

.why-card {
  position: relative;
  background: var(--card-bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 28px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), inset 0 0 20px rgba(0,0,0,0.5), 0 15px 35px rgba(0,0,0,0.5) !important;
  overflow: hidden;
  backdrop-filter: blur(10px);
  padding: 40px 32px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  min-height: 280px !important;
  justify-content: center !important;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
.why-card .heading-style-h5 { font-size: 20px !important; line-height: 1.4 !important; }

.why-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: var(--card-glow); opacity: 0; transition: opacity 0.4s ease;
}
.why-card::after {
  content:''; position: absolute; bottom:-50px; left:50%; transform:translateX(-50%);
  width: 150px; height: 100px;
  background: radial-gradient(ellipse, rgba(74,148,255,0.25) 0%, transparent 70%);
  pointer-events: none; opacity: 0; transition: opacity 0.3s;
}
.why-card:hover {
  border-color: rgba(74,148,255,0.3) !important; transform: translateY(-4px) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 20px 50px rgba(0,0,0,0.6), 0 0 40px rgba(28,119,255,0.15) !important;
}
.why-card:hover::before, .why-card:hover::after { opacity: 1; }
.why-card-icon-block {
  background: linear-gradient(135deg, rgba(74,148,255,0.2) 0%, rgba(28,119,255,0.05) 100%) !important;
  border: 1px solid rgba(74,148,255,0.3) !important;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 0 15px rgba(28,119,255,0.2) !important;
  border-radius: 14px !important; padding: 12px !important; display: inline-flex !important;
}
.why-card-lottie svg path, .why-card-lottie svg rect, .why-card-lottie svg circle { fill: #fff !important; }

/* "What We Do Best" - .service-card (Pricing/Features style) */
.services-showcase { background: var(--dark-bg) !important; padding: 100px 0 !important; }
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 24px !important;
  align-items: center !important;
}

.service-icon {
  background: linear-gradient(180deg, rgba(74,148,255,0.15) 0%, rgba(28,119,255,0.05) 100%) !important;
  border: 1px solid rgba(74,148,255,0.3) !important;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.2), 0 10px 20px rgba(0,0,0,0.5), 0 0 20px rgba(28,119,255,0.3) !important;
  border-radius: 16px !important;
  padding: 16px !important;
  display: inline-flex !important;
  margin-bottom: 24px !important;
}
.service-icon svg { filter: drop-shadow(0 0 8px rgba(255,255,255,0.8)); color: #fff !important; width: 32px; height: 32px; }

.services-showcase .service-card {
  background: var(--card-bg) !important;
  border-radius: 28px !important;
  border: 1px solid var(--border) !important;
  padding: 32px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 40px rgba(0,0,0,0.4) !important;
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
.services-showcase .service-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  border-color: rgba(74,148,255,0.3) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 30px 60px rgba(0,0,0,0.6), 0 0 50px rgba(28,119,255,0.15) !important;
}
/* Features item row inside service card */
.service-features li { border-bottom: 1px solid rgba(255,255,255,0.03) !important; color: rgba(255,255,255,0.6) !important; font-size: 15px !important; padding: 12px 0 12px 26px !important;}
.service-features li::before { color: var(--blue-bright) !important; font-size: 16px !important; }
/* The Popular/Featured card (middle usually) */
.services-showcase .service-card.featured {
  background: linear-gradient(180deg, rgba(28,119,255,0.08) 0%, rgba(8, 12, 20, 0.8) 100%) !important;
  border: 1px solid rgba(74,148,255,0.4) !important;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.15), 0 25px 60px rgba(0,0,0,0.6), 0 0 60px rgba(28,119,255,0.2) !important;
}
.featured-badge {
  background: var(--blue) !important; color: #fff !important; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 10px !important; padding: 4px 14px !important; border-radius: 50px !important; box-shadow: 0 0 10px rgba(28,119,255,0.5);
}

/* "The Process" cards */
.process { background: var(--dark-bg) !important; padding: 100px 0 !important; }
.process-content-wrapper { padding-top: 40px !important; }
.process-bg-image {
  display: none !important;
}
.process-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important; gap: 24px !important; }

.process-card {
  background: var(--card-bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 15px 35px rgba(0,0,0,0.5) !important;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  padding: 32px !important;
}
.process-card:hover { border-color: rgba(74,148,255,0.3) !important; transform: translateY(-8px) !important; box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(28,119,255,0.1) !important; }
/* Darken and blend process image */
.process-card-image-block { margin-bottom: 24px !important; border-radius: 20px !important; overflow: hidden !important; background: radial-gradient(circle at center top, rgba(74,148,255,0.15) 0%, transparent 70%) !important; }
.process-card-image-block img {
  filter: sepia(100%) hue-rotate(190deg) saturate(300%) brightness(0.8) contrast(1.2) !important;
  opacity: 0.8 !important;
  mix-blend-mode: screen;
}

/* ============================================================
   WORKS / CASE STUDIES
   ============================================================ */
.works { background: var(--dark-bg) !important; padding: 100px 0 !important; }
.work-slider-card {
  background: var(--dark-mid) !important;
  border: 1px solid rgba(255,255,255,0.04) !important;
  border-radius: 28px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 30px 60px rgba(0,0,0,0.6) !important;
  padding: 32px !important;
}
.work-slider-image { border-radius: 20px !important; margin-bottom: 24px !important; }
.work-result-block {
  background: linear-gradient(135deg, rgba(74,148,255,0.1) 0%, rgba(28,119,255,0.02) 100%) !important;
  border: 1px solid rgba(74,148,255,0.15) !important;
  border-radius: 16px !important;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1) !important;
}
.work-result-percentage-text { color: var(--blue-bright) !important; text-shadow: 0 0 20px rgba(74,148,255,0.4) !important;}
.work-client-company-type-block > div { background: rgba(74,148,255,0.1) !important; color: #fff !important; border: 1px solid rgba(74,148,255,0.2) !important;}

/* ============================================================
   TESTIMONIALS (What Founders Are Saying)
   ============================================================ */
.review { background: var(--dark-mid) !important; }
.review-slider-item-card {
  background: var(--card-bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 24px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 40px rgba(0,0,0,0.4) !important;
}
.review-text-highlighted { color: var(--blue-bright) !important; }
.review-star-block img { filter: brightness(0) saturate(100%) invert(50%) sepia(80%) saturate(500%) hue-rotate(196deg) brightness(150%) !important; width: 14px; margin-right: 4px; }
.review-author-block {
  background: transparent !important; border: none !important; padding: 0 !important;
}
.review-author-image { border-radius: 50% !important; border: 2px solid rgba(255,255,255,0.1); }

/* ============================================================
   FAQ (Elegant Accordion)
   ============================================================ */
.faq { background: var(--dark-bg) !important; }
.faq-items-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item.w-dropdown {
  background: transparent !important;
  border: 1px solid var(--border) !important;
  border-radius: 16px !important;
  margin-bottom: 12px !important;
  transition: background 0.3s, border-color 0.3s !important;
}
.faq-item.w-dropdown:hover {
  background: rgba(255,255,255,0.02) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
.faq-question-block.w-dropdown-toggle { padding: 24px !important; }
.faq-icon { opacity: 0.5 !important; filter: invert(1) !important; } /* White minimal plus/minus */

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--dark-mid) !important; }
.contact-form-wrapper {
  background: var(--dark-bg) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  border-radius: 24px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 30px 60px rgba(0,0,0,0.6) !important;
}
.form-glow-block { background: var(--blue) !important; opacity: 0.15; filter: blur(60px) !important; }
.contact-form-input-field {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
}
.contact-form-input-field:focus {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(74,148,255,0.4) !important;
  box-shadow: 0 0 0 4px rgba(74,148,255,0.1) !important;
}

/* ============================================================
   TRUSTED BY - CLIENT LOGO MARQUEE
   ============================================================ */
.trusted-by-section {
  padding: 80px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.trusted-by-header {
  text-align: center;
  margin-bottom: 48px;
}

.trusted-by-label {
  font-family: 'Aeonik', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  padding: 8px 24px;
  border-radius: 50px;
}

.trusted-by-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.trusted-by-track {
  display: flex;
  width: max-content;
  animation: trusted-scroll 30s linear infinite;
}

.trusted-by-track:hover {
  animation-play-state: paused;
}

@keyframes trusted-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trusted-by-content {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 0 32px;
}

.trusted-by-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.trusted-by-item:hover {
  transform: scale(1.1);
}

.trusted-by-item img {
  height: 100%;
  width: auto;
  min-width: 100px;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.3) grayscale(1);
  transition: all 0.4s ease;
}

.trusted-by-item:hover img {
  filter: brightness(1) invert(0) opacity(1) grayscale(0);
}

.trusted-by-dot {
  width: 6px;
  height: 6px;
  background: var(--blue-bright);
  border-radius: 50%;
  opacity: 0.2;
  box-shadow: 0 0 10px var(--blue-bright);
}


/* ============================================================
   FOOTER (Massive Bottom Horizon Glow)
   ============================================================ */
.footer {
  background-color: #020305 !important;
  border-top: 1px solid rgba(255,255,255,0.03) !important;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,148,255,0.5), transparent);
  box-shadow: 0 0 50px 10px rgba(28,119,255,0.3);
}
.footer-links-block h4 { color: rgba(255,255,255,0.3) !important; font-size: 10px !important; }

/* Remove default overrides that conflict */
.section-title-block::before { display: none !important; }
body > * { outline: none !important; }

/* ============================================================
   ELEGANT WHY BUSINESSES TRUST
   ============================================================ */
.elegant-subscription-row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin-top: 48px;
  width: 100%;
}
@media (max-width: 1024px) {
  .elegant-subscription-row { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 767px) {
  .elegant-subscription-row { grid-template-columns: 1fr !important; }
}

.sub-feature-card {
  padding: 40px 32px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  justify-content: space-between !important;
  min-height: 220px !important;
  background: rgba(255,255,255,0.02) !important;
}

.sub-feature-card .sub-number {
  font-family: 'AeonikBold', sans-serif !important;
  font-size: 48px !important;
  line-height: 1 !important;
  color: transparent !important;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2) !important;
  margin-bottom: 32px !important;
  transition: all 0.4s ease !important;
}
.sub-feature-card:hover .sub-number {
  -webkit-text-stroke: 1px var(--blue-bright) !important;
  text-shadow: 0 0 20px rgba(28,119,255,0.4) !important;
}

.sub-feature-card .sub-title {
  font-family: 'SeasonSerif', serif !important;
  font-size: 24px !important;
  line-height: 1.3 !important;
  color: #fff !important;
  margin: 0 !important;
}

/* ============================================================
   ELEGANT PRICING / WHAT WE DO BEST
   ============================================================ */
.elegant-pricing-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin-top: 40px;
}
@media (max-width: 1200px) {
  .elegant-pricing-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 32px !important; }
}
@media (max-width: 767px) {
  .elegant-pricing-grid { grid-template-columns: 1fr !important; }
}

.pricing-card {
  padding: 40px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  background: rgba(3,5,9,0.5) !important;
}

.pricing-card.featured-pricing {
  border-color: rgba(74,148,255,0.4) !important;
  box-shadow: inset 0 1px 0 rgba(74,148,255,0.2), 0 20px 40px rgba(0,0,0,0.6), 0 0 40px rgba(28,119,255,0.1) !important;
  transform: scale(1.02);
  z-index: 2;
  background: rgba(3,5,9,1) !important;
}
@media (max-width: 1200px) {
  .pricing-card.featured-pricing { transform: none; }
}

.featured-pricing-badge {
  background: var(--blue-bright) !important;
  color: var(--dark-bg) !important;
  font-family: 'AeonikBold', sans-serif !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  margin-bottom: 24px !important;
  align-self: flex-start;
}

.pricing-name {
  font-family: 'SeasonSerif', serif !important;
  font-size: 32px !important;
  color: #fff !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

.pricing-desc {
  font-family: 'Aeonik', sans-serif !important;
  font-size: 15px !important;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.5 !important;
  margin-bottom: 32px !important;
  min-height: 45px;
}
@media (max-width: 1200px) {
  .pricing-desc { min-height: auto; }
}

.pricing-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 40px 0 !important;
  width: 100%;
}

.pricing-features li {
  font-family: 'Aeonik', sans-serif !important;
  font-size: 15px !important;
  color: #fff !important;
  padding-left: 28px !important;
  position: relative !important;
  margin-bottom: 16px !important;
  line-height: 1.4 !important;
  opacity: 0.9;
}

.pricing-features li::before {
  content: '✓' !important;
  color: var(--blue-bright) !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-size: 16px !important;
  font-weight: bold;
}

/* ============================================================
   ELEGANT PROCESS PIPELINE (3-Steps)
   ============================================================ */
.process-timeline-wrapper {
  position: relative;
  margin-top: 64px;
}

/* The connecting line */
.timeline-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(28,119,255,0) 0%, rgba(28,119,255,0.5) 50%, rgba(28,119,255,0) 100%);
  transform: translateY(-50%);
  z-index: 0;
}
@media (max-width: 991px) {
  .timeline-track { display: none; }
}

.process-steps-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .process-steps-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
}

.process-step-card {
  padding: 48px 40px !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: rgba(3,5,9,0.9) !important;
}

/* Glowing orbs inside the cards */
.step-glow-orb {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(28,119,255,0.3) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.step-orb-alt {
  background: radial-gradient(circle, rgba(126,28,255,0.2) 0%, transparent 60%);
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(28,119,255,0.05);
  border: 1px solid rgba(74,148,255,0.3);
  font-family: 'AeonikBold', sans-serif;
  font-size: 24px;
  color: var(--blue-bright);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(28,119,255,0.1) inset;
}

.step-title {
  font-family: 'SeasonSerif', serif !important;
  font-size: 28px !important;
  color: #fff !important;
  margin-bottom: 16px !important;
  margin-top: 0 !important;
}

.step-desc {
  font-family: 'Aeonik', sans-serif !important;
  font-size: 16px !important;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* ============================================================
   ELEGANT CONTACT SECTION
   ============================================================ */
.elegant-contact-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.5fr !important;
  gap: 32px !important;
}
@media (max-width: 991px) {
  .elegant-contact-grid { grid-template-columns: 1fr !important; }
}

.contact-info-card, .contact-form-card {
  padding: 48px !important;
  background: rgba(3,5,9,0.5) !important;
}
@media (max-width: 767px) {
  .contact-info-card, .contact-form-card { padding: 32px !important; }
}

.contact-card-title {
  font-family: 'SeasonSerif', serif !important;
  font-size: 32px !important;
  color: #fff !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

.contact-card-desc {
  font-family: 'Aeonik', sans-serif !important;
  font-size: 16px !important;
  color: rgba(255,255,255,0.7) !important;
  margin-bottom: 40px !important;
  line-height: 1.6;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-method-item:last-child { margin-bottom: 0; }

.method-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(28,119,255,0.1);
  border: 1px solid rgba(74,148,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-bright);
}

.method-details h5 {
  font-family: 'SeasonSerif', serif !important;
  font-size: 18px !important;
  color: #fff !important;
  margin: 0 0 4px 0 !important;
}
.method-details .contact-link {
  font-family: 'Aeonik', sans-serif !important;
  font-size: 15px !important;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
.method-details .contact-link:hover {
  color: var(--blue-bright) !important;
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-family: 'AeonikBold', sans-serif !important;
  font-size: 14px !important;
  color: #fff !important;
  margin-bottom: 8px;
}
.elegant-input {
  width: 100%;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  font-family: 'Aeonik', sans-serif !important;
  font-size: 16px !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
}
.elegant-input:focus {
  outline: none !important;
  border-color: var(--blue-bright) !important;
  background: rgba(255,255,255,0.05) !important;
  box-shadow: 0 0 15px rgba(28,119,255,0.2) inset !important;
}
.elegant-input::placeholder {
  color: rgba(255,255,255,0.3) !important;
}
.elegant-textarea {
  resize: vertical;
  min-height: 140px;
}


/* ============================================================
   ELEGANT FAQ SECTION
   ============================================================ */
.elegant-faq-split-wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1.5fr !important;
  gap: 64px !important;
  align-items: flex-start !important; /* Prevents jumping! */
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .elegant-faq-split-wrapper {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

.faq-left-column {
  position: sticky;
  top: 120px;
}

.elegant-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: rgba(3,5,9,0.6) !important;
  margin: 0 !important;
}
.faq-card[open] {
  border-color: rgba(74,148,255,0.4) !important;
  box-shadow: inset 0 1px 0 rgba(74,148,255,0.2), 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(28,119,255,0.1) !important;
}

.faq-summary {
  padding: 24px 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  cursor: pointer !important;
  list-style: none !important;
}
.faq-summary::-webkit-details-marker { display: none; } /* Safari */

.faq-question {
  font-family: 'SeasonSerif', serif !important;
  font-size: 20px !important;
  color: #fff !important;
  padding-right: 24px;
}

.faq-icon-wrap {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-bright);
  transition: transform 0.4s ease, background 0.3s ease;
  flex-shrink: 0;
}
.faq-card[open] .faq-icon-wrap {
  transform: rotate(180deg);
  background: var(--blue-bright);
  color: #000;
}

.faq-answer {
  padding: 0 32px 32px 32px !important;
  font-family: 'Aeonik', sans-serif !important;
  font-size: 16px !important;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.6 !important;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 16px;
  padding-top: 24px !important;
}
.faq-answer p { margin: 0 !important; }

/* Small tweaks for the footer */
.footer-top-content-block {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 60px;
}

/* ============================================================
   ELEGANT FOOTER
   ============================================================ */
.elegant-footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr !important;
  gap: 64px !important;
  margin-bottom: 64px !important;
}
@media (max-width: 991px) {
  .elegant-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }
}

.footer-heading {
  font-family: 'AeonikBold', sans-serif !important;
  font-size: 18px !important;
  color: #fff !important;
  margin-bottom: 24px !important;
  margin-top: 0 !important;
}

.footer-link-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.footer-link-list li {
  margin-bottom: 16px;
}
.footer-link-list li:last-child {
  margin-bottom: 0;
}

.footer-hover-link {
  font-family: 'Aeonik', sans-serif !important;
  font-size: 15px !important;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none !important;
  transition: color 0.3s ease, padding-left 0.3s ease !important;
  display: inline-block;
}
.footer-hover-link:hover {
  color: var(--blue-bright) !important;
  padding-left: 6px !important;
}

.footer-social-flex {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none !important;
}
.social-icon-btn:hover {
  background: var(--blue-bright);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(28,119,255,0.3);
}

.footer-bottom-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-top: 32px !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}
@media (max-width: 767px) {
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 24px;
  }
}

.copyright-text {
  font-family: 'Aeonik', sans-serif !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.4) !important;
  margin: 0 !important;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Aeonik', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25D366; /* green operating status */
  box-shadow: 0 0 10px rgba(37,211,102,0.5);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 6px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
