/* ==========================================================================
   DevStudio - Modern Minimalist Tech Luxury Design System
   Inspired by Vercel, Linear, Stripe & Modern Studio Aesthetics
   ========================================================================== */

:root {
  --bg: #07070b;
  --bg-surface: #0e0d15;
  --bg-card: rgba(18, 16, 26, 0.65);
  --bg-card-hover: rgba(26, 23, 38, 0.85);
  --gold: #d8b968;
  --gold-light: #fff0b7;
  --gold-dark: #9b722c;
  --gold-glow: rgba(216, 185, 104, 0.22);
  --cyan: #38bdf8;
  --text: #f3f3f6;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --line: rgba(255, 255, 255, 0.08);
  --line-gold: rgba(216, 185, 104, 0.25);
  --line-strong: rgba(255, 255, 255, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 30px rgba(216, 185, 104, 0.18);
  --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1220px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(216, 185, 104, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 25%, rgba(56, 189, 248, 0.04) 0%, transparent 40%),
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 32px 32px;
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

ul {
  list-style: none;
}

/* Layout Utilities */
.shell {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.section {
  padding-block: 96px;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding-block: 64px;
  }
}

.section-header {
  text-align: center;
  max-width: 960px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 16px;
  background: rgba(216, 185, 104, 0.08);
  border: 1px solid rgba(216, 185, 104, 0.22);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: clamp(28px, 4.2vw, 42px);
  margin-bottom: 16px;
  color: #ffffff;
  hyphens: none;
  -webkit-hyphens: none;
  word-break: keep-all;
}

.section-title span {
  background: linear-gradient(135deg, #fff0b7 0%, #d8b968 60%, #e2902b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.section-desc {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 720px;
  margin-inline: auto;
}

/* Modern Minimalist Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #fff0b7 0%, #d8b968 100%);
  color: #090710;
  box-shadow: 0 4px 15px rgba(216, 185, 104, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(216, 185, 104, 0.4);
  filter: brightness(1.05);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #fff;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 10px;
}

/* Glassmorphism 2.0 Card Component */
.card-glass {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 36px);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  position: relative;
}

.card-glass:hover {
  border-color: var(--line-gold);
}

/* Navigation Header */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 74px;
  z-index: 1000;
  background: rgba(8, 6, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: var(--transition);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: clamp(18px, 4vw, 21px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo .sparkle {
  color: var(--gold);
  font-size: 18px;
  filter: drop-shadow(0 0 10px rgba(216, 185, 104, 0.6));
  animation: sparkleGlow 3s ease-in-out infinite alternate;
}

@keyframes sparkleGlow {
  0% { transform: scale(0.95); opacity: 0.8; filter: drop-shadow(0 0 4px rgba(216, 185, 104, 0.4)); }
  100% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 14px rgba(216, 185, 104, 0.9)); }
}

.brand-logo span span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.active {
  color: var(--gold-light);
  font-weight: 800;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 999px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  box-shadow: 0 0 10px rgba(216, 185, 104, 0.5);
}

.nav-links a.nav-link-highlight {
  color: var(--gold);
}

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

/* Language Switcher Pill */
.lang-switch-box {
  display: inline-flex;
  align-items: center;
  background: rgba(14, 10, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
  backdrop-filter: blur(12px);
}

.lang-pill {
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.2s ease;
}

.lang-pill:hover {
  color: #fff;
}

.lang-pill.active {
  color: #07050d;
  background: var(--gold);
  box-shadow: 0 2px 8px rgba(216, 185, 104, 0.35);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, #fff0b7 0%, #d8b968 100%);
  color: #090710;
  box-shadow: 0 4px 15px rgba(216, 185, 104, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  text-decoration: none;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(216, 185, 104, 0.5);
  filter: brightness(1.06);
}

/* Mobile Nav Hamburger Toggle */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0;
  color: var(--gold);
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: relative;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  z-index: 1002;
  transition: all 0.25s ease;
}

.mobile-toggle:hover,
.mobile-toggle:focus-visible {
  border-color: var(--gold);
  background: rgba(216, 185, 104, 0.12);
  box-shadow: 0 0 16px rgba(216, 185, 104, 0.25);
  outline: none;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--gold);
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  border-radius: 2px;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-toggle span::before { top: -6.5px; }
.mobile-toggle span::after { bottom: -6.5px; }

.mobile-toggle.active {
  background: rgba(216, 185, 104, 0.15);
  border-color: var(--gold);
}

.mobile-toggle.active span {
  background-color: transparent;
}

.mobile-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ==========================================================================
   STATE-OF-THE-ART LUXURY MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  background: rgba(8, 6, 15, 0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  padding: 24px 20px 28px 20px;
  gap: 16px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.38s;
  z-index: 100001;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.active {
  transform: translateX(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Backdrop Overlay */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.mobile-drawer.active ~ .mobile-drawer-backdrop,
body.menu-open .mobile-drawer-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Drawer Top Bar */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer-close-btn:hover {
  color: #ffffff;
  background: rgba(216, 185, 104, 0.2);
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* Drawer Language Switcher */
.drawer-lang-wrap {
  margin-top: 2px;
}

.drawer-lang-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 4px;
  gap: 6px;
}

.drawer-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.drawer-lang-btn.active {
  background: linear-gradient(135deg, #fff0b7 0%, #d8b968 100%);
  color: #090710;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(216, 185, 104, 0.35);
}

/* Drawer Navigation List */
.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: #f3f3f6;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-link-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-link-icon {
  font-size: 17px;
  line-height: 1;
}

.drawer-link-arrow {
  color: var(--text-dim);
  font-size: 15px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.drawer-link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(216, 185, 104, 0.3);
  color: #ffffff;
  transform: translateX(4px);
}

.drawer-link:hover .drawer-link-arrow {
  color: var(--gold);
  transform: translateX(3px);
}

.drawer-link.active {
  background: rgba(216, 185, 104, 0.12);
  border-color: rgba(216, 185, 104, 0.45);
  color: var(--gold-light);
}

.drawer-link.active .drawer-link-arrow {
  color: var(--gold);
}

.drawer-link-highlight {
  background: rgba(216, 185, 104, 0.08);
  border-color: rgba(216, 185, 104, 0.25);
  color: var(--gold-light);
}

.drawer-badge-fire {
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

/* Quick Contacts Inside Drawer */
.drawer-quick-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.drawer-contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.drawer-contact-card.wa {
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.06);
}

.drawer-contact-card.wa .drawer-contact-icon {
  color: #25D366;
}

.drawer-contact-card.phone {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.06);
}

.drawer-contact-card.phone .drawer-contact-icon {
  color: #38bdf8;
}

.drawer-contact-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.drawer-contact-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.drawer-contact-info strong {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drawer-contact-info small {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Primary Drawer CTA */
.drawer-cta-wrap {
  margin-top: 4px;
}

.drawer-primary-btn {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(216, 185, 104, 0.4);
}

/* Trust Footer Inside Drawer */
.drawer-trust-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-dim);
  text-align: center;
  padding-top: 6px;
}

/* Responsive Navigation Breakpoints */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-header {
    height: 66px;
  }
  .nav-shell {
    padding-inline: 14px;
  }
}

@media (max-width: 480px) {
  .nav-header {
    height: 62px;
  }
  .nav-cta-btn {
    display: none;
  }
  .drawer-quick-contacts {
    grid-template-columns: 1fr;
  }
}

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

.hero-content {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

.hero-headline {
  font-size: clamp(34px, 5.5vw, 62px);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.035em;
}

.hero-headline .highlight {
  background: linear-gradient(135deg, #fff0b7 0%, #d8b968 50%, #e2902b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 34px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Hero Project Showcase Stream / Marquee */
.hero-project-stream {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  margin-top: 32px;
  margin-bottom: 44px;
  padding-block: 14px;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.hero-project-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollProjects 42s linear infinite;
}

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

@keyframes scrollProjects {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 9px)); }
}

.hero-mockup-card {
  width: 280px;
  flex-shrink: 0;
  background: rgba(18, 16, 26, 0.85);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.hero-mockup-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75), 0 0 20px rgba(216, 185, 104, 0.15);
}

.mockup-header {
  height: 28px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding-inline: 10px;
  gap: 5px;
}

.mockup-dots {
  display: flex;
  gap: 4px;
}

.mockup-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

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

.mockup-url {
  font-size: 10px;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.4);
  padding: 1px 8px;
  border-radius: 4px;
  margin-left: 6px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.mockup-body {
  height: 140px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(135deg, #120e20, #1d1630);
}

.mockup-category {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(7, 7, 11, 0.85);
  border: 1px solid rgba(216, 185, 104, 0.3);
  color: var(--gold-light);
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.mockup-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.mockup-tech {
  font-size: 11px;
  color: var(--gold);
}

/* Minimalist Modern 3-Column Proof Grid */
.modern-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 740px;
  margin-inline: auto;
  padding: 20px 24px;
  background: rgba(18, 16, 26, 0.55);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.modern-stat-unit {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 14px;
}

.modern-stat-unit:not(:last-child) {
  border-right: 1px solid var(--line);
}

.unit-number {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff0b7, #d8b968);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}

.unit-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .modern-stats-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px 12px;
    border-radius: 16px;
  }
  .modern-stat-unit {
    padding-inline: 6px;
  }
  .unit-number {
    font-size: 24px;
  }
  .unit-label {
    font-size: 9.5px;
    letter-spacing: 0.04em;
  }
}

/* ==========================================================================
   Services Grid - 4 Columns Single Row
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.service-card {
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: var(--radius-lg);
  transition: transform var(--speed-normal), border-color var(--speed-normal), box-shadow var(--speed-normal);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(216, 185, 104, 0.08);
  border: 1px solid rgba(216, 185, 104, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.service-title {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 800;
}

.service-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   Projects Showcase & Filter Grid
   ========================================================================== */
.projects-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: #ffffff;
  color: #07070b;
  border-color: #ffffff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

/* ==========================================================================
   Projects Interactive Carousel / Slider System
   ========================================================================== */
.projects-carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.projects-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.projects-carousel-nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.carousel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 14, 28, 0.9);
  border: 1px solid var(--line-gold);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  user-select: none;
}

.carousel-nav-btn:hover {
  background: var(--gold);
  color: #07050d;
  border-color: var(--gold);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 30px rgba(216, 185, 104, 0.4);
}

.carousel-nav-btn:active {
  transform: scale(0.96);
}

.projects-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 12px 6px 24px 6px;
  margin: -12px -6px -24px -6px;
  cursor: grab;
}

.projects-carousel-viewport:active {
  cursor: grabbing;
}

.projects-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.projects-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.projects-carousel-track .project-card {
  flex: 0 0 calc(50% - 12px);
  min-width: 320px;
  max-width: 580px;
  scroll-snap-align: start;
}

@media (max-width: 900px) {
  .projects-carousel-track .project-card {
    flex: 0 0 min(420px, 86vw);
    min-width: 280px;
  }
}

.projects-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.projects-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.projects-carousel-dot.active {
  width: 34px;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(216, 185, 104, 0.45);
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  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;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 185, 104, 0.45);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7), 0 0 30px rgba(216, 185, 104, 0.18);
}

