/* ═══════════════════════════════════════════════════════════════════
   PIVOT AIDE — ENTERPRISE REDESIGN
   Visual style: Premium B2B SaaS / Synthevo-inspired layout
   Colors: 7-step monochrome steel-blue + brand yellow #D8B74A
   Fonts: Inter (geometric sans-serif) + Instrument Serif italic (accent)
   Typography: Enterprise-grade hierarchy — trust, authority, precision
═══════════════════════════════════════════════════════════════════ */

/* ── Fonts: Inter (all weights) + Instrument Serif (italic accent only) ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400&family=Instrument+Serif:ital@1&family=Playfair+Display:ital,wght@0,400..700;1,400..700&display=swap');

@property --zoom {
  syntax: '<number>';
  inherits: true;
  initial-value: 1.02;
}

@keyframes slowZoom {
  0% {
    --zoom: 1.02;
  }

  100% {
    --zoom: 1.05;
  }
}


/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ════════════════════════════
   DESIGN TOKENS
════════════════════════════ */
:root {
  /* 7-step steel-blue monochrome */
  --steel-100: #EAF1FB;
  --steel-200: #ACCCF2;
  --steel-300: #5CA8E8;
  --steel-400: #4682B4;
  --steel-500: #315D83;
  --steel-600: #1D3B55;
  --steel-700: #0B1D39;

  /* Derived surfaces */
  --bg-page: var(--steel-700);
  --bg-section: var(--steel-700);
  --bg-card: rgba(29, 59, 85, 0.75);
  --bg-card-hover: rgba(29, 59, 85, 0.95);
  --border: var(--steel-400);
  --border-light: rgba(70, 130, 180, 0.22);

  /* Single accent */
  --yellow: #D8B74A;
  --yellow-dim: rgba(216, 183, 74, 0.12);
  --yellow-glow: rgba(216, 183, 74, 0.2);

  /* Text */
  --text-primary: var(--steel-100);
  --text-secondary: var(--steel-200);
  --text-muted: var(--steel-300);
  --text-faint: var(--steel-500);

  /* Status */
  --green: #22D07A;
  --red: #FF4D6D;

  /* Spacing */
  --section-pad: 120px 0;
  --card-radius: 20px;
  --pill-radius: 999px;

  /* ── Typography Foundations ── */
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  /* ── Type Scale (fluid, responsive) ── */
  --text-display: clamp(52px, 8.5vw, 96px);
  /* Hero H1 — max visual punch     */
  --text-h1: clamp(40px, 5.5vw, 72px);
  /* Page-level H1                  */
  --text-h2: clamp(28px, 3.8vw, 48px);
  /* Section headings               */
  --text-h3: clamp(20px, 2.5vw, 26px);
  /* Card/feature titles            */
  --text-h4: clamp(16px, 2vw, 20px);
  /* Sub-headings, step titles      */
  --text-lg: clamp(17px, 1.8vw, 19px);
  /* Body large / lead paragraphs   */
  --text-base: 16px;
  /* Default body copy              */
  --text-sm: 14px;
  /* Secondary descriptions         */
  --text-xs: 13px;
  /* Card descriptions, hints       */
  --text-2xs: 12px;
  /* Small labels, table cells      */
  --text-caps: 11px;
  /* All-caps badges, tags          */

  /* ── Font Weights ── */
  --fw-black: 900;
  /* Display headlines only      */
  --fw-extrabold: 800;
  /* H1, H2 section headings     */
  --fw-bold: 700;
  /* H3, card titles, buttons    */
  --fw-semibold: 600;
  /* H4, nav, emphasis           */
  --fw-medium: 500;
  /* UI labels, table headers    */
  --fw-regular: 400;
  /* Body copy, descriptions     */

  /* ── Line Heights ── */
  --lh-display: 1.0;
  /* Tight for giant display type */
  --lh-heading: 1.12;
  /* Comfortable heading spacing  */
  --lh-body: 1.65;
  /* Optimal paragraph readability */
  --lh-relaxed: 1.78;
  /* Long-form, blockquotes       */
  --lh-tight: 1.3;
  /* Card titles, short labels    */

  /* ── Letter Spacing ── */
  --ls-display: -0.04em;
  /* Display / H1 */
  --ls-heading: -0.03em;
  /* H2, section titles */
  --ls-subhead: -0.02em;
  /* H3, card titles */
  --ls-body: 0em;
  /* Body — no tracking */
  --ls-caps: 0.12em;
  /* CAPS labels, tags */
  --ls-wide: 0.06em;
  /* Nav links, eyebrows */
}

/* ════════════════════════════
   BASE
════════════════════════════ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* Enable optical sizing for Inter's variable-font metrics */
  font-optical-sizing: auto;
}

body {
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  background: var(--bg-page);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── Semantic heading defaults (inter-compatible) ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-ui);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-heading);
  color: var(--text-primary);
  letter-spacing: var(--ls-heading);
}

h1 {
  font-size: var(--text-h1);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-display);
}

h2 {
  font-size: var(--text-h2);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-heading);
}

h3 {
  font-size: var(--text-h3);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-subhead);
}

h4 {
  font-size: var(--text-h4);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-subhead);
}

p {
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--text-secondary);
}

a {
  color: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--steel-700);
}

::-webkit-scrollbar-thumb {
  background: var(--steel-500);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--steel-400);
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Global utility text classes ── */
.gold-text {
  color: var(--yellow);
}

.text-primary {
  color: var(--text-primary);
}

.text-muted {
  color: var(--text-muted);
}

/* ── Accent serif italic: ONE word per major heading only ── */
.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1em;
  font-weight: var(--fw-regular);
  color: var(--yellow);
  letter-spacing: -0.01em;
  line-height: inherit;
  display: inline;

  background: linear-gradient(90deg, #C9A84C 0%, #F5D98B 45%, #FAE9A0 50%, #F5D98B 55%, #C9A84C 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-position: 100% 0;
}

/* Cinematic Line Reveal */
.line-wrap {
  display: block;
  overflow: hidden;
}

.line-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  filter: blur(8px);
  will-change: transform, opacity, filter;
}

/* Metallic shimmer effect */
em.serif-italic.shimmer {
  animation: shimmer 1.2s ease-in-out 1 forwards;
}

@keyframes shimmer {
  from {
    background-position: 100% 0;
  }

  to {
    background-position: -100% 0;
  }
}

.val-green {
  color: var(--green);
}

.val-red {
  color: var(--red);
}

/* Grain texture overlay */
.grain-overlay {
  position: relative;
}

.grain-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 0;
}

/* ── Animate on scroll ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════
   SECTION SHARED
════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-caps);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--yellow-dim);
  border: 1px solid rgba(234, 228, 47, 0.22);
  border-radius: var(--pill-radius);
  padding: 5px 14px;
  margin-bottom: 20px;
}

.section-tag-dot {
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--yellow);
}

.section-title {
  font-size: var(--text-h2);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: var(--text-lg);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ════════════════════════════
   BUTTONS
════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--steel-100);
  color: var(--steel-700);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--pill-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;

  transform-style: preserve-3d;
  will-change: transform;
  transform: translateY(var(--ty-btn, 0px)) scale(var(--s-btn, 1)) rotateX(calc(var(--ry, 0) * -12deg)) rotateY(calc(var(--rx, 0) * 12deg)) translateZ(var(--tz, 0px));
  --ty-btn: 0px;
  --s-btn: 1;
  --tz: 0px;
  box-shadow: 0 0 0 rgba(250, 200, 80, 0);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease;
}

.btn-primary:hover {
  background: #ffffff;
  --ty-btn: -3px;
  --s-btn: 1.04;
  --tz: 4px;
  box-shadow: 0 8px 30px rgba(250, 200, 80, 0.35), 0 0 0 1px rgba(250, 200, 80, 0.2);
}

.btn-primary:active {
  --ty-btn: -1px;
  --s-btn: 1.01;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse, rgba(250, 200, 80, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary.btn-lg {
  padding: 16px 34px;
  font-size: var(--text-base);
}

.btn-primary span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary:hover span {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  padding: 13px 26px;
  border-radius: var(--pill-radius);
  border: 1px solid var(--border-light);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;

  transform-style: preserve-3d;
  will-change: transform;
  transform: translateY(var(--ty-btn, 0px)) scale(var(--s-btn, 1)) rotateX(calc(var(--ry, 0) * -12deg)) rotateY(calc(var(--rx, 0) * 12deg)) translateZ(var(--tz, 0px));
  --ty-btn: 0px;
  --s-btn: 1;
  --tz: 0px;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.25s ease, background-color 0.25s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(107, 139, 173, 0.4);
  --ty-btn: -4px;
  --s-btn: 1.015;
  --tz: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.btn-ghost.btn-lg {
  padding: 15px 32px;
  font-size: var(--text-base);
}

.btn-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ghost:hover .btn-play-icon {
  transform: scale(1.15) translate(2px, 0);
  background: var(--yellow);
  color: #0B1D39;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px) saturate(100%);
  -webkit-backdrop-filter: blur(0px) saturate(100%);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  box-shadow: 0 1px 0 rgba(11, 29, 57, 0.08) !important;
  border-bottom: 1px solid rgba(11, 29, 57, 0.08) !important;
}

.navbar.scrolled .nav-link {
  color: rgba(11, 29, 57, 0.65) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: #0B1D39 !important;
}

.navbar.scrolled .logo-wordmark {
  color: #0B1D39 !important;
}

.navbar.scrolled .btn-ghost-nav {
  color: rgba(11, 29, 57, 0.75) !important;
}

.navbar.scrolled .btn-ghost-nav:hover {
  background: rgba(11, 29, 57, 0.05) !important;
  color: #0B1D39 !important;
}

.navbar.scrolled .btn-primary-nav {
  background: #0B1D39 !important;
  color: #FFFFFF !important;
}

.navbar.scrolled .btn-primary-nav:hover {
  background: #1D3B55 !important;
}

.navbar.scrolled .mobile-menu-toggle span {
  background: #0B1D39 !important;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
}

.logo-wordmark {
  font-size: 19px;
  font-weight: var(--fw-extrabold);
  color: var(--text-primary);
  letter-spacing: var(--ls-subhead);
}

.logo-accent {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 10px;
  position: relative;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: no-preference) {
  .navbar .nav-link {
    opacity: 0;
    transform: translateY(-12px);
    filter: blur(3px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.5s cubic-bezier(0.22, 1, 0.36, 1),
      color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
      background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .navbar.loaded .nav-link {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  .navbar.loaded .nav-link:nth-child(1) {
    transition-delay: 80ms;
  }

  .navbar.loaded .nav-link:nth-child(2) {
    transition-delay: 160ms;
  }

  .navbar.loaded .nav-link:nth-child(3) {
    transition-delay: 240ms;
  }

  .navbar.loaded .nav-link:nth-child(4) {
    transition-delay: 320ms;
  }

  .navbar.loaded .nav-link:nth-child(5) {
    transition-delay: 400ms;
  }

  .navbar.loaded .nav-link:nth-child(6) {
    transition-delay: 480ms;
  }
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-ghost-nav {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.btn-ghost-nav:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-primary-nav {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--steel-700);
  text-decoration: none;
  padding: 9px 22px;
  border-radius: var(--pill-radius);
  background: var(--steel-100);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-primary-nav:hover {
  background: #ffffff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(234, 228, 47, 0.25), 0 0 12px rgba(255, 255, 255, 0.15);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-link {
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  transition: all 0.2s;
}

.mobile-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-cta {
  margin-top: 12px;
  text-align: center;
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
  background: var(--bg-page);
}

/* Canvas frame animation — improved quality & alignment */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Glass reflection sweep on hero containers */
.hero-video-wrap::before,
.page-hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 60px;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: translateX(-100px) rotate(25deg);
  animation: sweep 15s ease-in-out 2s infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes sweep {
  0% {
    transform: translateX(-100px) rotate(25deg);
  }

  8% {
    transform: translateX(calc(100% + 100px)) rotate(25deg);
  }

  100% {
    transform: translateX(calc(100% + 100px)) rotate(25deg);
  }
}

.hero-video-canvas {
  width: 104%;
  height: 104%;
  left: -2%;
  top: -2%;
  position: absolute;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform-origin: center center;
  animation: slowZoom 20s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.02) brightness(0.95);
  will-change: transform;
  transform: scale(var(--zoom, 1.02)) translate(var(--tx, 0px), var(--ty, 0px)) translateY(var(--sy, 0px));
}

.hero-video-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%,
      transparent 15%, rgba(11, 28, 43, 0.35) 55%, rgba(11, 28, 43, 0.88) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 43, 0.38);
  pointer-events: none;
  z-index: 2;
}

.hero-video-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
      transparent 0%,
      transparent 40%,
      rgba(255, 255, 255, 0.03) 48%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(255, 255, 255, 0.03) 52%,
      transparent 60%,
      transparent 100%);
  background-size: 200% 100%;
  animation: glassSweep 15s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  pointer-events: none;
}

@keyframes glassSweep {
  0% {
    background-position: 150% 0;
  }

  100% {
    background-position: -50% 0;
  }
}

/* Loading skeleton */
.hero-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.loading-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.loading-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 50, 84, 0.5), transparent);
  top: -150px;
  left: -100px;
  animation: loadingOrbFloat 14s ease-in-out infinite;
}

