/* ==========================================================================
   KARTON MEDYA - ULTRA MODERN & INTERACTIVE DESIGN SYSTEM
   ========================================================================== */

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

:root {
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* Primary Karton Colors */
  --primary-50: #fdf2f4;
  --primary-100: #fce7eb;
  --primary-200: #fbcfe0;
  --primary-300: #f9a8bd;
  --primary-400: #f47291;
  --primary-500: #d61c4f;
  --primary-600: #b9153f;
  --primary-700: #931032;
  --primary-800: #6e0d24;
  --primary-900: #4a0717;

  /* Neutrals */
  --dark-950: #07090e;
  --dark-900: #0f172a;
  --dark-800: #1e293b;
  --dark-700: #334155;
  --dark-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;

  /* Accents & Gradients */
  --grad-primary: linear-gradient(135deg, #d61c4f 0%, #b9153f 50%, #850c2c 100%);
  --grad-vibrant: linear-gradient(135deg, #ff4b72 0%, #d61c4f 50%, #981035 100%);
  --grad-dark: linear-gradient(145deg, #111827 0%, #0b0f19 100%);
  --grad-glow: radial-gradient(circle at 50% 50%, rgba(214, 28, 79, 0.15), transparent 70%);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-card: rgba(255, 255, 255, 0.65);
  --glass-card-border: rgba(226, 232, 240, 0.8);
  --glass-dark: rgba(15, 23, 42, 0.85);

  /* Shadows */
  --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 30px -4px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 10px 30px -5px rgba(214, 28, 79, 0.3);
  --shadow-glow-lg: 0 20px 50px -10px rgba(214, 28, 79, 0.4);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: #f8fafc;
  color: var(--dark-900);
  line-height: 1.6;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  position: relative;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Premium Agency Architectural Blueprint Grid */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(214, 28, 79, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 28, 79, 0.035) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

::selection {
  background-color: var(--primary-200);
  color: var(--primary-800);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-950);
  letter-spacing: -0.02em;
}

ul, ol {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0;
  margin-left: 0;
}

li {
  list-style: none !important;
  list-style-type: none !important;
}

li::marker {
  display: none !important;
  content: '' !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Canvas & Animated Background Layer */
#interactive-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  overflow: hidden;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Modern Performance Engine - Content Visibility for Below-the-fold sections */
.site-footer,
.faq-section,
.brand-ecosystem-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

/* Luxury Multi-Layer Studio Ambient Lighting */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  max-width: 50vw;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.ambient-orb-1 {
  top: -60px;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(214, 28, 79, 0.3) 0%, rgba(255, 64, 113, 0.15) 45%, transparent 75%);
  animation: floatOrb 12s ease-in-out infinite alternate;
  opacity: 0.8;
}

.ambient-orb-2 {
  top: 35%;
  left: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(121, 40, 202, 0.25) 0%, rgba(214, 28, 79, 0.12) 50%, transparent 80%);
  animation: floatOrb 16s ease-in-out infinite alternate-reverse;
  opacity: 0.75;
}

.ambient-orb-3 {
  bottom: 5%;
  right: -30px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(244, 114, 145, 0.22) 0%, rgba(214, 28, 79, 0.1) 55%, transparent 80%);
  animation: floatOrb 14s ease-in-out infinite alternate;
  opacity: 0.75;
}

@keyframes floatOrb {
  0% { transform: translateY(0px) scale(1) rotate(0deg); }
  50% { transform: translateY(-45px) scale(1.12) rotate(10deg); }
  100% { transform: translateY(35px) scale(0.92) rotate(-8deg); }
}

/* Typography Gradient */
.text-gradient {
  background: var(--grad-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Floating 3D/Origami Animated Objects Container */
.floating-shapes-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.floating-3d-item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px -6px rgba(15, 23, 42, 0.12), 0 0 25px rgba(214, 28, 79, 0.22);
  animation: floatItem 8s ease-in-out infinite;
  pointer-events: auto;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  cursor: grab;
}

.floating-3d-item:hover {
  transform: translateY(-8px) scale(1.06) rotate(3deg) !important;
  box-shadow: 0 28px 50px -5px rgba(214, 28, 79, 0.35);
}

@keyframes floatItem {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

@keyframes floatMobile1 {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(0.88); }
  50% { transform: translateY(-14px) rotate(3deg) scale(0.88); }
}

@keyframes floatMobile2 {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(0.88); }
  50% { transform: translateY(-16px) rotate(-3.5deg) scale(0.88); }
}

@keyframes floatMobile3 {
  0%, 100% { transform: translateX(-50%) translateY(0px) rotate(-3.5deg) scale(0.9); }
  50% { transform: translateX(-50%) translateY(-10px) rotate(-1.5deg) scale(0.9); }
}

@keyframes floatSmall1 {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(0.76); }
  50% { transform: translateY(-10px) rotate(2deg) scale(0.76); }
}

@keyframes floatSmall2 {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(0.76); }
  50% { transform: translateY(-12px) rotate(-2.5deg) scale(0.76); }
}

