/* ==========================================================================
   CraftsVeda — Premium Printing Studio Design System
   Saki Naka, Mumbai
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-main: #090c12;
  --bg-card: #121722;
  --bg-card-hover: #171e2c;
  --bg-card-elevated: #1a2232;
  --bg-input: #0e131c;
  --bg-glass: rgba(18, 23, 34, 0.75);

  /* Gold Accents */
  --gold-primary: #d4af37;
  --gold-light: #f5e29f;
  --gold-dark: #a88424;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #fbe8a6 50%, #aa7c11 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(245, 226, 159, 0.05) 100%);
  --gold-border: rgba(212, 175, 55, 0.28);
  --gold-glow: rgba(212, 175, 55, 0.2);

  /* Neutrals & Text */
  --text-primary: #f5f6f9;
  --text-secondary: #9da6b9;
  --text-muted: #647087;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: #d4af37;

  /* Accent Colors */
  --whatsapp-green: #25d366;
  --whatsapp-dark: #128c7e;
  --burgundy: #8b2635;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-brand: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Layout & Transitions */
  --container-max: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --header-height: 114px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  background: radial-gradient(circle at 50% 0%, #151b27 0%, var(--bg-main) 70%);
  min-height: 100vh;
  padding-top: var(--header-height);
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
  color: inherit;
}

/* Container & Layout Safety */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

section,
.section,
.hero-section,
.trust-contact-strip,
.site-header,
.site-footer {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.mobile-nav-cta {
  display: none;
}

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

.text-center {
  text-align: center;
}

/* ==========================================================================
   BUTTONS & CONTROLS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 15px 34px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.btn-block {
  width: 100%;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0b0e14;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
  filter: brightness(1.05);
}

.btn-outline-gold {
  background: rgba(212, 175, 55, 0.05);
  color: var(--gold-light);
  border-color: var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #090c12;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border-color: var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background: #06080d;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 8px 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow: hidden;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

@keyframes pulse-dot {

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

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
}

.top-bar-link:hover {
  color: var(--gold-light);
}

.sep {
  opacity: 0.4;
}

/* ==========================================================================
   HEADER & NAVIGATION (FIXED ON TOP)
   ========================================================================== */
.header-master-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 10000;
  box-sizing: border-box;
  background: #090c12;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.site-header {
  position: relative;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #1e2638, #0e131d);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.logo-initials {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 1.15rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.1;
}

.brand-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-primary);
  margin-top: 2px;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.25s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

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

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* ==========================================================================
   01 — HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 70px 0 0 0;
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: -120px;
  right: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.studio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-icon {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.badge-text {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-light);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Hero Specs List & Dynamic Counter Motion Graphics */
.hero-specs-list {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 22px;
  margin-top: 14px;
  background: rgba(14, 19, 29, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: heroSpecFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  animation-delay: 0.25s;
}

@keyframes heroSpecFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.spec-item {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.spec-item:hover {
  transform: translateY(-2px);
}

.spec-number-wrap {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  overflow: hidden;
}

.spec-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.15;
  display: inline-flex;
  align-items: baseline;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.35), 0 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: -0.01em;
}

.counter-val {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

.counter-symbol {
  font-family: var(--font-serif);
  color: var(--gold-primary);
  margin-left: 2px;
  display: inline-block;
  font-size: 1.3rem;
  animation: goldPulseSymbol 3s infinite ease-in-out;
}

@keyframes goldPulseSymbol {

  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.4));
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8));
  }
}

/* Light sheen sweep across the counter */
.spec-shimmer-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  opacity: 0;
}

.spec-item.counted .spec-shimmer-sweep {
  animation: specSheenSweep 3.5s infinite ease-in-out;
}

@keyframes specSheenSweep {
  0% {
    left: -100%;
    opacity: 0;
  }

  20% {
    left: 200%;
    opacity: 0.85;
  }

  100% {
    left: 200%;
    opacity: 0;
  }
}

.spec-label {
  font-size: 0.74rem;
  color: #a0aec0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

.spec-item-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}

/* Hero Visual Stage */
.hero-visual-col {
  position: relative;
}

.mockup-stage-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.1);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.mockup-stage-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.2);
}