.loading-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 228, 47, 0.06), transparent);
  top: -80px;
  right: -100px;
  animation: loadingOrbFloat 18s ease-in-out infinite reverse;
  animation-delay: -3s;
}

.loading-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 33, 58, 0.4), transparent);
  bottom: -80px;
  left: 35%;
  animation: loadingOrbFloat 16s ease-in-out infinite;
  animation-delay: -6s;
}

.loading-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(107, 139, 173, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(107, 139, 173, 0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 15%, transparent 80%);
}

.hero-loading.hidden {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

@keyframes loadingOrbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(45px, -35px) scale(1.06);
  }

  66% {
    transform: translate(-30px, 25px) scale(0.94);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Entry Animation Keyframes */
@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUpBlur {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroScaleY {
  from {
    opacity: 0;
    transform: scaleY(0);
  }

  to {
    opacity: 0.5;
    transform: scaleY(1);
  }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 820px;
  width: 100%;
  padding: 0 16px;
  transform: translateY(calc(var(--p, 0) * -80px));
  opacity: calc(1 - var(--p, 0) * 1.8);
  will-change: transform, opacity;
}

.page-hero-content {
  transform: translateY(calc(var(--p, 0) * -80px));
  opacity: calc(1 - var(--p, 0) * 1.8);
  will-change: transform, opacity;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-caps);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(-20px);
  animation: heroFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.25s;
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--yellow);
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 6px var(--yellow);
  }

  50% {
    box-shadow: 0 0 14px var(--yellow), 0 0 28px rgba(234, 228, 47, 0.4);
  }
}

.hero-headline {
  font-family: var(--font-ui);
  font-size: var(--text-display);
  font-weight: var(--fw-black);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: inherit;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  animation: heroLineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-headline .hero-line:nth-of-type(1) {
  animation-delay: 0.35s;
}

.hero-headline .hero-line:nth-of-type(2) {
  animation-delay: 0.6s;
}

@keyframes heroLineReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-word {
  display: inline-block;
}

.hero-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1em;
  font-weight: var(--fw-regular);
  letter-spacing: -0.02em;
  line-height: inherit;
  position: relative;
  display: inline-block;
  background: linear-gradient(to right,
      var(--yellow) 0%,
      var(--yellow) 35%,
      #ffffff 50%,
      var(--yellow) 65%,
      var(--yellow) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerOnce 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 1.1s;
}

@keyframes shimmerOnce {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.hero-sub {
  font-size: var(--text-lg);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
  margin-bottom: 42px;
  letter-spacing: var(--ls-body);
  line-height: var(--lh-relaxed);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.85s;
}

.hero-sub-standout {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 500;
  font-style: italic;
  color: var(--yellow);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 42px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.95s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.05s;
}

/* ── Hero Trust Badges Row ── */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.hero-trust-row .trust-item:nth-child(1) {
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.95s;
}

.hero-trust-row .trust-sep:nth-child(2) {
  opacity: 0;
  transform: scaleY(0);
  animation: heroScaleY 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.05s;
}

.hero-trust-row .trust-item:nth-child(3) {
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.15s;
}

.hero-trust-row .trust-sep:nth-child(4) {
  opacity: 0;
  transform: scaleY(0);
  animation: heroScaleY 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.25s;
}

.hero-trust-row .trust-item:nth-child(5) {
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.35s;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.02);
  border-color: rgba(234, 228, 47, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 10px rgba(234, 228, 47, 0.08);
}

.trust-item:hover .trust-laurel svg {
  transform: rotate(12deg);
}

.trust-laurel {
  flex-shrink: 0;
  opacity: 0.88;
}

.trust-laurel svg {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.trust-copy {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.trust-copy strong {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  line-height: var(--lh-tight);
}

.trust-copy span {
  font-size: var(--text-caps);
  color: var(--text-muted);
  letter-spacing: var(--ls-wide);
}

.trust-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── Section Ambient Glows ── */
.section-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
}

.sg-left {
  background: var(--yellow);
  top: -100px;
  left: -100px;
}

.sg-right {
  background: var(--yellow);
  top: -100px;
  right: -100px;
}

.sg-center {
  background: var(--steel-300);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
}

/* Sparkles */
.sparkle {
  position: absolute;
  color: rgba(234, 228, 47, 0.3);
  font-size: 22px;
  pointer-events: none;
  z-index: 2;
  animation: sparkleAnim linear infinite;
  filter: drop-shadow(0 0 6px rgba(234, 228, 47, 0.4));
}

.sp-1 {
  bottom: 18%;
  right: 7%;
  font-size: 28px;
  animation-duration: 3.2s;
}

.sp-2 {
  top: 28%;
  left: 8%;
  font-size: 16px;
  animation-duration: 4.1s;
  animation-delay: -1.5s;
}

.sp-3 {
  top: 62%;
  right: 14%;
  font-size: 12px;
  animation-duration: 5s;
  animation-delay: -3s;
}

@keyframes sparkleAnim {

  0%,
  100% {
    opacity: 0.25;
    transform: scale(1) rotate(0deg);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.18) rotate(22deg);
  }
}

/* ════════════════════════════
   MARQUEE TRUST STRIP
════════════════════════════ */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--steel-700);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--steel-700), transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, var(--steel-700), transparent);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

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

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  white-space: nowrap;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
  letter-spacing: var(--ls-wide);
}

.marquee-item strong {
  color: var(--text-secondary);
  font-weight: var(--fw-bold);
}

.marquee-sep {
  width: 4px;
  height: 4px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
}

.marquee-icon {
  font-size: 16px;
  opacity: 0.6;
}

/* ════════════════════════════
   SERVICES
════════════════════════════ */
.services-section {
  position: relative;
  padding: var(--section-pad);
  background: var(--bg-page);
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 30px 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.service-card.service-featured {
  border-color: rgba(234, 228, 47, 0.28);
  background: rgba(234, 228, 47, 0.04);
}

.service-card.service-featured:hover {
  border-color: rgba(234, 228, 47, 0.5);
  box-shadow: 0 20px 50px rgba(234, 228, 47, 0.1);
}

.sc-featured-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--yellow-dim);
  border: 1px solid rgba(234, 228, 47, 0.25);
  border-radius: var(--pill-radius);
  padding: 3px 10px;
  margin-bottom: 14px;
}

.sc-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(234, 228, 47, 0.08);
  border: 1px solid rgba(234, 228, 47, 0.15);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s;
}

.service-card:hover .sc-icon-wrap {
  background: rgba(234, 228, 47, 0.14);
  border-color: rgba(234, 228, 47, 0.3);
  box-shadow: 0 0 18px rgba(234, 228, 47, 0.12);
}

.sc-title {
  font-size: var(--text-h4);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 9px;
  letter-spacing: var(--ls-subhead);
}

.sc-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--lh-body);
  margin-bottom: 16px;
}

.sc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.sc-features li {
  font-size: var(--text-2xs);
  color: var(--text-muted);
  padding-left: 15px;
  position: relative;
  line-height: var(--lh-body);
  transition: color 0.3s ease;
}

.sc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.65;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .sc-features li {
  color: var(--text-secondary);
}

.service-card:hover .sc-features li::before {
  transform: scale(1.4);
  opacity: 1;
  box-shadow: 0 0 6px var(--yellow);
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--yellow);
  text-decoration: none;
  transition: gap 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sc-link span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sc-link:hover {
  gap: 8px;
}

.sc-link:hover span {
  transform: translateX(4px);
}

.service-card:hover .sc-link {
  gap: 8px;
}

.service-card:hover .sc-link span {
  transform: translateX(4px);
}

.sc-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(234, 228, 47, 0.1), transparent);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

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

/* ════════════════════════════
   THE FIVE-STAGE SUCCESS PROCESS
════════════════════════════ */
.process-section {
  position: relative;
  padding: var(--section-pad);
  background: var(--bg-page);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.process-timeline {
  position: relative;
  margin-top: 40px;
}

/* Horizontal connector line on desktop */
.process-line {
  position: absolute;
  top: 18px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(92, 168, 232, 0.08);
  z-index: 1;
  overflow: hidden;
}

.process-line-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--steel-300) 0%, var(--yellow) 100%);
  box-shadow: 0 0 10px var(--yellow-glow);
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

/* Diagram interactive hotspots */
.diagram-hotspot {
  position: absolute;
  width: 22px;
  height: 22px;
  background: rgba(11, 28, 43, 0.9);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.diagram-hotspot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(92, 168, 232, 0.4);
  border-radius: 50%;
  opacity: 0.6;
  animation: hotspotPulse 2s infinite ease-out;
}

.diagram-hotspot.active {
  border-color: var(--yellow);
  background: var(--yellow);
  box-shadow: 0 0 25px rgba(234, 228, 47, 0.8);
}

.diagram-hotspot.active::after {
  border-color: var(--yellow);
  animation: hotspotPulseActive 1.6s infinite ease-out;
}

.diagram-hotspot:hover {
  transform: translate(-50%, -50%) scale(1.35);
  border-color: var(--yellow);
  background: var(--yellow-dim);
}

@keyframes hotspotPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes hotspotPulseActive {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }

  100% {
    transform: scale(1.85);
    opacity: 0;
  }
}

.hotspot-ring {
  position: absolute;
  inset: -2px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: scale(1);
}

.diagram-hotspot.active .hotspot-ring.ring-1 {
  animation: radarPulse 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.diagram-hotspot.active .hotspot-ring.ring-2 {
  animation: radarPulse 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-delay: 0.6s;
}

@keyframes radarPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .diagram-hotspot {
    width: 14px;
    height: 14px;
    border-width: 1.5px;
  }

  .diagram-hotspot::after {
    inset: -4px;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ps-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.ps-dot {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  position: relative;
}

.ps-dot span {
  display: block;
  transition: color 0.3s ease;
}

/* Dot turns yellow on hover of either the dot or the whole step */
.ps-dot:hover,
.process-step:hover .ps-dot {
  border-color: var(--yellow);
  background: var(--yellow-dim);
  color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(234, 228, 47, 0.12), 0 0 20px rgba(234, 228, 47, 0.3);
  transform: scale(1.15);
}

.ps-dot.ps-dot-active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #0a0900;
  box-shadow: 0 0 0 4px rgba(234, 228, 47, 0.18), 0 0 25px rgba(234, 228, 47, 0.45);
}

.ps-line {
  display: none;
  /* Hide vertical line on desktop */
}

.ps-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;

  opacity: 0;
  transform: translateX(60px);
  transition: transform 0.35s ease, opacity 0.35s ease, border-color 0.3s ease, background 0.3s ease;
}

.ps-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(234, 228, 47, 0.25);
  transform: translateY(-6px) translateX(0) !important;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(234, 228, 47, 0.06);
}

/* Icon brightens on card hover */
.ps-card:hover .ps-icon {
  background: rgba(234, 228, 47, 0.15);
  border-color: rgba(234, 228, 47, 0.4);
  box-shadow: 0 0 18px rgba(234, 228, 47, 0.18);
}

.ps-card.visible-active {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, border-color 0.3s ease, background 0.3s ease;
}

