/* ==========================================================================
   SKYLET CONSULTANCY - PREMIER WHITE & LIGHT LUXURY DESIGN SYSTEM
   Google-Inspired Minimalist Clarity + Swiss Typographical Precision
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Premium White / Light Theme Palette */
  --bg-main: #FFFFFF;
  --bg-surface: #F8FAFC;
  --bg-surface-elevated: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-subtle: #F1F5F9;
  --bg-accent-soft: #EEF2FF;
  --bg-border: #E2E8F0;
  --bg-border-light: rgba(15, 23, 42, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.85);

  /* Typography Colors (Ultra-Crisp Contrast) */
  --text-primary: #0F172A;        /* Slate 900 */
  --text-secondary: #334155;      /* Slate 700 */
  --text-muted: #64748B;          /* Slate 500 */
  --text-subtle: #94A3B8;         /* Slate 400 */
  --text-inverse: #FFFFFF;

  /* Accent Brand Colors */
  --accent-primary: #4F46E5;       /* Silicon Valley Indigo */
  --accent-primary-hover: #4338CA;
  --accent-secondary: #0891B2;     /* Deep Cyan */
  --accent-secondary-light: #06B6D4;
  --accent-tertiary: #7C3AED;      /* Royal Violet */
  --accent-amber: #D97706;         /* Venture Gold */
  --accent-amber-light: #F59E0B;
  --accent-emerald: #059669;       /* Growth Green */
  --accent-rose: #E11D48;

  /* Luxury Gradients */
  --gradient-brand: linear-gradient(135deg, #4F46E5 0%, #0891B2 100%);
  --gradient-brand-subtle: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(8, 145, 178, 0.08) 100%);
  --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --gradient-gold-subtle: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
  --gradient-emerald-subtle: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
  --gradient-surface: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Multi-Layered Soft Elevation Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.10), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 30px 60px -12px rgba(15, 23, 42, 0.14), 0 12px 24px -4px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 0 35px rgba(79, 70, 229, 0.18);
  --shadow-glow-cyan: 0 0 35px rgba(8, 145, 178, 0.15);
  --shadow-glow-gold: 0 0 35px rgba(245, 158, 11, 0.18);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-spring);
  --transition-normal: 0.35s var(--ease-spring);
  --transition-slow: 0.6s var(--ease-spring);

  /* Container */
  --container-max: 1280px;
  --header-height: 84px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Subtle Ambient Gradient Blobs on Pure White Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 10%, rgba(79, 70, 229, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(8, 145, 178, 0.035) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(124, 58, 237, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 600; }
p { color: var(--text-secondary); font-size: 1.05rem; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.section {
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 7.5rem);
  position: relative;
}

.section-alt {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem) auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

/* Badges & Pills */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: var(--radius-full);
  color: var(--accent-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.badge-pill.cyan {
  background: rgba(8, 145, 178, 0.08);
  border-color: rgba(8, 145, 178, 0.22);
  color: var(--accent-secondary);
}

.badge-pill.gold {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  color: #B45309;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: currentColor;
  box-shadow: 0 0 6px currentColor;
  animation: pulse-dot 2s infinite ease-in-out;
}

/* Gradient Text Accents */
.gradient-text-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* White Elevated Cards & Glassmorphism */
.card-glass {
  background: #FFFFFF;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.card-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.25), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.card-glass:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(79, 70, 229, 0.08);
}

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

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.975rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  user-select: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(79, 70, 229, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4338CA 0%, #0E7490 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(79, 70, 229, 0.4);
  color: #FFFFFF;
}

.btn-secondary {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: var(--text-primary);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: #94A3B8;
  transform: translateY(-2px);
  color: var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.45);
  color: #FFFFFF;
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.075rem;
  border-radius: var(--radius-full);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

/* Site Navigation Header (White Frosted Glass) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--bg-border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  height: 74px;
}

/* Header Dynamic Glow Bar */
.header-glow-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.45), rgba(8, 145, 178, 0.5), rgba(245, 158, 11, 0.45), transparent);
  background-size: 200% 100%;
  opacity: 0.7;
  animation: shimmer-bar 6s ease-in-out infinite;
  pointer-events: none;
}

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

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  text-decoration: none;
  position: relative;
  transition: transform 0.35s var(--ease-spring);
}