.image-wrapper {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 6px);
  position: relative;
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.mockup-stage-card:hover .hero-mockup-img {
  transform: scale(1.02);
}

/* Floating Tags */
.floating-tag {
  position: absolute;
  background: rgba(15, 20, 30, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 2;
  animation: float-tag 4s ease-in-out infinite alternate;
}

.floating-tag strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}

.floating-tag span {
  display: block;
  font-size: 0.72rem;
  color: var(--gold-light);
}

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

.tag-dot.gold {
  background: #d4af37;
  box-shadow: 0 0 8px #d4af37;
}

.tag-dot.green {
  background: #25d366;
  box-shadow: 0 0 8px #25d366;
}

.tag-dot.burgundy {
  background: #d94b68;
  box-shadow: 0 0 8px #d94b68;
}

.tag-top-right {
  top: -18px;
  right: -18px;
  animation-delay: 0.5s;
}

.tag-bottom-left {
  bottom: 30px;
  left: -24px;
  animation-delay: 1.5s;
}

.tag-deckle {
  top: 45%;
  right: -24px;
  animation-delay: 2.5s;
}

@keyframes float-tag {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-8px);
  }
}

/* ==========================================================================
   REDESIGNED HERO BOTTOM DECK: TRUST STRIP + ANIMATED PRODUCTS RIBBON
   ========================================================================== */
.hero-bottom-deck {
  position: relative;
  width: 100%;
  z-index: 5;
  margin-top: 36px;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
  background: #0a0e17;
}