.ps-card.outgoing {
  opacity: 0;
  transform: translateX(-60px) !important;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.ps-card.ps-card-active {
  border-color: rgba(234, 228, 47, 0.32);
  background: rgba(234, 228, 47, 0.03);
}

.ps-icon {
  width: 44px;
  height: 44px;
  background: rgba(234, 228, 47, 0.08);
  border: 1px solid rgba(234, 228, 47, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ps-title {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: var(--ls-subhead);
}

.ps-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ════════════════════════════
   INDUSTRIES WE SUPPORT
════════════════════════════ */
.industries-section {
  position: relative;
  padding: var(--section-pad);
  background: var(--steel-700);
  border-top: 1px solid var(--border);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ind-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 28px 24px;
  transition: border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

/* Center-expanding bottom accent line on hover */
.ind-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
  z-index: 3;
}

.ind-card:hover::before {
  transform: scaleX(1);
}

.ind-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(234, 228, 47, 0.25);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 15px rgba(234, 228, 47, 0.04);
}

.ind-icon {
  width: 46px;
  height: 46px;
  background: rgba(234, 228, 47, 0.07);
  border: 1px solid rgba(234, 228, 47, 0.15);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ind-icon svg {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ind-card:hover .ind-icon {
  background: var(--yellow-dim);
  border-color: var(--yellow);
  box-shadow: 0 0 15px rgba(234, 228, 47, 0.25);
  transform: scale(1.08) rotate(-3deg);
}

.ind-card:hover .ind-icon svg {
  transform: scale(1.12);
  color: var(--yellow) !important;
}

.ind-title {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin: 0;
  letter-spacing: var(--ls-subhead);
}

.ind-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Media Queries for Process Section & Industries Grid */
@media (max-width: 992px) {
  .process-timeline {
    padding-left: 20px;
  }

  .process-line {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }

  .ps-connector {
    margin-bottom: 0;
    height: 100%;
  }

  .ps-dot {
    margin-bottom: 0;
  }

  .ps-line {
    display: block;
    width: 2px;
    background: rgba(107, 139, 173, 0.15);
    flex-grow: 1;
    margin-top: 8px;
    height: calc(100% - 28px);
    position: absolute;
    top: 36px;
  }

  .ps-card {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding: 24px;
  }

  .ps-icon {
    margin-bottom: 12px;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════
   WHY PIVOT AIDE
════════════════════════════ */
.why-section {
  position: relative;
  padding: var(--section-pad);
  background: var(--steel-700);
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-copy .section-title {
  text-align: left;
}

.why-copy .section-subtitle {
  text-align: left;
}

.why-copy .section-tag {
  margin-bottom: 14px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0 34px;
}

.why-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.wf-check {
  width: 30px;
  height: 30px;
  background: var(--yellow-dim);
  border: 1px solid rgba(234, 228, 47, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.wf-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: var(--ls-subhead);
}

.wf-text p {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--lh-body);
}

.why-stats {
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 26px 22px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.stat-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.stat-card.stat-yellow {
  border-color: rgba(234, 228, 47, 0.22);
  background: rgba(234, 228, 47, 0.03);
}

.stat-icon {
  font-size: 18px;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 38px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.04em;
}

.stat-unit {
  font-size: 24px;
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.stat-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.stat-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), rgba(234, 228, 47, 0.5));
  border-radius: 2px;
  transition: width 1.5s ease;
}

/* ════════════════════════════
   PLATFORM
════════════════════════════ */
.platform-section {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  background: var(--bg-page);
}

.platform-tabs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.platform-tab {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--pill-radius);
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.platform-tab:hover {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
}

.platform-tab.active {
  color: var(--yellow);
  background: var(--yellow-dim);
  border-color: rgba(234, 228, 47, 0.3);
  font-weight: 700;
}

.platform-display {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: flex-start;
}

.platform-window {
  background: var(--steel-700);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.pw-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.pw-dots {
  display: flex;
  gap: 6px;
}

.pw-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.pw-dots span:nth-child(1) {
  background: #FF5F56;
}

.pw-dots span:nth-child(2) {
  background: #FFBD2E;
}

.pw-dots span:nth-child(3) {
  background: #27C93F;
}

.pw-url {
  flex: 1;
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 4px 12px;
  text-align: center;
}

.pw-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pw-icon {
  font-size: 12px;
  color: var(--text-muted);
}

.pw-user-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  padding: 3px 10px 3px 4px;
  font-size: 11px;
  color: var(--text-secondary);
}

.pw-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), rgba(234, 228, 47, 0.5));
}

.pw-body {
  display: flex;
  height: 460px;
}

.pw-tab-content {
  display: none;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.pw-tab-content.active {
  display: flex;
}

.pw-sidebar {
  width: 180px;
  background: rgba(11, 28, 43, 0.55);
  border-right: 1px solid var(--border);
  padding: 20px 0;
  flex-shrink: 0;
}

.pw-sb-brand {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  padding: 0 16px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}

.pw-sb-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px;
}

.pw-sb-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.pw-sb-link:hover {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
}

.pw-sb-link.active {
  color: var(--yellow);
  background: var(--yellow-dim);
  font-weight: 600;
}

.pw-sb-icon {
  font-size: 10px;
  opacity: 0.7;
}

.pw-main {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pw-main-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.pw-main-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.pw-main-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.pw-action-btn {
  font-size: 12px;
  font-weight: 700;
  color: #0a0900;
  background: var(--yellow);
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.pw-action-btn:hover {
  background: #f5ef4a;
}

.pw-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pw-kpi {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}

.pw-kpi-label {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pw-kpi-val {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.pw-kpi-delta {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  border-radius: 4px;
  padding: 2px 6px;
}

.pw-kpi-delta.up {
  color: var(--green);
  background: rgba(34, 208, 122, 0.1);
}

.pw-kpi-delta.down {
  color: var(--red);
  background: rgba(255, 77, 109, 0.1);
}

.pw-chart-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  flex: 1;
}

.pw-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pw-chart-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pw-chart-legend {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: var(--text-muted);
}

.pw-chart-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.legend-line {
  display: inline-block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
}

.legend-line.yellow {
  background: var(--yellow);
}

.legend-line.steel {
  background: var(--steel-400);
}

.pw-main-chart {
  width: 100%;
  height: 120px;
}

.pw-chart-xaxis {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.pw-chart-xaxis span {
  font-size: 9px;
  color: var(--text-faint);
}

.pw-data-table {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.pw-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pw-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 11px 16px;
  font-size: 12px;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}

.pw-table-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.status-paid {
  color: var(--green);
  font-weight: 600;
}

.status-pending {
  color: var(--yellow);
  font-weight: 600;
}

.status-posted {
  color: var(--text-muted);
}

.pw-report-donut {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 24px;
  flex: 1;
}

.pw-donut-report {
  width: 180px;
  height: 130px;
}

.pw-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdl-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.pdl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pdl-dot.yellow {
  background: var(--yellow);
}

.pdl-dot.steel {
  background: var(--steel-400);
}

.pdl-dot.light {
  background: var(--steel-600);
}

.pdl-dot.muted {
  background: var(--text-faint);
}

.platform-metrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 180px;
  flex-shrink: 0;
}

.pm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.pm-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateX(-3px);
}

.pm-icon {
  font-size: 18px;
}

.pm-info {
  display: flex;
  flex-direction: column;
}

.pm-label {
  font-size: 10px;
  color: var(--text-muted);
}

.pm-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ════════════════════════════
   HOW IT WORKS
════════════════════════════ */
.how-section {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  background: var(--steel-700);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  padding-top: 20px;
}

.step-connector-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(234, 228, 47, 0.4), rgba(107, 139, 173, 0.3));
  margin-top: 54px;
}

.step-connector-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
  flex-shrink: 0;
}

.step-num {
  font-size: var(--text-caps);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-caps);
  color: var(--yellow);
  margin-bottom: 14px;
  background: var(--yellow-dim);
  border: 1px solid rgba(234, 228, 47, 0.22);
  padding: 4px 12px;
  border-radius: var(--pill-radius);
}

.step-card-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 26px 22px;
  transition: all 0.3s ease;
  width: 100%;
  backdrop-filter: blur(8px);
}

.step-card-inner:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--yellow-dim);
  border: 1px solid rgba(234, 228, 47, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card-inner h3 {
  font-size: var(--text-h4);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: var(--ls-subhead);
}

.step-card-inner p {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--lh-body);
}

/* ════════════════════════════
   PACKAGES PREVIEW
════════════════════════════ */
.packages-section {
  position: relative;
  padding: var(--section-pad);
  background: var(--bg-page);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
  align-items: stretch;
}

.pkg-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.pkg-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.pkg-card.pkg-featured {
  border-color: rgba(234, 228, 47, 0.35);
  background: rgba(234, 228, 47, 0.03);
  transform: scale(1.02);
}

.pkg-card.pkg-featured:hover {
  border-color: rgba(234, 228, 47, 0.6);
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 20px 45px rgba(234, 228, 47, 0.12);
}

.pkg-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--steel-700);
  background: linear-gradient(90deg, var(--yellow) 0%, #FFF 50%, var(--yellow) 100%);
  background-size: 200% auto;
  padding: 6px 16px;
  border-radius: var(--pill-radius);
  box-shadow: 0 4px 10px rgba(234, 228, 47, 0.3);
  z-index: 3;
  animation: badgeShimmer 3s linear infinite;
}

@keyframes badgeShimmer {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

.pkg-tag {
  font-size: var(--text-caps);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pkg-tag-yellow {
  color: var(--yellow);
}

.pkg-name {
  font-size: 24px;
  font-weight: var(--fw-black);
  color: var(--text-primary);
  margin-bottom: 14px;
}

.pkg-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.pkg-from {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.pkg-amount {
  font-size: 40px;
  font-weight: var(--fw-black);
  color: var(--text-primary);
}

.pkg-period {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  padding: 0;
}

.pkg-features li {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pkg-check {
  color: var(--yellow);
  font-weight: bold;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease, text-shadow 0.3s ease;
}

.pkg-card:hover .pkg-check {
  transform: scale(1.25) rotate(8deg);
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(234, 228, 47, 0.45);
}

.pkg-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: auto;
}

.packages-disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 36px;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 480px;
    margin: 40px auto 0;
  }

  .pkg-card.pkg-featured {
    transform: none;
  }

  .pkg-card.pkg-featured:hover {
    transform: translateY(-8px);
  }
}

/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
.testimonials-section {
  position: relative;
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  background: var(--bg-page);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(8px);
}

/* Mouse follow spotlight glow */
.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(280px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(234, 228, 47, 0.09), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.testi-card:hover::before {
  opacity: 1;
}

.testi-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(234, 228, 47, 0.28);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(234, 228, 47, 0.08);
}

.testi-featured {
  border-color: rgba(234, 228, 47, 0.28);
  background: rgba(234, 228, 47, 0.025);
}

.testi-featured:hover {
  border-color: rgba(234, 228, 47, 0.55);
}

.testi-featured-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(234, 228, 47, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Ensure card content is layered above the spotlight glow */
.testi-stars,
.testi-quote,
.testi-author {
  position: relative;
  z-index: 2;
}

.testi-stars {
  font-size: var(--text-xs);
  color: var(--yellow);
  letter-spacing: var(--ls-caps);
  margin-bottom: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.4s ease;
  display: inline-block;
}

.testi-card:hover .testi-stars {
  transform: scale(1.08);
  text-shadow: 0 0 12px rgba(234, 228, 47, 0.6);
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--fw-extrabold);
  color: #0a0900;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-card:hover .testi-avatar {
  transform: scale(1.08) rotate(8deg);
}

.testi-info strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  letter-spacing: var(--ls-subhead);
}

.testi-info span {
  font-size: var(--text-2xs);
  color: var(--text-muted);
}

/* ════════════════════════════
   CTA / CONTACT
════════════════════════════ */
/* ════════════════════════════
   FINAL CTA SECTION
   ════════════════════════════ */
.final-cta-section {
  position: relative;
  padding: var(--section-pad);
  background: radial-gradient(circle at center, #122237 0%, var(--steel-700) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.final-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
  animation: orbFloat 9s ease-in-out infinite alternate;
}

.final-cta-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--yellow), transparent);
  top: -180px;
  left: -120px;
}

.final-cta-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #5CA8E8, transparent);
  bottom: -150px;
  right: -100px;
  animation-delay: -4s;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.final-cta-headline {
  font-size: var(--text-h1);
  font-weight: var(--fw-black);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -20px) scale(1.08);
  }

  100% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

/* Diagonal Button Shimmer reflection */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 150%;
  transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ════════════════════════════
   CTA / CONTACT & FORM
   ════════════════════════════ */
.cta-section {
  position: relative;
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  overflow: hidden;
  background: var(--steel-700);
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.07;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--yellow);
  top: -100px;
  right: -100px;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--steel-600);
  bottom: -80px;
  left: -80px;
  animation-delay: -3s;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-size: var(--text-h1);
  font-weight: var(--fw-black);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 26px;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-body);
}

.cb-dot {
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(234, 228, 47, 0.5);
}

/* Form */
.cta-form-card {
  background: rgba(11, 28, 43, 0.92);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 34px;
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Mouse follow spotlight glow */
.cta-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(234, 228, 47, 0.07), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.cta-form-card:hover::before {
  opacity: 1;
}

.cta-form-card:hover {
  border-color: rgba(234, 228, 47, 0.2);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(234, 228, 47, 0.04);
}

/* Ensure form content is layered above the radial glow background */
.form-title,
#consultForm {
  position: relative;
  z-index: 2;
}

.form-title {
  font-size: var(--text-h4);
  font-weight: var(--fw-extrabold);
  color: var(--text-primary);
  margin-bottom: 22px;
  letter-spacing: var(--ls-subhead);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-bottom: 13px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 13px;
}

.form-field:last-of-type {
  margin-bottom: 0;
}

.form-field label {
  font-size: var(--text-caps);
  font-weight: var(--fw-bold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
}

.form-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 15px;
  font-size: var(--text-sm);
  font-family: var(--font-ui);
  color: var(--text-primary);
  outline: none;
  transition: all 0.22s ease;
  width: 100%;
  line-height: var(--lh-body);
}

.form-input::placeholder {
  color: var(--text-faint);
}

.form-input:focus {
  border-color: rgba(234, 228, 47, 0.4);
  background: rgba(234, 228, 47, 0.03);
  box-shadow: 0 0 0 3px rgba(234, 228, 47, 0.07);
}

.form-input.invalid,
.form-input.invalid:focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.15) !important;
}

.form-input.valid {
  border-color: rgba(34, 208, 122, 0.4) !important;
}

