/* style.css - Bespoke Digital Agency Design System (Apple × Linear × Instrument) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  /* Futuristic Luxury Colors */
  --bg-midnight: #030712;       /* Deep Midnight Base */
  --bg-dark-section: #090d1a;   /* Elevated Dark Section Vibe */
  --color-primary: #3B82F6;     /* Electric Blue */
  --color-accent: #06B6D4;      /* Cyan Accent */
  --color-purple: #8B5CF6;      /* Sparing Purple */
  --color-success: #10b981;     /* Emerald Green */
  --color-error: #f43f5e;       /* Rose Red */
  
  /* Text System */
  --text-primary: #F8FAFC;      /* Crisp White */
  --text-secondary: rgba(255, 255, 255, 0.72);  /* Muted Slate / 72% opacity body text */
  --text-muted: #64748B;        /* Muted Gray */
  
  /* Gradients */
  --gradient-text: linear-gradient(135deg, #FFFFFF 20%, #3B82F6 70%, #06B6D4 100%);
  --gradient-purple-cyan: linear-gradient(135deg, #6D5EF8 0%, #5B8CFF 50%, #4FAEFF 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  
  /* Spacing & Layout */
  --container-width: 1200px;
  --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: initial;
  font-size: 16px;
  background-color: var(--bg-midnight);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-color: var(--bg-midnight);
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Shifting Cinematic Background Glows */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 40%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
  z-index: -2;
  pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-midnight);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Selection Highlight */
::selection {
  background-color: rgba(59, 130, 246, 0.3);
  color: #FFFFFF;
}

/* Typography Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #FFFFFF;
}

h1 {
  line-height: 1.15;
}

h2 {
  line-height: 1.18;
}

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

/* Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding: 0.12em 0.18em;
  margin: -0.12em -0.18em;
  line-height: 1.35 !important;
}

.text-gradient-purple {
  background: var(--gradient-purple-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding: 0.12em 0.18em;
  margin: -0.12em -0.18em;
  line-height: 1.35 !important;
}

/* Navigation Header */
.header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  max-width: 980px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent), rgba(3, 7, 18, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  transition: var(--transition-fast);
}

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

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: 'Outfit', sans-serif;
  color: #FFFFFF;
}

.logo span {
  background: linear-gradient(90deg, #8B5CF6, #3B82F6);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 80%;
}

.nav-link.active {
  color: #FFFFFF;
}

.header.scrolled {
  top: 0.75rem;
  width: 68%;
  background: rgba(3, 7, 18, 0.75);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  height: 60px;
  padding: 0 2.5rem;
  box-sizing: border-box;
}

.btn-primary {
  background: linear-gradient(135deg, #6D5EF8, #5B8CFF, #4FAEFF, #6D5EF8);
  background-size: 300% auto;
  animation: btnGradientCycle 10s ease infinite;
  color: #FFFFFF;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(109, 94, 248, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 100%);
  pointer-events: none;
  z-index: 2;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(109, 94, 248, 0.22);
}
.btn-primary:active {
  transform: scale(0.97) translateY(0);
}

.btn-secondary, .btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover, .btn-outline:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-nav {
  height: 48px;
  padding: 0 24px !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease !important;
}

.btn-nav:not(.btn-admin):hover {
  background: linear-gradient(135deg, #6D5EF8 0%, #5B8CFF 50%, #4FAEFF 100%) !important;
  color: #FFFFFF !important;
  border-color: transparent !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(109, 94, 248, 0.15) !important;
}

.btn:active {
  transform: translateY(0) scale(0.97) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.08s ease !important;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary) !important;
  outline-offset: 4px !important;
}

.btn-admin {
  height: 48px;
  padding: 0 20px !important;
  font-size: 0.85rem !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  margin-left: 0.5rem;
  opacity: 0.55;
  box-shadow: none !important;
  transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease !important;
}

.btn-admin:hover {
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Badge Style */
.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.75rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-mouse-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(700px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
    rgba(6, 182, 212, 0.05) 0%, 
    rgba(139, 92, 246, 0.03) 40%, 
    transparent 85%);
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 0.5s ease;
}


.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8.5rem;
  align-items: center;
  width: 100%;
}

.hero-text-side {
  text-align: left;
  position: relative;
}

.hero-text-side::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.05) 50%, transparent 100%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}
.hero-title {
  font-size: clamp(5rem, 8vw, 7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-image {
  box-shadow: 0 50px 120px rgba(59, 130, 246, 0.15) !important;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 24px;
}

/* Layered 3D Floating Mockup screens */
.overlap-mockup-wrapper {
  position: relative;
  left: 64px;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlap-mockup-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.063) 0%, rgba(6, 182, 212, 0.021) 50%, transparent 100%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.overlap-screen {
  position: absolute;
  border-radius: 32px;
  background: var(--bg-midnight);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 100px rgba(59, 130, 246, 0.056), 0 45px 85px -20px rgba(0, 0, 0, 0.95), 0 0 1px 1px rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.overlap-screen:hover {
  transform: scale(1.03) !important;
  box-shadow: 0 50px 120px rgba(59, 130, 246, 0.112), 0 45px 85px -20px rgba(0, 0, 0, 0.95);
}

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

.mockup-header-v2 {
  height: 28px;
  background: rgba(15, 23, 42, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.4rem;
}

.mockup-dot-v2 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.overlap-screen-1 {
  width: 520px;
  height: 480px;
  top: 10px;
  left: 0;
  z-index: 5;
  animation: floatMockup1 7s ease-in-out infinite alternate;
}

.overlap-screen-2 {
  width: 280px;
  height: 310px;
  bottom: 20px;
  right: 0;
  z-index: 10;
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 45px 85px -20px rgba(139, 92, 246, 0.096), 0 45px 85px -20px rgba(0, 0, 0, 0.95), 0 0 1px 1px rgba(255, 255, 255, 0.08) inset;
  animation: floatMockup2 7s ease-in-out infinite alternate;
}

@keyframes floatMockup1 {
  0% { transform: translateY(0px) rotate(-1.5deg); }
  100% { transform: translateY(-15px) rotate(-0.5deg); }
}

@keyframes floatMockup2 {
  0% { transform: translateY(0px) rotate(1deg); }
  100% { transform: translateY(-20px) rotate(2.5deg); }
}

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

/* Sections Base Styling */
section {
  padding-block: 100px;
}

.section {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.section-gap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.content-gap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}

/* 2. Featured Work (Alternating Editorial layouts) */
.editorial-showcase {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.section-work {
  padding-top: 60px;
}

.editorial-item {
  display: grid;
  grid-template-columns: 55fr 45fr; /* 55% image, 45% text */
  gap: 6rem;
  align-items: center;
}

.editorial-item.reverse {
  grid-template-columns: 45fr 55fr;
}

@media (min-width: 769px) {
  .editorial-item.reverse .editorial-image-wrapper {
    order: 2;
  }
  .editorial-item.reverse .editorial-info {
    order: 1;
  }
}

.editorial-image-wrapper {
  width: 100%;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
  aspect-ratio: 16/11;
}

.editorial-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  mix-blend-mode: lighten;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 20px;
}

.editorial-image-wrapper:hover img {
  transform: scale(1.04);
}

.editorial-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.tag-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-fast);
}

.tag-badge:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.25);
  color: #FFFFFF;
}