/* Browser Mockup Window Bar */
.project-browser-bar {
  background: rgba(10, 8, 16, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

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

.browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.browser-dot.red { background: #ff5f56; }
.browser-dot.yellow { background: #ffbd2e; }
.browser-dot.green { background: #27c93f; }

.browser-mock-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  font-family: monospace;
  color: var(--text-dim);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.project-thumb-box {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, rgba(216, 185, 104, 0.12), transparent 70%), linear-gradient(135deg, #120d20, #19122c);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-thumb-inner {
  transition: transform 0.4s ease;
}

.project-card:hover .project-thumb-inner {
  transform: scale(1.08);
}

.mockup-badges-cluster {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  pointer-events: none;
}

.project-category-badge {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: max-content;
  height: auto;
  max-height: 28px;
  line-height: 1;
  white-space: nowrap;
  background: rgba(7, 7, 11, 0.9);
  border: 1px solid rgba(216, 185, 104, 0.45);
  color: var(--gold-light);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

.project-speed-badge {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: max-content;
  height: auto;
  max-height: 28px;
  line-height: 1;
  white-space: nowrap;
  background: rgba(7, 7, 11, 0.9);
  border: 1px solid rgba(46, 204, 113, 0.45);
  color: #2ecc71;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.02em;
}

.project-info-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.project-title {
  font-size: 20px;
  margin-bottom: 8px;
  color: #ffffff;
  transition: color 0.25s ease;
}

.project-card:hover .project-title {
  color: var(--gold-light);
}

.project-card:hover .link-view-project span:last-child {
  transform: translate(3px, -3px);
}

.project-summary {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.link-view-project {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.link-view-project:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

/* ==========================================================================
   Process & Methodology (Luxury Roadmap & Trust)
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
}

.process-card {
  background: rgba(14, 10, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 24px 26px 24px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(216, 185, 104, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-card:hover {
  border-color: rgba(216, 185, 104, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(216, 185, 104, 0.15);
}

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

.process-step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.process-num-glow {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(216, 185, 104, 0.3);
  letter-spacing: -0.02em;
}

.process-badge-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
}

.process-title {
  font-size: 19px;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.3;
}

.process-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.process-pill-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--gold-light);
  background: rgba(216, 185, 104, 0.08);
  border: 1px solid rgba(216, 185, 104, 0.2);
  padding: 4px 10px;
  border-radius: 8px;
  width: fit-content;
  margin-top: auto;
}

.trust-pillar-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.25s ease;
}

.trust-pillar-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(216, 185, 104, 0.3);
  transform: translateY(-2px);
}

.trust-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: rgba(14, 10, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 38px 30px 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 185, 104, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(216, 185, 104, 0.12);
}

.pricing-card.popular {
  background: radial-gradient(circle at 50% 0%, rgba(216, 185, 104, 0.18), transparent 75%), rgba(16, 12, 28, 0.95);
  border: 1px solid rgba(216, 185, 104, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(216, 185, 104, 0.2);
}

.pricing-card.popular:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 45px rgba(216, 185, 104, 0.3);
}

.pricing-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fff0b7, #d8b968, #9b722c);
  color: #07070b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(216, 185, 104, 0.45);
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
}

.pricing-plan-name {
  font-size: 24px;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pricing-plan-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
  min-height: 42px;
}

.pricing-price-box {
  margin-bottom: 26px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-price-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-price-from {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-price-amount {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.pricing-price-curr {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
}

.pricing-sync-subrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-eur-badge {
  color: #38bdf8;
  font-weight: 700;
  background: rgba(56, 189, 248, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.pricing-features-list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
  flex: 1;
  list-style: none;
  padding: 0;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}

.pricing-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(216, 185, 104, 0.12);
  border: 1px solid rgba(216, 185, 104, 0.35);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.testimonial-author strong {
  color: #ffffff;
  font-size: 14.5px;
}

.testimonial-author span {
  color: var(--text-dim);
  font-size: 12px;
}

/* ==========================================================================
   Contact & Form Elements
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  align-items: start;
}

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

.form-control {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-control label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.form-control input,
.form-control select,
.form-control textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-control input:focus,
.form-control select:focus,
.form-control textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 185, 104, 0.15);
}

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

.form-group-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-group-2 {
    grid-template-columns: 1fr;
  }
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 20px;
  cursor: pointer;
}

.form-checkbox-label input {
  margin-top: 3px;
}

/* Alert Notification Boxes */
.alert-box {
  padding: 14px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
}

.alert-success {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}

.alert-error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

/* Floating WhatsApp Quick Chat */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #050508;
  border-top: 1px solid var(--line);
  padding-top: 70px;
  padding-bottom: 36px;
  position: relative;
}

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

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

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

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 13.5px;
}

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

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--text-dim);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

/* ==========================================================================
   Interactive Studio Micro-Interactions (Spotlight, Scroll Progress & Toast)
   ========================================================================== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, #d8b968, #fff0b7, #38bdf8);
  z-index: 2000;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(216, 185, 104, 0.8);
}

.card-glass, .pricing-card, .project-card, .service-card, .process-card {
  --mouse-x: -500px;
  --mouse-y: -500px;
  position: relative;
}

.card-glass::after, .pricing-card::after, .project-card::after, .service-card::after, .process-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(450px circle at var(--mouse-x) var(--mouse-y), rgba(216, 185, 104, 0.08), transparent 75%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card-glass:hover::after, .pricing-card:hover::after, .project-card:hover::after, .service-card:hover::after, .process-card:hover::after {
  opacity: 1;
}

.studio-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(18, 16, 26, 0.92);
  border: 1px solid rgba(216, 185, 104, 0.4);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(216, 185, 104, 0.2);
  z-index: 3000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.studio-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Mobile-First Polish (iOS Safari Zoom Prevention & Smooth Touch Elements)
   ========================================================================== */
@media (max-width: 768px) {
  /* Prevent iOS automatic zoom on focus */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Smooth horizontal filter pills on mobile */
  .projects-filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-inline: 12px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .projects-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
  }

  /* Full-width CTA buttons on mobile */
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  /* WhatsApp widget safe area */
  .floating-whatsapp {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: calc(20px + env(safe-area-inset-right, 0px));
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .section {
    padding-block: 50px;
  }

  /* Touch-Friendly Horizontal Snap Carousels on Mobile */
  .services-grid,
  .projects-grid,
  .process-grid,
  .pricing-grid,
  .testimonials-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    gap: 16px !important;
    margin-inline: -4vw;
    padding-inline: 4vw;
    padding-bottom: 22px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services-grid::-webkit-scrollbar,
  .projects-grid::-webkit-scrollbar,
  .process-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar,
  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .project-card,
  .process-card,
  .pricing-card,
  .testimonial-card {
    flex: 0 0 82vw !important;
    max-width: 320px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .pricing-card.popular {
    transform: none !important;
    border-color: var(--gold) !important;
  }

  /* Compact Sleek Pricing Badges on Mobile */
  .pricing-card-badge {
    font-size: 9.5px !important;
    padding: 2px 10px !important;
    top: -9px !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap !important;
    font-weight: 800 !important;
    box-shadow: 0 2px 8px rgba(216, 185, 104, 0.25) !important;
  }

  /* Mobile Typography & Shell Alignment */
  .shell {
    width: 92vw;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .hero-headline {
    font-size: clamp(28px, 7.5vw, 38px);
    line-height: 1.18;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .section-title {
    font-size: clamp(24px, 6.5vw, 32px);
    line-height: 1.2;
  }

  .section-desc {
    font-size: 14px;
  }

  .mobile-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 14px;
    opacity: 0.85;
  }
}

.mobile-swipe-hint {
  display: none;
}

/* ==========================================================================
   Interactive Order Wizard & Brief Generator
   ========================================================================== */

.wizard-container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

/* Step Progress Bar */
.wizard-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  position: relative;
}

.wizard-step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.wizard-step-node .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 10, 24, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: var(--text-dim);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.wizard-step-node.active .step-num {
  background: linear-gradient(135deg, #fff0b7, #d8b968, #9b722c);
  border-color: #fff0b7;
  color: #07070b;
  box-shadow: 0 0 25px rgba(216, 185, 104, 0.5), 0 4px 15px rgba(0, 0, 0, 0.4);
  transform: scale(1.08);
}

.wizard-step-node.completed .step-num {
  background: rgba(46, 204, 113, 0.15);
  border-color: #2ecc71;
  color: #2ecc71;
  box-shadow: 0 0 15px rgba(46, 204, 113, 0.3);
}

.wizard-step-node .step-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dim);
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.wizard-step-node.active .step-label {
  color: var(--gold-light);
  font-weight: 800;
}

.wizard-step-node.completed .step-label {
  color: #ffffff;
}

.wizard-step-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 12px;
  margin-bottom: 28px;
  position: relative;
  transition: background 0.4s ease;
}

.wizard-step-line.active {
  background: linear-gradient(90deg, var(--gold), rgba(216, 185, 104, 0.3));
}

/* Live Floating Price Bar */
.wizard-live-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  margin-bottom: 28px;
  background: radial-gradient(circle at 50% 0%, rgba(216, 185, 104, 0.1), transparent 70%), rgba(14, 10, 24, 0.95);
  border: 1px solid rgba(216, 185, 104, 0.35);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.wizard-live-summary .summary-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wizard-live-summary .summary-label {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.wizard-live-summary .summary-val {
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
}

.wizard-live-summary .price-col {
  text-align: right;
}

.wizard-live-summary .summary-price {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(216, 185, 104, 0.35);
}

/* Wizard Card Body */
.wizard-card-body {
  background: rgba(14, 10, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 48px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
}

.wizard-step-pane {
  display: none;
  animation: fadeInStep 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wizard-step-pane.active {
  display: block;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.pane-header {
  margin-bottom: 30px;
}

.pane-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(216, 185, 104, 0.12);
  border: 1px solid rgba(216, 185, 104, 0.3);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.pane-title {
  font-size: clamp(22px, 3.5vw, 32px);
  color: #ffffff;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
}

.pane-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-group-title {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

/* Wizard Option Cards (Radio Grid) */
.wizard-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.wizard-options-grid.style-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
  .wizard-options-grid.style-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wizard-options-grid.style-grid {
    grid-template-columns: 1fr;
  }
}

.wizard-option-card {
  position: relative;
  cursor: pointer;
  display: block;
}

.wizard-option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card-content {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.wizard-option-card:hover .option-card-content {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}

.wizard-option-card input[type="radio"]:checked + .option-card-content {
  border-color: var(--gold);
  background: radial-gradient(circle at 50% 0%, rgba(216, 185, 104, 0.16), transparent 75%), rgba(22, 16, 32, 0.95);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(216, 185, 104, 0.2);
  transform: translateY(-4px);
}

.option-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.wizard-option-card input[type="radio"]:checked + .option-card-content .option-icon {
  background: rgba(216, 185, 104, 0.15);
  border-color: rgba(216, 185, 104, 0.4);
}

.option-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.option-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.option-price-tag {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  background: rgba(216, 185, 104, 0.1);
  border: 1px solid rgba(216, 185, 104, 0.25);
  padding: 6px 12px;
  border-radius: 8px;
  align-self: flex-start;
}

/* Style Previews */
.style-preview {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Radio Pill Group */
.radio-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-pill {
  position: relative;
  cursor: pointer;
}

.radio-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-pill span {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
  color: var(--text);
  transition: all 0.25s ease;
}

.radio-pill:hover span {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.radio-pill input[type="radio"]:checked + span {
  background: rgba(216, 185, 104, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  font-weight: 800;
  box-shadow: 0 0 18px rgba(216, 185, 104, 0.25);
}

/* Color Palette Selector */
.color-palette-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.palette-chip {
  position: relative;
  cursor: pointer;
}

.palette-chip input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.palette-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 13.5px;
  color: var(--text);
  transition: var(--transition);
}

.palette-badge .c-box {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.palette-chip input[type="radio"]:checked + .palette-badge {
  border-color: var(--gold);
  background: rgba(216, 185, 104, 0.12);
  color: var(--gold-light);
  font-weight: 700;
}

/* Feature Checklist Cards */
.wizard-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.wizard-feature-card {
  position: relative;
  cursor: pointer;
  display: block;
}

.wizard-feature-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.feature-card-content {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.feat-check {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  transition: var(--transition);
  flex-shrink: 0;
}

.wizard-feature-card input[type="checkbox"]:checked + .feature-card-content .feat-check {
  background: var(--gold);
  border-color: var(--gold-light);
  color: #07070b;
}

.wizard-feature-card input[type="checkbox"]:checked + .feature-card-content {
  border-color: var(--line-gold);
  background: rgba(216, 185, 104, 0.06);
}

.feat-details {
  flex: 1;
}

.feat-details strong {
  display: block;
  font-size: 14.5px;
  color: #ffffff;
  margin-bottom: 2px;
}

.feat-details p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.feat-badge-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(216, 185, 104, 0.1);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* Wizard Navigation Actions */
.wizard-nav-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Form Controls & Modern Input System
   ========================================================================== */

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 22px;
  position: relative;
}

.form-group label,
.form-control label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: #e4e4e7;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group label span.req,
label .req {
  color: var(--gold);
}

.form-help {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 6px;
}

/* Base Form Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
select,
textarea,
.form-control {
  width: 100%;
  background: rgba(16, 13, 25, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  color: #ffffff;
  font-size: 15px;
  font-family: var(--font-body);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
  -webkit-font-smoothing: antialiased;
}

/* Clean placeholder */
input::placeholder,
textarea::placeholder {
  color: rgba(161, 161, 170, 0.55);
  font-size: 14px;
}

/* Hover & Focus States */
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
select:hover,
textarea:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(22, 18, 34, 0.85);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus,
.form-control:focus {
  border-color: var(--gold);
  background: rgba(26, 21, 40, 0.95);
  box-shadow: 0 0 0 3.5px rgba(216, 185, 104, 0.2), 0 8px 24px rgba(0, 0, 0, 0.5);
  outline: none;
}

/* Custom Luxury Select */
select,
.form-control select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d8b968' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 15px;
  padding-right: 48px;
  cursor: pointer;
}

select option {
  background-color: #0d0a17;
  color: #ffffff;
  padding: 12px 16px;
  font-size: 14.5px;
}

/* Custom Textarea */
textarea,
.form-control textarea {
  min-height: 105px;
  line-height: 1.6;
  resize: vertical;
}

/* Custom Luxury Checkbox (GDPR) */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 6px;
}

.checkbox-container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-container .checkmark {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 1px;
}

.checkbox-container:hover .checkmark {
  border-color: var(--gold);
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold-light);
  box-shadow: 0 0 12px rgba(216, 185, 104, 0.4);
}

.checkbox-container .checkmark::after {
  content: "";
  display: none;
  width: 5px;
  height: 10px;
  border: solid #07070b;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark::after {
  display: block;
}

.checkbox-label {
  font-size: 13.5px;
  color: #d4d4d8;
}

/* ==========================================================================
   Luxury Brief Review Box (Ticket Style)
   ========================================================================== */

.brief-review-box {
  background: radial-gradient(circle at 100% 0%, rgba(216, 185, 104, 0.12) 0%, transparent 60%), rgba(18, 14, 28, 0.85);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  position: relative;
}

.brief-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.brief-review-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.brief-review-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(216, 185, 104, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-gold);
}

.brief-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.brief-review-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brief-review-item .label {
  font-size: 11.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.brief-review-item strong {
  font-size: 14.5px;
  color: #ffffff;
  font-weight: 700;
}

.brief-review-item.price-item {
  background: rgba(216, 185, 104, 0.08);
  border-color: var(--line-gold);
}

.brief-review-item.price-item strong {
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 900;
  font-family: var(--font-heading);
}

/* Enhanced Trust Mini Bar */
.trust-mini-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 12px;
  background: rgba(216, 185, 104, 0.03);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 26px;
}

.trust-mini-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
}

.trust-mini-item .icon {
  font-size: 16px;
}

/* Submit & WhatsApp Action Buttons in Wizard */
.btn-submit-order {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #07070b !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 28px rgba(216, 185, 104, 0.35);
}

.btn-submit-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(216, 185, 104, 0.55);
}

/* Highlight badge for header navigation */
.nav-link-highlight {
  position: relative;
  color: var(--gold-light) !important;
  font-weight: 700 !important;
}

.nav-link-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 2px;
}

/* ==========================================================================
   Floating Speed Dial & Quick Contact Widget
   ========================================================================== */

.speed-dial-widget {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.speed-dial-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(37, 211, 102, 0.25), rgba(18, 140, 126, 0.08)), #0f0b1a;
  border: 1.5px solid rgba(37, 211, 102, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 22px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  outline: none;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.speed-dial-btn:hover {
  transform: scale(1.08) translateY(-2px);
  border-color: #25D366;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8), 0 0 32px rgba(37, 211, 102, 0.5);
}

.speed-dial-btn svg,
.speed-dial-btn .icon-open {
  width: 26px;
  height: 26px;
  fill: #25D366;
  transition: transform 0.3s ease;
}

.speed-dial-btn .icon-close {
  display: none;
  font-size: 20px;
  font-weight: 800;
}

.speed-dial-widget.active .speed-dial-btn {
  background: #140f22;
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(216, 185, 104, 0.35);
  transform: rotate(90deg);
}

.speed-dial-widget.active .speed-dial-btn .icon-open {
  display: none;
}

.speed-dial-widget.active .speed-dial-btn .icon-close {
  display: block;
  color: var(--gold-light);
  transform: rotate(-90deg);
}

.btn-glow-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1.5px solid #25D366;
  opacity: 0.7;
  animation: ringPulse 2.4s infinite;
  pointer-events: none;
}

.speed-dial-widget.active .btn-glow-ring {
  display: none;
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Speed Dial Popup Card */
.speed-dial-card {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: radial-gradient(circle at 100% 0%, rgba(216, 185, 104, 0.08), transparent 60%), rgba(14, 10, 24, 0.97);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(216, 185, 104, 0.35);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(216, 185, 104, 0.12);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

.speed-dial-widget.active .speed-dial-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.speed-dial-header {
  background: rgba(216, 185, 104, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.speed-dial-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

.status-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px #2ecc71;
  display: inline-block;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.speed-dial-close {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.speed-dial-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.speed-dial-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.speed-dial-title {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 2px;
  padding-left: 2px;
}

.speed-dial-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.speed-dial-action:hover {
  transform: translateX(3px);
}

.speed-dial-action .action-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.speed-dial-action .action-texts {
  flex: 1;
}

.speed-dial-action .action-texts strong {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
}

.speed-dial-action .action-texts small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.speed-dial-action .action-arrow {
  color: var(--gold);
  font-weight: 900;
  font-size: 13.5px;
}

.speed-dial-action.wa-action {
  background: rgba(37, 211, 102, 0.05);
  border-color: rgba(37, 211, 102, 0.25);
}

.speed-dial-action.wa-action .action-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.speed-dial-action.wa-action:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.12);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.18);
}

.speed-dial-action.phone-action {
  background: rgba(56, 189, 248, 0.04);
  border-color: rgba(56, 189, 248, 0.2);
}

.speed-dial-action.phone-action .action-icon {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
}

.speed-dial-action.phone-action:hover {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.18);
}

.speed-dial-action.wizard-action {
  background: linear-gradient(135deg, rgba(216, 185, 104, 0.12), rgba(216, 185, 104, 0.04));
  border-color: rgba(216, 185, 104, 0.35);
}

.speed-dial-action.wizard-action .action-icon {
  background: rgba(216, 185, 104, 0.18);
  color: var(--gold);
}

.speed-dial-action.wizard-action:hover {
  background: linear-gradient(135deg, #f3e7be 0%, #d8b968 50%, #b8860b 100%);
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(216, 185, 104, 0.35);
}

.speed-dial-action.wizard-action:hover .action-texts strong,
.speed-dial-action.wizard-action:hover .action-texts small,
.speed-dial-action.wizard-action:hover .action-arrow {
  color: #07050d !important;
}

/* Process Badge Time */
.process-badge-time {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--cyan);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .wizard-progress-bar .step-label {
    display: none;
  }

  .wizard-live-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .wizard-live-summary .price-col {
    text-align: left;
  }

  .speed-dial-widget {
    bottom: 20px;
    right: 20px;
  }

  .speed-dial-card {
    width: 290px;
  }
}

/* =============================================================
   WhatsApp & Google 5.0 ⭐ Verified Reviews Showcase
   ============================================================= */
.wa-reviews-section {
  position: relative;
}

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 11, 24, 0.85);
  border: 1px solid rgba(216, 185, 104, 0.3);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 14px;
}

.google-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
}

.wa-slider-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.wa-slider-controls {
  display: flex;
  gap: 8px;
}

.wa-slider-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 14, 28, 0.85);
  border: 1px solid rgba(216, 185, 104, 0.3);
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.wa-slider-arrow:hover {
  background: var(--gold);
  color: #07050d;
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(216, 185, 104, 0.4);
}

.wa-reviews-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  padding: 4px 2px 16px 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 185, 104, 0.35) transparent;
  scroll-behavior: smooth;
}

.wa-reviews-slider::-webkit-scrollbar {
  height: 4px;
}

.wa-reviews-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
}