.brand-logo:hover {
  transform: translateY(-1px) scale(1.02);
}

.brand-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s ease;
  filter: drop-shadow(0 4px 12px rgba(2, 132, 199, 0.25));
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.brand-logo:hover .brand-logo-icon {
  transform: translateY(-2px) scale(1.06);
  filter: drop-shadow(0 8px 20px rgba(0, 240, 255, 0.45)) drop-shadow(0 0 12px rgba(79, 70, 229, 0.35));
}

.brand-logo:hover .brand-logo-img {
  transform: rotate(-3deg) scale(1.05);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0F172A;
  display: inline-flex;
  align-items: baseline;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #0369A1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-dot {
  color: #00F0FF;
  background: linear-gradient(135deg, #00F0FF, #4F46E5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #64748B;
  margin-top: 1px;
}

.site-footer .brand-name {
  background: linear-gradient(135deg, #0F172A 0%, #0284C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Desktop Main Nav Wrapper & Magnetic Pill */
.main-nav-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-pill-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 38px;
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.18);
  border-radius: var(--radius-full);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.32s cubic-bezier(0.34, 1.4, 0.64, 1), 
              width 0.28s cubic-bezier(0.34, 1.4, 0.64, 1), 
              left 0.28s cubic-bezier(0.34, 1.4, 0.64, 1), 
              opacity 0.2s ease;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.06);
}

.nav-pill-indicator.visible {
  opacity: 1;
  transform: scale(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--accent-primary);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--accent-primary);
  font-weight: 700;
}

.nav-link-text {
  position: relative;
  z-index: 3;
}

.dropdown-chevron {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-item-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

/* Hold-to-Charge Ring & Progress FX */
.nav-hold-ring {
  position: absolute;
  bottom: 3px;
  left: 14%;
  right: 14%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.1s linear;
  opacity: 0;
  box-shadow: 0 0 8px rgba(79, 70, 229, 0.6);
  pointer-events: none;
  z-index: 4;
}

.nav-link.charging .nav-hold-ring {
  opacity: 1;
}

/* Holdable CTA Button */
.btn-nav-hold {
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-hold-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.55));
  transition: width 0.05s linear;
  pointer-events: none;
  z-index: 2;
  border-right: 2px solid #FFFFFF;
  box-shadow: 0 0 12px #FFFFFF;
}

/* Floating HUD Charge Badge */
.nav-hold-hud {
  position: fixed;
  padding: 0.35rem 0.85rem;
  background: rgba(15, 23, 42, 0.94);
  color: #FFFFFF;
  border: 1px solid rgba(79, 70, 229, 0.4);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25), 0 0 15px rgba(79, 70, 229, 0.4);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -100%) scale(0.85);
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-hold-hud.active {
  opacity: 1;
  transform: translate(-50%, -130%) scale(1);
}

.nav-hold-hud-spark {
  width: 8px;
  height: 8px;
  background: #F59E0B;
  border-radius: 50%;
  animation: pulse-dot 0.6s infinite alternate;
  box-shadow: 0 0 8px #F59E0B;
}

/* 3D Dropdown Menu (Practices) */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) perspective(800px) rotateX(-12deg) translateY(-10px) scale(0.96);
  transform-origin: top center;
  width: 640px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12), 0 0 30px rgba(79, 70, 229, 0.06);
  opacity: 0;
  pointer-events: none;
  transition: all 0.32s cubic-bezier(0.34, 1.4, 0.64, 1);
  z-index: 1001;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) perspective(800px) rotateX(0deg) translateY(0) scale(1);
}