.project-title {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.project-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.project-story {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-story-block h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.project-story-block p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Metrics Row */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border: none;
  padding: 0.5rem 0;
  margin-top: 1rem;
}

.metric-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.metric-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.1) !important;
  border-color: rgba(59, 130, 246, 0.2);
}

.metric-item p:first-child {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.metric-item p:last-child {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.project-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.project-link:hover {
  color: var(--color-accent);
}

.project-link span {
  transition: transform 0.25s ease;
}

.project-link:hover span {
  transform: translateX(3px);
}

/* 3. Services (Horizontal full-width rows) */
.services-list {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-row {
  display: flex;
  justify-content: space-between;
  padding: 3.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 4rem;
  border-radius: 16px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}

.service-row::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.service-row:hover::after {
  opacity: 1;
}

.service-row:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.01);
}

.service-title {
  width: 33%;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.service-body {
  width: 62%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.service-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 650px;
}

/* Services Section - Three Columns for Home Page */
.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  margin-top: 4rem;
}

.service-column-3 {
  padding: 2.5rem 1.75rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 16px;
}

.service-column-3::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-column-3:hover::after {
  opacity: 1;
}

.service-column-3:hover {
  transform: translateY(-6px);
}

.service-column-3-icon {
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-column-3:hover .service-column-3-icon {
  transform: translateY(-6px) scale(1.1);
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

.service-column-3-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.service-column-3-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 0 6px var(--color-accent);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-column-3:hover .service-column-3-title::after {
  width: 100%;
}

.service-column-3-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

/* Divider lines between columns */
@media (min-width: 769px) {
  .service-column-3:not(:last-child)::before {
    content: '';
    position: absolute;
    right: -1.75rem;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
  }
}

/* About Section on Home Page */
.about-section-home {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.about-grid-home {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5.5rem;
  align-items: center;
}

.about-text-home {
  text-align: left;
}

.about-text-home h3 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  font-family: 'Outfit', sans-serif;
}

.about-image-wrapper-home {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-image-wrapper-home:hover {
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.about-image-wrapper-home::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 60%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
}

.about-image-wrapper-home img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  opacity: 0.85;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-image-wrapper-home:hover img {
  transform: scale(1.04);
}

/* 4. Process (Typography-led split structure) */
.process-content {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  margin-top: 4rem;
}

.process-left {
  width: 33%;
}

.process-steps {
  width: 62%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.process-step {
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-step-header {
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.process-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 550px;
}

/* 5. Pricing (Bespoke Glass Cards Grid) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
  align-items: stretch;
}

.pricing-card {
  background: radial-gradient(circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(59, 130, 246, 0.15), transparent 45%), rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 3.5rem 2rem 3rem 2rem; /* Tighter padding for compact cards */
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 25px 50px rgba(0, 0, 0, 0.6);
}

.pricing-card-popular {
  border-color: rgba(139, 92, 246, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 45px rgba(139, 92, 246, 0.06), 0 20px 40px rgba(0, 0, 0, 0.4);
  background: radial-gradient(circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(59, 130, 246, 0.15), transparent 45%), rgba(15, 23, 42, 0.45);
}

.pricing-card-popular:hover {
  border-color: rgba(139, 92, 246, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 30px 60px rgba(139, 92, 246, 0.09), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card-popular::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-purple), var(--color-accent), var(--color-primary));
  background-size: 300% 100%;
  animation: animateBorderGradient 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}

.popular-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
  color: #FFFFFF;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
  }
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.5;
}

.pricing-price {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-price span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-features-list li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features-list li i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.pricing-card .btn {
  width: 100%;
}

/* 6. Final CTA (70vh-80vh height) */
.final-cta-section {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding: 80px 0;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.02) 0%, rgba(59, 130, 246, 0.02) 50%, transparent 100%);
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}

.final-cta-title {
  font-size: clamp(3.2rem, 7.5vw, 5.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 12ch;
  margin-bottom: 2.5rem;
}

.final-cta-actions {
  display: flex;
  gap: 1.5rem;
}

/* Premium Footer Section */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(circle at 50% 100%, rgba(139, 92, 246, 0.03) 0%, rgba(3, 7, 18, 0.6) 80%, rgba(2, 6, 23, 0.95) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 20px 60px 20px !important;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.12), transparent);
}

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

.footer-large-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1fr 1.6fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  margin: 0 0 0.5rem 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  position: relative;
}

.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.footer-col ul li a:hover {
  color: #FFFFFF;
}

.footer-col ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Social icons with premium glass style */
.footer-socials-container {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-glass-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.social-glass-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.social-glass-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.social-glass-btn.instagram:hover {
  background: rgba(225, 48, 108, 0.1);
  border-color: rgba(225, 48, 108, 0.3);
  color: #E1306C;
}

.social-glass-btn.envelope:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  color: #A78BFA;
}

.footer-bottom-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Country indicator / status indicator */
.footer-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.footer-status-dot {
  width: 6px;
  height: 6px;
  background-color: #10B981;
  border-radius: 50%;
  position: relative;
}

.footer-status-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.4);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

@media (max-width: 1024px) {
  .footer-large-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 40px 20px !important;
  }
  .footer-large-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
  .footer-bottom-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
  }
}

/* Form Styling - Contact Page Bottom borders & elegant focus */
.contact-form-wrapper {
  margin-top: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}

.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: #FFFFFF;
  cursor: pointer;
  width: 100%;
}

.form-select:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}

.form-select option {
  background: var(--bg-midnight);
  color: #FFFFFF;
  padding: 0.5rem;
}

.form-textarea {
  resize: none;
  height: 100px;
}

.form-select-icon {
  position: absolute;
  right: 5px;
  bottom: 12px;
  width: 10px;
  height: 10px;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(-45deg);
  pointer-events: none;
  transition: var(--transition-fast);
}

.form-input:focus ~ .form-select-icon {
  border-color: var(--color-primary);
}

/* Animations State classes (Scroll Reveal & Text Reveal) */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 1;
  transform: none;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 1;
  transform: none;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Helper preparation classes for javascript to hide elements below the fold */
.reveal.reveal-preparing {
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}

.reveal-left.reveal-preparing {
  opacity: 0;
  transform: translateX(-30px);
  transition: none;
}

.reveal-right.reveal-preparing {
  opacity: 0;
  transform: translateX(30px);
  transition: none;
}

/* Custom Text Reveal mask */
.char-reveal-container {
  overflow: hidden;
  display: inline-block;
  margin-right: 0.28em; /* Restores spacing between reveal inline-blocks */
}