@keyframes floatSmall3 {
  0%, 100% { transform: translateX(-50%) translateY(0px) rotate(-4deg) scale(0.85); }
  50% { transform: translateX(-50%) translateY(-8px) rotate(-2deg) scale(0.85); }
}

/* ==========================================================================
   EXCLUSIVE HAUTE-COUTURE STUDIO HEADER & NAVIGATION
   ========================================================================== */
.studio-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  padding: 1.6rem 0;
  pointer-events: auto;
}

.studio-header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
  pointer-events: auto;
}

/* Grand Studio Logo Zone */
.studio-logo-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}

.studio-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.05));
}

.studio-header.scrolled .studio-logo-img {
  height: 56px;
}

.studio-logo-link:hover .studio-logo-img {
  transform: scale(1.04);
}

.studio-logo-divider {
  width: 1.5px;
  height: 28px;
  background: #e2e8f0;
  display: block;
}

.studio-brand-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tagline-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-500);
  display: inline-block;
  box-shadow: 0 0 10px var(--primary-400);
}

/* Exclusive Center Navigation */
.studio-nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  background: rgba(241, 245, 249, 0.65);
  padding: 0.35rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(226, 232, 240, 0.7);
}

.studio-nav-item {
  font-size: 0.925rem;
  font-weight: 600;
  color: #334155;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  position: relative;
  text-decoration: none;
}

.studio-nav-item:hover {
  color: var(--primary-600);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.studio-nav-item.active {
  color: var(--white);
  background: var(--grad-vibrant);
  box-shadow: 0 4px 15px rgba(214, 28, 79, 0.25);
  font-weight: 700;
}

/* Action Suite Right */
.studio-header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.header-phone-link {
  display: none; /* Hide on desktop by default */
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-700);
  background: #fff1f2;
  border: 1.5px solid #fecdd3;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(214, 28, 79, 0.06);
  text-decoration: none;
  touch-action: manipulation;
}

.header-phone-link:hover, .header-phone-link:active {
  background: #ffe4e6;
  border-color: #fda4af;
  color: var(--primary-800);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(214, 28, 79, 0.15);
}

.header-phone-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-vibrant);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(214, 28, 79, 0.25);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.header-phone-link:hover .header-phone-icon,
.header-phone-link:active .header-phone-icon {
  transform: scale(1.08) rotate(12deg);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  color: var(--dark-900);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: all 0.2s ease;
  touch-action: manipulation;
  flex-shrink: 0;
}

.mobile-toggle:hover, .mobile-toggle:active {
  background: var(--white);
  border-color: var(--primary-400);
  color: var(--primary-600);
  box-shadow: 0 4px 12px rgba(214, 28, 79, 0.15);
  transform: scale(1.04);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.925rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary {
  background: var(--dark-950);
  color: var(--white);
  box-shadow: 0 4px 15px -2px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
  background: var(--primary-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-gradient {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn-gradient:hover {
  background: var(--grad-vibrant);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-glow-lg);
  color: var(--white);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-900);
  border: 1px solid var(--gray-300);
}

.btn-outline:hover {
  background: var(--white);
  border-color: var(--primary-500);
  color: var(--primary-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.825rem;
}

/* ==========================================================================
   EXCLUSIVE MODERN ICON-DRIVEN MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  touch-action: none;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 390px;
  height: 100%;
  height: 100dvh;
  min-height: -webkit-fill-available;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 999;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.18);
  padding: 1.5rem 1.35rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  box-sizing: border-box;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.mobile-nav-top {
  display: flex;
  flex-direction: column;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 1rem;
}

.mobile-nav-logo img {
  height: 34px;
  width: auto;
}

.mobile-nav-close {
  width: 38px;
  height: 38px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  color: var(--dark-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  transition: all 0.2s ease;
}

.mobile-nav-close i {
  width: 20px;
  height: 20px;
}

.mobile-nav-close:active {
  background: #f1f5f9;
  transform: scale(0.95);
}

.mobile-nav-tagline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-600);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  padding: 4px 11px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  align-self: flex-start;
}

.mobile-nav-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-nav-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 0.95rem;
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
}

.mobile-nav-card * {
  pointer-events: none;
}

.mobile-nav-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--gray-100);
  color: var(--dark-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.22s ease;
}

.mobile-nav-icon-box i {
  width: 20px;
  height: 20px;
}

.mobile-nav-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.mobile-nav-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.mobile-nav-sub {
  font-size: 0.74rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.2;
}

.mobile-nav-arrow {
  width: 16px;
  height: 16px;
  color: #cbd5e1;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.mobile-nav-card:hover, .mobile-nav-card:active {
  background: #f8fafc;
  border-color: #e2e8f0;
  transform: translateX(3px);
}

.mobile-nav-card:hover .mobile-nav-arrow, .mobile-nav-card:active .mobile-nav-arrow {
  color: var(--primary-500);
  transform: translateX(2px);
}

/* Active Menu Item State */
.mobile-nav-card.active {
  background: linear-gradient(135deg, #fff5f7 0%, #ffe4eb 100%);
  border-color: rgba(214, 28, 79, 0.28);
  box-shadow: 0 4px 15px -3px rgba(214, 28, 79, 0.12);
}

.mobile-nav-card.active .mobile-nav-icon-box {
  background: var(--grad-vibrant);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(214, 28, 79, 0.35);
}

.mobile-nav-card.active .mobile-nav-title {
  color: var(--primary-700);
  font-weight: 800;
}

.mobile-nav-card.active .mobile-nav-sub {
  color: var(--primary-600);
  font-weight: 600;
}

.mobile-nav-card.active .mobile-nav-arrow {
  color: var(--primary-500);
}

/* Mobile Drawer Footer */
.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.mobile-nav-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mobile-nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.65rem 0.95rem;
  background: #fff1f2;
  border: 1.5px solid #fecdd3;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  touch-action: manipulation;
}

.mobile-nav-phone-btn:active {
  background: #ffe4e6;
  transform: scale(0.98);
}

.mobile-nav-phone-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-500);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(214, 28, 79, 0.25);
}

.mobile-nav-phone-icon i {
  width: 17px;
  height: 17px;
}

.mobile-nav-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.mobile-nav-phone-text small {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-nav-phone-text strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: #881337;
}

.mobile-nav-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(214, 28, 79, 0.25);
}