.form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.form-select option {
  background: var(--steel-700);
  color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-primary.btn-full {
  margin-top: 18px;
  width: 100%;
  padding: 15px;
  font-size: var(--text-base);
  justify-content: center;
}

.form-privacy {
  text-align: center;
  font-size: var(--text-2xs);
  color: var(--text-faint);
  margin-top: 12px;
  line-height: var(--lh-body);
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  background: var(--steel-700);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 52px;
}

.footer-logo {
  margin-bottom: 14px;
  display: inline-flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-logo:hover {
  transform: scale(1.04) rotate(-1.5deg);
}

.footer-brand-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 22px;
  max-width: 270px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.22s ease;
  font-size: var(--text-sm);
}

.social-btn:hover {
  background: var(--yellow-dim);
  border-color: rgba(234, 228, 47, 0.25);
  color: var(--yellow);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: var(--text-caps);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  margin-bottom: 18px;
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-link-list li a {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: var(--lh-tight);
  display: inline-block;
}

.footer-link-list li a:hover {
  color: var(--yellow);
  transform: translateX(4px);
  text-shadow: 0 0 8px rgba(234, 228, 47, 0.45);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-size: var(--text-2xs);
  color: rgba(255, 255, 255, 0.65); /* Highly readable white/gray */
}

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

.footer-bottom-links a {
  font-size: var(--text-2xs);
  color: rgba(255, 255, 255, 0.65); /* Highly readable white/gray */
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

.footer-bottom-links a:hover {
  color: #FFFFFF; /* Pure white on hover */
}

/* ════════════════════════════
   TOAST
════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(13, 18, 32, 0.95);
  border: 1px solid rgba(234, 228, 47, 0.25);
  border-radius: 14px;
  padding: 14px 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(234, 228, 47, 0.08);
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  font-size: 20px;
}

.toast-text {
  display: flex;
  flex-direction: column;
}

.toast-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.toast-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ════════════════════════════
   RESPONSIVE & ADDED INNER PAGE COMPONENTS
════════════════════════════ */

/* --- WHY2 grid styling --- */
.why2-section {
  padding: 60px 0 0;
  position: relative;
}

.why2-section .section-header {
  margin-bottom: 40px;
}

.why2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why2-block {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 30px 24px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Yellow left accent bar — slides in on hover */
.why2-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: linear-gradient(180deg, #D8B74A 0%, rgba(216, 183, 74, 0.3) 100%);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.why2-block:hover::before {
  transform: scaleY(1);
}

.why2-block:hover {
  background: var(--bg-card-hover);
  border-color: rgba(216, 183, 74, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(216, 183, 74, 0.08);
}

/* Icon box brightens on hover */
.why2-block:hover .why2-icon {
  background: rgba(216, 183, 74, 0.18);
  border-color: rgba(216, 183, 74, 0.5);
  box-shadow: 0 0 20px rgba(216, 183, 74, 0.2);
}

.why2-num {
  font-size: var(--text-h1);
  font-weight: var(--fw-black);
  color: rgba(216, 183, 74, 0.18);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 1;
  transition: color 0.35s ease, text-shadow 0.35s ease, transform 0.35s ease;
  letter-spacing: -0.04em;
}

.why2-block:hover .why2-num {
  color: #D8B74A;
  text-shadow: 0 0 30px rgba(216, 183, 74, 0.55), 0 0 60px rgba(216, 183, 74, 0.2);
  transform: scale(1.06) translateX(2px);
}

.why2-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow-dim);
  border: 1px solid rgba(216, 183, 74, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-bottom: 20px;
}

.why2-title {
  font-size: var(--text-h4);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: var(--ls-subhead);
}

.why2-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--lh-body);
  margin-bottom: 16px;
}

.why2-proof {
  font-size: var(--text-2xs);
  color: var(--yellow);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
}

/* Ensure card content stays above background overlays */
.why2-num,
.why2-icon,
.why2-title,
.why2-desc,
.why2-proof {
  position: relative;
  z-index: 2;
}

/* --- Precision Card custom animations --- */
.why2-precision::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(234, 228, 47, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 228, 47, 0.035) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.why2-precision:hover::after {
  opacity: 1;
}

.precision-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.4s ease;
}

.precision-dot {
  transform-origin: 22px 10px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why2-precision:hover .precision-path {
  animation: drawLinePrecision 0.6s ease-out forwards;
}

.why2-precision:hover .precision-dot {
  animation: popDotPrecision 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

@keyframes drawLinePrecision {
  0% {
    stroke-dashoffset: 40;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes popDotPrecision {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

/* --- Compliance Card custom animations --- */
.compliance-cross {
  transform-origin: 14px 14px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why2-compliance:hover .compliance-cross {
  transform: rotate(180deg);
}

.compliance-circle {
  transform-origin: 14px 14px;
  transition: stroke-dasharray 0.5s ease;
}

.why2-compliance:hover .compliance-circle {
  stroke-dasharray: 4, 3;
}

.why2-compliance:hover .why2-icon {
  animation: compliancePulse 1.5s infinite;
}

.why2-compliance:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(234, 228, 47, 0.15),
    0 0 30px rgba(92, 168, 232, 0.15) !important;
}

@keyframes compliancePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 228, 47, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(234, 228, 47, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(234, 228, 47, 0);
  }
}

/* --- Odoo Card custom animations --- */
.why2-odoo::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 1;
}

.why2-odoo:hover::after {
  left: 200%;
  transition: left 0.8s ease-in-out;
}

.odoo-card-dot {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), fill 0.3s ease;
}

.why2-odoo:hover .odoo-card-dot {
  fill: #5CA8E8;
}

.why2-odoo:hover .odoo-card-dot:nth-of-type(1) {
  transform: scale(1.6) translateY(-1px);
  transform-origin: 9px 16px;
  transition-delay: 0s;
}

.why2-odoo:hover .odoo-card-dot:nth-of-type(2) {
  transform: scale(1.6) translateY(-1px);
  transform-origin: 14px 16px;
  transition-delay: 0.08s;
}

.why2-odoo:hover .odoo-card-dot:nth-of-type(3) {
  transform: scale(1.6) translateY(-1px);
  transform-origin: 19px 16px;
  transition-delay: 0.16s;
}

.odoo-card-rect {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: 14px 14px;
}

.why2-odoo:hover .odoo-card-rect {
  transform: scale(1.05);
}

/* --- Funding Card custom animations --- */
.why2-funding::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(234, 228, 47, 0.08), transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.why2-funding:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.why2-funding:hover .funding-arrow,
.why2-funding:hover .funding-arrow-head {
  animation: floatArrow 0.8s ease-in-out;
}

@keyframes floatArrow {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }

  45% {
    transform: translate(4px, -4px);
    opacity: 0;
  }

  50% {
    transform: translate(-4px, 4px);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* --- Content Section spacing --- */
.content-section {
  position: relative;
  padding: var(--section-pad, 120px 0);
  overflow: hidden;
}

.content-section.light {
  background: var(--bg-page);
}

.content-section.alt {
  background: rgba(11, 28, 43, 0.4);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* --- Inner Page Hero --- */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--bg-page);
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero-bg-video {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
  animation: slowZoom 20s ease-in-out infinite alternate;
  transform-origin: center center;
  filter: saturate(1.03) contrast(1.02) brightness(0.92);
  will-change: transform;
  transform: scale(var(--zoom, 1.02)) translate(var(--tx, 0px), var(--ty, 0px)) translateY(var(--sy, 0px));
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  /* Lighter tint so the background animation is clearly visible */
  background: linear-gradient(to bottom,
      rgba(11, 28, 43, 0.52) 0%,
      rgba(11, 28, 43, 0.42) 40%,
      rgba(11, 28, 43, 0.68) 100%);
  z-index: 1;
  pointer-events: none;
}

.page-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
      transparent 0%,
      transparent 40%,
      rgba(255, 255, 255, 0.025) 48%,
      rgba(255, 255, 255, 0.07) 50%,
      rgba(255, 255, 255, 0.025) 52%,
      transparent 60%,
      transparent 100%);
  background-size: 200% 100%;
  animation: glassSweep 18s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  pointer-events: none;
  z-index: 2;
}

/* Center subpage hero layout 'as home' */
.page-hero.centered .page-hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero.centered .page-hero-content {
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 820px !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero.centered .page-hero-eyebrow {
  align-self: center;
}

.page-hero.centered .page-hero-title {
  text-align: center;
}

.page-hero.centered .page-hero-sub {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

.page-hero.centered .page-hero-actions {
  justify-content: center !important;
  align-self: center;
}

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
  animation: loadingOrbFloat 15s ease-in-out infinite alternate;
}

.page-hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--yellow);
  top: -150px;
  left: -100px;
}

.page-hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--steel-300);
  bottom: -80px;
  right: -100px;
  animation-delay: -5s;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(107, 139, 173, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(107, 139, 173, 0.03) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 65% 65% at 50% 50%, black 20%, transparent 80%);
  opacity: 0.5;
  transform: scale(1);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}

.page-hero-grid.visible-reveal {
  opacity: 1;
  transform: scale(1.04);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-caps);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--yellow-dim);
  border: 1px solid rgba(234, 228, 47, 0.2);
  border-radius: var(--pill-radius);
  padding: 5px 14px;
  margin-bottom: 24px;
}

.page-hero-eyebrow-dot {
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--yellow);
}

.page-hero-title {
  font-size: var(--text-h1);
  font-weight: var(--fw-black);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-display);
  margin-bottom: 20px;
  color: var(--text-primary);
  text-align: center;
  width: 100%;
}

.page-hero-sub {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 620px;
  margin: 0 auto 36px;
  text-align: center;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
}

/* --- Two Column Layout --- */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.two-col-grid:last-of-type {
  margin-bottom: 0;
}

.two-col-grid.reversed>.col-content {
  order: 2;
}

.two-col-grid.reversed>.col-visual {
  order: 1;
}

.col-content {
  display: flex;
  flex-direction: column;
}

.col-visual {
  position: relative;
  z-index: 1;
}

/* --- Visual Card --- */
.visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation-play-state: running;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    animation-play-state 0s 0.4s;
}

.visual-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(234, 228, 47, 0.22);
}

/* Continuous floating keyframes for cards */
@keyframes floatA {

  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0) rotate(0.5deg);
  }

  50% {
    transform: translateY(-8px) rotate(-0.5deg);
  }
}

/* Floating animation assignments */
.visual-card:nth-child(odd),
.service-card:nth-child(odd),
.pkg-card:nth-child(odd),
.cred-card:nth-child(odd),
.why2-block:nth-child(odd),
.program-card:nth-child(odd) {
  animation: floatA 5s ease-in-out infinite;
}

.visual-card:nth-child(even),
.service-card:nth-child(even),
.pkg-card:nth-child(even),
.cred-card:nth-child(even),
.why2-block:nth-child(even),
.program-card:nth-child(even) {
  animation: floatB 6.5s ease-in-out infinite;
}

/* Stagger floating start times */
.visual-card:nth-child(1),
.service-card:nth-child(1),
.pkg-card:nth-child(1),
.cred-card:nth-child(1),
.why2-block:nth-child(1),
.program-card:nth-child(1) {
  animation-delay: 0s;
}

.visual-card:nth-child(2),
.service-card:nth-child(2),
.pkg-card:nth-child(2),
.cred-card:nth-child(2),
.why2-block:nth-child(2),
.program-card:nth-child(2) {
  animation-delay: 0.8s;
}

.visual-card:nth-child(3),
.service-card:nth-child(3),
.pkg-card:nth-child(3),
.cred-card:nth-child(3),
.why2-block:nth-child(3),
.program-card:nth-child(3) {
  animation-delay: 1.6s;
}

.visual-card:nth-child(4),
.service-card:nth-child(4),
.pkg-card:nth-child(4),
.cred-card:nth-child(4),
.why2-block:nth-child(4),
.program-card:nth-child(4) {
  animation-delay: 2.4s;
}

.visual-card:nth-child(5),
.service-card:nth-child(5),
.pkg-card:nth-child(5),
.cred-card:nth-child(5),
.why2-block:nth-child(5),
.program-card:nth-child(5) {
  animation-delay: 3.2s;
}

.visual-card:nth-child(6),
.service-card:nth-child(6),
.pkg-card:nth-child(6),
.cred-card:nth-child(6),
.why2-block:nth-child(6),
.program-card:nth-child(6) {
  animation-delay: 4.s;
}

/* Glass card reflection sweeps */
.visual-card::after,
.service-card::after,
.pkg-card::after,
.cred-card::after,
.why2-block::after,
.program-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.visual-card:hover::after,
.service-card:hover::after,
.pkg-card:hover::after,
.cred-card:hover::after,
.why2-block:hover::after,
.program-card:hover::after {
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card hover enhancements */
.visual-card:hover,
.service-card:hover,
.pkg-card:hover,
.cred-card:hover,
.why2-block:hover,
.program-card:hover {
  animation-play-state: paused !important;
  transform: translateY(-10px) rotate(0deg) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 20px 50px rgba(0, 0, 0, 0.3), 0 20px 60px rgba(0, 0, 0, 0.35) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.visual-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.vc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vc-dot-red {
  background: #FF5F56;
}

.vc-dot-amber {
  background: #FFBD2E;
}

.vc-dot-green {
  background: #27C93F;
}

.vc-title {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-weight: 500;
  margin-left: auto;
  letter-spacing: var(--ls-wide);
}

/* --- Feature List --- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.feat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feat-icon {
  width: 34px;
  height: 34px;
  background: var(--yellow-dim);
  border: 1px solid rgba(234, 228, 47, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
  margin-top: 2px;
}

.feat-text {
  display: flex;
  flex-direction: column;
}

.feat-text strong {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: var(--ls-subhead);
}

.feat-text p {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--lh-body);
}

/* --- Credentials Grid --- */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.cred-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cred-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(234, 228, 47, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.cred-icon {
  font-size: 24px;
  margin-bottom: 14px;
}

.cred-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: var(--ls-subhead);
}

.cred-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--lh-body);
}