.char-reveal-item {
  display: inline-block;
  transform: none;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.char-reveal-item.reveal-preparing {
  transform: translateY(100%);
  transition: none;
}

/* Big Submit Button Utility */
.btn-submit {
  height: 60px;
  padding: 0 4rem !important;
  font-size: 1.05rem;
}

/* Custom Premium Glass Select Dropdowns */
.custom-dropdown-group {
  position: relative;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: #FFFFFF;
  cursor: pointer;
  width: 100%;
  transition: var(--transition-fast);
  position: relative;
}

.custom-select-trigger:focus-within,
.custom-dropdown-group.active .custom-select-trigger {
  border-bottom-color: var(--color-primary);
}

.custom-select-value {
  user-select: none;
  color: rgba(255, 255, 255, 0.25);
}

.custom-dropdown-group.has-value .custom-select-value {
  color: #FFFFFF;
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 0.5rem;
  background: rgba(3, 7, 18, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-dropdown-group.active .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: var(--transition-fast);
}

.custom-option:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #FFFFFF;
}

.custom-option.selected {
  background: rgba(59, 130, 246, 0.2);
  color: #FFFFFF;
  font-weight: 600;
}

.custom-dropdown-group.active .form-select-icon {
  transform: rotate(135deg) !important;
  border-color: var(--color-primary);
}

/* Service Editorial Image Wrapper (32px border-radius, glass frame, 1.03 scale zoom) */
.service-editorial-image-wrapper {
  width: 100%;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 25px 60px -15px rgba(0, 0, 0, 0.7);
  aspect-ratio: 16/11;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-editorial-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 20px;
}

.service-editorial-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Work Page Title Typography Override */
.work-title {
  font-size: clamp(36px, 4vw, 54px) !important;
  letter-spacing: -0.03em !important;
}

/* Contact Hero Spacing Override */
.contact-hero {
  padding-top: 90px !important;
  padding-bottom: 40px !important;
}

/* Page Header Spacing */
.page-header {
  padding-top: 140px !important;
  padding-bottom: 30px !important;
  scroll-margin-top: 120px;
}

/* Pricing Page Header Spacing */
.pricing-page-header {
  padding-top: 140px !important;
  padding-bottom: 30px !important;
  scroll-margin-top: 120px;
}

/* Contact Section Spacing & Rebuild Layout */
.contact-section {
  padding-top: 140px !important;
  padding-bottom: 50px !important;
  margin-bottom: 120px !important;
  display: block;
  box-sizing: border-box;
  scroll-margin-top: 120px;
}

.contact-grid-2 {
  display: grid;
  grid-template-columns: 1fr minmax(0, 680px);
  gap: 80px;
  align-items: start;
  width: 100%;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0.5rem;
}

.contact-detail-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  height: 75px;
  padding: 22px 28px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-fast);
}

.contact-detail-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: #3B82F6;
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}

.contact-detail-card i {
  font-size: 1.5rem;
  color: var(--color-primary);
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-card h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-detail-card p a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #FFFFFF;
}

.response-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  color: #22c55e;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  width: fit-content;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* Premium Glass Form Card */
.premium-glass-form-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 40px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 25px 60px rgba(0, 0, 0, 0.55);
}

.premium-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Premium Glass Inputs */
.premium-glass-input {
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 0 1.25rem;
  font-size: 1rem;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-sizing: border-box;
}

.premium-glass-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.premium-glass-input:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.premium-glass-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: #3B82F6;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.15);
}

.premium-glass-textarea {
  resize: none;
  height: 120px !important;
  padding: 1.25rem;
}

.premium-glass-select-wrapper {
  position: relative;
  width: 100%;
}

.premium-glass-select-wrapper::after {
  content: '';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: var(--transition-fast);
}

.premium-glass-select-wrapper:focus-within::after {
  border-color: var(--color-primary);
  transform: translateY(-50%) rotate(135deg);
}

.premium-glass-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 3rem;
}

.premium-glass-select option {
  background: var(--bg-midnight);
  color: #FFFFFF;
}

.btn-submit-premium {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(90deg, #8B5CF6, #3B82F6);
  color: #FFFFFF;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.25);
}

.btn-submit-premium:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

/* WhatsApp Inline Contact Page Button */
.whatsapp-inline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  transition: var(--transition-fast);
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.whatsapp-inline-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  color: #FFFFFF;
}

.work-editorial-showcase {
  margin-top: 20px !important;
}

/* Services Header safe offset */
.services-page-header {
  padding-top: 140px !important;
  padding-bottom: 30px !important;
  scroll-margin-top: 120px;
}

/* Custom Dropdown Styling (Stripe / Linear style) */
.custom-select-container {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  height: 60px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.custom-select-trigger:hover, .custom-select-container.active .custom-select-trigger {
  border-color: #3B82F6;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.15);
}

.custom-select-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
  white-space: nowrap;
}

.custom-select-container.has-value .custom-select-label {
  color: #FFFFFF;
}

.custom-select-trigger i {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.25s ease;
}

.custom-select-container.active .custom-select-trigger i {
  transform: rotate(180deg);
  color: #3B82F6;
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #08111d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95) translateY(-10px);
  transform-origin: top center;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  overflow: hidden;
}

.custom-select-container.active .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.custom-select-option {
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-select-option:hover, .custom-select-option.highlighted {
  background: rgba(59, 130, 246, 0.1);
  color: white;
}

.custom-select-option.selected {
  background: rgba(59, 130, 246, 0.15);
  color: #FFFFFF;
  font-weight: 600;
}

/* V5 Contact Form Submit Button */
.btn-submit-premium-v5 {
  width: 100% !important;
  height: 56px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #6D5EF8, #5B8CFF, #4FAEFF, #6D5EF8) !important;
  background-size: 300% auto !important;
  animation: btnGradientCycle 10s ease infinite !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(109, 94, 248, 0.15) !important;
}

.btn-submit-premium-v5::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 100%) !important;
  pointer-events: none;
  z-index: 2;
}

.btn-submit-premium-v5:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 18px rgba(109, 94, 248, 0.22) !important;
}

.btn-submit-premium-v5:active {
  transform: scale(0.97) translateY(0) !important;
}

/* Service Titles & Descriptions Specific styles */
.services-page-title {
  font-size: clamp(42px, 5vw, 64px) !important;
  letter-spacing: -0.03em !important;
}

.services-page-desc {
  max-width: 520px !important;
}

/* Work page spacing */
.work-page-header {
  padding-top: 140px !important;
  padding-bottom: 30px !important;
  scroll-margin-top: 120px;
}

/* Fixed contact WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 160px;
  right: 32px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4), 0 10px 25px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 2rem;
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.6), 0 15px 30px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

/* Availability Glass Card */
.contact-details-glass-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 24px;
  margin-top: 20px;
}

/* Contact Page segmented control timeline chips */
.timeline-chips {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 4px;
  height: 60px;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}