.wa-reviews-slider::-webkit-scrollbar-thumb {
  background: rgba(216, 185, 104, 0.3);
  border-radius: 999px;
}

.wa-card {
  flex: 0 0 255px;
  min-width: 255px;
  max-width: 265px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: rgba(12, 9, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 12px 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .wa-card {
    flex: 0 0 72vw;
    min-width: 72vw;
  }
}

.wa-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(37, 211, 102, 0.12);
}

.wa-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f2937, #111827);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-weight: 900;
  font-size: 10.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.wa-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 7px;
  height: 7px;
  background: #2ecc71;
  border: 1px solid #0c0914;
  border-radius: 50%;
}

.wa-name {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-verified-icon {
  color: #25d366;
  font-size: 11px;
}

.wa-company {
  font-size: 10px;
  color: var(--text-dim);
}

.wa-rating-stars {
  color: #fbbf24;
  font-size: 9.5px;
  letter-spacing: 0.5px;
}

/* Authentic Compact WhatsApp Speech Bubble */
.wa-bubble {
  background: rgba(0, 92, 75, 0.85);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 3px 10px 10px 10px;
  padding: 8px 10px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  margin-bottom: 8px;
}

.wa-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5px;
  width: 0;
  height: 0;
  border-top: 6px solid rgba(0, 92, 75, 0.85);
  border-left: 6px solid transparent;
}