/* --- Process Grid Condensed --- */
.process-grid-condensed {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.process-grid-condensed .why2-block {
  text-align: center;
  padding: 22px 16px;
}

.process-grid-condensed .why2-block.active {
  border-color: rgba(234, 228, 47, 0.28);
  background: rgba(234, 228, 47, 0.03);
}

.process-grid-condensed .why2-num {
  display: flex;
  justify-content: center;
}

.process-grid-condensed .why2-title {
  font-size: 13px;
  margin-bottom: 6px;
}

.process-grid-condensed .why2-desc {
  font-size: 12px;
}

/* --- Industry Marquee --- */
.industry-marquee-section {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--steel-700);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.industry-marquee-section::before,
.industry-marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.industry-marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--steel-700), transparent);
}

.industry-marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, var(--steel-700), transparent);
}

.industry-marquee-track {
  display: flex;
  width: max-content;
  animation: industryMarqueeScroll 40s linear infinite;
}

.industry-marquee-track:hover,
.industry-marquee-track.paused {
  animation-play-state: paused;
}

.im-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.im-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  white-space: nowrap;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  letter-spacing: var(--ls-wide);
  transition: color 0.3s ease;
}

.im-item:hover {
  color: var(--yellow);
}

.im-dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--yellow);
  opacity: 0.8;
  display: inline-block;
}

@keyframes industryMarqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* --- Floating Animation --- */
@keyframes premiumFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.premium-float {
  animation: premiumFloat 6s ease-in-out infinite;
}