.timeline-chips .chip-btn {
  flex: 1;
  height: 100%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.timeline-chips .chip-btn:hover {
  color: #FFFFFF;
}

.timeline-chips .chip-btn.selected {
  background: linear-gradient(135deg, #6D5EF8 0%, #5B8CFF 50%, #4FAEFF 100%);
  color: #FFFFFF;
  box-shadow: 0 3px 10px rgba(109, 94, 248, 0.12);
  font-weight: 600;
}

/* Contact Heading Override - Prevent collision with form */
.contact-heading {
  font-size: clamp(3.5rem, 6vw, 5.5rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  max-width: 100% !important;
}

/* ===== Typography-First Centered Hero ===== */
.hero.hero-centered {
  padding-top: 160px;
  padding-bottom: 120px;
  position: relative;
  background: radial-gradient(circle at 50% 45%, rgba(139, 92, 246, 0.035) 0%, rgba(59, 130, 246, 0.015) 40%, transparent 70%);
}

.hero-content-centered {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  transform: none;
  position: relative;
  z-index: 2;
}

.hero-content-centered .section-label {
  text-align: center;
}

.hero-title-centered {
  text-align: center;
  margin: 0 auto;
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 900;
  width: 100%;
  max-width: none;
  color: #FFFFFF;
}

.hero-title-centered div {
  display: block;
  margin-bottom: .15em;
}

.hero-description-centered {
  text-align: center;
  max-width: 750px; /* Increased max-width to 750px */
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem; /* Increased font size slightly */
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2.75rem;
}

.hero-actions-centered {
  justify-content: center;
}

.hero.hero-centered .btn {
  height: 64px; /* Increased button height to 64px */
  padding: 0 3rem; /* Increased padding slightly */
  font-size: 1rem;
  font-weight: 600;
}

/* FAQ Accordion Styles */
.faq-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 100px;
  padding-bottom: 100px;
}

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-trigger span {
  transition: color 0.3s ease;
}

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

.faq-trigger i {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 32px;
}

.faq-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 24px;
}

.faq-item.active {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 1px 1px rgba(255, 255, 255, 0.05) inset;
}

.faq-item.active .faq-trigger i {
  transform: rotate(45deg);
  color: var(--color-primary);
}

/* ==================== SKELETON LOADERS & ACCESSIBILITY PERFECTION ==================== */

/* Skeleton Loading states */
.skeleton {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.02) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s infinite linear;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 0.75rem;
}
.skeleton-text.short {
  width: 60%;
}
.skeleton-title {
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 1rem;
  width: 80%;
}

/* Keyboard focus visibility state */
*:focus-visible {
  outline: 2px solid var(--color-primary) !important;
  outline-offset: 4px !important;
}

/* Mobile notch and Gesture safe areas */
@media (max-width: 1024px) {
  .header {
    padding-top: max(1.5rem, env(safe-area-inset-top)) !important;
  }
}
.footer {
  padding-bottom: max(2rem, env(safe-area-inset-bottom)) !important;
}

/* Fast tap responsive scale feedback */
.btn, .logo, .nav-link, .service-card, .pricing-card, .faq-item {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, border-color 0.2s ease !important;
}
.btn:hover {
  transform: scale(1.02) translateY(-1px);
}
.btn:active {
  transform: scale(0.98);
}
.nav-link:hover {
  color: var(--color-primary);
}
.service-card:hover, .pricing-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.05);
}

/* Interactive focus transitions for inputs */
.premium-glass-input:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15) !important;
}
.premium-glass-input.valid-state {
  border-color: var(--color-success) !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15) !important;
}
.premium-glass-input.error-state {
  border-color: var(--color-error) !important;
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15) !important;
}

/* Toast Notification center */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.toast-box {
  background: rgba(3, 7, 18, 0.9);
  border: 1px solid var(--border-card);
  padding: 1rem 1.25rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(59,130,246,0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  min-width: 280px;
}
@keyframes toastSlideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.toast-box.success { border-color: rgba(16, 185, 129, 0.3); color: #34d399; }
.toast-box.error { border-color: rgba(239, 68, 68, 0.3); color: #fca5a5; }
.toast-box.info { border-color: rgba(59, 130, 246, 0.3); color: #93c5fd; }
.toast-box.warning { border-color: rgba(245, 158, 11, 0.3); color: #fde047; }

/* CRM Badge Status Styles */
.lead-badge-status {
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid transparent;
}
.lead-badge-status.new {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
  color: #93c5fd;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.15);
}
.lead-badge-status.contacted {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
  color: #a7f3d0;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.15);
}
.lead-badge-status.closed, .lead-badge-status.completed {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.25);
  color: #c084fc;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.15);
}
.lead-badge-status.archived {
  background: rgba(100, 116, 139, 0.12);
  border-color: rgba(100, 116, 139, 0.25);
  color: #cbd5e1;
}

/* ==========================================================================
   PWA & NATIVE APP EXPERIENCE STYLES
   ========================================================================== */

/* 1. Mobile Bottom Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 76px; /* Premium height 72-80px */
  background: rgba(10, 15, 30, 0.45); /* Translucent dark slate blue */
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 9999;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-sizing: content-box;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-radius: 20px 20px 0 0; /* Curved top edges for native app feel */
}

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

@keyframes logoGlowPulse {
  0% {
    filter: drop-shadow(0 0 2px rgba(139, 92, 246, 0.15));
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4));
    transform: scale(1.04);
  }
}

@media (max-width: 767px) {
  .mobile-bottom-nav {
    display: flex;
  }
  
  /* Center the header logo on mobile viewports */
  .header .nav-container {
    justify-content: center !important;
  }

  /* Animate header logo on mobile */
  .header .logo {
    display: inline-block !important;
    position: relative !important;
    animation: logoGlowPulse 3s ease-in-out infinite alternate !important;
    transition: transform 0.2s ease !important;
  }

  .header .logo:active {
    transform: scale(0.95) !important;
  }

  .header .logo span {
    background: linear-gradient(90deg, #8b5cf6, #3b82f6, #06b6d4, #8b5cf6);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoShimmerSweep 4s linear infinite !important;
    display: inline-block !important;
  }
  
  /* Hide standard header toggle navigation below 768px */
  .header .mobile-nav-toggle {
    display: none !important;
  }
  .header .nav-menu {
    display: none !important;
  }
  
  /* Compensate padding on bottom of body to prevent content clipping behind nav */
  body {
    padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.7rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  gap: 5px;
  width: 20%;
  height: 100%;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s ease;
  position: relative;
  border: none !important;
  background: transparent !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item i {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-nav-item.active {
  color: #ffffff;
}

.bottom-nav-item.active i {
  color: #3b82f6; /* Premium active blue */
  transform: scale(1.1) translateY(-3px);
}

/* Glow bar under active item */
.bottom-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 8px;
  width: 16px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.8), 0 0 4px rgba(139, 92, 246, 0.6);
  animation: activeBarIn 300ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes activeBarIn {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Old #app-splash CSS removed — replaced by #micro-splash */

/* 3. Ripple Touch Animation */
.ripple-container {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.25);
  transform: scale(0);
  animation: rippleEffect 0.5s cubic-bezier(0.1, 0.8, 0.3, 1);
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* 4. Gesture Pull to Refresh */
.pull-to-refresh {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  transform: translateY(0);
  pointer-events: none;
}

.ptr-spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.ptr-spinner i {
  color: #3B82F6;
  font-size: 0.95rem;
}

.pull-to-refresh.refreshing .ptr-spinner i {
  animation: ptrSpin 0.8s infinite linear;
}

@keyframes ptrSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 5. Custom Bottom Sheets */
.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s, background 0.35s, backdrop-filter 0.35s;
}

.sheet-overlay.active {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.bottom-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 85vh;
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.bottom-sheet.open {
  transform: translateY(0);
}

.sheet-header {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  user-select: none;
  cursor: grab;
}

.sheet-drag-handle {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.sheet-close-btn {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

.sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  -webkit-overflow-scrolling: touch;
}

/* ==================== PREMIUM MICRO SPLASH SCREEN ==================== */
#micro-splash {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: opacity, transform;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.micro-splash-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, rgba(139, 92, 246, 0.07) 40%, transparent 70%);
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
}

.micro-splash-content {
  text-align: center;
  animation: microSplashIn 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: opacity, transform;
}

.micro-splash-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.micro-splash-logo span {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.micro-splash-subtitle {
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.85rem;
  font-weight: 500;
}

@keyframes microSplashIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateZ(0);
  }
  to {
    opacity: 1;
    transform: scale(1) translateZ(0);
  }
}

#micro-splash.micro-splash-out {
  animation: microSplashOut 250ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes microSplashOut {
  from {
    opacity: 1;
    transform: scale(1) translateZ(0);
  }
  to {
    opacity: 0;
    transform: scale(1.03) translateZ(0);
  }
}

/* HARD FAILSAFE: Ensure content is always visible after 3s regardless of JS state */
@keyframes forceVisible {
  to {
    opacity: 1 !important;
    transform: none !important;
  }
}

.reveal-preparing {
  animation: forceVisible 0s 3s forwards;
}

/* ==========================================================================
   SUMAN.DESIGN PREMIUM AGENCY ADDITIONS - HERO, TRUST, MOCKUPS & COUNTERS
   ========================================================================== */

/* Premium Spotlight & Grid Hero */
.hero-centered {
  position: relative;
  overflow: hidden;
  z-index: 1;
}



/* Legacy mouse-glow and spotlight removed — replaced by liquid glass */

.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -3;
  pointer-events: none;
}



@keyframes morphOrb1 {
  0% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%;
    transform: translate(60px, -40px) scale(1.12) rotate(180deg);
  }
  100% {
    border-radius: 35% 65% 30% 70% / 40% 60% 40% 60%;
    transform: translate(-30px, 30px) scale(0.9) rotate(360deg);
  }
}

@keyframes morphOrb2 {
  0% {
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    border-radius: 30% 70% 70% 30% / 40% 30% 70% 60%;
    transform: translate(-50px, 50px) scale(1.08) rotate(-180deg);
  }
  100% {
    border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%;
    transform: translate(40px, -30px) scale(0.95) rotate(-360deg);
  }
}

@keyframes morphOrb3 {
  0% {
    border-radius: 65% 35% 50% 50% / 45% 55% 45% 55%;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    border-radius: 45% 55% 35% 65% / 55% 45% 55% 45%;
    transform: translate(50px, 30px) scale(1.06) rotate(180deg);
  }
  100% {
    border-radius: 55% 45% 65% 35% / 40% 60% 40% 60%;
    transform: translate(-40px, -50px) scale(0.92) rotate(360deg);
  }
}

@keyframes morphOrb4 {
  0% {
    border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
    transform: translate(-40px, -40px) scale(1.1) rotate(-180deg);
  }
  100% {
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    transform: translate(30px, 40px) scale(0.9) rotate(-360deg);
  }
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -40px) scale(1.1); }
  100% { transform: translate(-30px, 20px) scale(0.9); }
}
@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 30px) scale(0.95); }
  100% { transform: translate(40px, -20px) scale(1.05); }
}
@keyframes floatOrb3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 50px) scale(1.08); }
  100% { transform: translate(-40px, -30px) scale(0.92); }
}
@keyframes floatOrb4 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -50px) scale(0.9); }
  100% { transform: translate(50px, 30px) scale(1.1); }
}