/* Tier 1: Trust & Contact Strip */
.trust-contact-strip {
  background: linear-gradient(180deg, #0d121c 0%, #090c14 100%);
  padding: 14px 0;
  position: relative;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-pillars {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

.pillar-bullet {
  color: var(--gold-primary);
  font-size: 0.85rem;
  margin-right: 4px;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
  animation: pillarStarTwinkle 4s infinite ease-in-out;
}

@keyframes pillarStarTwinkle {

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

  50% {
    opacity: 1;
    transform: scale(1.15) rotate(15deg);
  }
}

.pillar-sep {
  opacity: 0.35;
  color: var(--text-secondary);
}

.strip-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.contact-quick-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.quick-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.86rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.quick-contact-pill:hover {
  background: rgba(212, 175, 55, 0.14);
  border-color: var(--gold-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.pill-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px #25d366;
  animation: pulse-dot 2s infinite ease-in-out;
}

.pill-icon {
  font-size: 0.95rem;
}

.pill-val {
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Tier 2: Continuous Motion Graphics Products Ribbon / Infinite Marquee */
.products-marquee-strip {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  background: #06090e;
  padding: 10px 0;
  overflow: hidden;
}

.marquee-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  margin-left: 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(184, 134, 11, 0.28) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.marquee-badge-pill .badge-sparkle {
  color: var(--gold-light);
  font-size: 0.78rem;
  animation: pillarStarTwinkle 3s infinite ease-in-out;
}

.marquee-badge-pill .badge-text {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.marquee-viewport {
  flex: 1;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000000 4%, #000000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 4%, #000000 96%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marqueeScroll 34s linear infinite;
}

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

.marquee-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
  flex-shrink: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 100px;
  text-decoration: none;
  color: #e2e8f0;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-item:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.marquee-item .m-text {
  font-weight: 600;
}

.marquee-item .m-arrow {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.25s ease;
}

.marquee-item:hover .m-arrow {
  transform: translateX(3px);
  color: var(--gold-light);
}

.marquee-item.highlight-item {
  background: rgba(212, 175, 55, 0.07);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
}

.marquee-item.highlight-item .m-star {
  color: var(--gold-primary);
  font-size: 0.72rem;
  margin-right: -2px;
}

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

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

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   02 — WHAT WE PRINT
   ========================================================================== */
.print-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.category-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.08);
}

/* Card Top Numeric/Category Label */
.card-top-label {
  padding: 12px 20px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(11, 15, 23, 0.5);
}

.cat-num-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* 16:9 Product Image */
.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #06090e;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card:hover .card-media img {
  transform: scale(1.03);
}

/* Card Body */
.card-body {
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 14px;
}

.card-products-list {
  margin-bottom: 18px;
  margin-top: auto;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}

.products-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: block;
}

.card-action {
  padding-top: 2px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.card-cta .cta-arrow {
  transition: transform 0.3s ease;
}

.category-card:hover .card-cta {
  color: #fff;
}

.category-card:hover .card-cta .cta-arrow {
  transform: translateX(5px);
}

/* Custom Print Full-Width Banner */
.custom-print-banner {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(11, 15, 23, 0.95) 60%),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 70%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-md);
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.banner-content {
  max-width: 680px;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.banner-headline {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.banner-copy {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.banner-cta-wrap {
  flex-shrink: 0;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  white-space: nowrap;
}

/* ==========================================================================
   03 — OUR WORK (PORTFOLIO SHOWCASE)
   ========================================================================== */
.section-our-work {
  background: #06090e;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-primary);
  color: #090c12;
  border-color: var(--gold-primary);
  font-weight: 600;
}

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

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.portfolio-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.portfolio-media {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #000;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 22, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.zoom-indicator {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portfolio-info {
  padding: 20px 22px;
}

.p-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.p-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 6px;
}

.p-specs {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   04 — SPECIAL FINISHES (INTERACTIVE SECTION)
   ========================================================================== */
.finishes-interactive-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: stretch;
}

.finishes-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.finish-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.finish-nav-item:hover,
.finish-nav-item.active {
  background: var(--bg-card-hover);
  border-color: var(--gold-border);
  transform: translateX(6px);
}

.finish-nav-item.active {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.finish-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.finish-indicator.gold {
  background: #d4af37;
  box-shadow: 0 0 10px #d4af37;
}

.finish-indicator.gloss {
  background: #60a5fa;
  box-shadow: 0 0 10px #60a5fa;
}

.finish-indicator.relief {
  background: #e2e8f0;
  box-shadow: 0 0 10px #e2e8f0;
}

.finish-indicator.velvet {
  background: #a855f7;
  box-shadow: 0 0 10px #a855f7;
}

.finish-indicator.gild {
  background: #f59e0b;
  box-shadow: 0 0 10px #f59e0b;
}

.finish-indicator.cut {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.finish-text {
  flex-grow: 1;
}

.finish-text strong {
  display: block;
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 2px;
}

.finish-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.finish-nav-item .arrow {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.finish-nav-item:hover .arrow,
.finish-nav-item.active .arrow {
  color: var(--gold-light);
  transform: translateX(4px);
}

/* Finish Detail Box */
.finish-detail-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.finish-display-image {
  position: relative;
  height: 320px;
  background: #000;
  overflow: hidden;
}

.finish-display-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.finish-dynamic-sheen {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  animation: light-sheen 6s infinite ease-in-out;
}

@keyframes light-sheen {
  0% {
    left: -100%;
  }

  30% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

.finish-detail-content {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.finish-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  margin-bottom: 8px;
  display: inline-block;
}

.finish-detail-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.finish-detail-desc {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.finish-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 26px;
}

.f-spec {
  display: flex;
  flex-direction: column;
}

.f-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.f-val {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
}

.finish-action-row {
  margin-top: auto;
}

/* ==========================================================================
   05 — WHY CRAFTSVEDA
   ========================================================================== */
.section-why {
  background: radial-gradient(circle at 50% 100%, #151b29 0%, var(--bg-main) 80%);
}

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

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: var(--transition-smooth);
  position: relative;
}

.why-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.why-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   06 — HOW IT WORKS (5-STEP FLOW)
   ========================================================================== */
.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}

.process-step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  position: relative;
  text-align: center;
  transition: var(--transition-smooth);
}

.process-step:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
}

.step-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #090c12;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.step-icon {
  font-size: 2rem;
  margin-top: 10px;
  margin-bottom: 14px;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  color: var(--gold-primary);
  opacity: 0.6;
}

/* ==========================================================================
   07 — TESTIMONIALS & TRUST METRICS
   ========================================================================== */
.section-testimonials {
  background: #06090e;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

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

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

.quote-text {
  font-style: italic;
  color: #d1d5db;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 26px;
  flex-grow: 1;
}

.client-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #242c3d, #141923);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

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

.client-info strong {
  font-size: 0.95rem;
  color: #fff;
}

.client-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.project-tag {
  color: var(--gold-primary) !important;
  font-weight: 600;
  margin-top: 2px;
}

/* Metrics Row */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
}

.metric-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.m-val {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--gold-light);
}

.m-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   08 — GET A QUOTE + WHATSAPP ENGINE
   ========================================================================== */
.section-quote,
#quote-generator {
  background: radial-gradient(circle at 50% 0%, #151c2a 0%, var(--bg-main) 70%);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.quote-container-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

.quote-form-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Quick Mode Switcher (Custom Print vs Sample Kit) */
.quote-mode-switcher {
  display: flex;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 4px;
  gap: 6px;
  margin-bottom: 22px;
}

.mode-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mode-tab:hover {
  color: #fff;
  background: rgba(212, 175, 55, 0.08);
}

.mode-tab.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(243, 229, 171, 0.1));
  border-color: var(--gold-border);
  color: var(--gold-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tab-badge {
  background: #25d366;
  color: #0b0f17;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 999px;
}

/* Sample Kit Information Highlight Box */
.sample-kit-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(11, 15, 23, 0.9));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 22px;
  animation: fadeIn 0.3s ease;
}

.sample-kit-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.sample-kit-title {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 4px;
}

.sample-kit-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.sample-kit-desc strong {
  color: #fff;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-icon {
  font-size: 1.3rem;
}

.form-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.col-6 {
  flex: 1;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  font-size: 0.93rem;
  color: #fff;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' 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 14px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Finishes Chips Selectable Pills (2-Column Grid) */
.finishes-chips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.finish-chip {
  display: block;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.finish-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  min-height: 42px;
  box-sizing: border-box;
  transition: var(--transition-smooth);
}

.chip-icon {
  font-size: 0.92rem;
  flex-shrink: 0;
}

.chip-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chip-check {
  width: 17px;
  height: 17px;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: transparent;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.finish-chip:hover .chip-inner {
  border-color: rgba(212, 175, 55, 0.4);
}

.finish-chip input:checked~.chip-inner {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
}

.finish-chip input:checked~.chip-inner .chip-text {
  color: #fff;
  font-weight: 600;
}

.finish-chip input:checked~.chip-inner .chip-check {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #0b0f17;
}

/* Single Unified Lead Button & Guarantee */
.form-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
}

.btn-unified-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--gold-primary), #f3e5ab);
  color: #0b0f17;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  transition: var(--transition-smooth);
  width: 100%;
}