/* --- Body menu open overlay --- */
body {
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(11, 28, 43, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  z-index: 998;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

body.menu-open::before {
  opacity: 1;
  pointer-events: all;
}

/* --- Mobile Menu Toggle relative stacking --- */
.mobile-menu-toggle {
  position: relative;
  z-index: 1002;
}

/* --- Premium Drawer mobile navigation drawer style --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 340px;
  max-width: 100vw;
  height: 100vh;
  z-index: 1001;
  background: rgba(11, 28, 43, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-right: 1px solid var(--border-light);
  padding: 90px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

/* Link stagger transitions */
.mobile-menu .mobile-link {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.open .mobile-link:nth-child(1) {
  transition-delay: 80ms;
}

.mobile-menu.open .mobile-link:nth-child(2) {
  transition-delay: 150ms;
}

.mobile-menu.open .mobile-link:nth-child(3) {
  transition-delay: 220ms;
}

.mobile-menu.open .mobile-link:nth-child(4) {
  transition-delay: 290ms;
}

.mobile-menu.open .mobile-link:nth-child(5) {
  transition-delay: 360ms;
}

.mobile-menu.open .mobile-link:nth-child(6) {
  transition-delay: 430ms;
}

.mobile-menu .mobile-cta {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 500ms;
}

.mobile-menu.open .mobile-cta {
  opacity: 1;
  transform: translateX(0);
}

/* --- Form Interaction States --- */
.form-input.invalid {
  border-color: rgba(255, 77, 109, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.1) !important;
}

.form-input.valid {
  border-color: rgba(34, 208, 122, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(34, 208, 122, 0.1) !important;
}

/* ── RESPONSIVE MEDIA QUERIES ── */

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-display {
    grid-template-columns: 1fr;
  }

  .platform-metrics {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .pm-card {
    flex: 1;
    min-width: 140px;
  }

  .pm-card:hover {
    transform: translateY(-3px);
  }

  .why2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --section-pad: 80px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-copy .section-title {
    font-size: clamp(26px, 5vw, 32px);
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .step-connector-line {
    display: none;
  }

  .step-item {
    max-width: 100%;
    width: 100%;
  }

  .pw-body {
    height: auto;
  }

  .pw-tab-content.active {
    flex-direction: column;
    height: auto;
  }

  .pw-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding: 12px;
  }

  .pw-sb-nav {
    flex-direction: row;
    gap: 4px;
    padding: 0;
  }

  .pw-sb-brand {
    display: none;
  }

  .pw-sb-link {
    white-space: nowrap;
    font-size: 11px;
    padding: 6px 10px;
  }

  .pw-main {
    padding: 14px;
    gap: 12px;
  }

  .pw-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .pw-kpi:last-child {
    display: none;
  }

  /* Subpages layouts responsive */
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col-grid.reversed>.col-content {
    order: 1;
  }

  .two-col-grid.reversed>.col-visual {
    order: 2;
  }

  .process-grid-condensed {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid-condensed> :last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

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

  .hero {
    padding: 100px 16px 70px;
  }

  .hero-headline {
    font-size: clamp(36px, 9vw, 56px);
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    margin: 0 auto;
    text-align: center;
  }

  .footer-brand-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .platform-tabs-row {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
  }

  .video-controls {
    opacity: 1;
  }

  .marquee-item {
    padding: 0 24px;
  }

  .why2-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .cred-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  /* CTA buttons layouts */
  .hero-actions,
  .page-hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost,
  .page-hero-actions .btn-primary,
  .page-hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .btn-primary.btn-lg,
  .btn-ghost.btn-lg {
    width: 100%;
    justify-content: center;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .process-grid-condensed {
    grid-template-columns: 1fr;
  }

  .process-grid-condensed> :last-child {
    grid-column: span 1;
  }
}

/* ════════════════════════════
   FAQ SECTION (ACCORDION)
   ════════════════════════════ */
.faq-section {
  padding: var(--section-pad);
  background: var(--steel-700);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(320px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(234, 228, 47, 0.08), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item:hover {
  border-color: rgba(234, 228, 47, 0.28);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.faq-trigger {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.faq-trigger:hover {
  color: var(--yellow);
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  transition: background-color 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-trigger:hover .faq-icon::before,
.faq-trigger:hover .faq-icon::after {
  background: var(--yellow);
}

.faq-item.open {
  border-color: rgba(234, 228, 47, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(234, 228, 47, 0.12);
}

.faq-item.open .faq-icon,
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.open .faq-icon::after {
  transform: scaleY(0);
}

.faq-item.open .faq-icon::before {
  background: var(--yellow);
}

.faq-icon::after {
  transition: transform 0.4s ease;
  transform-origin: center center;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-content,
.faq-content.open {
  grid-template-rows: 1fr;
}

.faq-content-inner {
  padding: 0 28px 24px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  overflow: hidden;
}

/* Stagger answer content children */
.faq-content-inner>* {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-content-inner>*.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════
   PILLARS GRID STYLING
   ════════════════════════════ */
.stat-card-title {
  font-size: var(--text-h4);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-top: 14px;
  margin-bottom: 8px;
  letter-spacing: var(--ls-subhead);
}

.stat-card-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--lh-body);
}

/* ════════════════════════════
   FOOTER TOP BORDER ACCENT
════════════════════════════ */
.footer-top-border {
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      var(--steel-400) 25%,
      var(--yellow) 50%,
      var(--steel-400) 75%,
      transparent);
  background-size: 200% 100%;
  opacity: 0.45;
  margin-bottom: 0;
  animation: footerBorderSweep 8s linear infinite;
}

@keyframes footerBorderSweep {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ════════════════════════════
   FAQ SECTION AMBIENT BACKDROP
════════════════════════════ */
.faq-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(92, 168, 232, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}


/* --- Additional overrides for Odoo dashboards & badges on mobile --- */
@media (max-width: 600px) {
  .dash-metric-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
}

@media (max-width: 480px) {
  .partner-badge {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px !important;
  }

  .dash-chart-bar {
    gap: 4px !important;
  }
}

/* ════════════════════════════
   STEP 7 - LAUNCH & ASSET CHECKLIST STYLE ADDITIONS
   ════════════════════════════ */
.odoo-partner-badge-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(29, 59, 85, 0.45);
  border: 1px dashed rgba(234, 228, 47, 0.35);
  padding: 16px 28px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  margin: 20px auto;
  text-align: left;
  transition: border-color 0.3s, background 0.3s;
}

.odoo-partner-badge-placeholder:hover {
  border-color: var(--yellow);
  background: rgba(29, 59, 85, 0.6);
}

.opb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}

.opb-content {
  display: flex;
  flex-direction: column;
}

.opb-tag {
  font-size: var(--text-caps);
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  font-weight: var(--fw-semibold);
  margin-bottom: 4px;
}

.opb-title {
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: var(--fw-bold);
}

.process-diagram-container {
  margin-top: 52px;
  text-align: center;
}

.process-diagram-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.process-diagram-img:hover {
  transform: scale(1.01);
}

.team-card,
.office-card {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.team-card:hover,
.office-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(234, 228, 47, 0.4) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

@media (max-width: 768px) {
  .odoo-partner-badge-placeholder {
    padding: 12px 20px;
    gap: 12px;
  }
}

/* ════════════════════════════
   AI CHAT ASSISTANT WIDGET
   ════════════════════════════ */
.ai-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2100;
  font-family: var(--font-ui);
}

.ai-chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--steel-600);
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.2s;
}

.ai-chat-toggle:hover {
  transform: scale(1.05);
  background: var(--steel-500);
  border-color: var(--yellow);
}

.ai-chat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.ai-chat-icon.hidden {
  display: none;
}

.ai-notif-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--steel-700);
  display: none;
  animation: pulse-yellow 2s infinite;
}

@keyframes pulse-yellow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(234, 228, 47, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(234, 228, 47, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(234, 228, 47, 0);
  }
}

.ai-chat-panel {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 360px;
  height: 480px;
  background: rgba(11, 28, 43, 0.95);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}

.ai-chat-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.ai-chat-header {
  padding: 16px 20px;
  background: rgba(29, 59, 85, 0.8);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-header-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.ai-header-info strong {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 700;
}

.ai-status {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1px;
}

.ai-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.ai-chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.ai-msg-bot {
  background: rgba(29, 59, 85, 0.6);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.ai-msg-user {
  background: var(--steel-500);
  color: var(--text-primary);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.ai-msg p {
  margin: 0;
}

.ai-msg p+p {
  margin-top: 6px;
}

.ai-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.ai-qr {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--pill-radius);
  background: rgba(70, 130, 180, 0.15);
  border: 1px solid rgba(70, 130, 180, 0.3);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

.ai-qr:hover {
  background: var(--yellow-dim);
  border-color: rgba(234, 228, 47, 0.3);
  color: var(--yellow);
}

.ai-lead-form {
  padding: 16px 20px;
  background: rgba(29, 59, 85, 0.4);
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-lead-intro {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  text-align: left;
}

.ai-lead-input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(11, 28, 43, 0.6);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.ai-lead-input:focus {
  border-color: var(--yellow);
}

.ai-chat-input-row {
  padding: 12px 20px;
  background: rgba(29, 59, 85, 0.8);
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 8px;
}

.ai-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
}

.ai-input::placeholder {
  color: var(--text-faint);
}

.ai-send {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.ai-send:hover {
  color: var(--yellow);
}

@media (max-width: 480px) {
  .ai-chat-panel {
    width: calc(100vw - 32px);
    height: 400px;
    bottom: 68px;
  }
}

/* ════════════════════════════
   CAPITAL READINESS COMPARISON GRID TABLE
   ════════════════════════════ */
.comparison-table {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: rgba(29, 59, 85, 0.4);
  backdrop-filter: blur(10px);
  margin-top: 32px;
}

.ct-header {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr 1.8fr;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  font-size: var(--text-caps);
  font-weight: var(--fw-bold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  border-bottom: 1px solid var(--border-light);
}

.ct-row {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr 1.8fr;
  gap: 12px;
  padding: 16px 20px;
  font-size: var(--text-xs);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}

.ct-row:last-child {
  border-bottom: none;
}

.ct-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.ct-doc {
  font-weight: var(--fw-bold);
  color: var(--text-primary);
}

.ct-deliv {
  color: var(--yellow);
}

@media (max-width: 768px) {
  .ct-header {
    display: none;
  }

  .ct-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .ct-row:hover {
    background: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM MOTION & PAGE ENTRANCE SYSTEM
═══════════════════════════════════════════════════════════════════ */

/* Top Scroll Progress Indicator */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), #FFF, var(--yellow));
  z-index: 10000;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(var(--scroll-p, 0));
  box-shadow: 0 0 10px rgba(234, 228, 47, 0.6);
  will-change: transform;
}

/* Keyframe Animations */
@keyframes fadeInUp3D {
  from {
    opacity: 0;
    transform: perspective(1000px) rotateX(12deg) translateY(42px) scale(0.96);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.93) translateY(18px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes navbarSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page Load Animation Classes (trigger on load automatically) */
.animate-fade-in-up {
  animation: fadeInUp3D 1.0s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-fade-in-right {
  animation: fadeInRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-scale-in {
  animation: scaleIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Stagger Delays */
.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-400 {
  animation-delay: 400ms;
}

.delay-500 {
  animation-delay: 500ms;
}

/* Subpage Hero Grid Layouts */
.page-hero-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 3;
  transform-style: preserve-3d;
  perspective: 1200px;
}

.page-hero-content {
  text-align: left !important;
  margin: 0 !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.page-hero-sub {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.page-hero-actions {
  justify-content: flex-start !important;
}

.page-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-hero-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-hero-img:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 30px 60px rgba(234, 228, 47, 0.15);
  border-color: rgba(234, 228, 47, 0.3);
}

/* Staggered entrance for navbar */
.navbar {
  animation: navbarSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Card 3D Tilt Context & Hardware Acceleration */
.service-card,
.pkg-card,
.ind-card,
.visual-card {
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

/* Grid Perspective Parent Wrappers */
.services-grid,
.packages-grid,
.industries-grid,
.two-col-grid,
.why2-grid,
.offices-grid {
  transform-style: preserve-3d;
  perspective: 1200px;
}

@media (max-width: 992px) {
  .page-hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .page-hero-content {
    text-align: center !important;
  }

  .page-hero-sub {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .page-hero-actions {
    justify-content: center !important;
  }

  .page-hero-img {
    max-width: 400px;
  }
}

/* ════════════════════════════
   ACCESSIBILITY: REDUCED MOTION
════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ════════════════════════════
   INTERACTIVE CALCULATOR — RANGE SLIDERS
════════════════════════════ */
input[type='range'] {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #D8B74A;
  cursor: pointer;
  border: 3px solid rgba(11, 29, 57, 0.9);
  box-shadow: 0 0 0 2px rgba(216, 183, 74, 0.3), 0 4px 12px rgba(216, 183, 74, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

input[type='range']::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  box-shadow: 0 0 0 4px rgba(216, 183, 74, 0.25), 0 6px 18px rgba(216, 183, 74, 0.4);
}

input[type='range']::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #D8B74A;
  cursor: pointer;
  border: 3px solid rgba(11, 29, 57, 0.9);
  box-shadow: 0 0 0 2px rgba(216, 183, 74, 0.3);
}


/* ════════════════════════════
   SBA CHECKLIST ITEMS
════════════════════════════ */
.sba-check-item {
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease !important;
}

.sba-check-item:hover {
  background: rgba(216, 183, 74, 0.03) !important;
  transform: translateX(4px);
}

.sba-check-item.checked {
  background: rgba(216, 183, 74, 0.05) !important;
  border-color: rgba(216, 183, 74, 0.3) !important;
}

.sba-check-item.checked .sba-check-label {
  color: var(--text-primary) !important;
}

.sba-check-item.checked .sba-check-icon {
  color: var(--yellow) !important;
}


/* ════════════════════════════
   OFFICE MAP CANVAS CONTAINER
════════════════════════════ */
.office-map-canvas {
  position: relative;
  overflow: hidden;
}

.office-map-canvas canvas {
  position: absolute;
  inset: 0;
}


/* ════════════════════════════
   SAVINGS CALCULATOR RESPONSIVE
════════════════════════════ */
@media (max-width: 680px) {
  #savingsCalculator>div:first-of-type {
    grid-template-columns: 1fr !important;
  }
}


/* ════════════════════════════
   SBA GAUGE GRID RESPONSIVE
════════════════════════════ */
@media (max-width: 640px) {
  #sba-gauge-section .animate-on-scroll {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
}


/* ════════════════════════════
   ENHANCED SCROLL ANIMATION VARIANTS
════════════════════════════ */

/* Default: fade-up */
.animate-on-scroll,
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.visible,
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) !important;
}

.animate-on-scroll.fade-left {
  transform: translateX(-30px) translateY(32px);
}

.animate-on-scroll.fade-right {
  transform: translateX(30px) translateY(32px);
}

.animate-on-scroll.scale-in {
  transform: scale(0.92) translateY(32px);
}

/* Staggered children setup */
[data-stagger] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.visible [data-stagger],
[data-stagger].visible {
  opacity: 1;
  transform: translateY(0) !important;
}

/* Icon rotation custom style */
[data-rotate-icon] svg,
[data-rotate-icon] img,
.data-rotate-icon svg,
.data-rotate-icon img {
  transform: rotate(-15deg);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.visible [data-rotate-icon] svg,
.visible [data-rotate-icon] img,
.visible .data-rotate-icon svg,
.visible .data-rotate-icon img {
  transform: rotate(0deg) !important;
}

.animate-on-scroll:not(.visible) {
  pointer-events: none;
}

.animate-on-scroll.visible {
  pointer-events: auto;
}


/* ════════════════════════════
   PARALLAX HERO IMAGE
════════════════════════════ */
.page-hero-img {
  transition: transform 0.1s linear;
  will-change: transform;
}


/* ════════════════════════════
   ODOO CANVAS CONTAINER
════════════════════════════ */
#odooCanvasContainer canvas {
  display: block;
  border-radius: 0 0 12px 12px;
}


/* ════════════════════════════
   FLOATING CARD HOVER GLOW
════════════════════════════ */
.why2-block:hover,
.program-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(234, 228, 47, 0.12) !important;
}

/* Responsive adjustments for hero text and video alignment on mobile */
@media (max-width: 768px) {
  .hero-line {
    display: block !important;
    overflow: visible !important;
    width: 100% !important;
    white-space: normal !important;
  }

  .hero-word {
    display: inline-block !important;
    white-space: normal !important;
  }
}

@media (max-width: 480px) {
  :root {
    --text-display: 36px !important;
    --text-h1: 30px !important;
  }

  .hero-headline {
    font-size: 36px !important;
    line-height: 1.2 !important;
  }

  .page-hero-title {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }

  .hero-sub,
  .page-hero-sub {
    font-size: 15px !important;
    margin-bottom: 24px !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   PREMIUM WHITE & WARM OFF-WHITE DESIGN SYSTEM OVERRIDES
   ═══════════════════════════════════════════════════════════════════ */

/* --- 1. White & Off-White Color Schemes (Cascading Variables) --- */

/* White Background Sections */
#why-us,
#industries,
#who-we-are,
#services-grid,
#pricing-packages,
#why-odoo,
#odoo-benefits,
#programs,
#sba-gauge-section,
#locations,
#accounting-features {
  --bg-page: #FFFFFF;
  --bg-section: #FFFFFF;
  --bg-card: #F7F4EF;
  --bg-card-hover: #FFFFFF;
  --text-primary: #0B1D39;
  --text-secondary: rgba(11, 29, 57, 0.82);
  --text-muted: rgba(11, 29, 57, 0.62);
  --text-faint: rgba(11, 29, 57, 0.42);
  --border: rgba(11, 29, 57, 0.12);
  --border-light: rgba(11, 29, 57, 0.06);
  --yellow: #D8B74A;
  --yellow-dim: rgba(216, 183, 74, 0.08);
}

/* Warm Off-White Background Sections */
#process,
#testimonials,
#faq,
#credentials,
#partner-badge-section,
#comparison,
#checklist-section,
#contact-portal,
#resource-download,
#approach,
#final-cta,
#value-team,
#consultation {
  --bg-page: #F7F4EF;
  --bg-section: #F7F4EF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --text-primary: #0B1D39;
  --text-secondary: rgba(11, 29, 57, 0.82);
  --text-muted: rgba(11, 29, 57, 0.62);
  --text-faint: rgba(11, 29, 57, 0.42);
  --border: rgba(11, 29, 57, 0.12);
  --border-light: rgba(11, 29, 57, 0.06);
  --yellow: #D8B74A;
  --yellow-dim: rgba(216, 183, 74, 0.08);
}

/* --- 2. Explicit Section Background & Border Enforcements --- */
#why-us,
#process,
#industries,
#testimonials,
#faq,
#who-we-are,
#approach,
#credentials,
#services-grid,
#pricing-packages,
#resource-download,
#why-odoo,
#partner-badge-section,
#odoo-benefits,
#programs,
#comparison,
#sba-gauge-section,
#checklist-section,
#contact-portal,
#locations,
#accounting-features,
#final-cta,
#value-team,
#consultation {
  background: var(--bg-page) !important;
  border-top: 1px solid var(--border-light) !important;
  border-bottom: 1px solid var(--border-light) !important;
}

/* --- 3. Serif Italic gold gradients for light contexts --- */
#why-us .serif-italic,
#process .serif-italic,
#industries .serif-italic,
#testimonials .serif-italic,
#faq .serif-italic,
#who-we-are .serif-italic,
#approach .serif-italic,
#credentials .serif-italic,
#services-grid .serif-italic,
#pricing-packages .serif-italic,
#resource-download .serif-italic,
#why-odoo .serif-italic,
#partner-badge-section .serif-italic,
#odoo-benefits .serif-italic,
#programs .serif-italic,
#comparison .serif-italic,
#sba-gauge-section .serif-italic,
#checklist-section .serif-italic,
#contact-portal .serif-italic,
#locations .serif-italic,
#value-team .serif-italic,
#final-cta .serif-italic {
  background: linear-gradient(90deg, #D8B74A 0%, #EAD27B 50%, #D8B74A 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* --- 4. Curated Navy Tag/Badge overrides for light contexts --- */
#why-us .section-tag,
#process .section-tag,
#industries .section-tag,
#testimonials .section-tag,
#faq .section-tag,
#who-we-are .section-tag,
#approach .section-tag,
#credentials .section-tag,
#services-grid .section-tag,
#pricing-packages .section-tag,
#resource-download .section-tag,
#why-odoo .section-tag,
#partner-badge-section .section-tag,
#odoo-benefits .section-tag,
#programs .section-tag,
#comparison .section-tag,
#sba-gauge-section .section-tag,
#checklist-section .section-tag,
#contact-portal .section-tag,
#locations .section-tag,
#final-cta .section-tag,
#value-team .section-tag,
#consultation .section-tag {
  color: #0B1D39 !important;
  background: rgba(11, 29, 57, 0.05) !important;
  border: 1px solid rgba(11, 29, 57, 0.15) !important;
}

#why-us .section-tag-dot,
#process .section-tag-dot,
#industries .section-tag-dot,
#testimonials .section-tag-dot,
#faq .section-tag-dot,
#who-we-are .section-tag-dot,
#approach .section-tag-dot,
#credentials .section-tag-dot,
#services-grid .section-tag-dot,
#pricing-packages .section-tag-dot,
#resource-download .section-tag-dot,
#why-odoo .section-tag-dot,
#partner-badge-section .section-tag-dot,
#odoo-benefits .section-tag-dot,
#programs .section-tag-dot,
#comparison .section-tag-dot,
#sba-gauge-section .section-tag-dot,
#checklist-section .section-tag-dot,
#contact-portal .section-tag-dot,
#locations .section-tag-dot,
#final-cta .section-tag-dot,
#value-team .section-tag-dot,
#consultation .section-tag-dot {
  background: #0B1D39 !important;
  box-shadow: none !important;
}

/* --- 5. Curated Navy / Steel Button overrides for light contexts --- */
#why-us .btn-primary,
#process .btn-primary,
#industries .btn-primary,
#testimonials .btn-primary,
#faq .btn-primary,
#who-we-are .btn-primary,
#approach .btn-primary,
#credentials .btn-primary,
#services-grid .btn-primary,
#pricing-packages .btn-primary,
#resource-download .btn-primary,
#why-odoo .btn-primary,
#partner-badge-section .btn-primary,
#odoo-benefits .btn-primary,
#programs .btn-primary,
#comparison .btn-primary,
#sba-gauge-section .btn-primary,
#checklist-section .btn-primary,
#contact-portal .btn-primary,
#locations .btn-primary,
#final-cta .btn-primary,
#consultation .btn-primary {
  background: #0B1D39 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(11, 29, 57, 0.08) !important;
}

#why-us .btn-primary:hover,
#process .btn-primary:hover,
#industries .btn-primary:hover,
#testimonials .btn-primary:hover,
#faq .btn-primary:hover,
#who-we-are .btn-primary:hover,
#approach .btn-primary:hover,
#credentials .btn-primary:hover,
#services-grid .btn-primary:hover,
#pricing-packages .btn-primary:hover,
#resource-download .btn-primary:hover,
#why-odoo .btn-primary:hover,
#partner-badge-section .btn-primary:hover,
#odoo-benefits .btn-primary:hover,
#programs .btn-primary:hover,
#comparison .btn-primary:hover,
#sba-gauge-section .btn-primary:hover,
#checklist-section .btn-primary:hover,
#contact-portal .btn-primary:hover,
#locations .btn-primary:hover,
#final-cta .btn-primary:hover,
#consultation .btn-primary:hover {
  background: #1D3B55 !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 25px rgba(11, 29, 57, 0.15) !important;
}

#why-us .btn-ghost,
#process .btn-ghost,
#industries .btn-ghost,
#testimonials .btn-ghost,
#faq .btn-ghost,
#who-we-are .btn-ghost,
#approach .btn-ghost,
#credentials .btn-ghost,
#services-grid .btn-ghost,
#pricing-packages .btn-ghost,
#resource-download .btn-ghost,
#why-odoo .btn-ghost,
#partner-badge-section .btn-ghost,
#odoo-benefits .btn-ghost,
#programs .btn-ghost,
#comparison .btn-ghost,
#sba-gauge-section .btn-ghost,
#checklist-section .btn-ghost,
#contact-portal .btn-ghost,
#locations .btn-ghost,
#final-cta .btn-ghost {
  border-color: rgba(11, 29, 57, 0.15) !important;
  color: #0B1D39 !important;
}

#why-us .btn-ghost:hover,
#process .btn-ghost:hover,
#industries .btn-ghost:hover,
#testimonials .btn-ghost:hover,
#faq .btn-ghost:hover,
#who-we-are .btn-ghost:hover,
#approach .btn-ghost:hover,
#credentials .btn-ghost:hover,
#services-grid .btn-ghost:hover,
#pricing-packages .btn-ghost:hover,
#resource-download .btn-ghost:hover,
#why-odoo .btn-ghost:hover,
#partner-badge-section .btn-ghost:hover,
#odoo-benefits .btn-ghost:hover,
#programs .btn-ghost:hover,
#comparison .btn-ghost:hover,
#sba-gauge-section .btn-ghost:hover,
#checklist-section .btn-ghost:hover,
#contact-portal .btn-ghost:hover,
#locations .btn-ghost:hover,
#final-cta .btn-ghost:hover {
  background: rgba(11, 29, 57, 0.04) !important;
  border-color: rgba(11, 29, 57, 0.3) !important;
  box-shadow: 0 10px 20px rgba(11, 29, 57, 0.05) !important;
}

/* --- 6. Card & Block Styling in Light Contexts --- */
#why-us .why2-block,
#approach .why2-block,
#services-grid .service-card,
#testimonials .testi-card,
#faq .faq-item,
#credentials .cred-card,
#pricing-packages .pkg-card,
#programs .program-card,
#partner-badge-section .partner-badge,
#locations .office-card,
#locations .contact-info-card,
#consultation .cta-form-card {
  background: var(--bg-card) !important;
  border: 1px solid rgba(11, 29, 57, 0.08) !important;
  box-shadow: 0 10px 30px rgba(11, 29, 57, 0.03) !important;
}

#why-us .why2-block:hover,
#approach .why2-block:hover,
#services-grid .service-card:hover,
#testimonials .testi-card:hover,
#faq .faq-item:hover,
#credentials .cred-card:hover,
#pricing-packages .pkg-card:hover,
#programs .program-card:hover,
#partner-badge-section .partner-badge:hover,
#locations .office-card:hover,
#locations .contact-info-card:hover {
  background: var(--bg-card-hover) !important;
  border-color: rgba(11, 29, 57, 0.16) !important;
  box-shadow: 0 20px 40px rgba(11, 29, 57, 0.07) !important;
}

/* --- 7. SVG Stroke & Fill Overrides for Inline Yellow Icons in Light Sections --- */
#why-us svg path,
#why-us svg circle,
#why-us svg rect,
#process svg path,
#process svg circle,
#process svg rect,
#approach svg path,
#approach svg circle,
#approach svg rect,
#credentials svg path,
#credentials svg circle,
#credentials svg rect,
#services-grid svg path,
#services-grid svg circle,
#services-grid svg rect,
#pricing-packages svg path,
#pricing-packages svg circle,
#pricing-packages svg rect,
#why-odoo svg path,
#why-odoo svg circle,
#why-odoo svg rect,
#odoo-benefits svg path,
#odoo-benefits svg circle,
#odoo-benefits svg rect,
#programs svg path,
#programs svg circle,
#programs svg rect,
#comparison svg path,
#comparison svg circle,
#comparison svg rect,
#checklist-section svg path,
#checklist-section svg circle,
#checklist-section svg rect {
  stroke: var(--yellow) !important;
}

#why-us svg [fill="#EAE42F"],
#process svg [fill="#EAE42F"],
#approach svg [fill="#EAE42F"],
#credentials svg [fill="#EAE42F"],
#services-grid svg [fill="#EAE42F"],
#pricing-packages svg [fill="#EAE42F"],
#why-odoo svg [fill="#EAE42F"],
#odoo-benefits svg [fill="#EAE42F"],
#programs svg [fill="#EAE42F"],
#comparison svg [fill="#EAE42F"],
#checklist-section svg [fill="#EAE42F"] {
  fill: var(--yellow) !important;
}

/* --- 8. Process timeline elements overrides --- */
#process .ps-dot.ps-dot-active {
  border-color: var(--yellow) !important;
  background: var(--yellow) !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 0 4px rgba(216, 183, 74, 0.15), 0 0 20px rgba(216, 183, 74, 0.3) !important;
}

#process .process-line {
  background: rgba(11, 29, 57, 0.08) !important;
}

#process .process-line-progress {
  background: linear-gradient(90deg, #5CA8E8 0%, var(--yellow) 100%) !important;
}

/* --- 9. Form elements overrides in Light Contexts --- */
#checklist-section .cta-form-card,
#contact-portal .cta-form-card,
#contact-portal .contact-form-wrap,
#contact-portal .contact-info-wrap,
#consultation .cta-form-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(11, 29, 57, 0.08) !important;
  box-shadow: 0 30px 60px rgba(11, 29, 57, 0.06) !important;
}

#checklist-section .form-input,
#contact-portal .form-input,
#consultation .form-input {
  background: rgba(11, 29, 57, 0.03) !important;
  border: 1px solid rgba(11, 29, 57, 0.12) !important;
  color: #0B1D39 !important;
}

#checklist-section .form-input::placeholder,
#contact-portal .form-input::placeholder,
#consultation .form-input::placeholder {
  color: rgba(11, 29, 57, 0.4) !important;
}