.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--bg-border);
}

.dropdown-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
}

.dropdown-view-all {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-view-all:hover {
  color: var(--accent-primary);
  transform: translateX(3px);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dropdown-item:hover {
  background: #F8FAFC;
  border-color: rgba(79, 70, 229, 0.15);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dropdown-item:hover .dropdown-icon {
  transform: scale(1.12) rotate(6deg);
}

.dropdown-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.dropdown-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.sound-toggle-btn {
  background: #FFFFFF;
  border: 1px solid var(--bg-border);
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.sound-toggle-btn:hover {
  background: var(--bg-accent-soft);
  color: var(--accent-primary);
  border-color: rgba(79, 70, 229, 0.3);
}

.sound-toggle-btn.sound-active {
  color: var(--accent-primary);
  border-color: rgba(79, 70, 229, 0.4);
  background: var(--bg-accent-soft);
}

.sound-waves {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 12px;
}

.sound-wave-bar {
  width: 2px;
  height: 100%;
  background: currentColor;
  border-radius: 1px;
}

.sound-active .sound-wave-bar:nth-child(1) { animation: wave 1s ease-in-out infinite 0.1s; }
.sound-active .sound-wave-bar:nth-child(2) { animation: wave 1s ease-in-out infinite 0.3s; }
.sound-active .sound-wave-bar:nth-child(3) { animation: wave 1s ease-in-out infinite 0.2s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 5.5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 75% 25%, rgba(79, 70, 229, 0.05) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(8, 145, 178, 0.04) 0%, transparent 50%);
}

.hero-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  z-index: 1;
}

/* Ripple Canvas Overlay */
.ripple-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.65;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  margin: 1.5rem 0 2.5rem 0;
  max-width: 650px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-metrics {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bg-border);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-weight: 600;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* Service Card Component */
.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #FFFFFF;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--bg-accent-soft);
  border: 1px solid rgba(79, 70, 229, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
  color: var(--accent-primary);
}

.service-card:hover .service-icon-box {
  background: var(--accent-primary);
  color: #FFFFFF;
  border-color: var(--accent-primary);
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-top: auto;
  transition: gap var(--transition-fast);
}

.service-card:hover .service-link {
  gap: 0.85rem;
  color: var(--accent-secondary);
}

/* Process Step Card */
.process-step-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.process-step-card:hover {
  border-color: rgba(8, 145, 178, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.process-step-number {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: #CBD5E1;
  margin-bottom: 1rem;
  transition: color var(--transition-fast);
}

.process-step-card:hover .process-step-number {
  color: var(--accent-secondary);
}

/* Forms System (Light Theme) */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.975rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

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

/* Light Mega Footer */
.site-footer {
  background: #F8FAFC;
  border-top: 1px solid var(--bg-border);
  padding: 5.5rem 0 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.15fr 1.35fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin: 1.25rem 0 2rem 0;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.925rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bg-border);
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 991px) {
  .main-nav-wrapper {
    display: none;
  }
  .nav-actions .btn-nav-hold {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  
  /* Body bottom padding for mobile app bar */
  body {
    padding-bottom: calc(85px + env(safe-area-inset-bottom, 12px));
  }
}

@media (max-width: 868px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
}

/* ==========================================================================
   NATIVE MOBILE APP BOTTOM NAVIGATION BAR & ACTION SHEETS (< 992px)
   ========================================================================== */

.mobile-app-bottom-bar {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 14px;
  right: 14px;
  z-index: 9998;
  pointer-events: auto;
}

@media (max-width: 991px) {
  .mobile-app-bottom-bar {
    display: block;
  }
}

.mobile-bottom-nav-inner {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: 0.45rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12), 0 0 20px rgba(79, 70, 229, 0.08);
}

.mobile-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: 18px;
  position: relative;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-tab-icon-wrap {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-tab-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.mobile-tab-active-dot {
  width: 4px;
  height: 4px;
  background: var(--accent-primary);
  border-radius: 50%;
  position: absolute;
  bottom: 1px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-tab.active {
  color: var(--accent-primary);
}

.mobile-tab.active .mobile-tab-icon-wrap {
  transform: translateY(-2px) scale(1.12);
}

.mobile-tab.active .mobile-tab-active-dot {
  opacity: 1;
  transform: scale(1);
}

.mobile-tab:active {
  transform: scale(0.92);
}

/* Center Action Hub Floating Button */
.mobile-tab-center-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -24px;
}

.mobile-center-action-btn {
  width: 52px;
  height: 52px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.45);
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 3px solid #FFFFFF;
  -webkit-tap-highlight-color: transparent;
}

.mobile-center-action-btn:active {
  transform: scale(0.92);
}

.mobile-center-glow {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gradient-brand);
  opacity: 0.5;
  filter: blur(6px);
  z-index: 0;
  animation: pulse-slow 3s infinite;
}

.mobile-center-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-center-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 3px;
}

/* Native iOS-Style Mobile Action Sheets */
.mobile-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-sheet-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-action-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-radius: 28px 28px 0 0;
  border-top: 1px solid var(--bg-border);
  box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.2);
  z-index: 99995;
  max-height: 85vh;
  overflow-y: auto;
  padding: 1.25rem 1.5rem calc(2rem + env(safe-area-inset-bottom, 12px)) 1.5rem;
  transform: translateY(100%);
  transition: transform 0.36s cubic-bezier(0.32, 1, 0.23, 1);
  pointer-events: none;
}