.wa-bubble-text {
  font-size: 11.5px;
  color: #e9edef;
  line-height: 1.45;
  margin: 0 0 4px 0;
}

.wa-bubble-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font-size: 9.5px;
  color: rgba(233, 237, 239, 0.65);
}

.wa-double-check {
  color: #53bdeb;
  font-size: 10.5px;
  font-weight: 900;
}

.wa-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 10px;
  padding-top: 2px;
}

.wa-project-badge {
  background: rgba(216, 185, 104, 0.1);
  border: 1px solid rgba(216, 185, 104, 0.25);
  color: var(--gold-light);
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
}

.wa-result-tag {
  color: #2ecc71;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
}

/* ==========================================================================
   FLASH SALE & BLACK FRIDAY TECH-LUXURY COMPONENT STYLES
   ========================================================================== */

/* Top Sticky Flash Sale Announcement Bar - Luxury Professional Aesthetic */
.flash-announcement-bar {
  background: rgba(10, 7, 18, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(216, 185, 104, 0.22);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  position: relative;
  z-index: 1001;
  padding: 6px 16px;
  font-size: 12.5px;
  color: #fff;
  transition: all 0.3s ease;
}

.flash-bar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.flash-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.flash-fire-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(216, 185, 104, 0.1);
  border: 1px solid rgba(216, 185, 104, 0.35);
  color: #fff0b7;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(216, 185, 104, 0.12);
}