#checklist-section .form-input:focus,
#contact-portal .form-input:focus,
#consultation .form-input:focus {
  background: rgba(216, 183, 74, 0.03) !important;
  border-color: var(--yellow) !important;
  box-shadow: 0 0 0 3px rgba(216, 183, 74, 0.1) !important;
}

#checklist-section .form-select option,
#contact-portal .form-select option,
#consultation .form-select option {
  background: #FFFFFF !important;
  color: #0B1D39 !important;
}

#checklist-section select.form-input {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 10px !important;
}

#contact-portal select.form-input,
#consultation select.form-input {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%230b1d39' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 10px !important;
}

#contact-portal .contact-info-card:hover {
  background: #FFFFFF !important;
  border-color: rgba(11, 29, 57, 0.16) !important;
  box-shadow: 0 10px 25px rgba(11, 29, 57, 0.05) !important;
}

#contact-portal .cic-icon {
  color: var(--yellow) !important;
  background: rgba(216, 183, 74, 0.05) !important;
  border-color: rgba(216, 183, 74, 0.15) !important;
}

#locations .office-icon-wrap {
  background: rgba(216, 183, 74, 0.06) !important;
  border-color: rgba(216, 183, 74, 0.2) !important;
  color: var(--yellow) !important;
}

#partner-badge-section .partner-badge {
  background: #FFFFFF !important;
  border-color: rgba(11, 29, 57, 0.12) !important;
  box-shadow: 0 10px 25px rgba(11, 29, 57, 0.04) !important;
}

#partner-badge-section .partner-badge-text span {
  color: var(--yellow) !important;
}

#sba-gauge-section .sba-check-item {
  background: rgba(11, 29, 57, 0.03) !important;
  border: 1px solid rgba(11, 29, 57, 0.1) !important;
}

#sba-gauge-section .sba-check-item:hover {
  background: rgba(216, 183, 74, 0.04) !important;
  border-color: rgba(216, 183, 74, 0.3) !important;
}

#sba-gauge-section .sba-check-item.checked {
  background: rgba(216, 183, 74, 0.06) !important;
  border-color: rgba(216, 183, 74, 0.3) !important;
}

#sba-gauge-section .sba-check-item.checked .sba-check-label {
  color: #0B1D39 !important;
}

#sba-gauge-section .sba-check-item.checked .sba-check-icon {
  color: var(--yellow) !important;
}

/* --- 10. Featured packages and testimonials tweaks --- */
#pricing-packages .pkg-card.pkg-featured {
  background: rgba(216, 183, 74, 0.02) !important;
  border-color: rgba(216, 183, 74, 0.28) !important;
}

#pricing-packages .pkg-card.pkg-featured:hover {
  background: rgba(216, 183, 74, 0.04) !important;
  border-color: rgba(216, 183, 74, 0.5) !important;
}

/* --- 11. FAQ specific overrides --- */
#faq .faq-trigger {
  color: #0B1D39 !important;
}

#faq .faq-trigger:hover {
  color: var(--yellow) !important;
}

/* --- 12. Five Stage Success Process Overrides --- */
#process .ps-card {
  display: flex !important;
  opacity: 0.65 !important;
  filter: blur(4px) !important;
  transform: none !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(11, 29, 57, 0.08) !important;
  box-shadow: 0 4px 20px rgba(11, 29, 57, 0.02) !important;
  padding: 28px 24px !important;
  transition: filter 350ms cubic-bezier(0.16, 1, 0.3, 1), opacity 350ms cubic-bezier(0.16, 1, 0.3, 1), border-color 350ms ease, background 350ms ease, box-shadow 350ms ease !important;
}

#process .process-step:hover .ps-card,
#process .process-step.active .ps-card {
  opacity: 1 !important;
  filter: blur(0px) !important;
  border-color: rgba(216, 183, 74, 0.25) !important;
  box-shadow: 0 20px 40px rgba(11, 29, 57, 0.06) !important;
  background: #FFFFFF !important;
  transform: translateY(-6px) !important;
}

#process .process-steps {
  gap: 24px !important;
  margin-top: 50px !important;
}

/* --- 13. Credentials & Compliance Card Overrides --- */
.cred-card.card-navy {
  background: #0B1D39 !important;
  border-color: rgba(172, 204, 242, 0.15) !important;
}

.cred-card.card-navy .cred-title {
  color: #EAF1FB !important;
}

.cred-card.card-navy .cred-desc {
  color: #ACCCF2 !important;
}

/* --- 14. Value of Your Finance Team Section --- */
.value-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.value-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 20px !important;
  padding: 32px !important;
  box-shadow: 0 10px 30px rgba(11, 29, 57, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 45px rgba(11, 29, 57, 0.08) !important;
  border-color: rgba(216, 183, 74, 0.25) !important;
}

.value-card-icon {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--yellow) !important;
  display: flex;
}

.value-card-icon svg {
  stroke: var(--yellow) !important;
}

.value-card-title {
  font-size: var(--text-h4) !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  margin-bottom: 12px !important;
  letter-spacing: var(--ls-subhead) !important;
}

.value-card-desc {
  font-size: var(--text-sm) !important;
  color: var(--text-secondary) !important;
  line-height: var(--lh-body) !important;
}

.value-team-section {
  position: relative;
  overflow: hidden;
}

.value-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.04;
  z-index: 0;
}

.value-shape.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--yellow);
  top: -50px;
  left: 10%;
}

.value-shape.shape-2 {
  width: 250px;
  height: 250px;
  background: var(--steel-300);
  bottom: -30px;
  right: 15%;
}

@media (max-width: 992px) {
  .value-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .value-team-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* --- 15. Odoo Benefits / Advantages Section Overrides --- */
#odoo-benefits .why2-block {
  background: #FFFFFF !important;
  border: 1px solid rgba(11, 29, 57, 0.08) !important;
  box-shadow: 0 10px 30px rgba(11, 29, 57, 0.03) !important;
}

#odoo-benefits .why2-block:hover {
  border-color: rgba(216, 183, 74, 0.35) !important;
  box-shadow: 0 20px 48px rgba(11, 29, 57, 0.08) !important;
}

#odoo-benefits .why2-title {
  color: #0B1D39 !important;
}

#odoo-benefits .why2-desc {
  color: rgba(11, 29, 57, 0.82) !important;
}

#odoo-benefits .why2-num {
  color: rgba(216, 183, 74, 0.95) !important;
  /* High visibility gold */
  font-weight: 800 !important;
  text-shadow: 0 0 1px rgba(216, 183, 74, 0.1);
}

/* --- 16. Dropdown Options Global Color Enforcement --- */
select.form-input option {
  background-color: #0b1d39 !important;
  color: #ffffff !important;
}




/* ----------------------------
   CUSTOM ANIMATION FOR FOUR PILLARS
---------------------------- */
.custom-anim-card {
  display: flex;
  flex-direction: column;
  overflow: visible !important; /* allow full card content (text + image) to show */
}

/* Clip only the ::before and ::after pseudo-elements that create hover effects */
.custom-anim-card::before,
.custom-anim-card::after {
  border-radius: var(--card-radius);
  overflow: hidden;
}

/* Image wraps at bottom — constrain to a reasonable max height */
.custom-anim-card .why2-img-wrap {
  max-height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.custom-anim-card .why2-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Base inactive states (GSAP) */
.custom-anim-card {
  opacity: 0.45;
  transform: scale(0.96);
  filter: blur(2px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

/* Active states (GSAP) */
.custom-anim-card.is-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.timeline-line {
  position: absolute;
  top: 0;
  width: 2px;
  background-color: rgba(216, 183, 74, 0.3);
  /* light gray/gold track */
  z-index: 0;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #D8B74A;
  /* solid gold */
  transform-origin: top;
  transform: scaleY(0);
  /* animated by GSAP */
}

/* ----------------------------
   TIMELINE LAYOUT (ZIG-ZAG)
---------------------------- */
@media (min-width: 901px) {
  .why2-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 80px !important;
    position: relative;
    align-items: start;
  }

  /* Center Timeline Line */
  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
    height: 100vh;
  }

  .why2-grid .custom-anim-card {
    z-index: 1;
    position: relative;
    max-width: 440px;
    /* Preserve card size */
    width: 100%;
  }

  /* Zig-Zag Grid Placement */
  .why2-grid .custom-anim-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
  }

  .why2-grid .custom-anim-card:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    margin-top: -120px;
  }

  .why2-grid .custom-anim-card:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
    margin-top: -120px;
  }

  .why2-grid .custom-anim-card:nth-child(4) {
    grid-column: 2;
    grid-row: 4;
    justify-self: start;
    margin-top: -120px;
  }
}