/* Trust Section Grid */
.trust-section {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-title {
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 600;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1200px) {
  .trust-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

.trust-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.trust-card i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-card span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Editorial Magazine Services Preview */
.magazine-services {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.magazine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .magazine-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.magazine-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.magazine-block-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: -1.5rem;
  left: 0;
}

.magazine-block-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1.5rem;
}

.magazine-block-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Handcrafted CSS Website Previews */
.browser-mockup {
  background: #0b0f19;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.browser-bar {
  background: #111827;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dot.red { background: #ef4444; }
.browser-dot.yellow { background: #f59e0b; }
.browser-dot.green { background: #10b981; }

.browser-address {
  flex-grow: 1;
  background: #1f2937;
  border-radius: 6px;
  font-size: 0.72rem;
  color: #9ca3af;
  padding: 4px 12px;
  font-family: monospace;
  letter-spacing: 0.05em;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.browser-content {
  background: #020617;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

/* Mockup Types */
/* 1. Dental Clinic */
.mockup-dental-clinic {
  background: #f8fafc;
  color: #0f172a;
  height: 100%;
  min-height: 320px;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
}
.mockup-dental-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
}
.mockup-dental-logo {
  font-weight: 800;
  color: #0284c7;
  font-size: 0.9rem;
}
.mockup-dental-nav {
  display: flex;
  gap: 10px;
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 500;
}
.mockup-dental-hero {
  padding: 30px 20px;
  text-align: center;
  background: radial-gradient(circle at top, #f0f9ff 0%, #ffffff 80%);
  flex-grow: 1;
}
.mockup-dental-badge {
  background: #e0f2fe;
  color: #0369a1;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}
.mockup-dental-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 8px;
}
.mockup-dental-text {
  font-size: 0.75rem;
  color: #475569;
  max-width: 320px;
  margin: 0 auto 15px auto;
}
.mockup-dental-btn {
  background: #0284c7;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

/* 2. Restaurant */
.mockup-restaurant {
  background: #0a0706;
  color: #f5f5f4;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.mockup-rest-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(10, 7, 6, 0.95);
}
.mockup-rest-logo {
  font-family: serif;
  font-style: italic;
  color: #ea580c;
  font-weight: bold;
}
.mockup-rest-hero {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=400&auto=format&fit=crop');
  background-size: cover;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mockup-rest-title {
  font-family: serif;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 10px;
}
.mockup-rest-menu {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.mockup-rest-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.65rem;
}

/* 3. Dev Environment VS Code */
.mockup-vscode {
  background: #1e1e1e;
  color: #d4d4d4;
  font-family: monospace;
  font-size: 0.7rem;
  height: 100%;
  min-height: 320px;
  display: flex;
}
.vscode-sidebar {
  width: 45px;
  background: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  gap: 15px;
  color: #858585;
}
.vscode-sidebar i.active { color: #ffffff; }
.vscode-filetree {
  width: 120px;
  background: #252526;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid #1a1a1a;
}
.vscode-file { color: #858585; display: flex; align-items: center; gap: 4px; }
.vscode-file.active { color: #e1e1e1; font-weight: bold; }
.vscode-editor {
  flex-grow: 1;
  background: #1e1e1e;
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.vscode-tab {
  background: #2d2d2d;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 12px;
  border-top: 1px solid #007acc;
}
.vscode-code {
  line-height: 1.5;
  color: #9cdcfe;
}
.vscode-code span.tag { color: #569cd6; }
.vscode-code span.attr { color: #9cdcfe; }
.vscode-code span.val { color: #ce9178; }

/* 4. Lighthouse Performance */
.mockup-lighthouse {
  background: #0f172a;
  color: #f8fafc;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.lh-score-row {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
}
.lh-circle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lh-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #10b981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}
.lh-label {
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 600;
}
.lh-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}
.lh-metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lh-metric-name { font-size: 0.65rem; color: #64748b; }
.lh-metric-val { font-size: 0.72rem; font-weight: bold; color: #10b981; }

/* 5. E-Commerce Checkout Grid */
.mockup-ecommerce {
  background: #ffffff;
  color: #0f172a;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.ecom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #e2e8f0;
}
.ecom-logo { font-weight: 800; font-size: 0.85rem; color: #4f46e5; }
.ecom-cart-icon { position: relative; font-size: 0.85rem; }
.ecom-cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.5rem;
  padding: 1px 4px;
  border-radius: 50%;
}
.ecom-grid {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 12px;
  padding: 12px;
  flex-grow: 1;
}
.ecom-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.ecom-product-card {
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  gap: 10px;
}
.ecom-product-img {
  width: 45px;
  height: 45px;
  background: #f1f5f9;
  border-radius: 6px;
}
.ecom-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ecom-product-title { font-size: 0.7rem; font-weight: bold; }
.ecom-product-price { font-size: 0.65rem; color: #4f46e5; font-weight: 600; }
.ecom-sidebar {
  background: #f8fafc;
  border-radius: 8px;
  padding: 10px;
  font-size: 0.65rem;
}
.ecom-sidebar-title { font-weight: bold; margin-bottom: 8px; }
.ecom-line-item { display: flex; justify-content: space-between; margin-bottom: 4px; }
.ecom-btn {
  background: #4f46e5;
  color: #ffffff;
  text-align: center;
  padding: 6px;
  border-radius: 4px;
  margin-top: 10px;
  font-weight: 600;
  display: block;
}

/* 6. Hosting Dashboard Maintenance */
.mockup-maintenance {
  background: #030712;
  color: #f9fafb;
  min-height: 320px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.maint-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.maint-logo { font-size: 0.8rem; font-weight: bold; color: #10b981; }
.maint-status-pill { background: rgba(16,185,129,0.15); color: #10b981; padding: 2px 8px; border-radius: 20px; font-size: 0.6rem; }
.maint-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.maint-card {
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px;
}
.maint-card-title { font-size: 0.65rem; color: #6b7280; font-weight: 600; margin-bottom: 6px; }
.maint-logs {
  font-family: monospace;
  font-size: 0.6rem;
  background: #000;
  padding: 8px;
  border-radius: 6px;
  max-height: 80px;
  overflow: hidden;
  color: #10b981;
  line-height: 1.4;
}

/* Social Proof Counters Section */
.social-proof-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: radial-gradient(circle at bottom, rgba(59,130,246,0.01) 0%, transparent 60%);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

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

.counter-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 2rem 1rem;
  text-align: center;
  transition: var(--transition-fast);
  backdrop-filter: blur(12px);
}

.counter-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}

.counter-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 40%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Category Badges */
.concept-badge {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #c084fc;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.75rem;
}
/* Hero Checkbox Indicators */
.hero-indicators {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  z-index: 10;
}
.hero-indicators span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Why Choose Me Section */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.why-choose-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% -20%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-choose-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.why-choose-card:hover::before {
  opacity: 1;
}
.why-choose-icon {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 1.5rem;
}
.why-choose-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.why-choose-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Timeline Process Section */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.timeline-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.timeline-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top left, rgba(167, 139, 250, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.timeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.timeline-card:hover::before {
  opacity: 1;
}
.timeline-card-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(167, 139, 250, 0.08);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: 'Outfit', sans-serif;
  transition: color 0.3s ease;
}
.timeline-card:hover .timeline-card-number {
  color: rgba(167, 139, 250, 0.15);
}
.timeline-icon {
  font-size: 1.75rem;
  color: #a78bfa;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}
.timeline-card:hover .timeline-icon {
  transform: scale(1.1) rotate(5deg);
}
.timeline-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.timeline-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Testimonials Coming Soon Placeholder */
.testimonials-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-placeholder-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.testimonial-placeholder-card i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}
.testimonial-placeholder-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.02em;
}

/* FAQ Accordion Styles */
.faq-section {
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-accordion-container {
  max-width: 800px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.faq-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-trigger span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  transition: color 0.2s ease;
}
.faq-trigger:hover span {
  color: var(--color-primary);
}
.faq-trigger i {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 2rem;
}
.faq-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 1.5rem;
  margin: 0;
}
.faq-item.active {
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(255, 255, 255, 0.025);
}
.faq-item.active .faq-content {
  max-height: 200px;
}
.faq-item.active .faq-trigger i {
  transform: rotate(180deg);
  color: var(--color-primary);
}

/* Premium Case Study Modal */
.case-study-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem;
}
.case-study-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-wrapper {
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: 100%;
  max-width: 1100px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-study-modal.active .modal-wrapper {
  transform: scale(1) translateY(0);
}
.modal-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 6, 23, 0.5);
  backdrop-filter: blur(10px);
  z-index: 10;
}
.modal-header-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.modal-close-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: rotate(90deg);
}
.modal-scroll-area {
  flex-grow: 1;
  overflow-y: auto;
  padding: 3rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}
.modal-scroll-area::-webkit-scrollbar {
  width: 6px;
}
.modal-scroll-area::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.modal-layout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}
.modal-sidebar-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 2rem;
}
.modal-sidebar-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}
.modal-sidebar-meta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 0.9rem;
}
.modal-meta-item strong {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
}
.modal-meta-item span {
  color: var(--text-secondary);
}
.modal-content-rich {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}
.modal-content-rich h2 {
  font-size: 1.8rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.modal-content-rich h2:first-of-type {
  margin-top: 0;
}
.modal-content-rich p {
  margin-bottom: 1.5rem;
}
.modal-content-rich ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.modal-content-rich li {
  margin-bottom: 0.5rem;
}
.modal-visual-preview {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.modal-visual-preview img {
  width: 100%;
  display: block;
}

/* Large Premium Footer */
.footer-large-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-newsletter p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.newsletter-input-group {
  display: flex;
  gap: 8px;
}
.newsletter-input-group input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.9rem;
  width: 100%;
}
.newsletter-input-group input:focus {
  border-color: rgba(59, 130, 246, 0.4);
  outline: none;
}
.newsletter-input-group button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  padding: 10px 16px;
  border-radius: 6px;
  cursor: not-allowed;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Back to Top */
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.2s ease;
  margin-top: 1rem;
}
.back-to-top:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-soon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-large-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 640px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-soon-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .case-study-modal {
    padding: 1rem;
  }
  .modal-wrapper {
    height: 95vh;
  }
  .modal-scroll-area {
    padding: 2rem 1.5rem;
  }
  .modal-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============================================
   Premium Work Page — Editorial Refinements
   ============================================ */

/* Content column width */
.editorial-info {
  max-width: 600px;
}

/* Section hierarchy spacing */
.project-editorial-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0 0 0;
}

/* Section heading — small uppercase cyan accent */
.editorial-block h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

/* Section body — max readability */
.editorial-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* Gradient divider between sections and metrics */
.project-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent) 1;
}

/* Metric pills — glass cards */
.metric-pill {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.875rem 0.5rem;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background 0.3s ease,
              box-shadow 0.3s ease;
}
.metric-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.metric-pill:hover .metric-val {
  filter: brightness(1.2);
}
.metric-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  transition: filter 0.3s ease;
}
.metric-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 5px;
}

/* CTA block below metrics */
.project-cta-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent) 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

/* Primary CTA — glass button */
.btn-case-study {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  height: 54px;
  padding: 0 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}
.btn-case-study:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.btn-case-study:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
.btn-case-study:active {
  transform: translateY(0) scale(0.98);
}
.btn-case-study .btn-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.85rem;
}
.btn-case-study:hover .btn-arrow {
  transform: translateX(4px);
}

/* Secondary text action */
.project-secondary-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.project-secondary-link:hover {
  color: var(--color-accent);
}
.project-secondary-link .sec-arrow {
  transition: transform 0.25s ease;
  font-size: 0.7rem;
}
.project-secondary-link:hover .sec-arrow {
  transform: translateX(3px);
}

/* Screenshot panel refinements */
.editorial-image-wrapper {
  box-shadow: 0 32px 80px -20px rgba(0, 0, 0, 0.7),
              inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s ease;
}
.editorial-image-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Reflection layer */
.editorial-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 40%;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.6), transparent);
  border-radius: 0 0 20px 20px;
  pointer-events: none;
  z-index: 1;
}

/* Micro-hover: editorial item group interaction */
.editorial-item:hover .editorial-image-wrapper {
  border-color: rgba(255, 255, 255, 0.08);
}
.editorial-item:hover .project-title {
  filter: brightness(1.1);
}
.editorial-item:hover .btn-case-study {
  border-color: rgba(255, 255, 255, 0.12);
}

/* Stagger reveal for metric pills */
.metric-pill:nth-child(1) { animation-delay: 0ms; }
.metric-pill:nth-child(2) { animation-delay: 80ms; }
.metric-pill:nth-child(3) { animation-delay: 160ms; }
.metric-pill:nth-child(4) { animation-delay: 240ms; }
.metric-pill:nth-child(5) { animation-delay: 320ms; }
.metric-pill:nth-child(6) { animation-delay: 400ms; }

/* Work editorial showcase spacing between items */
.work-editorial-showcase .editorial-item {
  margin-bottom: 8rem;
}
.work-editorial-showcase .editorial-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .editorial-info {
    max-width: 100%;
  }
  .project-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-editorial-showcase .editorial-item {
    margin-bottom: 5rem;
  }
}