.mobile-action-sheet.open {
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-sheet-handle {
  width: 44px;
  height: 5px;
  background: #CBD5E1;
  border-radius: 3px;
  margin: 0 auto 1.25rem auto;
}

.mobile-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--bg-border);
}

.mobile-sheet-subtitle {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.08em;
}

.mobile-sheet-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0.2rem 0 0 0;
}

.mobile-sheet-close-btn {
  background: #F1F5F9;
  border: 1px solid var(--bg-border);
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-sheet-close-btn:active {
  transform: scale(0.9);
}

.mobile-sheet-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mobile-sheet-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: #F8FAFC;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-sheet-item:active {
  transform: scale(0.98);
  background: #EEF2F6;
}

.mobile-sheet-item-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-sheet-item-text {
  flex: 1;
}

.mobile-sheet-item-title {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mobile-sheet-item-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.mobile-sheet-item-arrow {
  color: #94A3B8;
}

/* Quick Actions Row */
.mobile-quick-actions-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.mobile-quick-action-card {
  background: #F8FAFC;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s;
}

.mobile-quick-action-card:active {
  transform: scale(0.95);
  background: #EEF2F6;
}

.mobile-quick-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-more-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-more-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: #F8FAFC;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}

.mobile-more-link:active {
  background: #EEF2F6;
}

/* ==========================================================================
   LEGAL & POLICY PAGES DESIGN SYSTEM (SKY LET CONSULTANCY LIMITED)
   ========================================================================== */

.policy-page-header {
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 3rem;
  background: radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.04) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(8, 145, 178, 0.03) 0%, transparent 50%),
              #FFFFFF;
  border-bottom: 1px solid var(--bg-border);
  text-align: center;
}

.policy-header-container {
  max-width: 900px;
  margin: 0 auto;
}

.policy-meta-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.policy-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #F8FAFC;
  border: 1px solid var(--bg-border);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.policy-layout-section {
  padding: 4rem 0 6rem 0;
  background: #F8FAFC;
}

.policy-layout-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 3rem;
  align-items: flex-start;
}

/* Sidebar & Sticky Table of Contents */
.policy-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.policy-toc-card {
  background: #FFFFFF;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - var(--header-height) - 5rem);
  overflow-y: auto;
}

.policy-toc-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.policy-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.policy-toc-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.35;
}