.mobile-nav-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.mobile-nav-social-item {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  touch-action: manipulation;
}

.mobile-nav-social-item i {
  width: 18px;
  height: 18px;
}

.mobile-nav-social-item:hover, .mobile-nav-social-item:active {
  background: var(--primary-500);
  border-color: var(--primary-500);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Badges & Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--primary-100);
  box-shadow: 0 2px 10px rgba(214, 28, 79, 0.08);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--primary-600);
}

.ping-dot {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
}

.ping-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--primary-400);
  animation: pingAnimation 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-dot::before {
  content: '';
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--primary-500);
  z-index: 1;
}

@keyframes pingAnimation {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Section Containers & Universal Centering */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.section {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.container {
  max-width: 1240px;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin: 1rem 0 1rem 0;
  color: #07090e;
  text-align: center;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #475569;
  font-weight: 500;
  text-align: center;
}

/* Hero Section (Full Viewport Height Coverage) */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 2rem;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 960px;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
  margin-top: auto;
  margin-bottom: auto;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 1.5rem 0 1.25rem 0;
  line-height: 1.08;
  color: #07090e;
  text-align: center;
}

.hero-description {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #334155;
  max-width: 680px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 2.5rem;
  font-weight: 500;
  text-align: center;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Scroll Down Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 6;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(4px);
}

.mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid #94a3b8;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  box-sizing: border-box;
}

.mouse-wheel {
  width: 3.5px;
  height: 6px;
  background-color: var(--primary-500);
  border-radius: 2px;
  animation: mouseScrollAnim 1.8s ease-in-out infinite;
}

@keyframes mouseScrollAnim {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.scroll-text {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
}

/* ==========================================================================
   EXCLUSIVE INNER PAGES STUDIO HEADER & GLOWING DIVIDER
   ========================================================================== */
.page-header-section {
  position: relative;
  z-index: 5;
  padding-top: 140px;
  padding-bottom: 2.5rem;
  text-align: center;
}

.page-header-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-header-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #07090e;
  margin: 1.25rem 0 1rem 0;
  text-align: center;
}