.btn-unified-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.unified-submit-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
  line-height: 1.4;
}

/* Sidebar: Summary + Contact */
.quote-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.summary-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.summary-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-light);
}

.summary-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  gap: 12px;
}

.s-k {
  color: var(--text-muted);
  flex-shrink: 0;
}

.s-v {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}

.s-v.gold {
  color: var(--gold-light);
}

.summary-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
}

.summary-tip {
  font-size: 0.78rem;
  color: #25d366;
}

/* Studio Direct Card */
.studio-direct-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.studio-badge-sm {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.studio-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 20px;
}

.studio-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.item-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  padding-top: 2px;
}

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

.item-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.item-val {
  font-size: 0.96rem;
  color: #fff;
  font-weight: 600;
}

.link-gold {
  color: var(--gold-light);
}

.link-gold:hover {
  text-decoration: underline;
}

.item-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.studio-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #05070a;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-col .logo-text {
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--gold-light);
}

.footer-contacts a:hover {
  text-decoration: underline;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 18px;
}

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

.footer-links li a {
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-links li a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
  display: inline-block;
}

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

.footer-trust {
  color: var(--gold-primary);
  font-weight: 600;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wa-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  animation: pulse-wa 2.5s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover .wa-icon-wrapper {
  transform: scale(1.1);
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
}

.wa-tooltip {
  background: rgba(14, 19, 28, 0.95);
  border: 1px solid var(--gold-border);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 14, 0.88);
  backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  z-index: 1;
  animation: modal-pop 0.3s ease;
}

@keyframes modal-pop {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background: var(--gold-primary);
  color: #000;
}

.lightbox-media {
  max-height: 480px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-caption {
  padding: 24px 28px;
  background: var(--bg-card);
}

.lb-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 6px;
}