.policy-toc-link:hover {
  background: var(--bg-accent-soft);
  color: var(--accent-primary);
  padding-left: 0.85rem;
}

.policy-toc-link.active {
  background: rgba(79, 70, 229, 0.08);
  color: var(--accent-primary);
  border-left: 3px solid var(--accent-primary);
  padding-left: 0.75rem;
  font-weight: 700;
}

.policy-toc-num {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  color: var(--text-muted);
  min-width: 22px;
}

.policy-contact-box {
  background: #FFFFFF;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
  text-align: center;
}

/* Main Policy Content Area */
.policy-content-card {
  background: #FFFFFF;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-2xl);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow-md);
  color: var(--text-secondary);
  line-height: 1.85;
}

.policy-section {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--bg-border);
  scroll-margin-top: calc(var(--header-height) + 3rem);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-heading-2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--accent-primary);
  border-radius: 8px;
  font-family: var(--font-mono, monospace);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.policy-heading-3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 1.75rem 0 0.75rem 0;
}

.policy-list {
  margin: 1rem 0 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.policy-list li {
  padding-left: 0.35rem;
}

.policy-list li::marker {
  color: var(--accent-primary);
}

/* Callout Alerts */
.policy-callout {
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.925rem;
  line-height: 1.65;
}

.policy-callout-info {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #166534;
}

.policy-callout-warning {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #92400E;
}

.policy-callout-highlight {
  background: rgba(79, 70, 229, 0.05);
  border: 1px solid rgba(79, 70, 229, 0.2);
  color: var(--text-primary);
}

.policy-callout-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Visual Refund Overview Grid (Cards) */
.refund-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 3rem 0;
}

.refund-card {
  background: #FFFFFF;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.refund-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 70, 229, 0.3);
}

.refund-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.refund-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.refund-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
}

.refund-card-body {
  font-size: 0.885rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Refund Procedure Timeline / Steps */
.refund-procedure-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.refund-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #F8FAFC;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}

.refund-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono, monospace);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.refund-step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.refund-step-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Legal Footer & Checkbox Confirmation UI */
.legal-checkbox-container {
  background: #F8FAFC;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.legal-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.6;
  user-select: none;
}

.legal-checkbox-input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-primary);
  cursor: pointer;
}

.legal-payment-notice {
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .policy-layout-grid {
    grid-template-columns: 1fr;
  }
  
  .policy-sidebar {
    position: static;
  }
  
  .policy-toc-card {
    max-height: none;
  }
}

/* ==========================================================================
   WE ACCEPT PAYMENT METHODS & TRUST SECURITY SECTION
   ========================================================================== */
.payment-methods-section {
  position: relative;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  padding: 4.5rem 0;
  overflow: hidden;
}

.payment-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem auto;
}

.payment-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0.5rem 0 1rem 0;
  line-height: 1.25;
}

.payment-section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 auto;
}

/* Infinite Marquee Carousel */
.payment-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1.25rem 0 2rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 7%, rgba(0, 0, 0, 1) 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 7%, rgba(0, 0, 0, 1) 93%, transparent 100%);
}

.payment-marquee-track {
  display: flex;
  gap: 1.35rem;
  width: max-content;
  animation: paymentMarqueeAnimation 36s linear infinite;
  will-change: transform;
}

.payment-marquee-wrapper:hover .payment-marquee-track,
.payment-marquee-wrapper:focus-within .payment-marquee-track {
  animation-play-state: paused;
}

@keyframes paymentMarqueeAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Individual Payment Method Card */
.payment-card {
  flex: 0 0 165px;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-md, 14px);
  padding: 0.85rem 1rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  user-select: none;
}

.payment-card:hover,
.payment-card:focus-visible {
  transform: translateY(-5px) scale(1.025);
  border-color: rgba(79, 70, 229, 0.4);
  box-shadow: 0 14px 28px -4px rgba(79, 70, 229, 0.12), 0 4px 10px rgba(15, 23, 42, 0.06);
}