.page-header-desc {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: #475569;
  font-weight: 500;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.two-line-desc,
.corporate-hero-desc {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.two-line-desc .desc-line,
.corporate-hero-desc .desc-line {
  display: block;
  white-space: nowrap;
  text-align: center;
}

.page-header-divider {
  width: 60px;
  height: 3.5px;
  background: var(--grad-vibrant);
  border-radius: var(--radius-full);
  margin-top: 2rem;
  box-shadow: 0 2px 12px rgba(214, 28, 79, 0.4);
}

@media (max-width: 768px) {
  .page-header-section {
    padding-top: 105px;
    padding-bottom: 1.75rem;
  }
  .page-header-container {
    padding: 0 1rem;
  }
  .page-header-title {
    font-size: clamp(1.55rem, 5.8vw, 2.3rem);
    line-height: 1.2;
    margin: 0.85rem 0 0.75rem 0;
  }
  .page-header-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #475569;
  }
  .two-line-desc .desc-line,
  .corporate-hero-desc .desc-line {
    font-size: clamp(0.64rem, 2.75vw, 0.92rem);
  }
  .page-header-divider {
    width: 45px;
    height: 3px;
    margin-top: 1.5rem;
  }
}

@media (max-width: 400px) {
  .page-header-title {
    font-size: clamp(1.35rem, 5.4vw, 1.65rem);
  }
}

/* Portfolio Trust Metrics Bar */
.portfolio-metrics-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.portfolio-metrics-row-top {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.portfolio-metrics-row-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-metric-pill {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  white-space: nowrap;
}

.portfolio-metric-pill i {
  width: 15px;
  height: 15px;
  color: var(--primary-500);
}

@media (min-width: 769px) {
  .portfolio-metrics-bar {
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
  }
  .portfolio-metrics-row-top {
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .portfolio-metrics-row-top {
    display: flex;
    gap: 0.45rem;
    width: 100%;
    justify-content: center;
  }
  .portfolio-metric-pill {
    font-size: 0.76rem;
    padding: 5px 11px;
    gap: 5px;
  }
  .portfolio-metric-pill i {
    width: 13px;
    height: 13px;
  }
}

/* ==========================================================================
   ULTRA-MODERN BRAND ECOSYSTEM & TRUST SHOWCASE SECTION
   ========================================================================== */
.brand-ecosystem-section {
  position: relative;
  z-index: 2;
  padding: 6.5rem 1.5rem;
  background: #ffffff;
  border-top: 1.5px solid #e2e8f0;
  border-bottom: 1.5px solid #e2e8f0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.brand-metrics-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
  margin-bottom: 2.5rem;
  max-width: 900px;
  width: 100%;
}

.brand-metrics-row-top {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}

.brand-metrics-row-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  transition: all 0.25s ease;
}

.brand-metric-pill.pill-pink {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #be123c;
  font-weight: 800;
  box-shadow: 0 4px 15px -3px rgba(214, 28, 79, 0.18);
}

.brand-metric-pill.pill-pink i {
  color: #d61c4f;
}

.brand-metric-pill.pill-pink:hover {
  background: #ffe4e6;
  border-color: #fda4af;
  box-shadow: 0 6px 20px -3px rgba(214, 28, 79, 0.25);
}

.brand-metric-pill i {
  color: var(--primary-500);
}

@media (min-width: 769px) {
  .brand-metrics-bar {
    flex-direction: row;
    justify-content: center;
    gap: 0.85rem;
  }
  .brand-metrics-row-top {
    gap: 0.85rem;
  }
}

@media (max-width: 768px) {
  .brand-metrics-row-top {
    display: flex;
    gap: 0.45rem;
    width: 100%;
    justify-content: center;
  }
  .brand-metric-pill {
    font-size: 0.76rem;
    padding: 0.38rem 0.75rem;
    gap: 5px;
  }
  .brand-metric-pill i {
    width: 13px !important;
    height: 13px !important;
  }
}

/* Category Filter Tabs */
.brand-filter-nav {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.brand-filter-btn {
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-full);
  padding: 0.55rem 1.3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.brand-filter-btn:hover {
  background: #ffffff;
  color: var(--primary-600);
  border-color: var(--primary-300);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.brand-filter-btn.active {
  background: var(--grad-vibrant);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(214, 28, 79, 0.25);
  font-weight: 700;
}

/* Premium Brand Ecosystem Grid (5 Columns) */
.brand-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  width: 100%;
}

@media (max-width: 1300px) {
  .brand-ecosystem-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

@media (max-width: 992px) {
  .brand-ecosystem-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .brand-ecosystem-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .brand-showcase-card {
    padding: 1.25rem 1rem !important;
    min-height: 165px !important;
    border-radius: 16px !important;
  }
  .brand-logo-stage {
    height: 60px !important;
    margin-bottom: 0.75rem !important;
  }
  .brand-logo-stage img {
    max-height: 44px !important;
  }
  .brand-name {
    font-size: 0.82rem !important;
  }
  .brand-industry-tag {
    font-size: 0.7rem !important;
  }
  .brand-solution-pill {
    font-size: 0.68rem !important;
    padding: 2px 7px !important;
  }
}

@media (max-width: 480px) {
  .brand-ecosystem-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
  }
  .brand-showcase-card {
    padding: 1rem 0.75rem !important;
    min-height: 150px !important;
    border-radius: 14px !important;
  }
  .brand-logo-stage {
    height: 52px !important;
    margin-bottom: 0.6rem !important;
  }
  .brand-logo-stage img {
    max-height: 38px !important;
  }
  .brand-name {
    font-size: 0.78rem !important;
  }
  .brand-industry-tag {
    font-size: 0.66rem !important;
  }
  .brand-solution-pill {
    font-size: 0.64rem !important;
    padding: 2px 6px !important;
  }
}

/* Individual Premium Brand Card */
.brand-showcase-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-sizing: border-box;
}

.brand-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: var(--grad-vibrant);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-showcase-card:hover {
  transform: translateY(-7px);
  border-color: var(--primary-400);
  box-shadow: 0 20px 40px -8px rgba(214, 28, 79, 0.16), 0 0 0 1px rgba(214, 28, 79, 0.2);
}

.brand-showcase-card:hover::before {
  opacity: 1;
}

.brand-logo-stage {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  padding: 0.4rem;
  margin-bottom: 1.25rem;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

.brand-showcase-card:hover .brand-logo-stage {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.brand-logo-stage img {
  max-height: 58px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
  mix-blend-mode: multiply;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-showcase-card:hover .brand-logo-stage img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.brand-info-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
  width: 100%;
  box-sizing: border-box;
}

.brand-name-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.brand-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.brand-industry-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.2;
}

.brand-solution-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  background: #fdf2f4;
  color: var(--primary-700);
  border: 1px solid rgba(214, 28, 79, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.brand-showcase-card:hover .brand-solution-pill {
  background: var(--primary-500);
  color: #ffffff;
  border-color: var(--primary-500);
}

/* Brand Ecosystem Bottom CTA Strip */
.brand-ecosystem-cta {
  margin-top: 3.5rem;
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}

@media (max-width: 768px) {
  .brand-ecosystem-cta {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

/* Modern Compact 3-Column Services Grid */
.services-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .services-compact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .services-compact-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

.service-compact-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid #e2e8f0;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.service-compact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-vibrant);
  opacity: 0;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.service-compact-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-400);
  box-shadow: 0 18px 38px -6px rgba(214, 28, 79, 0.14), 0 0 0 1px rgba(214, 28, 79, 0.15);
}

.service-compact-card:hover::before {
  opacity: 1;
  height: 4px;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.service-icon-box,
.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-50);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--primary-200);
  box-shadow: 0 4px 10px rgba(214, 28, 79, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.service-compact-card:hover .service-icon-box,
.bento-card:hover .service-icon-box,
.bento-card:hover .bento-icon {
  background: var(--primary-500);
  color: #ffffff;
  border-color: var(--primary-600);
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 6px 16px rgba(214, 28, 79, 0.25);
}

.service-tag-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
  letter-spacing: 0.01em;
}

.service-card-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.service-card-features {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0.75rem 0 1.15rem 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.85rem !important;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
}

.service-card-features li {
  list-style: none !important;
  list-style-type: none !important;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 !important;
  padding: 0 !important;
}

.service-card-features li i {
  color: var(--primary-500);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.85rem;
  margin-top: auto;
}

.service-link-btn {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-600);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.service-link-btn:hover {
  color: var(--primary-700);
  transform: translateX(3px);
}

/* Bento Grid System (Legacy/Alternative) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.75rem;
}

.bento-card {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.05);
  padding: 1.5rem 1.6rem;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-vibrant);
  opacity: 0.95;
  transition: height 0.3s ease, opacity 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-500);
  box-shadow: 0 20px 40px -8px rgba(214, 28, 79, 0.16), 0 0 0 1px rgba(214, 28, 79, 0.3);
}

.bento-card:hover::before {
  height: 4px;
  opacity: 1;
}

.bento-card .spotlight-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 28, 79, 0.12) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.bento-card:hover .spotlight-glow {
  opacity: 1;
}

.bento-col-12 { grid-column: span 12; }
.bento-col-8 { grid-column: span 8; }
.bento-col-7 { grid-column: span 7; }
.bento-col-6 { grid-column: span 6; }
.bento-col-5 { grid-column: span 5; }
.bento-col-4 { grid-column: span 4; }

.bento-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-50);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border: 1.5px solid var(--primary-200);
  box-shadow: 0 3px 8px rgba(214, 28, 79, 0.08);
  transition: all 0.3s ease;
}

.bento-card:hover .bento-icon {
  background: var(--primary-500);
  color: var(--white);
  border-color: var(--primary-600);
  transform: scale(1.06) rotate(3deg);
}

.bento-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #07090e;
  margin-bottom: 0.45rem;
}

.bento-desc {
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

/* Feature Mockups inside Bento */
.mockup-browser {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.mockup-bar {
  background: var(--gray-100);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--gray-200);
}

.mockup-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.mockup-dot.red { background-color: #ef4444; }
.mockup-dot.yellow { background-color: #f59e0b; }
.mockup-dot.green { background-color: #10b981; }

/* Portfolio Grid & Filter */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--dark-700);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--dark-950);
  color: var(--white);
  border-color: var(--dark-950);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* Modern Showcase Portfolio Grid */
.portfolio-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1100px) {
  .portfolio-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .portfolio-showcase-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .portfolio-showcase-card {
    border-radius: var(--radius-md);
  }
  .portfolio-window-bar {
    padding: 6px 10px;
  }
  .portfolio-window-dots span {
    width: 5px;
    height: 5px;
  }
  .portfolio-window-url {
    font-size: 0.65rem;
    padding: 1px 6px;
  }
  .portfolio-card-content {
    padding: 0.85rem 0.85rem;
  }
  .portfolio-sector-tag {
    font-size: 0.68rem;
  }
  .portfolio-project-title {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
  }
  .portfolio-project-title i {
    width: 14px;
    height: 14px;
  }
  .portfolio-project-desc {
    font-size: 0.76rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .portfolio-card-bottom {
    padding-top: 0.65rem;
  }
  .portfolio-visit-link {
    font-size: 0.72rem;
  }
}

@media (max-width: 420px) {
  .portfolio-showcase-grid {
    gap: 0.55rem !important;
  }
  .portfolio-card-content {
    padding: 0.75rem 0.65rem;
  }
  .portfolio-project-title {
    font-size: 0.88rem;
  }
  .portfolio-window-url {
    display: none;
  }
  .portfolio-project-desc {
    display: none;
  }
}

.portfolio-showcase-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.portfolio-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-vibrant);
  opacity: 0;
  transition: opacity 0.3s ease, height 0.3s ease;
  z-index: 5;
}

.portfolio-showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-400);
  box-shadow: 0 24px 50px -10px rgba(214, 28, 79, 0.18), 0 0 0 1px rgba(214, 28, 79, 0.2);
}