/* ============================================
   Premium Interactions & Shimmers
   ============================================ */


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

/* Skeleton Shimmer Loaders */
.skeleton-shimmer {
  background: linear-gradient(90deg, rgba(255,255,255,0.015) 25%, rgba(255,255,255,0.05) 37%, rgba(255,255,255,0.015) 63%);
  background-size: 400% 100%;
  animation: skeletonShimmerAnim 1.4s ease infinite;
  border-radius: 8px;
  display: inline-block;
  vertical-align: middle;
}

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

.skeleton-text {
  height: 14px;
  margin-bottom: 12px;
  width: 100%;
}
.skeleton-text.short {
  width: 60%;
}
.skeleton-title {
  height: 26px;
  margin-bottom: 20px;
  width: 80%;
}

/* Scrollytelling Timeline Active Card Highlights */
.timeline-card {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.6s ease,
              background-color 0.6s ease,
              box-shadow 0.6s ease !important;
}

.timeline-card.active {
  transform: translateY(-4px) !important;
  border-color: rgba(167, 139, 250, 0.3) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3) !important;
}

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

.timeline-card.active .timeline-card-number {
  color: rgba(167, 139, 250, 0.28) !important;
  transform: scale(1.05);
}

.timeline-card.active .timeline-icon {
  color: var(--color-accent) !important;
  transform: scale(1.15) rotate(5deg);
}