.payment-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.payment-logo-box {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-svg-logo {
  max-width: 100%;
  max-height: 38px;
  height: auto;
  transition: transform 0.3s ease;
}

.payment-card:hover .payment-svg-logo {
  transform: scale(1.05);
}

.payment-card-tag {
  font-size: 0.675rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-family: var(--font-mono, monospace);
  margin-top: 0.4rem;
  transition: color 0.25s ease;
}

.payment-card:hover .payment-card-tag {
  color: var(--accent-primary);
}

/* Security Badges Grid */
.payment-security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.payment-security-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #FFFFFF;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md, 14px);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.payment-security-item:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 70, 229, 0.25);
  box-shadow: var(--shadow-sm);
}

.payment-security-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-security-text {
  display: flex;
  flex-direction: column;
}

.payment-security-text strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.payment-security-text span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 0.15rem;
}

/* Transparency Footer Note */
.payment-transparency-note {
  margin-top: 1.5rem;
  padding: 0.85rem 1.25rem;
  background: #F8FAFC;
  border: 1px dashed var(--bg-border);
  border-radius: var(--radius-md, 14px);
  text-align: center;
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
  .payment-marquee-track {
    animation: none;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .payment-marquee-wrapper {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .payment-security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .payment-methods-section {
    padding: 3.25rem 0;
  }
  .payment-card {
    flex: 0 0 145px;
    padding: 0.75rem 0.85rem;
  }
  .payment-logo-box {
    height: 36px;
  }
  .payment-svg-logo {
    max-height: 32px;
  }
  .payment-security-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .payment-transparency-note {
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
  }
}

/* =========================================================================
   8-STAGE DELIVERY PROCESS ROADMAP & TIMELINE STYLES
   ========================================================================= */

.process-nav-strip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
  scrollbar-width: none;
}
.process-nav-strip::-webkit-scrollbar {
  display: none;
}

.process-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.process-nav-pill:hover,
.process-nav-pill.active {
  color: var(--accent-primary);
  background: #EEF2FF;
  border-color: rgba(79, 70, 229, 0.2);
}

.process-stage-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-stage-node {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl, 20px);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height, 80px) + 2rem);
}
.process-stage-node:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: var(--shadow-xl);
}

.process-stage-node::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--stage-accent, var(--accent-primary));
}

.stage-meta-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.stage-badge-phase {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--stage-bg, #EEF2FF);
  color: var(--stage-accent, var(--accent-primary));
}

.stage-badge-duration {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: #F8FAFC;
  border: 1px solid var(--bg-border);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.stage-gate-box {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: #F8FAFC;
  border: 1px dashed var(--bg-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stage-gate-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-emerald, #10B981);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.stage-gate-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.stage-deliverables-panel {
  background: #F8FAFC;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

/* Comparison Table */
.process-comparison-card {
  background: #FFFFFF;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--bg-border);
  font-size: 0.925rem;
}

.comparison-table th {
  background: #F8FAFC;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td.skylet-col {
  background: rgba(79, 70, 229, 0.02);
  font-weight: 600;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .process-stage-node {
    padding: 1.75rem 1.25rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Ultra-Realistic Tactile & Haptic Micro-Physics
   ========================================================================== */
.haptic-pressed,
.btn:active,
button:active,
.nav-link:active,
.service-card:active,
.portfolio-card:active,
.interactive-badge:active {
  transform: translateY(2px) scale(0.975) !important;
  transition: transform 0.08s cubic-bezier(0.2, 0.9, 0.3, 1.2) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12) !important;
}

.btn-primary.haptic-pressed,
.btn-primary:active {
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.15) !important;
}

.btn-gold.haptic-pressed,
.btn-gold:active {
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.15) !important;
}

/* Smooth spring-back upon release */
.btn, button, .nav-link, .service-card, .portfolio-card {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, filter 0.28s ease;
}