.flash-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
  display: inline-block;
  animation: pulseGoldDot 2s infinite;
}

@keyframes pulseGoldDot {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #f59e0b; }
}

.flash-bar-msg {
  font-weight: 600;
  color: #e5e2ee;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}

.flash-bar-msg strong {
  color: #fff0b7;
  font-weight: 800;
}

.flash-coupon-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(216, 185, 104, 0.4);
  padding: 2px 7px;
  border-radius: 5px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  color: #fff0b7;
  cursor: pointer;
  transition: all 0.2s ease;
}

.flash-coupon-pill:hover {
  background: rgba(216, 185, 104, 0.15);
  border-color: #fcd34d;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Flash Countdown Timer Units */
.flash-countdown-box {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  color: var(--text-muted);
}

.flash-timer-digits {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
}

.flash-timer-unit {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(216, 185, 104, 0.22);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 11.5px;
  color: #ffffff;
  min-width: 18px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.flash-timer-sep {
  color: rgba(216, 185, 104, 0.6);
  font-size: 10px;
  font-weight: 700;
}

.flash-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flash-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #dfc07b 0%, #c49d45 100%);
  color: #08060f;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 13px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(216, 185, 104, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.flash-bar-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 4px 16px rgba(216, 185, 104, 0.45);
}

.flash-bar-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 4px;
  line-height: 1;
  transition: all 0.2s ease;
}