.portfolio-showcase-card:hover::before {
  opacity: 1;
  height: 4px;
}

/* Mockup Header Bar */
.portfolio-window-bar {
  background: #f8fafc;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
}

.portfolio-window-dots {
  display: flex;
  gap: 5px;
}

.portfolio-window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.portfolio-window-url {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 2px 10px;
  border-radius: 12px;
}

/* Image Thumb Area */
.portfolio-thumb-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f1f5f9;
}

.portfolio-thumb-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-showcase-card:hover .portfolio-thumb-stage img {
  transform: scale(1.06);
}

.portfolio-live-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Card Body Content */
.portfolio-card-content {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.portfolio-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.portfolio-sector-tag {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-600);
}

.portfolio-project-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.portfolio-project-title i {
  width: 17px;
  height: 17px;
  color: #94a3b8;
  transition: transform 0.3s ease, color 0.3s ease;
}

.portfolio-showcase-card:hover .portfolio-project-title {
  color: var(--primary-600);
}

.portfolio-showcase-card:hover .portfolio-project-title i {
  color: var(--primary-600);
  transform: translate(2px, -2px);
}

.portfolio-project-desc {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.85rem;
  margin-top: auto;
}

.portfolio-visit-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-600);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Stats Counter Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2.25rem 2rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 10px 25px -4px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-7px);
  border-color: var(--primary-400);
  box-shadow: 0 20px 40px -5px rgba(214, 28, 79, 0.16), 0 0 0 1px rgba(214, 28, 79, 0.2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-500);
  margin-bottom: 0.65rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-800);
}