@media (max-width: 900px) {
  .why2-grid {
    display: flex !important;
    flex-direction: column !important;
    padding-left: 32px !important;
    gap: 30px !important;
    position: relative;
  }

  /* Left Timeline Line */
  .timeline-line {
    left: 0;
    height: 100%;
  }

  .why2-grid .custom-anim-card {
    width: 100% !important;
    max-width: none !important;
    align-self: stretch;
    z-index: 1;
    position: relative;
    margin-top: 0 !important;
    /* Reset stagger */
  }
}

/* ═══════════════════════════ BRAND BANNER ═══════════════════════════ */
.brand-banner-section {
  padding: 40px 0;
  background: var(--bg-page);
  position: relative;
  z-index: 2;
}

.brand-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.brand-banner-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.brand-banner-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── Smarter System Table ── */
.smarter-system-table-wrap {
  margin-top: 56px;
  overflow-x: auto;
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  background: var(--bg-card);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.smarter-system-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  text-align: left;
  font-size: 14px;
}

.smarter-system-table th {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.02);
}

.smarter-system-table td {
  padding: 18px 24px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(70, 130, 180, 0.1);
  transition: background 0.3s ease;
}

.smarter-system-table tr:last-child td {
  border-bottom: none;
}

.smarter-system-table .table-highlight {
  color: var(--yellow);
  font-weight: 600;
  background: rgba(216, 183, 74, 0.03);
}

.smarter-system-table tr:hover td {
  background: rgba(255, 255, 255, 0.01);
}

/* ════════════════════════════
   FOUR PILLARS CLEAN GRID
════════════════════════════ */
.why2-section {
  padding: 80px 0;
  position: relative;
}

.timeline-container {
  position: relative;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 40px 0;
}

/* Thin vertical line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(216, 183, 74, 0.15);
  transform: translateX(-50%);
  transform-origin: top;
}

/* Animated active vertical line */
.timeline-line-active {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  background: var(--yellow);
  transform: translateX(-50%);
  transform-origin: top;
  height: 0;
  transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated state */
.timeline-item.animated-in .left-content,
.timeline-item.animated-in .right-content {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item.animated-in .timeline-img-wrap {
  opacity: 1;
  transform: scale(1);
}

.timeline-item.animated-in .timeline-dot {
  transform: scale(1);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  position: relative;
  width: 100%;
}

.timeline-text {
  background: var(--bg-card, #FFFFFF);
  border: 1px solid var(--border-light, rgba(70, 130, 180, 0.15));
  border-radius: var(--card-radius, 20px);
  padding: 36px 32px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.timeline-text:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 183, 74, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(216, 183, 74, 0.08);
}

.pillar-title {
  font-size: var(--text-h4);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: var(--ls-subhead);
}

.pillar-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--lh-body);
  margin-bottom: 14px;
}

.pillar-proof {
  font-size: var(--text-2xs);
  color: var(--yellow);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
}

.timeline-img-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light, rgba(70, 130, 180, 0.15));
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  display: block;
}

.timeline-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-img-wrap:hover img {
  transform: scale(1.04);
}


/* Center Badge / Dot */
.timeline-badge {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}

#why-us .timeline-badge {
  background: #FFFFFF;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(216, 183, 74, 0.15), 0 0 12px var(--yellow);
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Timeline Scroll Reveal Styles */
.timeline-item .left-content {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item .right-content {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item .timeline-img-wrap {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

  opacity: 1;
  transform: translateX(0);
}

.timeline-item.animated-in .timeline-img-wrap {
  opacity: 1;
  transform: scale(1);
}

.timeline-item.animated-in .timeline-dot {
  transform: scale(1);
}

@media (max-width: 1024px) {
  .timeline-item {
    gap: 40px;
    margin-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .timeline-line,
  .timeline-line-active {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
    text-align: center;
  }

  .timeline-badge {
    margin: 0 auto;
    order: 1 !important;
  }

  /* Force Mobile Alternating Display */
  #timelineStep1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #timelineStep1 .timeline-badge { order: 1; }
  #timelineStep1 .left-content { order: 2; }
  #timelineStep1 .right-content { order: 3; }

  #timelineStep2 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #timelineStep2 .timeline-badge { order: 1; }
  #timelineStep2 .left-content { order: 3; }
  #timelineStep2 .right-content { order: 2; }

  #timelineStep3 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #timelineStep3 .timeline-badge { order: 1; }
  #timelineStep3 .left-content { order: 2; }
  #timelineStep3 .right-content { order: 3; }

  #timelineStep4 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #timelineStep4 .timeline-badge { order: 1; }
  #timelineStep4 .left-content { order: 3; }
  #timelineStep4 .right-content { order: 2; }

  .timeline-item .left-content,
  .timeline-item .right-content {
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .timeline-item.animated-in .left-content,
  .timeline-item.animated-in .right-content {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════
   PROFESSIONAL SLIDESHOW MODE
   ════════════════════════════ */
.slideshow-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slideshow-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px; /* 40px spacing below section description */
  width: 100%;
}

.slides-viewport {
  position: relative;
  width: 100%;
  height: 700px; /* viewport height to fit both stacked 320px text + 320px image + 24px gap */
  overflow: hidden;
}

.slide-item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px); /* Incoming slide starts from right */
  transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
}

.slide-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.slide-item.slide-left {
  transform: translateX(-30px); /* Outgoing slide moves slightly left */
  opacity: 0;
  visibility: hidden;
}

.slide-text-container {
  width: 100%;
  max-width: 760px; /* Shared wrapper width */
  margin: 0 auto;
  text-align: center;
}

.slide-text-container .timeline-text {
  background: var(--bg-card, #FFFFFF);
  border: 1px solid var(--border-light, rgba(70, 130, 180, 0.15));
  border-radius: 20px;
  padding: 32px; /* 32px padding */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
  text-align: left;
  width: 100%;
  height: 320px; /* Shared height */
  box-sizing: border-box;
}

/* Override the global scroll reveal hidden states for wrapper containers inside slides */
.slide-item.active .slide-text-container,
.slide-item.active .slide-img-container {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.slide-img-container {
  width: 100%;
  max-width: 760px; /* Shared wrapper width */
  margin: 24px auto 0; /* 24px gap between text card and image */
  box-sizing: border-box;
}

.slide-img-container .timeline-img-wrap {
  width: 100%;
  height: 320px; /* Shared height */
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light, rgba(70, 130, 180, 0.15));
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card, #FFFFFF);
  box-sizing: border-box;
  padding: 16px;
}

.slide-img-container .timeline-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* object-fit: contain */
  display: block;
}

/* Slide navigation buttons */
.slide-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card, #FFFFFF);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.slide-nav-btn:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-50%) scale(1.05);
}

.prev-btn {
  left: -70px;
}

.next-btn {
  right: -70px;
}

/* Dots navigation */
.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px; /* 32px spacing above navigation dots */
  z-index: 10;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(11, 29, 57, 0.15);
  cursor: pointer;
  transition: background-color 0.35s ease, transform 0.35s ease;
}

.slide-dot.active {
  background-color: var(--yellow);
  transform: scale(1.25);
}

@media (max-width: 1240px) {
  .prev-btn {
    left: 10px;
  }
  .next-btn {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .slides-viewport {
    height: 820px;
  }
  .slide-text-container {
    margin-bottom: 24px;
  }
  .slide-nav-btn {
    width: 40px;
    height: 40px;
  }
}

/* Value-card hover lift animation */
.value-card {
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.35s ease;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}

/* ═══════════════════════════════════════════════════════════════
   ODOO DEMO VIDEO SECTION
═══════════════════════════════════════════════════════════════ */
.odoo-demo-section {
    padding: 80px 0;
    background: var(--bg-page);
    position: relative;
}

.odoo-demo-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 48px;
}

.odoo-demo-player {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(216,183,74,0.15);
    border: 1px solid rgba(216,183,74,0.2);
    background: #000;
}

.odoo-demo-player video {
    width: 100%;
    height: auto;
    display: block;
}

/* Play overlay */
.odoo-demo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11,29,57,0.55) 0%, rgba(11,29,57,0.3) 100%);
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.odoo-demo-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.odoo-play-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

.odoo-play-btn:hover {
    transform: scale(1.08);
}

.odoo-play-btn svg {
    width: 88px;
    height: 88px;
    filter: drop-shadow(0 8px 24px rgba(216,183,74,0.4));
    transition: filter 0.3s ease;
}

.odoo-play-btn:hover svg {
    filter: drop-shadow(0 12px 32px rgba(216,183,74,0.7));
}

.odoo-play-btn span {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D8B74A;
}

/* Benefit chips */
.odoo-demo-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.odoo-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(216,183,74,0.07);
    border: 1px solid rgba(216,183,74,0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.odoo-chip:hover {
    background: rgba(216,183,74,0.14);
    border-color: rgba(216,183,74,0.4);
    transform: translateY(-2px);
}

.odoo-chip-icon {
    font-size: 15px;
}

@media (max-width: 768px) {
    .odoo-demo-player { border-radius: 10px; }
    .odoo-play-btn svg { width: 64px; height: 64px; }
    .odoo-chip { font-size: 12px; padding: 8px 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   ODOO ECOSYSTEM IMAGE SECTION
═══════════════════════════════════════════════════════════════ */
.odoo-ecosystem-section {
    padding: 80px 0;
    background: var(--bg-page);
    position: relative;
}

.odoo-ecosystem-img-wrap {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(216, 183, 74, 0.18);
    box-shadow: 0 24px 64px rgba(0,0,0,0.35),
                0 0 0 1px rgba(216,183,74,0.08),
                inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.4s ease;
}

.odoo-ecosystem-img-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4),
                0 0 0 1px rgba(216,183,74,0.2);
}

.odoo-ecosystem-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .odoo-ecosystem-img-wrap {
        border-radius: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESOURCE DOWNLOAD CARD CONTRAST CORRECTIONS
   Ensures text and badge readability within the dark card context
   nested inside the light #resource-download section.
   ═══════════════════════════════════════════════════════════════ */
#resource-download .two-col-grid {
  --text-primary: var(--steel-100) !important;
  --text-secondary: var(--steel-200) !important;
}

#resource-download .two-col-grid .section-tag {
  color: var(--yellow) !important;
  background: var(--yellow-dim) !important;
  border: 1px solid rgba(216, 183, 74, 0.22) !important;
}

#resource-download .two-col-grid .section-tag-dot {
  background: var(--yellow) !important;
  box-shadow: 0 0 6px var(--yellow) !important;
}

#resource-download .two-col-grid .btn-primary {
  background: var(--steel-100) !important;
  color: var(--steel-700) !important;
  box-shadow: 0 4px 15px rgba(250, 200, 80, 0.1) !important;
}

#resource-download .two-col-grid .btn-primary:hover {
  background: #ffffff !important;
  color: var(--steel-700) !important;
  box-shadow: 0 8px 30px rgba(250, 200, 80, 0.35) !important;
}

/* ═══════════════════════════════════════════════════════════════
   PRIVACY POLICY MODAL (SMALL BOX OVERLAY)
   ═══════════════════════════════════════════════════════════════ */
.privacy-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 16, 31, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.privacy-modal-card {
    background: linear-gradient(145deg, #0f1d31 0%, #0b1728 100%);
    border: 1px solid rgba(70, 130, 180, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(216, 183, 74, 0.15);
    border-radius: 20px;
    width: 100%;
    max-width: 540px;
    max-height: 82vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.92) translateY(15px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--steel-100);
}

.privacy-modal-overlay.active .privacy-modal-card {
    transform: scale(1) translateY(0);
}

.privacy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(70, 130, 180, 0.2);
    background: rgba(15, 29, 49, 0.6);
}

.privacy-modal-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-modal-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(216, 183, 74, 0.12);
    border: 1px solid rgba(216, 183, 74, 0.3);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.privacy-modal-title {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 700;
    color: var(--steel-100);
    letter-spacing: -0.01em;
    margin: 0;
}

.privacy-modal-close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--steel-300);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.privacy-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.privacy-modal-body {
    padding: 24px;
    overflow-y: auto;
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.6;
    color: var(--steel-200);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.privacy-modal-body::-webkit-scrollbar {
    width: 6px;
}
.privacy-modal-body::-webkit-scrollbar-track {
    background: rgba(11, 29, 57, 0.5);
    border-radius: 4px;
}
.privacy-modal-body::-webkit-scrollbar-thumb {
    background: rgba(70, 130, 180, 0.4);
    border-radius: 4px;
}
.privacy-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(216, 183, 74, 0.6);
}

.privacy-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.privacy-modal-body p {
    margin: 0;
    font-size: 13.5px;
    color: var(--steel-200);
}

.privacy-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(70, 130, 180, 0.2);
    background: rgba(15, 29, 49, 0.6);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.privacy-modal-btn {
    background: var(--yellow);
    color: #0b1728;
    border: none;
    border-radius: 8px;
    padding: 9px 22px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(216, 183, 74, 0.25);
}

.privacy-modal-btn:hover {
    background: #e5c455;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(216, 183, 74, 0.35);
}

@media (max-width: 576px) {
    .privacy-modal-card {
        max-width: 100%;
        max-height: 85vh;
        border-radius: 16px;
    }
    .privacy-modal-header, .privacy-modal-body, .privacy-modal-footer {
        padding: 16px 18px;
    }
}