.flash-bar-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Strikethrough & Flash Badges for Pricing Cards */
.price-old {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-weight: 600;
  margin-right: 8px;
  display: inline-block;
}

.flash-discount-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
  vertical-align: middle;
}

/* Flash Sale Luxury Banner Box on /preturi & /comanda */
.flash-promo-card {
  background: radial-gradient(circle at 100% 50%, rgba(239, 68, 68, 0.15), transparent 50%),
              radial-gradient(circle at 0% 50%, rgba(245, 158, 11, 0.12), transparent 50%),
              rgba(18, 14, 28, 0.9);
  border: 1px solid rgba(245, 158, 11, 0.5);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.5vw, 36px);
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(239, 68, 68, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.flash-promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ef4444, #f59e0b, #fff0b7, #f59e0b, #ef4444);
  background-size: 200% 100%;
  animation: flashGradientShift 6s linear infinite;
}

@media (max-width: 768px) {
  .flash-announcement-bar {
    padding: 6px 10px;
    font-size: 12px;
  }
  .flash-bar-shell {
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
  .flash-bar-left {
    justify-content: center;
    gap: 8px;
  }
  .flash-bar-right {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }
}

/* ==========================================================================
   16. LIVE SOCIAL PROOF & CONVERSION TOAST (LUXURY GLASS ARCHITECTURE)
   ========================================================================== */
.social-proof-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  pointer-events: none;
}