/* Form Styles */
.form-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 20px 45px -8px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(0, 0, 0, 0.03);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark-700);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-300);
  background-color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.925rem;
  color: var(--dark-900);
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(214, 28, 79, 0.12);
}

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

/* Interactive Service Pill Selection (Checkboxes) */
.service-pill-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.service-pill-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background-color: var(--gray-50);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-800);
  transition: all 0.2s ease;
  user-select: none;
}

.service-pill-label:hover {
  background-color: var(--primary-50);
  border-color: var(--primary-200);
}

.service-pill-label input[type="checkbox"]:checked + span,
.service-pill-label:has(input[type="checkbox"]:checked) {
  background-color: var(--primary-500);
  color: var(--white);
  border-color: var(--primary-500);
}

.service-pill-label input[type="checkbox"] {
  accent-color: var(--primary-500);
}

/* Accordion FAQ */
.faq-item {
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: all 0.25s ease;
}

.faq-item.active {
  border-color: var(--primary-500);
  box-shadow: 0 8px 25px -4px rgba(214, 28, 79, 0.12);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  font-size: 0.95rem;
  color: var(--dark-600);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  max-height: 300px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-500);
}

/* Footer */
.site-footer {
  background-color: var(--dark-950);
  color: var(--white);
  position: relative;
  z-index: 10;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--dark-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-brand-logo:hover {
  transform: scale(1.05);
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.925rem;
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  margin-top: 1.25rem;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-btn:hover {
  background: var(--primary-500);
  border-color: var(--primary-400);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(214, 28, 79, 0.35);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

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

.footer-link {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--primary-400);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gray-400);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: calc(100vw - 32px);
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #061c14;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 16px 36px -6px rgba(16, 185, 129, 0.25), 0 10px 25px rgba(0, 0, 0, 0.35);
  font-size: 0.925rem;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-left: 5px solid #10b981;
  animation: toastSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 440px;
}

.toast.toast-success {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff;
  border: 1.5px solid #34d399;
  border-left: 6px solid #047857;
  box-shadow: 0 18px 40px -6px rgba(16, 185, 129, 0.45), 0 10px 25px rgba(0, 0, 0, 0.15);
}

.toast.toast-error {
  background: linear-gradient(135deg, #b91c1c 0%, #ef4444 100%);
  color: #ffffff;
  border: 1.5px solid #f87171;
  border-left: 6px solid #991b1b;
  box-shadow: 0 18px 40px -6px rgba(239, 68, 68, 0.45), 0 10px 25px rgba(0, 0, 0, 0.15);
}

@keyframes toastSlideIn {
  from {
    transform: translateY(100%) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Form Row 2-Column Responsive Layout */
.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Corporate Values & Process Grids */
.process-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .bento-col-8, .bento-col-7, .bento-col-6, .bento-col-5, .bento-col-4 {
    grid-column: span 12;
  }
  .process-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .quote-section-grid, .about-grid, .contact-grid, .quote-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .studio-nav-menu,
  .studio-header-actions .btn {
    display: none;
  }
  .header-phone-link {
    display: inline-flex;
  }
  .floating-shapes-container {
    display: block !important;
  }
  .floating-3d-item:nth-child(1) {
    top: 20% !important;
    left: 4% !important;
    animation: floatMobile1 7s ease-in-out infinite !important;
  }
  .floating-3d-item:nth-child(2) {
    top: 25% !important;
    right: 4% !important;
    animation: floatMobile2 8s ease-in-out infinite 1s !important;
  }
  .floating-3d-item:nth-child(3) {
    bottom: 140px !important;
    left: 50% !important;
    right: auto !important;
    animation: floatMobile3 8s ease-in-out infinite !important;
    transform-origin: center center;
    box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.12), 0 0 18px rgba(214, 28, 79, 0.18) !important;
  }
  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .studio-brand-tagline, .studio-logo-divider {
    display: none;
  }
  .studio-logo-img {
    height: 64px;
  }
  .studio-header-container {
    padding: 0 1.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  body {
    overflow-x: hidden;
  }
  .container, .studio-header-container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .hero-section,
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 110px;
    padding-bottom: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero-content {
    padding: 0 1.25rem;
    max-width: 100%;
    margin-top: auto;
    margin-bottom: auto;
  }
  .hero-content .pill {
    font-size: 0.92rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 0.85rem;
    box-shadow: 0 4px 15px rgba(214, 28, 79, 0.12);
  }
  .hero-title {
    font-size: clamp(2.45rem, 9.8vw, 3.4rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.035em !important;
    margin: 1.25rem 0 1.15rem 0 !important;
    font-weight: 800 !important;
  }
  .hero-description {
    font-size: 1.12rem !important;
    line-height: 1.68 !important;
    color: #334155 !important;
    font-weight: 500 !important;
    margin-bottom: 2.25rem !important;
    padding: 0 0.25rem;
    max-width: 540px !important;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    gap: 0.85rem;
    margin: 0 auto;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.6rem;
    font-size: 1.05rem;
    border-radius: 14px;
    font-weight: 700;
  }
  .hero-scroll-indicator {
    bottom: 15px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }
  .stat-item {
    padding: 1.5rem 1rem !important;
    border-radius: var(--radius-md) !important;
  }
  .stat-number {
    font-size: 2.25rem !important;
    margin-bottom: 0.35rem !important;
  }
  .stat-label {
    font-size: 0.825rem !important;
    line-height: 1.35 !important;
  }
  .form-grid-2col {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  .form-input, .form-textarea, .form-select {
    font-size: 16px !important; /* iOS Safari auto-zoom prevention */
    padding: 0.85rem 1rem;
  }
  .form-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-md);
  }
  .process-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }
  .process-grid .bento-card,
  .values-grid .bento-card {
    padding: 1.35rem 1rem !important;
  }
  .process-step-num {
    font-size: 2rem !important;
    margin-bottom: 0.35rem !important;
  }
  .process-card-title,
  .values-card-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.35rem !important;
  }
  .process-card-desc,
  .values-card-desc {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
  }
  .bento-card {
    padding: 1.5rem 1.25rem;
  }
  .service-interactive-grid {
    grid-template-columns: 1fr !important;
  }
  .site-footer {
    padding-top: 3.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .site-footer .container {
    padding-left: 1.65rem !important;
    padding-right: 1.65rem !important;
    box-sizing: border-box;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem 1.5rem !important;
    margin-bottom: 2rem !important;
  }
  .footer-brand {
    grid-column: span 2 !important;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-brand-logo {
    height: 46px !important;
  }
  .footer-brand p {
    font-size: 0.86rem !important;
    max-width: 100% !important;
    margin-top: 0.75rem !important;
    line-height: 1.6 !important;
    color: var(--gray-400);
  }
  .footer-social-row {
    margin-top: 1.15rem !important;
    gap: 12px !important;
  }
  .footer-col.footer-contact-col {
    grid-column: span 2 !important;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-col h4 {
    font-size: 0.95rem !important;
    margin-bottom: 0.85rem !important;
    color: #ffffff;
  }
  .footer-links {
    gap: 0.5rem !important;
  }
  .footer-link {
    font-size: 0.84rem !important;
    color: var(--gray-400);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.65rem;
    padding-top: 1.25rem !important;
    margin-top: 1.25rem !important;
    font-size: 0.78rem !important;
  }
  .studio-header {
    padding: 1.1rem 0;
  }
  .studio-logo-img {
    height: 58px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14.5px;
  }
  .container, .studio-header-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .site-footer .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .studio-logo-img {
    height: 52px;
  }
  .floating-shapes-container {
    display: block !important;
  }
  .floating-3d-item {
    padding: 6px 10px !important;
    border-radius: 10px !important;
  }
  .floating-3d-item:nth-child(1) {
    top: 17% !important;
    left: 3% !important;
    animation: floatSmall1 6.5s ease-in-out infinite !important;
    transform-origin: top left;
  }
  .floating-3d-item:nth-child(2) {
    top: 21% !important;
    right: 3% !important;
    animation: floatSmall2 7.5s ease-in-out infinite 1s !important;
    transform-origin: top right;
  }
  .floating-3d-item:nth-child(3) {
    bottom: 125px !important;
    left: 50% !important;
    right: auto !important;
    animation: floatSmall3 7.5s ease-in-out infinite !important;
    transform-origin: center center;
  }
  .studio-header-actions {
    gap: 0.5rem;
  }
  .header-phone-link {
    padding: 0.38rem 0.65rem;
    font-size: 0.8rem;
    gap: 6px;
  }
  .header-phone-icon {
    width: 24px;
    height: 24px;
  }
  .mobile-toggle {
    padding: 7px;
  }
  .email-bento-row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem !important;
  }
  .email-bento-row .btn {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
  }
  .stat-item {
    padding: 1.2rem 0.65rem !important;
    border-radius: 14px !important;
  }
  .stat-number {
    font-size: 1.9rem !important;
    margin-bottom: 0.25rem !important;
  }
  .stat-label {
    font-size: 0.75rem !important;
    line-height: 1.25 !important;
  }
  .process-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
  }
  .process-grid .bento-card,
  .values-grid .bento-card {
    padding: 1.15rem 0.75rem !important;
  }
  .process-step-num {
    font-size: 1.75rem !important;
    margin-bottom: 0.25rem !important;
  }
  .process-card-title,
  .values-card-title {
    font-size: 0.92rem !important;
    margin-bottom: 0.25rem !important;
  }
  .process-card-desc,
  .values-card-desc {
    font-size: 0.74rem !important;
    line-height: 1.35 !important;
  }
  .bento-card, .form-card {
    padding: 1.25rem 1rem;
  }
}

/* ==========================================================================
   ADVANCED SPEED & RENDERING PERFORMANCE OPTIMIZATIONS
   ========================================================================== */
.brand-ecosystem-section,
.bento-services-section,
.stats-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

.floating-3d-item,
.brand-showcase-card,
.service-card,
.stat-item {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

img {
  content-visibility: auto;
}

/* ==========================================================================
   2K / 4K / ULTRA-WIDE HIGH-RESOLUTION RESPONSIVE SCALING ENGINE
   ========================================================================== */

/* 1. Large Laptops & Standard Monitors (1440px - 1699px) */
@media (min-width: 1440px) {
  html {
    font-size: 16.5px;
  }
  .container {
    max-width: 1360px;
  }
  .studio-header-container {
    max-width: 1360px;
  }
  .hero-content {
    max-width: 1040px;
  }
  .hero-title {
    font-size: clamp(3.2rem, 4.4vw, 5.2rem);
  }
  .hero-description {
    font-size: 1.2rem;
    max-width: 780px;
  }
  .studio-logo-img {
    height: 72px;
  }
  .studio-header.scrolled .studio-logo-img {
    height: 60px;
  }
  .floating-3d-item:nth-child(1) {
    left: 10% !important;
  }
  .floating-3d-item:nth-child(2) {
    right: 10% !important;
  }
  .floating-3d-item:nth-child(3) {
    left: 12% !important;
  }
}

/* 2. 2K Monitors (2560x1440) & 27"-32" Displays (1700px - 2099px) */
@media (min-width: 1700px) {
  html {
    font-size: 18.5px;
  }
  .container {
    max-width: 1540px;
  }
  .studio-header-container {
    max-width: 1540px;
  }
  .hero-content {
    max-width: 1200px;
  }
  .hero-title {
    font-size: clamp(3.8rem, 4.6vw, 6.2rem);
    margin: 1.8rem 0 1.5rem 0;
  }
  .hero-description {
    font-size: 1.3rem;
    max-width: 880px;
    margin-bottom: 3rem;
  }
  .studio-logo-img {
    height: 82px;
  }
  .studio-header.scrolled .studio-logo-img {
    height: 66px;
  }
  .studio-nav-menu {
    padding: 8px 14px;
    gap: 0.6rem;
  }
  .studio-nav-item {
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
  }
  .btn-lg {
    padding: 1.05rem 2.4rem;
    font-size: 1.05rem;
  }
  .brand-showcase-card {
    padding: 2rem;
    min-height: 220px;
  }
  .brand-logo-stage {
    height: 105px;
  }
  .brand-logo-stage img {
    max-height: 65px;
  }
  .floating-3d-item {
    padding: 16px 24px !important;
    border-radius: 20px;
  }
  .floating-3d-item:nth-child(1) {
    left: 13% !important;
    top: 28% !important;
  }
  .floating-3d-item:nth-child(2) {
    right: 13% !important;
    top: 50% !important;
  }
  .floating-3d-item:nth-child(3) {
    left: 15% !important;
    bottom: 20% !important;
  }
}

/* 3. Ultra-Wide & 4K Displays (>= 2100px) */
@media (min-width: 2100px) {
  html {
    font-size: 21px;
  }
  .container {
    max-width: 1840px;
  }
  .studio-header-container {
    max-width: 1840px;
  }
  .hero-content {
    max-width: 1380px;
  }
  .hero-title {
    font-size: clamp(4.5rem, 5vw, 7.2rem);
  }
  .hero-description {
    font-size: 1.45rem;
    max-width: 980px;
  }
  .studio-logo-img {
    height: 94px;
  }
  .studio-header.scrolled .studio-logo-img {
    height: 78px;
  }
  .floating-3d-item:nth-child(1) {
    left: 18% !important;
  }
  .floating-3d-item:nth-child(2) {
    right: 18% !important;
  }
  .floating-3d-item:nth-child(3) {
    left: 20% !important;
  }
}