.lb-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #111827;
  border: 1px solid var(--gold-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 10001;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.toast-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #25d366;
  color: #000;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-visual-col {
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

  .finishes-interactive-layout {
    grid-template-columns: 1fr;
  }

  .process-flow {
    flex-direction: column;
    gap: 20px;
  }

  .process-connector {
    display: none;
  }

  .process-step {
    width: 100%;
    padding: 30px 24px;
  }

  .quote-container-grid {
    grid-template-columns: 1fr;
  }

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

  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 104px;
  }

  body {
    padding-top: var(--header-height);
  }

  /* 1. Global Container & Section Containment */
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  section,
  .section,
  .hero-section {
    padding: 60px 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-margin-top: calc(var(--header-height) + 16px);
  }

  .section-title {
    font-size: clamp(1.85rem, 6.5vw, 2.3rem);
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .section-header {
    margin-bottom: 36px;
    padding: 0 4px;
  }

  /* 2. Top Announcement Bar */
  .top-bar {
    padding: 6px 0;
    font-size: 0.74rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 0 12px;
  }

  .top-bar-left,
  .top-bar-right {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 6px;
  }

  .top-bar-left span,
  .top-bar-right a {
    font-size: 0.72rem;
  }

  /* 3. Header & Navigation Fixes */
  .site-header {
    height: auto;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .header-inner {
    height: 64px;
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100% - 56px);
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-tag {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  /* Hide desktop buttons in the header row on mobile */
  .header-actions .btn,
  .header-actions .btn-outline-gold,
  .header-actions .btn-whatsapp,
  .header-actions .desktop-action-btn,
  .desktop-action-btn {
    display: none !important;
  }

  .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  .mobile-toggle {
    display: flex !important;
    flex-shrink: 0;
    padding: 8px;
  }

  /* Mobile Slide-down Navigation Drawer */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    background: rgba(11, 15, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-border);
    padding: 24px 20px;
    display: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .mobile-nav-cta {
    display: block !important;
    margin-top: 6px;
  }

  .mobile-nav-cta .btn {
    width: 100%;
    padding: 12px;
    text-align: center;
    box-sizing: border-box;
  }

  /* 4. Hero Section */
  .hero-section {
    padding-top: 36px;
    padding-bottom: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-ambient-glow {
    width: 280px;
    height: 280px;
    right: 0;
    top: -40px;
    max-width: 100vw;
  }

  .studio-badge {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    padding: 6px 14px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
  }

  .badge-text {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 16px;
    word-break: break-word;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 36px;
  }

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

  .hero-specs-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .spec-item {
    width: 100%;
  }

  .spec-item-divider {
    display: none;
  }

  .hero-visual-col {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .mockup-stage-card {
    transform: none !important;
    padding: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .floating-tag {
    position: static !important;
    margin-top: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    transform: none !important;
    animation: none !important;
  }

  /* 5. Redesigned Hero Bottom Deck & Marquee */
  .hero-bottom-deck {
    margin-top: 24px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .trust-contact-strip {
    padding: 14px 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .trust-strip-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .trust-pillars {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    width: 100%;
    text-align: center;
    font-size: 0.82rem;
  }

  .pillar-sep {
    display: inline-block;
    opacity: 0.3;
  }

  .strip-divider {
    display: none;
  }

  .contact-quick-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 8px;
  }

  .quick-contact-pill {
    padding: 6px 12px;
    font-size: 0.8rem;
    box-sizing: border-box;
  }

  .products-marquee-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
    gap: 8px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .marquee-badge-pill {
    margin-left: 12px;
    padding: 4px 10px;
    font-size: 0.68rem;
  }

  .marquee-item {
    padding: 5px 12px;
    font-size: 0.76rem;
  }

  /* 6. Product Categories (What We Print) & Portfolio */
  .print-categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin-bottom: 28px;
    box-sizing: border-box;
  }

  .category-card {
    width: 100%;
    box-sizing: border-box;
    border-radius: var(--radius-sm);
  }

  .card-top-label {
    padding: 10px 14px 8px;
  }

  .cat-num-label {
    font-size: 0.68rem;
  }

  .card-body {
    padding: 18px 16px 16px;
  }

  .card-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .card-desc {
    font-size: 0.84rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .card-products-list {
    padding: 10px 12px;
    margin-bottom: 14px;
  }

  .products-text {
    font-size: 0.75rem;
    line-height: 1.55;
  }

  .custom-print-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 18px;
    gap: 18px;
  }

  .banner-headline {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }

  .banner-copy {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .banner-cta-wrap {
    width: 100%;
  }

  .banner-cta {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .portfolio-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .portfolio-card,
  .why-card,
  .testimonial-card {
    width: 100%;
    box-sizing: border-box;
  }

  .portfolio-filters {
    gap: 8px;
    margin-bottom: 30px;
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: 0.82rem;
  }

  /* 7. Special Finishes */
  .finishes-interactive-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .finish-nav-item {
    padding: 14px 16px;
  }

  .finish-display-image {
    height: 220px;
  }

  .finish-detail-content {
    padding: 24px 18px;
  }

  .finish-detail-title {
    font-size: 1.5rem;
  }

  .finish-specs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* 8. Process Flow */
  .process-flow {
    flex-direction: column;
    gap: 24px;
  }

  .process-connector {
    display: none;
  }

  .process-step {
    width: 100%;
    box-sizing: border-box;
    padding: 28px 18px;
  }

  /* 9. Quote Form & Sidebar (Ultra-Compact Mobile Controls) */
  #quote-generator {
    scroll-margin-top: calc(var(--header-height) + 20px) !important;
  }

  .quote-container-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .quote-form-card {
    padding: 18px 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: var(--radius-md);
  }

  /* Compact Mode Switcher on Mobile */
  .quote-mode-switcher {
    margin-bottom: 14px;
    gap: 4px;
    padding: 3px;
  }

  .mode-tab {
    padding: 8px 6px;
    font-size: 0.78rem;
    gap: 5px;
  }

  .mode-tab .tab-icon {
    font-size: 0.82rem;
  }

  .tab-badge {
    display: none;
    /* Hide badge on tiny screens to avoid wrapping */
  }

  /* Compact Sample Kit Banner */
  .sample-kit-banner {
    padding: 10px 12px;
    gap: 10px;
    margin-bottom: 14px;
  }

  .sample-kit-icon {
    font-size: 1.25rem;
  }

  .sample-kit-title {
    font-size: 0.88rem;
  }

  .sample-kit-desc {
    font-size: 0.77rem;
    line-height: 1.45;
  }

  .form-title {
    font-size: 1.35rem;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }

  .form-row .form-group {
    margin-bottom: 12px;
  }

  .form-label {
    font-size: 0.78rem;
    margin-bottom: 4px;
  }

  .form-control {
    height: 40px;
    padding: 6px 12px;
    font-size: 13.5px;
    border-radius: 6px;
    box-sizing: border-box;
  }

  select.form-control {
    background-size: 13px;
    background-position: right 10px center;
    padding-right: 30px;
  }

  textarea.form-control {
    height: auto;
    min-height: 54px;
    padding: 7px 12px;
  }

  /* 2-Column Compact Chips Grid on Mobile */
  .finishes-chips-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px;
  }

  .chip-inner {
    padding: 6px 8px;
    min-height: 38px;
    gap: 5px;
  }

  .chip-icon {
    font-size: 0.82rem;
  }

  .chip-text {
    font-size: 0.75rem;
  }

  .chip-check {
    width: 15px;
    height: 15px;
    font-size: 9px;
  }

  .form-action-buttons {
    margin-top: 16px;
    gap: 6px;
  }

  .btn-unified-submit {
    padding: 12px 14px;
    font-size: 0.86rem;
    gap: 7px;
  }

  .btn-unified-submit svg {
    width: 17px;
    height: 17px;
  }

  .unified-submit-note {
    font-size: 0.72rem;
  }

  .quote-sidebar {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 16px;
  }

  .summary-card,
  .studio-direct-card {
    padding: 18px 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .summary-row {
    font-size: 0.82rem;
  }

  .studio-actions {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .studio-actions .btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* 10. Metrics & Footer */
  .metrics-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 18px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .floating-whatsapp {
    bottom: 18px;
    right: 18px;
  }

  .floating-whatsapp .wa-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp .wa-tooltip {
    display: none;
  }
}