.social-proof-toast {
  pointer-events: auto;
  position: relative;
  background: radial-gradient(circle at 10% 10%, rgba(30, 22, 48, 0.95), rgba(11, 8, 18, 0.96));
  border: 1px solid rgba(216, 185, 104, 0.32);
  border-radius: 16px;
  padding: 13px 15px 14px 13px;
  max-width: 350px;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.85), 0 0 24px rgba(216, 185, 104, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  overflow: hidden;
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.social-proof-toast.active {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.sp-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 30%, rgba(216, 185, 104, 0.22), rgba(216, 185, 104, 0.06));
  border: 1px solid rgba(216, 185, 104, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.sp-content {
  flex: 1;
  min-width: 0;
  padding-right: 12px;
}

.sp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.sp-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.sp-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: 1px 6px;
  border-radius: 999px;
  white-space: nowrap;
}

.sp-desc {
  font-size: 12px;
  color: #c9c5d6;
  line-height: 1.45;
  margin: 0 0 7px 0;
}

.sp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 10.5px;
  color: var(--text-dim);
}

.sp-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #e5e2ee;
  font-weight: 600;
}

.sp-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px #2ecc71;
  display: inline-block;
  animation: pulseSpLiveDot 2s infinite;
}

@keyframes pulseSpLiveDot {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 10px #2ecc71; }
}

.sp-live-tag {
  color: rgba(216, 185, 104, 0.7);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sp-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 4px;
  line-height: 1;
  transition: all 0.2s ease;
}

.sp-close-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* Subtle Progress Bar */
.sp-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.sp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #d8b968, #f59e0b);
  width: 100%;
  animation: spProgressShrink 6.5s linear forwards;
}

@keyframes spProgressShrink {
  0% { width: 100%; }
  100% { width: 0%; }
}

@media (max-width: 640px) {
  .social-proof-container {
    bottom: 84px;
    left: 12px;
    right: 12px;
  }
  .social-proof-toast {
    max-width: 100%;
    padding: 12px 14px;
  }
}