/* Page Skeleton Loader Overlay */
.page-skeleton-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #020617;
  z-index: 99999;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  pointer-events: none;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.page-skeleton-overlay.fade-out {
  opacity: 0;
  transform: scale(1.02);
}

.skeleton-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-bottom: 1.5rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.skeleton-logo {
  width: 120px;
  height: 24px;
}

.skeleton-nav {
  display: flex;
  gap: 1.5rem;
}

.skeleton-nav-item {
  width: 60px;
  height: 14px;
}

.skeleton-hero {
  margin: 4rem auto 2rem auto;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.skeleton-hero-title {
  width: 70%;
  height: 48px;
}

.skeleton-hero-desc {
  width: 50%;
  height: 16px;
}

.skeleton-grid-placeholder {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.skeleton-card-placeholder {
  height: 220px;
  border: 1px solid rgba(255,255,255,0.03);
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.005);
}

@media (max-width: 768px) {
  .skeleton-grid-placeholder {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .skeleton-hero-title {
    width: 90%;
    height: 36px;
  }
  .skeleton-hero-desc {
    width: 80%;
  }
  .skeleton-card-placeholder {
    height: 180px;
  }
}

.skeleton-work-item {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .skeleton-work-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Custom Responsive Skeleton Grids */
.skeleton-grid-services {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.skeleton-grid-contact {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .skeleton-grid-services {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .skeleton-grid-contact {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   Premium Navigation Upgrades (Apple/Linear Style)
   ========================================================================== */

/* Page Load Animation for Logo */
@keyframes logoFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle logo reflection light sweep (runs once every 12s) */
@keyframes logoSheenSweep {
  0% {
    background-position: -200% 0;
  }
  12% {
    background-position: 200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Slowly cycling animated gradient for .design text */
@keyframes designGradientCycle {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Slow ambient drift behind navbar */
@keyframes ambientGlowDrift {
  0% {
    transform: translateX(-55%) translateY(-10px);
  }
  100% {
    transform: translateX(-45%) translateY(10px);
  }
}

/* Pulsing logo-dot accent */
@keyframes logoDotAccentPulse {
  0% {
    opacity: 0.4;
    transform: scale(0.85);
    box-shadow: 0 0 4px rgba(96, 165, 250, 0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.9), 0 0 24px rgba(96, 165, 250, 0.4);
  }
}

/* Global Logo Refinements */
.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  animation: logoFadeInUp 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
  transition: transform 250ms cubic-bezier(0.25, 1, 0.5, 1), filter 250ms ease, opacity 250ms ease !important;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 35%, rgba(255,255,255,0.8) 45%, #ffffff 50%, #ffffff 55%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoSheenSweep 12s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.logo:hover {
  transform: scale(1.02);
  filter: brightness(1.15);
}

.logo:active {
  transform: scale(0.98);
}

/* Blue .design text sweep */
.logo span {
  background: linear-gradient(90deg, #8b5cf6, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: designGradientCycle 9s linear infinite !important;
  will-change: background-position;
  display: inline-block;
  margin-left: 1px;
}

/* Logo Accent Dot */
.logo-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #60a5fa;
  border-radius: 50%;
  margin-left: 5px;
  vertical-align: middle;
  animation: logoDotAccentPulse 3.5s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

/* Ambient Navbar Glow Element */
.navbar-ambient-glow {
  position: fixed;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 220px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.08) 50%, transparent 100%);
  filter: blur(90px);
  opacity: 0.06;
  z-index: 9998;
  pointer-events: none;
  animation: ambientGlowDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

/* Transition Scroll States for Navbar */
.header {
  height: 72px;
  transition: background 280ms cubic-bezier(0.25, 1, 0.5, 1),
              backdrop-filter 280ms cubic-bezier(0.25, 1, 0.5, 1),
              border-color 280ms cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 280ms cubic-bezier(0.25, 1, 0.5, 1),
              height 280ms cubic-bezier(0.25, 1, 0.5, 1) !important;
  will-change: background, backdrop-filter;
}

/* Scrolled state */
.header.scrolled {
  background: rgba(10, 15, 30, 0.72) !important;
  backdrop-filter: blur(32px) !important;
  -webkit-backdrop-filter: blur(32px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35) !important;
}

.header.scrolled .logo {
  transform: scale(0.98);
}

/* Mobile top navbar overrides */
@media (max-width: 767px) {
  .header {
    height: 66px !important; /* height 64-68px */
    background: rgba(10, 15, 30, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.08); /* top highlight */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* soft bottom border */
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 4px 24px rgba(0, 0, 0, 0.35); /* inner shadow + depth */
    display: flex;
    align-items: center;
    padding: 0 20px !important; /* equal safe area margins */
  }

  .header.scrolled {
    background: rgba(10, 15, 30, 0.75) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  }

  .header .logo {
    animation: logoGlowPulse 4s ease-in-out infinite alternate !important;
  }
}

/* Bottom Navigation Refinements */
.bottom-nav-item {
  opacity: 0.65;
  transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1), transform 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.bottom-nav-item:hover,
.bottom-nav-item:active {
  opacity: 1 !important;
  transform: translateY(-2px) scale(1.05) !important;
}

.bottom-nav-item.active {
  opacity: 1 !important;
  color: #60a5fa !important;
}

.bottom-nav-item.active i {
  color: #60a5fa !important;
  text-shadow: 0 0 12px rgba(96, 165, 250, 0.7);
}

.bottom-nav-item.active span {
  color: #ffffff !important;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Premium Mobile Visual Polish Overlay (Apple Keynote Lighting & Grids)
   ========================================================================== */

/* Button moving gradient animation */
@keyframes btnGradientCycle {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Ambient lighting orb keyframes */
@keyframes floatAmbientOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -35px) scale(1.1); }
  100% { transform: translate(-15px, 20px) scale(0.95); }
}

@keyframes floatAmbientOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 25px) scale(1.15); }
  100% { transform: translate(20px, -20px) scale(0.9); }
}

@keyframes floatAmbientOrb3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 30px) scale(1.08); }
  100% { transform: translate(-25px, -15px) scale(0.92); }
}

/* Floating Orbs Container inside Hero */
.hero-orbs-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

.hero-ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.05; /* Extremely transparent (5%) */
  mix-blend-mode: screen;
  will-change: transform;
}

.orb-blue-accent {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  top: 10%;
  left: 5%;
  animation: floatAmbientOrb1 22s ease-in-out infinite alternate;
}

.orb-purple-accent {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  bottom: 15%;
  right: 8%;
  animation: floatAmbientOrb2 26s ease-in-out infinite alternate;
}

.orb-cyan-accent {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
  top: 40%;
  left: 45%;
  animation: floatAmbientOrb3 24s ease-in-out infinite alternate;
}

/* Subtle Layout Background Grid Pattern */
.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
  mask-image: radial-gradient(circle at 50% 50%, black 50%, transparent 95%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 50%, transparent 95%);
  pointer-events: none;
  z-index: -3;
  opacity: 0.6; /* Grid opacity 3% overall */
}