/* ==========================================================================
   Bento Grid & Tech Feature Cards System - Luxury Glassmorphic Architecture
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-card {
  background: rgba(18, 14, 28, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(26px, 3.5vw, 34px);
  backdrop-filter: blur(20px);
  position: relative;
  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: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.bento-card:hover {
  border-color: rgba(216, 185, 104, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(216, 185, 104, 0.14);
}

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

@media (max-width: 1024px) {
  .bento-col-4 { grid-column: span 6; }
}

@media (max-width: 768px) {
  .bento-col-4, .bento-col-6, .bento-col-8 {
    grid-column: span 12;
  }
}

.bento-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(216, 185, 104, 0.12);
  border: 1px solid rgba(216, 185, 104, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.bento-card:hover .bento-icon-badge {
  transform: scale(1.08) rotate(3deg);
}

/* Feature tags pill cluster */
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.feature-pill {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.bento-card:hover .feature-pill {
  background: rgba(216, 185, 104, 0.08);
  border-color: rgba(216, 185, 104, 0.2);
  color: var(--gold-light);
}

/* Mini Header Tag inside Card */
.card-mini-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ==========================================================================
   Ultra-Luxury Enterprise Site Footer
   ========================================================================== */

.site-footer {
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(216, 185, 104, 0.06) 0%, transparent 60%), #07050d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 35px 0;
  overflow: hidden;
  margin-top: 60px;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(850px, 90vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 185, 104, 0.65), transparent);
  box-shadow: 0 0 15px rgba(216, 185, 104, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin: 0 0 18px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col h4::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(216, 185, 104, 0.08);
  border: 1px solid rgba(216, 185, 104, 0.25);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.footer-contact-item:hover {
  background: rgba(216, 185, 104, 0.08);
  border-color: rgba(216, 185, 104, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.footer-contact-item.wa-item {
  border-color: rgba(37, 211, 102, 0.2);
  background: rgba(37, 211, 102, 0.04);
}

.footer-contact-item.wa-item:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   UNIVERSAL MOBILE & TABLET OPTIMIZATION SUITE (PSACODE.ART)
   Complete responsive layout, touch targets, grids & typography for all devices
   ========================================================================== */

/* 1. Base Mobile Reset & Anti-Overflow Guard */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    -webkit-text-size-adjust: 100%;
  }

  .shell {
    width: min(100% - 28px, var(--container)) !important;
    padding-inline: 0 !important;
  }

  .section {
    padding-block: 52px 36px !important;
  }

  .section-header {
    margin-bottom: 34px !important;
    padding-inline: 4px;
  }

  .section-title {
    font-size: clamp(24px, 6.2vw, 34px) !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
  }

  .section-desc {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }

  .kicker {
    font-size: 11px !important;
    padding: 4px 12px !important;
    margin-bottom: 12px !important;
  }

  /* Form Inputs (Disable iOS Safari Auto-Zoom) */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="password"],
  input[type="search"],
  textarea,
  select,
  .form-control {
    font-size: 16px !important;
    min-height: 48px !important;
    border-radius: 12px !important;
    padding: 11px 14px !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  /* Buttons on Mobile */
  .btn {
    min-height: 46px !important;
    padding: 12px 20px !important;
    font-size: 13.5px !important;
    border-radius: 12px !important;
  }

  /* Hero Section */
  .hero {
    padding-top: 105px !important;
    padding-bottom: 36px !important;
    min-height: auto !important;
  }

  .hero-headline {
    font-size: clamp(28px, 8vw, 42px) !important;
    line-height: 1.15 !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.03em !important;
  }

  .hero-subtitle {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    margin-bottom: 24px !important;
    padding-inline: 6px;
  }

  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto 28px auto !important;
    gap: 10px !important;
  }

  .hero-cta-group .btn {
    width: 100% !important;
  }

  /* Stats Bar */
  .stats-grid,
  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .stat-card {
    padding: 16px 12px !important;
    border-radius: 14px !important;
    text-align: center !important;
  }

  .stat-number,
  .stat-counter {
    font-size: clamp(24px, 5.5vw, 32px) !important;
  }

  .stat-label {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }

  /* Cards & Glass Containers */
  .card-glass {
    padding: clamp(18px, 4.5vw, 26px) !important;
    border-radius: 18px !important;
  }

  /* Pricing Cards & Grids */
  .pricing-luxury-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
  }

  .pricing-lux-card {
    padding: 24px 20px !important;
    border-radius: 20px !important;
    transform: none !important;
  }

  .pricing-lux-card.popular {
    transform: none !important;
  }

  .pricing-lux-card.popular:hover {
    transform: translateY(-4px) !important;
  }

  .pricing-price-display {
    padding: 14px 16px !important;
    margin: 14px 0 16px 0 !important;
  }

  .price-main-amount {
    font-size: 26px !important;
  }

  /* Comparison & Spec Tables */
  .table-responsive,
  .table-scroll-wrap {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: 14px !important;
    margin-bottom: 20px !important;
  }

  table {
    min-width: 580px !important;
  }

  /* Order Configurator Wizard (comanda.php) */
  .wizard-container {
    padding: 14px 10px !important;
    margin-top: 10px !important;
  }

  .wizard-progress-bar {
    padding: 8px 6px !important;
    gap: 4px !important;
    justify-content: space-between !important;
  }

  .wizard-step-node {
    gap: 3px !important;
  }

  .wizard-step-node .step-num {
    width: 28px !important;
    height: 28px !important;
    font-size: 11.5px !important;
  }

  .wizard-step-node .step-label {
    display: none !important;
  }

  .wizard-step-line {
    margin: 0 2px !important;
    height: 2px !important;
  }

  .wizard-card-body {
    padding: 18px 14px !important;
    border-radius: 18px !important;
  }

  .wizard-options-grid,
  .wizard-features-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .wizard-option-card,
  .wizard-feature-card {
    padding: 12px 14px !important;
    border-radius: 14px !important;
  }

  .wizard-live-summary {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 14px !important;
  }

  .wizard-live-summary .price-col {
    text-align: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 10px !important;
  }

  .wizard-nav-actions {
    flex-direction: column-reverse !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }

  .wizard-nav-actions .btn {
    width: 100% !important;
  }

  /* Portfolio & Filter Pills (proiecte.php) */
  .filter-pills-row,
  .portfolio-filters {
    display: flex !important;
    overflow-x: auto !important;
    padding-bottom: 8px !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    margin-bottom: 24px !important;
  }

  .filter-pills-row::-webkit-scrollbar,
  .portfolio-filters::-webkit-scrollbar {
    display: none !important;
  }

  .filter-pill-btn,
  .filter-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
  }

  .projects-grid,
  .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .project-card {
    border-radius: 18px !important;
  }

  /* Hosting & Domain Search (hosting.php) */
  .domain-search-wrapper,
  .domain-search-box {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
    padding: 12px !important;
    border-radius: 16px !important;
  }

  .domain-search-input {
    width: 100% !important;
  }

  .domain-tld-select,
  .domain-search-btn {
    width: 100% !important;
  }

  .hosting-grid,
  .hosting-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Contact Page (contact.php) */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .contact-info-cards {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .contact-form-card {
    padding: 22px 16px !important;
    border-radius: 18px !important;
  }

  /* Status Proiect & Status Sistem */
  .status-search-form,
  .tracker-search-box {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .status-search-form .btn,
  .tracker-search-box .btn {
    width: 100% !important;
  }

  .timeline-step-node {
    padding: 12px 10px !important;
  }

  /* Floating Widgets & Social Proof Toasts */
  .speed-dial-widget {
    bottom: 18px !important;
    right: 16px !important;
    z-index: 9999 !important;
  }

  .speed-dial-btn {
    width: 50px !important;
    height: 50px !important;
  }

  .speed-dial-card {
    width: calc(100vw - 32px) !important;
    max-width: 320px !important;
    right: 0 !important;
    bottom: 60px !important;
    border-radius: 18px !important;
  }

  .social-proof-container {
    bottom: 78px !important;
    left: 12px !important;
    right: 12px !important;
    max-width: calc(100vw - 24px) !important;
    margin: 0 auto !important;
    z-index: 998 !important;
  }

  .social-proof-toast {
    max-width: 100% !important;
    padding: 11px 13px !important;
    border-radius: 14px !important;
  }

  /* Footer */
  .site-footer {
    padding: 44px 0 24px 0 !important;
    margin-top: 40px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .footer-bottom {
    margin-top: 32px !important;
    padding-top: 20px !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .footer-legal-links {
    justify-content: center !important;
    gap: 12px !important;
  }
}

/* 2. Extra Narrow Smartphone Enhancements (< 420px) */
@media (max-width: 420px) {
  .stats-grid,
  .stats-bar-grid {
    grid-template-columns: 1fr !important;
  }

  .brand-logo {
    font-size: 17px !important;
  }

  .lang-pill {
    padding: 3px 7px !important;
    font-size: 10.5px !important;
  }

  .mobile-toggle {
    width: 38px !important;
    height: 38px !important;
  }

  .drawer-quick-contacts {
    grid-template-columns: 1fr !important;
  }

  .price-main-amount {
    font-size: 23px !important;
  }
}