/* Bottom Navigation Active Pill Indicator */
.bottom-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bottom-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 3px;
  background-color: #60a5fa;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(96, 165, 250, 0.8), 0 0 16px rgba(96, 165, 250, 0.4);
  animation: activePillWidthPulse 2s ease-in-out infinite alternate;
  will-change: width, opacity;
  transition: all 0.25s ease;
}

@keyframes activePillWidthPulse {
  0% {
    width: 10px;
    opacity: 0.6;
  }
  100% {
    width: 16px;
    opacity: 1;
  }
}

/* ==========================================================================
   Premium Design Polishing Pass (Apple/Linear Style)
   ========================================================================== */

/* Alternating Project Card Layouts (Desktop only) */
@media (min-width: 769px) {
  .work-editorial-showcase .editorial-item:nth-child(even) {
    flex-direction: row-reverse !important;
  }
}

/* Browser Mockup Float Animation & corner glare reflections */
@keyframes browserFloatAnim {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.browser-mockup {
  position: relative;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.65) !important;
  animation: browserFloatAnim 6s ease-in-out infinite !important;
  will-change: transform;
}

.browser-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 30%, transparent 50%, rgba(255,255,255,0.01) 70%, rgba(255,255,255,0.04) 100%);
  pointer-events: none;
  z-index: 10;
}

/* Hover elevation (desktop only) */
@media (min-width: 769px) {
  .editorial-item:hover .browser-mockup {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.8), 0 0 30px rgba(96, 165, 250, 0.15) !important;
  }
}

/* Alignment of Case Study Text and CTA Buttons */
@media (min-width: 769px) {
  .editorial-info {
    min-height: 380px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
}

/* Dynamic Glass Layout Styles for Case Metadata Sidebar Cards */
.modal-meta-item {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.modal-meta-item:hover {
  background: rgba(255, 255, 255, 0.045) !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 15px rgba(96, 165, 250, 0.15) !important;
}

/* Service Cards Glass & Border Gradients */
.service-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease !important;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(96, 165, 250, 0.1) !important;
}

.service-card:hover::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.4), rgba(139, 92, 246, 0.4), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

/* Premium Form Inputs Glow & Outline */
.form-group input, 
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-radius: 8px !important;
  color: #fff !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
}

.form-group input:focus, 
.form-group textarea:focus,
.form-group select:focus {
  background: rgba(255, 255, 255, 0.035) !important;
  border-color: #3b82f6 !important;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.25), inset 0 1px 1px rgba(255,255,255,0.05) !important;
  outline: none !important;
}

/* Submit Button polish */
.btn-submit {
  background: linear-gradient(135deg, #6D5EF8, #5B8CFF, #4FAEFF, #6D5EF8) !important;
  background-size: 300% auto !important;
  animation: btnGradientCycle 10s ease infinite !important;
  box-shadow: 0 4px 12px rgba(109, 94, 248, 0.15) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 100%) !important;
  pointer-events: none;
  z-index: 2;
}

.btn-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(109, 94, 248, 0.22) !important;
}

.btn-submit:active {
  transform: scale(0.97) translateY(0) !important;
}

/* Subtle logo reflection light sweep speed adjustment */
.logo {
  animation: logoSheenSweep 9s cubic-bezier(0.25, 1, 0.5, 1) infinite !important;
}

/* Floating AI Button Spacing Overrides */
#suman-ai-widget {
  bottom: 108px !important; /* Moved exactly 12px higher above bottom nav (was 96px) */
}

#suman-ai-widget .ai-fab {
  animation: widgetFloat 4s ease-in-out infinite !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 0 10px rgba(96, 165, 250, 0.15), 0 8px 30px rgba(0, 0, 0, 0.4) !important; /* Reduced glow */
}

@keyframes widgetFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
