/* ==========================================================================
   TECHTIVO SPIRE - MASTER ENTERPRISE DESIGN SYSTEM & CSS ARCHITECTURE
   ========================================================================== */

:root {
  --bg-color: #ffffff;
  --bg-dark: #050d18;
  --text-color: #0f172a;
  --text-secondary: #475569;
  --accent-primary: #fdefb6;
  --accent-secondary: #c4a142;
  --accent-gold-dark: #a17d24;
  --accent-gold-light: #fdefb6;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(196, 161, 66, 0.2);
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #ffffff;
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6, .logo {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

/* ==========================================================================
   NAVBAR & NAVIGATION DROPDOWNS
   ========================================================================== */

.navbar, header.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100vw !important;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99999 !important;
  transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, box-shadow 0.35s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 161, 66, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transform: translateZ(0) !important;
  -webkit-transform: translateZ(0) !important;
  box-sizing: border-box !important;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(196, 161, 66, 0.3);
  padding: 0.8rem 5%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a:not(.btn-primary) {
  font-weight: 600;
  font-size: 0.98rem;
  color: #1e293b;
  transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary):hover {
  color: var(--accent-secondary);
}

/* Navigation Dropdowns */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #ffffff;
  border: 1px solid rgba(196, 161, 66, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 1rem;
  z-index: 10000;
  /* No margin-top gap — use padding bridge instead */
  margin-top: 0;
  padding-top: 1.25rem;
}

/* Invisible bridge fills the gap between nav link and dropdown so hover never breaks */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.dropdown-content.cols-2 {
  min-width: 480px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropdown-content.cols-2 {
  display: grid;
}

.dropdown-content a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.9rem !important;
  color: #334155 !important;
  border-radius: 6px;
  transition: all 0.2s ease !important;
}

.dropdown-content a:hover {
  background: rgba(196, 161, 66, 0.08) !important;
  color: var(--accent-gold-dark) !important;
  transform: translateX(4px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
  color: #0f172a;
  outline: none;
}

.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  background: #ffffff !important;
  z-index: 1000000 !important;
  padding: 1.2rem 1.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.25);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mobile-nav-item {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: block;
}

.mobile-accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f172a;
  background: none;
  border: none;
  padding: 0.85rem 0;
  cursor: pointer;
  text-align: left;
  outline: none;
  font-family: inherit;
}

.mobile-accordion-toggle .chevron {
  font-size: 1.1rem;
  color: #c4a142;
  transition: transform 0.3s ease;
}

.mobile-accordion-toggle.active .chevron {
  transform: rotate(180deg);
}

.mobile-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out;
  display: flex;
  flex-direction: column;
  padding-left: 0.8rem;
  background: #faf9f6;
  border-radius: 8px;
  margin-bottom: 0.4rem;
}

.mobile-accordion-panel a {
  font-size: 0.92rem;
  color: #475569;
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
  font-weight: 500;
}

.mobile-accordion-panel a:last-child {
  border-bottom: none;
}

/* ==========================================================================
   BUTTONS & ACTION CONTROLS
   ========================================================================== */

.btn-primary {
  background: linear-gradient(135deg, #c4a142 0%, #d4b455 100%);
  color: #ffffff !important;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.98rem;
  box-shadow: 0 6px 20px rgba(196, 161, 66, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196, 161, 66, 0.45);
  color: #ffffff !important;
}

.btn-secondary {
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 700 !important;
  border: 2px solid #c4a142 !important;
  transition: all 0.3s ease !important;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(196, 161, 66, 0.15);
}

.btn-secondary:hover {
  background: #c4a142 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(196, 161, 66, 0.35);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  border-color: #c4a142;
  color: #c4a142;
  background: rgba(196, 161, 66, 0.1);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION & TEXT SHINE SWEEP ANIMATION
   ========================================================================== */

.hero-main {
  position: relative;
  overflow: hidden;
}

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

/* Metallic Left-to-Right Light Sweep Text Shine */
.shine-sweep-text {
  font-size: clamp(3rem, 6vw, 4.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  background: linear-gradient(
    110deg,
    #c4a142 0%,
    #c4a142 35%,
    #ffffff 50%,
    #c4a142 65%,
    #c4a142 100%
  ) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: shineLeftToRight 2.8s infinite linear !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

@keyframes shineLeftToRight {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ==========================================================================
   SECTIONS & CARDS ARCHITECTURE
   ========================================================================== */

.section-label {
  display: inline-block;
  color: #b08d33 !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  margin-bottom: 0.8rem;
}

.section-title {
  color: #0f172a;
  font-weight: 800;
  line-height: 1.15;
}

.text-muted {
  color: #64748b !important;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.7;
}

/* Core Expertise Outline Cards */
.outline-card {
  background: #ffffff;
  border: 1px solid rgba(196, 161, 66, 0.22);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.outline-card:hover {
  transform: translateY(-8px);
  border-color: #c4a142;
  box-shadow: 0 20px 40px rgba(196, 161, 66, 0.18), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.outline-bg-text {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(196, 161, 66, 0.05);
  pointer-events: none;
  font-family: var(--font-heading);
}

/* 3-Pillar Method Cards */
.pillar-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.img-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 13, 24, 0.95) 0%, rgba(5, 13, 24, 0.4) 60%, transparent 100%);
  z-index: 1;
}

/* Industry Category Mosaic */
.category-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  height: 280px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.8rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 70%);
  transition: opacity 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.category-card h3 {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
}

/* Institutional Experience Mosaic Collage */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 5%;
}

.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.collage-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.collage-img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.collage-img:hover {
  transform: scale(1.03);
}

.gradient-text {
  background: linear-gradient(135deg, #c4a142 0%, #a17d24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Turnkey Solution Marketing Boxes */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.marketing-box-dark {
  background: #0b1324;
  border: 1px solid rgba(196, 161, 66, 0.2);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.marketing-box-dark:hover {
  transform: translateY(-8px);
  border-color: #c4a142;
}

.marketing-box-dark h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.marketing-box-dark p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

/* Quantitative Metrics Matrix */
.stat-huge {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Specialist Practice Cards */
.look-inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.look-inside-card {
  background: #ffffff;
  border: 1px solid rgba(196, 161, 66, 0.2);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.look-inside-card:hover {
  transform: translateY(-6px);
  border-color: #c4a142;
  box-shadow: 0 18px 40px rgba(196, 161, 66, 0.15);
}

.lucide, i[data-lucide] {
  color: #c4a142 !important;
  stroke: #c4a142 !important;
  stroke-width: 2.2px !important;
  display: inline-block !important;
}

/* Call to Action Story Cards */
.story-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.story-text-col {
  flex: 1;
}

.story-heading {
  font-size: clamp(2.5rem, 4.5vw, 4.2rem) !important;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.story-accent {
  display: block;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.5rem, 6vw, 5.5rem) !important;
  color: #c4a142;
  font-weight: 400;
  margin: -0.2rem 0;
}

.story-cards-col {
  flex: 1.2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story-card {
  position: relative;
  height: 360px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.story-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 13, 24, 0.95) 0%, rgba(5, 13, 24, 0.3) 70%);
}

.story-card:hover {
  transform: translateY(-6px);
}

.story-card h4, .story-card p, .story-card a {
  position: relative;
  z-index: 2;
}

.story-card h4 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.story-card p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   MEGA FOOTER (LIGHT LUXURY SYSTEM)
   ========================================================================== */

.footer-mega {
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 80px 5% 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-col h3 {
  color: #0f172a !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.25rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 1.8rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.9rem;
}

.footer-col a {
  color: #475569 !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  transition: color 0.25s ease !important;
}

.footer-col a:hover {
  color: #b08d33 !important;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid rgba(196, 161, 66, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c4a142;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: #c4a142;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(196, 161, 66, 0.35);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal-text, .reveal-card {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.reveal-text.visible, .reveal-card.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .exp-grid, .story-section {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 3rem;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .marketing-grid, .look-inside-grid, .story-cards-col {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}



/* ==========================================================================
   GOOGLE STITCH DARK GLASSMORPHISM DESIGN SYSTEM
   ========================================================================== */

:root {
  --stitch-bg-dark: #060a12;
  --stitch-bg-surface: #0b1120;
  --stitch-card-bg: rgba(15, 23, 42, 0.7);
  --stitch-card-border: rgba(196, 161, 66, 0.25);
  --stitch-card-hover-border: rgba(230, 202, 101, 0.6);
  --stitch-accent-gold: #c4a142;
  --stitch-accent-light-gold: #e6ca65;
  --stitch-glow: rgba(196, 161, 66, 0.15);
}

body.stitch-theme {
  background-color: var(--stitch-bg-dark) !important;
  color: #f1f5f9 !important;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(196, 161, 66, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(56, 189, 248, 0.05) 0%, transparent 40%) !important;
  background-attachment: fixed !important;
}

/* Glassmorphism Cards */
.stitch-card {
  background: var(--stitch-card-bg) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid var(--stitch-card-border) !important;
  border-radius: 18px !important;
  padding: 2.2rem 1.8rem !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

.stitch-card:hover {
  transform: translateY(-8px) !important;
  border-color: var(--stitch-card-hover-border) !important;
  box-shadow: 0 20px 45px rgba(196, 161, 66, 0.2), 0 0 30px var(--stitch-glow) !important;
}

/* Icon Glow Containers */
.stitch-icon-box {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  background: rgba(196, 161, 66, 0.12) !important;
  border: 1px solid rgba(196, 161, 66, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--stitch-accent-light-gold) !important;
  margin-bottom: 1.25rem !important;
  box-shadow: 0 0 15px rgba(196, 161, 66, 0.15) !important;
}

/* Section Headings */
.stitch-section-label {
  display: inline-block !important;
  padding: 6px 16px !important;
  border-radius: 30px !important;
  background: rgba(196, 161, 66, 0.1) !important;
  border: 1px solid rgba(196, 161, 66, 0.3) !important;
  color: var(--stitch-accent-light-gold) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
}

.stitch-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
}

.stitch-subtitle {
  color: #94a3b8 !important;
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
}

/* Watermark Outline Text */
.stitch-card .outline-bg-text {
  position: absolute !important;
  top: -10px !important;
  right: 15px !important;
  font-size: 4rem !important;
  font-weight: 900 !important;
  color: rgba(255, 255, 255, 0.03) !important;
  -webkit-text-stroke: 1px rgba(196, 161, 66, 0.1) !important;
  pointer-events: none !important;
  user-select: none !important;
}

/* Glowing Buttons */
.stitch-btn-primary {
  background: linear-gradient(135deg, #c4a142 0%, #e6ca65 100%) !important;
  color: #060a12 !important;
  font-weight: 800 !important;
  padding: 14px 32px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 25px rgba(196, 161, 66, 0.3) !important;
}

.stitch-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(196, 161, 66, 0.5) !important;
}

.stitch-btn-glass {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 14px 32px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(10px) !important;
}

.stitch-btn-glass:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--stitch-accent-gold) !important;
  color: var(--stitch-accent-light-gold) !important;
}



.stitch-gold-shine {
  background: linear-gradient(110deg, #c4a142 0%, #c4a142 30%, #ffffff 50%, #c4a142 70%, #c4a142 100%) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: shineLeftToRight 2.8s infinite linear !important;
  display: inline-block !important;
}

@keyframes shineLeftToRight {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}



/* ==========================================================================
   GOOGLE STITCH PERFECT LIGHT & PEARL LUXURY THEME
   ========================================================================== */

:root {
  --stitch-light-bg: #faf9f6;
  --stitch-light-surface: #ffffff;
  --stitch-light-card-bg: rgba(255, 255, 255, 0.94);
  --stitch-light-border: rgba(196, 161, 66, 0.25);
  --stitch-gold-primary: #b08d33;
  --stitch-gold-bright: #c4a142;
  --stitch-heading: #0f172a;
  --stitch-body: #475569;
}

body.stitch-light-mode {
  background-color: var(--stitch-light-bg) !important;
  color: var(--stitch-heading) !important;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(196, 161, 66, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(196, 161, 66, 0.04) 0%, transparent 45%) !important;
  background-attachment: fixed !important;
}

/* Metallic Left-to-Right Light Sweep Shine on Light Text */
.gold-light-sweep {
  font-size: clamp(3rem, 6vw, 4.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  background: linear-gradient(
    110deg,
    #a17d24 0%,
    #b08d33 30%,
    #ffffff 50%,
    #b08d33 70%,
    #a17d24 100%
  ) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: shineLeftToRight 2.8s infinite linear !important;
  display: inline-block !important;
  width: 100% !important;
}

/* Light Glassmorphism Cards */
.pearl-card {
  background: var(--stitch-light-card-bg) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid var(--stitch-light-border) !important;
  border-radius: 18px !important;
  padding: 2.2rem 1.8rem !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.pearl-card:hover {
  transform: translateY(-6px) !important;
  border-color: #c4a142 !important;
  box-shadow: 0 18px 40px rgba(196, 161, 66, 0.18), 0 4px 12px rgba(0,0,0,0.05) !important;
}

/* Gold Icon Box */
.pearl-icon-box {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  background: rgba(196, 161, 66, 0.1) !important;
  border: 1px solid rgba(196, 161, 66, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--stitch-gold-primary) !important;
  margin-bottom: 1.25rem !important;
  box-shadow: 0 4px 15px rgba(196, 161, 66, 0.12) !important;
}

/* Buttons */
.btn-gold-pill {
  background: linear-gradient(135deg, #c4a142 0%, #d4b455 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 14px 38px !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 25px rgba(196, 161, 66, 0.35) !important;
}

.btn-gold-pill:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(196, 161, 66, 0.5) !important;
  color: #ffffff !important;
}



/* ==========================================================================
   GOLDEN & LARGER STORY SECTION (START YOUR LEGACY WITH TECHTIVO SPIRE)
   ========================================================================== */

.story-heading {
  font-size: clamp(3.2rem, 5.5vw, 5.2rem) !important;
  font-weight: 800 !important;
  color: #c4a142 !important;
  line-height: 1.05 !important;
  letter-spacing: 1px !important;
}

.story-accent {
  display: block !important;
  font-family: 'Great Vibes', cursive !important;
  font-size: clamp(5.2rem, 9vw, 7.8rem) !important;
  color: #c4a142 !important;
  font-weight: 400 !important;
  margin: -0.3rem 0 !important;
  text-shadow: 0 4px 20px rgba(196, 161, 66, 0.25) !important;
}

.story-cards-col {
  flex: 1.4 !important;
  gap: 24px !important;
}

.story-card {
  height: 480px !important;
  min-height: 480px !important;
  border-radius: 22px !important;
  padding: 2.8rem 2rem !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.story-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 50px rgba(196, 161, 66, 0.3) !important;
}

.story-card h4 {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  margin-bottom: 0.8rem !important;
  line-height: 1.25 !important;
}

.story-card p {
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
  margin-bottom: 1.8rem !important;
}



/* ==========================================================================
   EXACT SCREENSHOT OUTLINE CARDS (CREAMY WHITE WITH LARGE WATERMARK TEXT)
   ========================================================================== */

.outline-card-original {
  background: #faf8f5 !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 24px !important;
  padding: 3rem 2.2rem 2.5rem !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.outline-card-original:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(196, 161, 66, 0.3) !important;
}

.outline-card-original .watermark-text {
  position: absolute !important;
  top: 10px !important;
  left: 20px !important;
  font-size: 5rem !important;
  font-weight: 900 !important;
  color: transparent !important;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.1) !important;
  pointer-events: none !important;
  user-select: none !important;
  font-family: 'Outfit', sans-serif !important;
  line-height: 1 !important;
}

.outline-card-original h3 {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  color: #000000 !important;
  line-height: 1.25 !important;
  margin-top: 2rem !important;
  margin-bottom: 1.2rem !important;
  font-family: 'Outfit', sans-serif !important;
  z-index: 2 !important;
}

.outline-card-original p {
  color: #555555 !important;
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
  z-index: 2 !important;
}



/* ==========================================================================
   SPACIOUS ATTRACTIVE SERIES CARDS PATTERN (TOP TO BOTTOM FLOW)
   ========================================================================== */

.series-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 32px !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

@media (max-width: 900px) {
  .series-cards-grid {
    grid-template-columns: 1fr !important;
  }
}

.series-card {
  background: #faf8f5 !important;
  border: 1.5px solid rgba(196, 161, 66, 0.2) !important;
  border-radius: 26px !important;
  padding: 3.2rem 2.8rem 2.8rem !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 320px !important;
}

.series-card:hover {
  transform: translateY(-8px) !important;
  border-color: #c4a142 !important;
  box-shadow: 0 22px 50px rgba(196, 161, 66, 0.2), 0 4px 15px rgba(0,0,0,0.05) !important;
}

.series-card .watermark-bg {
  position: absolute !important;
  top: 15px !important;
  right: 25px !important;
  font-size: 5.5rem !important;
  font-weight: 900 !important;
  color: transparent !important;
  -webkit-text-stroke: 1.5px rgba(196, 161, 66, 0.15) !important;
  pointer-events: none !important;
  user-select: none !important;
  font-family: 'Outfit', sans-serif !important;
  line-height: 1 !important;
}

.series-card .series-number-tag {
  display: inline-block !important;
  padding: 4px 14px !important;
  border-radius: 20px !important;
  background: rgba(196, 161, 66, 0.12) !important;
  border: 1px solid rgba(196, 161, 66, 0.3) !important;
  color: #b08d33 !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 1.2rem !important;
  width: fit-content !important;
}

.series-card h3 {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
  font-family: 'Outfit', sans-serif !important;
  z-index: 2 !important;
}

.series-card p {
  color: #475569 !important;
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
  margin-bottom: 2rem !important;
  z-index: 2 !important;
}

.series-card .card-action-link {
  color: #b08d33 !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: color 0.3s ease, transform 0.3s ease !important;
  z-index: 2 !important;
}

.series-card:hover .card-action-link {
  color: #c4a142 !important;
  transform: translateX(6px) !important;
}



/* ==========================================================================
   EXACT TTSPIRE.MP4 VIDEO REPLICATION DESIGN SYSTEM
   ========================================================================== */

:root {
  --video-bg-light: #ffffff;
  --video-bg-soft: #faf8f5;
  --video-gold-primary: #c4a142;
  --video-gold-dark: #b08d33;
  --video-dark-heading: #000000;
  --video-text-gray: #555555;
}

body.video-exact-theme {
  background-color: #ffffff !important;
  color: #000000 !important;
}

/* Metallic Left-to-Right Light Sweep for Hero Title */
.video-gold-shine-title {
  font-size: clamp(3rem, 6vw, 4.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  background: linear-gradient(
    110deg,
    #bf953f 0%,
    #c4a142 30%,
    #ffffff 50%,
    #c4a142 70%,
    #bf953f 100%
  ) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: shineLeftToRight 2.8s infinite linear !important;
  display: inline-block !important;
  width: 100% !important;
}

/* Section 3: Our Services 4 Outline Cards in a row */
.video-services-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

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

@media (max-width: 600px) {
  .video-services-grid {
    grid-template-columns: 1fr !important;
  }
}

.video-outline-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 20px !important;
  padding: 3rem 1.8rem 2.5rem !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-height: 380px !important;
}

.video-outline-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(196, 161, 66, 0.4) !important;
}

.video-outline-card .watermark-text-huge {
  position: absolute !important;
  top: 10px !important;
  left: 15px !important;
  font-size: 5rem !important;
  font-weight: 900 !important;
  color: transparent !important;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.08) !important;
  pointer-events: none !important;
  user-select: none !important;
  font-family: 'Outfit', sans-serif !important;
  line-height: 1 !important;
}

.video-outline-card h3 {
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  color: #000000 !important;
  line-height: 1.25 !important;
  margin-top: 2.2rem !important;
  margin-bottom: 1.2rem !important;
  font-family: 'Outfit', sans-serif !important;
  z-index: 2 !important;
}

.video-outline-card p {
  color: #555555 !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
  z-index: 2 !important;
}

/* Section 5: We Cover 5 Category Cards */
.video-cover-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 16px !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

@media (max-width: 1024px) {
  .video-cover-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .video-cover-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.video-cover-card {
  position: relative !important;
  height: 240px !important;
  border-radius: 16px !important;
  background-size: cover !important;
  background-position: center !important;
  padding: 1.5rem !important;
  display: flex !important;
  align-items: flex-end !important;
  overflow: hidden !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  transition: transform 0.35s ease !important;
}

.video-cover-card::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 70%) !important;
}

.video-cover-card:hover {
  transform: translateY(-6px) !important;
}

.video-cover-card h3 {
  position: relative !important;
  z-index: 2 !important;
  color: #ffffff !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

/* Section 6: Story Reach Banner */
.video-story-section {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 4rem !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

@media (max-width: 900px) {
  .video-story-section {
    flex-direction: column !important;
    text-align: center !important;
  }
}

.video-story-card {
  position: relative !important;
  height: 380px !important;
  border-radius: 20px !important;
  background-size: cover !important;
  background-position: center !important;
  padding: 2.5rem 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  color: #ffffff !important;
  overflow: hidden !important;
  box-shadow: 0 14px 35px rgba(0,0,0,0.2) !important;
}

.video-story-card::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.3) 70%) !important;
}

.video-story-card h4, .video-story-card p, .video-story-card a {
  position: relative !important;
  z-index: 2 !important;
}



/* ==========================================================================
   VIDEO DESIGN SYSTEM + FULL ENTERPRISE CONTENT MERGED
   ========================================================================== */

body.video-merged-theme {
  background-color: #ffffff !important;
  color: #000000 !important;
}

/* Hero Color Cycle Animation */
@keyframes heroColorCycle {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-gold-shine {
  font-size: clamp(3rem, 6vw, 4.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  background: linear-gradient(
    90deg,
    #bf953f,
    #fcf6b1,
    #ffffff,
    #a8edea,
    #c471ed,
    #12c2e9,
    #ffffff,
    #c4a142,
    #bf953f
  ) !important;
  background-size: 400% 400% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: heroColorCycle 4s ease infinite !important;
  display: inline-block !important;
  width: 100% !important;
}

/* 4 Outline Cards for Our Services */
.video-outline-card-4 {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 20px !important;
  padding: 3rem 1.8rem 2.5rem !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.video-outline-card-4:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(196, 161, 66, 0.4) !important;
}

.video-outline-card-4 .watermark-text-huge {
  position: absolute !important;
  top: 10px !important;
  left: 15px !important;
  font-size: 5rem !important;
  font-weight: 900 !important;
  color: transparent !important;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.08) !important;
  pointer-events: none !important;
  user-select: none !important;
  font-family: 'Outfit', sans-serif !important;
  line-height: 1 !important;
}

.video-outline-card-4 h3 {
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  color: #000000 !important;
  line-height: 1.25 !important;
  margin-top: 2.2rem !important;
  margin-bottom: 1.2rem !important;
  font-family: 'Outfit', sans-serif !important;
  z-index: 2 !important;
}

.video-outline-card-4 p {
  color: #555555 !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
  z-index: 2 !important;
}

/* 5 Category Cards for We Cover */
.video-cover-card-5 {
  position: relative !important;
  height: 240px !important;
  border-radius: 16px !important;
  background-size: cover !important;
  background-position: center !important;
  padding: 1.5rem !important;
  display: flex !important;
  align-items: flex-end !important;
  overflow: hidden !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  transition: transform 0.35s ease !important;
}

.video-cover-card-5::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 70%) !important;
}

.video-cover-card-5:hover {
  transform: translateY(-6px) !important;
}

.video-cover-card-5 h3 {
  position: relative !important;
  z-index: 2 !important;
  color: #ffffff !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}



/* ==========================================================================
   UNIFIED MASTER CARD FORMAT (ROW WATERMARK FLOW + DEFINING PLACEHOLDER BADGE)
   ========================================================================== */

.unified-master-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

@media (max-width: 1100px) {
  .unified-master-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .unified-master-grid {
    grid-template-columns: 1fr !important;
  }
}

.unified-master-card {
  background: #ffffff !important;
  border: 1.5px solid rgba(196, 161, 66, 0.22) !important;
  border-radius: 24px !important;
  padding: 2.8rem 2rem 2.2rem !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 390px !important;
}

.unified-master-card:hover {
  transform: translateY(-8px) !important;
  border-color: #c4a142 !important;
  box-shadow: 0 22px 45px rgba(196, 161, 66, 0.22), 0 4px 15px rgba(0,0,0,0.05) !important;
}

.unified-master-card .row-watermark {
  position: absolute !important;
  top: 10px !important;
  right: 18px !important;
  font-size: 4.8rem !important;
  font-weight: 900 !important;
  color: transparent !important;
  -webkit-text-stroke: 1.5px rgba(196, 161, 66, 0.16) !important;
  pointer-events: none !important;
  user-select: none !important;
  font-family: 'Outfit', sans-serif !important;
  line-height: 1 !important;
}

.unified-master-card .card-defining-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  background: rgba(196, 161, 66, 0.1) !important;
  border: 1px solid rgba(196, 161, 66, 0.28) !important;
  color: #b08d33 !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  margin-bottom: 1.4rem !important;
  width: fit-content !important;
  z-index: 2 !important;
}

.unified-master-card h3 {
  font-size: 1.65rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.25 !important;
  margin-bottom: 1rem !important;
  font-family: 'Outfit', sans-serif !important;
  z-index: 2 !important;
}

.unified-master-card p {
  color: #475569 !important;
  font-size: 1.02rem !important;
  line-height: 1.65 !important;
  margin-bottom: 1.8rem !important;
  z-index: 2 !important;
}

.unified-master-card .card-gold-btn {
  color: #b08d33 !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.3s ease !important;
  z-index: 2 !important;
}

.unified-master-card:hover .card-gold-btn {
  color: #c4a142 !important;
  transform: translateX(6px) !important;
}



/* ==========================================================================
   EXACT IMAGE 2 REPLICATION (GOLD LEGACY/STORY TEXT + WHITE BORDER OUTLINE BUTTONS)
   ========================================================================== */

.image2-story-section {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 4rem !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 6rem 5% !important;
}

@media (max-width: 900px) {
  .image2-story-section {
    flex-direction: column !important;
    text-align: center !important;
  }
}

.image2-gold-heading {
  font-size: clamp(3rem, 5.5vw, 5.2rem) !important;
  font-weight: 800 !important;
  color: #c4a142 !important;
  line-height: 1.05 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

.image2-gold-script {
  display: block !important;
  font-family: 'Great Vibes', cursive !important;
  font-size: clamp(5.2rem, 9vw, 7.8rem) !important;
  color: #c4a142 !important;
  font-weight: 400 !important;
  margin: -0.3rem 0 !important;
  text-transform: none !important;
}

.image2-story-card {
  position: relative !important;
  height: 520px !important;
  min-height: 520px !important;
  border-radius: 20px !important;
  background-size: cover !important;
  background-position: center !important;
  padding: 3rem 2.2rem 2.8rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  color: #ffffff !important;
  overflow: hidden !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.image2-story-card::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.25) 75%) !important;
}

.image2-story-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 50px rgba(196, 161, 66, 0.3) !important;
}

.image2-story-card h4 {
  position: relative !important;
  z-index: 2 !important;
  font-size: 1.85rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin-bottom: 0.8rem !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.image2-story-card p {
  position: relative !important;
  z-index: 2 !important;
  font-size: 1.05rem !important;
  color: #e2e8f0 !important;
  margin-bottom: 2.2rem !important;
  line-height: 1.6 !important;
}

/* White Transparent Border Outline Button (Exact Image 2) */
.btn-white-outline-frame {
  position: relative !important;
  z-index: 2 !important;
  background: transparent !important;
  border: 1.5px solid #ffffff !important;
  color: #ffffff !important;
  padding: 12px 28px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: fit-content !important;
  transition: all 0.3s ease !important;
}

.btn-white-outline-frame:hover {
  background: #ffffff !important;
  color: #000000 !important;
}



/* ==========================================================================
   UNIQUE BENTO STAGGERED PATTERN FOR CAPABILITIES & SERVICES
   ========================================================================== */

.bento-staggered-grid {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  gap: 24px !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

@media (max-width: 1024px) {
  .bento-staggered-grid {
    grid-template-columns: 1fr !important;
  }
}

.bento-card {
  background: #ffffff !important;
  border: 1.5px solid rgba(196, 161, 66, 0.2) !important;
  border-radius: 26px !important;
  padding: 3rem 2.5rem 2.4rem !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.bento-card:hover {
  transform: translateY(-10px) scale(1.01) !important;
  border-color: #c4a142 !important;
  box-shadow: 0 28px 60px rgba(196, 161, 66, 0.24), 0 6px 20px rgba(0,0,0,0.06) !important;
}

/* Feature 2-Column Wide Hero Cards */
.bento-card-wide {
  grid-column: span 6 !important;
  background: linear-gradient(135deg, #ffffff 0%, #faf6eb 100%) !important;
  border: 1.5px solid rgba(196, 161, 66, 0.35) !important;
}

@media (max-width: 1024px) {
  .bento-card-wide {
    grid-column: span 12 !important;
  }
}

/* Standard 1-Column Cards */
.bento-card-third {
  grid-column: span 4 !important;
}

@media (max-width: 1024px) {
  .bento-card-third {
    grid-column: span 12 !important;
  }
}

.bento-card-half {
  grid-column: span 6 !important;
}

@media (max-width: 1024px) {
  .bento-card-half {
    grid-column: span 12 !important;
  }
}

.bento-card .bento-watermark {
  position: absolute !important;
  top: 15px !important;
  right: 25px !important;
  font-size: 5.5rem !important;
  font-weight: 900 !important;
  color: transparent !important;
  -webkit-text-stroke: 1.5px rgba(196, 161, 66, 0.16) !important;
  pointer-events: none !important;
  user-select: none !important;
  font-family: 'Outfit', sans-serif !important;
  line-height: 1 !important;
}

.bento-card .bento-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 16px !important;
  border-radius: 20px !important;
  background: rgba(196, 161, 66, 0.12) !important;
  border: 1px solid rgba(196, 161, 66, 0.3) !important;
  color: #b08d33 !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  margin-bottom: 1.5rem !important;
  width: fit-content !important;
  z-index: 2 !important;
}

.bento-card h3 {
  font-size: 1.95rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
  font-family: 'Outfit', sans-serif !important;
  z-index: 2 !important;
}

.bento-card p {
  color: #475569 !important;
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
  margin-bottom: 2rem !important;
  z-index: 2 !important;
}

.bento-card .bento-action-link {
  color: #b08d33 !important;
  font-weight: 700 !important;
  font-size: 1.02rem !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.3s ease !important;
  z-index: 2 !important;
}

.bento-card:hover .bento-action-link {
  color: #c4a142 !important;
  transform: translateX(8px) !important;
}



/* ==========================================================================
   STRICT 4-CARDS PER ROW UNIFIED DESIGN SYSTEM
   ========================================================================== */

.strict-4-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

@media (max-width: 1100px) {
  .strict-4-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .strict-4-grid {
    grid-template-columns: 1fr !important;
  }
}

.master-uniform-card {
  background: #ffffff !important;
  border: 1.5px solid rgba(196, 161, 66, 0.22) !important;
  border-radius: 24px !important;
  padding: 2.8rem 2rem 2.2rem !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 380px !important;
}

.master-uniform-card:hover {
  transform: translateY(-8px) !important;
  border-color: #c4a142 !important;
  box-shadow: 0 22px 45px rgba(196, 161, 66, 0.22), 0 4px 15px rgba(0,0,0,0.05) !important;
}

.master-uniform-card .card-watermark {
  position: absolute !important;
  top: 10px !important;
  right: 18px !important;
  font-size: 4.8rem !important;
  font-weight: 900 !important;
  color: transparent !important;
  -webkit-text-stroke: 1.5px rgba(196, 161, 66, 0.16) !important;
  pointer-events: none !important;
  user-select: none !important;
  font-family: 'Outfit', sans-serif !important;
  line-height: 1 !important;
}

.master-uniform-card .card-badge-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  background: rgba(196, 161, 66, 0.1) !important;
  border: 1px solid rgba(196, 161, 66, 0.28) !important;
  color: #b08d33 !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  margin-bottom: 1.4rem !important;
  width: fit-content !important;
  z-index: 2 !important;
}

.master-uniform-card h3 {
  font-size: 1.65rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.25 !important;
  margin-bottom: 1rem !important;
  font-family: 'Outfit', sans-serif !important;
  z-index: 2 !important;
}

.master-uniform-card p {
  color: #475569 !important;
  font-size: 1.02rem !important;
  line-height: 1.65 !important;
  margin-bottom: 1.8rem !important;
  z-index: 2 !important;
}

.master-uniform-card .card-gold-btn {
  color: #b08d33 !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.3s ease !important;
  z-index: 2 !important;
}

.master-uniform-card:hover .card-gold-btn {
  color: #c4a142 !important;
  transform: translateX(6px) !important;
}



/* ==========================================================================
   FAINT BACKGROUND WATERMARK TITLE FOR ALL SECTION HEADINGS
   ========================================================================== */

.section-header-watermarked {
  position: relative !important;
  text-align: center !important;
  margin-bottom: 3.5rem !important;
}

.section-header-watermarked .bg-watermark-text {
  position: absolute !important;
  top: -35px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  font-size: clamp(3.5rem, 8vw, 7rem) !important;
  font-weight: 900 !important;
  color: rgba(0, 0, 0, 0.04) !important;
  text-transform: uppercase !important;
  letter-spacing: 4px !important;
  pointer-events: none !important;
  user-select: none !important;
  white-space: nowrap !important;
  font-family: 'Outfit', sans-serif !important;
  z-index: 1 !important;
}

.section-header-watermarked h2,
.section-header-watermarked span,
.section-header-watermarked p {
  position: relative !important;
  z-index: 2 !important;
}



/* ==========================================================================
   ICON-ONLY CIRCULAR BADGE FOR CARDS
   ========================================================================== */

.card-icon-pill {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(196, 161, 66, 0.1) !important;
  border: 1px solid rgba(196, 161, 66, 0.3) !important;
  color: #b08d33 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 1.4rem !important;
  box-shadow: 0 4px 12px rgba(196, 161, 66, 0.15) !important;
  z-index: 2 !important;
  transition: all 0.3s ease !important;
}

.master-uniform-card:hover .card-icon-pill {
  background: #c4a142 !important;
  color: #ffffff !important;
  border-color: #c4a142 !important;
  transform: scale(1.08) !important;
}

.master-uniform-card:hover .card-icon-pill svg,
.master-uniform-card:hover .card-icon-pill i {
  stroke: #ffffff !important;
}

.card-icon-pill svg, .card-icon-pill i {
  width: 20px !important;
  height: 20px !important;
  stroke: #b08d33 !important;
}



/* ==========================================================================
   INFINITE SMOOTH MARQUEE CAROUSEL FOR ENDORSEMENTS
   ========================================================================== */

.marquee-container {
  overflow: hidden !important;
  width: 100% !important;
  position: relative !important;
  padding: 1rem 0 2.5rem !important;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%) !important;
}

.marquee-track {
  display: flex !important;
  gap: 24px !important;
  width: max-content !important;
  animation: marqueeLoop 35s linear infinite !important;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused !important;
}

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

.marquee-quote-card {
  width: 420px !important;
  flex-shrink: 0 !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 2.2rem 2rem !important;
  border: 1.5px solid rgba(196, 161, 66, 0.25) !important;
  border-left: 5px solid #c4a142 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.marquee-quote-card:hover {
  transform: translateY(-6px) !important;
  border-color: #c4a142 !important;
  box-shadow: 0 18px 40px rgba(196, 161, 66, 0.2) !important;
}

.marquee-quote-card p {
  font-style: italic !important;
  font-size: 1.08rem !important;
  color: #334155 !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  font-weight: 500 !important;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN - MOBILE, TABLET, ALL DEVICES
   ========================================================================== */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .navbar { padding: 0.9rem 4%; }
  .wd-hero { flex-direction: column; min-height: auto; }
  .wd-hero-left { padding: 4rem 5% 2rem; flex: none; width: 100%; }
  .wd-hero-right { flex: none; width: 100%; min-height: 320px; }
  .wd-hero h1 { font-size: 3rem; }
  .services-grid, .service-cards-row { grid-template-columns: repeat(2, 1fr) !important; }
  .image2-story-section { flex-direction: column !important; gap: 2rem !important; padding: 4rem 5% !important; }
  .image2-story-section > div { width: 100% !important; flex: none !important; }
  .footer-mega .footer-grid { grid-template-columns: 1fr 1fr 1fr !important; gap: 2rem !important; }
  .stats-row { flex-wrap: wrap; gap: 2rem; padding: 4rem 5%; }
  .stat-item { flex: 1 1 40%; }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .navbar { 
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 0.6rem 3.5% !important; 
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    z-index: 9999 !important;
  }

  /* Reset min-width on flex/grid elements to eliminate right whitespace gap */
  *[style*="min-width"] {
    min-width: 0 !important;
  }
  
  div[style*="min-width: 320px"],
  div[style*="min-width: 280px"] {
    min-width: 0 !important;
    width: 100% !important;
    flex: 1 1 100% !important;
  }

  .logo {
    max-width: 65% !important;
    flex-shrink: 1 !important;
    display: flex !important;
    align-items: center !important;
  }
  .logo-wrapper {
    max-width: 100% !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
  }
  .logo-wrapper svg {
    width: 130px !important;
    height: 40px !important;
    max-width: 100% !important;
  }
  .nav-links { display: none !important; }
  .mobile-menu-toggle { 
    display: flex !important; 
    flex-shrink: 0 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    position: relative !important;
    z-index: 10000 !important;
  }

  /* Hero & Title Responsiveness */
  .hero-main { padding: 7rem 4% 4rem !important; }
  .hero-gold-shine {
    font-size: clamp(1.9rem, 8vw, 2.8rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 1.2rem !important;
  }

  /* Section Headings & Watermarks (Tight Spacing on Mobile) */
  section { padding: 2.5rem 4% !important; }
  .section-header-watermarked { margin-bottom: 1.4rem !important; max-width: 100% !important; }
  .section-header-watermarked h2 {
    font-size: clamp(1.55rem, 6.2vw, 2.1rem) !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    margin-bottom: 0.4rem !important;
  }
  .section-header-watermarked p {
    font-size: 0.92rem !important;
    margin-top: 0.4rem !important;
    line-height: 1.5 !important;
  }
  .bg-watermark-text {
    font-size: clamp(2rem, 10vw, 3.4rem) !important;
    letter-spacing: 2px !important;
    top: -10px !important;
  }

  /* Overlapping Pillars */
  .hero-main + section, section[style*="margin-top: -120px"] {
    margin-top: -25px !important;
    padding-bottom: 2rem !important;
  }
  .category-card { height: 220px !important; }

  /* Grids & Cards (Zero Excess White Space on Mobile) */
  .services-grid, .service-cards-row, .portfolio-grid, .marketing-grid, .story-cards-col, .blog-grid, .news-grid, .team-grid, .strict-4-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .category-mosaic { grid-template-columns: 1fr !important; gap: 1rem !important; }
  
  .master-uniform-card {
    padding: 1.25rem 1.3rem !important;
    min-height: auto !important;
  }
  .master-uniform-card h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
  }
  .master-uniform-card p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.8rem !important;
  }
  .master-uniform-card .card-icon-pill {
    margin-bottom: 0.6rem !important;
  }

  .image2-gold-heading {
    font-size: clamp(1.5rem, 6.2vw, 2.2rem) !important;
    margin-bottom: 1rem !important;
    line-height: 1.35 !important;
    text-align: center !important;
  }
  .image2-gold-heading br {
    display: none !important;
  }
  .image2-gold-script {
    font-size: 1.15em !important;
    display: inline-block !important;
    margin: 0 4px !important;
  }
  /* About Page Mobile Responsiveness */
  .about-hero-section {
    flex-direction: column !important;
    padding: 3rem 4.5% !important;
    margin-top: 60px !important;
    gap: 2rem !important;
  }
  .about-hero-section h1 {
    font-size: clamp(1.8rem, 7.5vw, 2.8rem) !important;
    margin-bottom: 1rem !important;
  }
  .about-hero-section p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.2rem !important;
  }
  .about-hero-stats {
    flex-wrap: wrap !important;
    gap: 1.2rem !important;
  }
  .about-hero-stats h3 {
    font-size: 1.8rem !important;
  }
  .about-hero-img {
    width: 100% !important;
    min-height: 240px !important;
  }

  .about-values-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .about-values-grid > div {
    padding: 1.5rem 1.2rem !important;
  }

  .about-what-we-do-grid {
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .about-what-we-do-img {
    width: 100% !important;
    min-height: 240px !important;
    order: 2 !important;
  }
  .about-what-we-do-content {
    order: 1 !important;
    width: 100% !important;
  }

  .about-stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.2rem 0.8rem !important;
  }

  /* Vertical Solutions Page Mobile Responsiveness */
  .vs-hero-section {
    padding: 3.5rem 4.5% !important;
    margin-top: 60px !important;
  }
  .vs-hero-section h1 {
    font-size: clamp(1.8rem, 7.5vw, 2.8rem) !important;
    margin-bottom: 1rem !important;
  }
  .vs-hero-section p {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
  }
  .vs-verticals-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .vs-verticals-grid > div {
    padding: 1.5rem 1.2rem !important;
  }

  /* Careers Page Mobile Responsiveness & White Space Removal */
  .careers-hero-section {
    padding: 3rem 4.5% 2rem !important;
    margin-top: 60px !important;
  }
  .careers-hero-section h1 {
    font-size: clamp(1.8rem, 7.5vw, 2.8rem) !important;
    margin-bottom: 1rem !important;
  }
  .careers-hero-section p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
  }

  .careers-culture-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .careers-culture-grid > div {
    padding: 1.25rem 1.2rem !important;
  }
  .careers-culture-grid > div h3 {
    margin-bottom: 0.5rem !important;
    font-size: 1.2rem !important;
  }
  .careers-culture-grid > div p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }

  .careers-perks-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem !important;
  }
  .careers-perks-grid > div {
    padding: 1.2rem 0.8rem !important;
  }

  .careers-job-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1.25rem 1.3rem !important;
    gap: 1rem !important;
  }
  .careers-job-card a {
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Newsroom Page Mobile Responsiveness & White Space Removal */
  .newsroom-hero-section {
    padding: 3rem 4.5% 2rem !important;
    margin-top: 60px !important;
  }
  .newsroom-hero-section h1 {
    font-size: clamp(1.8rem, 7.5vw, 2.8rem) !important;
    margin-bottom: 0.8rem !important;
  }
  .newsroom-hero-section p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .newsroom-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .newsroom-grid article > div:last-child {
    padding: 1.2rem 1.2rem !important;
  }
  .newsroom-grid article h3 {
    font-size: 1.15rem !important;
    margin: 0.5rem 0 !important;
    line-height: 1.35 !important;
  }
  .newsroom-grid article p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }

  /* Service Pages Mobile Responsiveness & White Space Optimization */
  .wd-hero {
    flex-direction: column !important;
    min-height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .wd-hero-right {
    order: 1 !important;
    margin-top: 80px !important;
    min-height: 260px !important;
    width: 100% !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    background-size: cover !important;
    background-position: center !important;
  }
  .wd-hero-left {
    order: 2 !important;
    padding: 1.8rem 5% 2rem !important;
    margin-top: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .wd-hero h1 {
    font-size: clamp(1.6rem, 6.8vw, 2.4rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
  }
  .wd-hero p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
  }

  .wd-intro {
    padding: 3rem 4.5% 2rem !important;
  }
  .wd-intro h2 {
    font-size: clamp(1.35rem, 5.2vw, 1.85rem) !important;
    line-height: 1.35 !important;
    margin-bottom: 1rem !important;
  }
  .wd-intro p {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
  }

  .illuminating-sec, .split-showcase-sec {
    flex-direction: column !important;
    padding: 3rem 4.5% !important;
    gap: 2rem !important;
  }
  .illuminating-sec .illum-img-cont,
  .split-showcase-sec .showcase-img-cont {
    width: 100% !important;
    min-height: 220px !important;
    max-height: 280px !important;
  }
  .illuminating-sec h2, .split-showcase-sec h2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }
  .illuminating-sec h2 .script-font {
    display: inline-block !important;
    font-size: 1.15em !important;
    margin: 0 4px !important;
  }

  .wd-grid-container {
    padding: 2.5rem 4.5% !important;
  }
  .wd-grid-row {
    flex-direction: column !important;
    gap: 1.2rem !important;
  }
  .wd-grid-cell {
    padding: 1.4rem 1.2rem !important;
  }
  .wd-grid-cell h3 {
    font-size: 1.2rem !important;
    margin-bottom: 0.6rem !important;
  }
  .wd-grid-cell p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }

  .wf-card-step {
    flex: none !important;
    width: 100% !important;
    padding: 1.4rem 1.2rem !important;
    box-sizing: border-box !important;
  }
  .wf-card-step h3 {
    font-size: 1.2rem !important;
  }

  .faq-item-card {
    padding: 1.25rem 1.2rem !important;
  }
  .faq-item-card h4 {
    font-size: 1.05rem !important;
  }
  .faq-item-card p {
    font-size: 0.9rem !important;
    padding-left: 0 !important;
  }

  /* Override inline 8rem paddings & 4rem margins on mobile view across all Service pages */
  section[style*="padding: 8rem"],
  section[style*="padding:8rem"],
  section[style*="padding: 8rem 5%"],
  section[style*="padding:8rem 5%"] {
    padding: 2.5rem 4.5% !important;
  }

  div[style*="margin: 0 auto 4rem"],
  div[style*="margin:0 auto 4rem"] {
    margin: 0 auto 1.5rem !important;
  }

  div[style*="margin: 0 auto 4rem"] h2,
  div[style*="margin:0 auto 4rem"] h2,
  section[style*="padding: 8rem 5%"] h2 {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem) !important;
    line-height: 1.25 !important;
  }

  .form-section { flex-direction: column !important; padding: 2.5rem 4.5% !important; gap: 1.5rem !important; }
  .form-info h2 { font-size: clamp(1.6rem, 6.5vw, 2.2rem) !important; margin-bottom: 0.8rem !important; }
  .form-group { margin-bottom: 0.8rem !important; }

  /* Industry Subpages Mobile Responsiveness & White Space Optimization */
  .ind-sub-hero {
    min-height: auto !important;
    padding: 3rem 4.5% 2rem !important;
    margin-top: 60px !important;
  }
  .ind-sub-hero-content {
    max-width: 100% !important;
  }
  .ind-badge {
    font-size: 0.75rem !important;
    padding: 4px 12px !important;
    margin-bottom: 1rem !important;
  }
  .ind-sub-hero h1 {
    font-size: clamp(1.6rem, 6.8vw, 2.4rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    word-break: break-word !important;
  }
  .ind-sub-hero p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
  }
  .btn-hero-cta {
    padding: 12px 24px !important;
    font-size: 0.9rem !important;
  }

  .wd-intro {
    padding: 2.5rem 4.5% !important;
  }
  .wd-intro h2 {
    font-size: clamp(1.4rem, 5.5vw, 2rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }
  .wd-intro p.desc {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
  }

  .illuminating-sec, .split-showcase-sec {
    flex-direction: column !important;
    padding: 2.5rem 4.5% !important;
    gap: 1.8rem !important;
  }
  .illum-img-cont, .split-showcase-img {
    width: 100% !important;
  }
  .illum-img-cont img, .split-showcase-img img {
    height: 230px !important;
    object-fit: cover !important;
  }
  .illum-text h2, .split-showcase-text h2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }
  .illum-text p, .split-showcase-text p {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
  }

  .wd-grid-container {
    padding: 2.5rem 4.5% !important;
  }
  .wd-grid-header {
    margin-bottom: 1.8rem !important;
  }
  .wd-grid-header h2 {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem) !important;
    line-height: 1.25 !important;
  }
  .wd-grid-cells-wrapper {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .wd-grid-cell {
    padding: 1.4rem 1.2rem !important;
  }
  .wd-grid-cell h3 {
    font-size: 1.2rem !important;
    margin-bottom: 0.6rem !important;
  }
  .wd-grid-cell p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }

  /* Insights Subpages Mobile Responsiveness & Related Analysis Reordering */
  .article-hero-sec {
    min-height: auto !important;
    padding: 3rem 4.5% 2rem !important;
    margin-top: 60px !important;
  }
  .article-hero-content {
    max-width: 100% !important;
  }
  .article-badge {
    font-size: 0.75rem !important;
    padding: 4px 12px !important;
    margin-bottom: 1rem !important;
  }
  .article-hero-sec h1 {
    font-size: clamp(1.5rem, 6.5vw, 2.3rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    word-break: break-word !important;
  }
  .article-meta {
    flex-wrap: wrap !important;
    gap: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
  }

  .article-layout-sec {
    padding: 2.5rem 4.5% !important;
  }
  .article-layout-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.8rem !important;
  }

  /* Related Analysis right after Hero section (order 1), Main Article (order 2), Insights Digest at bottom (order 3) */
  .article-sidebar-col {
    display: contents !important;
  }
  .article-sidebar-col .sidebar-card:last-child {
    order: 1 !important; /* Related Analysis right after hero */
    margin-bottom: 0 !important;
  }
  .article-main-col {
    order: 2 !important; /* Main article content */
    flex: none !important;
    width: 100% !important;
  }
  .article-sidebar-col .sidebar-card:first-child {
    order: 3 !important; /* Insights Digest at bottom where it originally was */
    margin-top: 1rem !important;
  }

  .article-lead-quote {
    font-size: 1.1rem !important;
    padding: 1.2rem 1.4rem !important;
    margin-bottom: 1.8rem !important;
    line-height: 1.5 !important;
  }

  .stats-bar-sec {
    flex-direction: column !important;
    gap: 0.8rem !important;
    margin-bottom: 1.8rem !important;
  }
  .stats-bar-sec > div {
    padding: 1.2rem !important;
  }

  .takeaways-card {
    padding: 1.4rem 1.2rem !important;
    margin-bottom: 1.8rem !important;
  }
  .takeaways-card h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.8rem !important;
  }

  .article-main-col h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 0.8rem !important;
  }
  .article-main-col p {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.2rem !important;
  }

  /* Author Signature TS Circle Badge */
  div[style*="border-radius: 50%"],
  div[style*="border-radius:50%"] {
    flex-shrink: 0 !important;
    aspect-ratio: 1/1 !important;
  }

  .image2-story-section {
    flex-direction: column !important;
    padding: 2.5rem 4.5% !important;
    gap: 1.8rem !important;
  }
  .image2-story-section > div {
    width: 100% !important;
    flex: none !important;
  }
  .image2-story-section > div:last-child {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .image2-gold-heading {
    font-size: clamp(1.6rem, 6.8vw, 2.4rem) !important;
    margin-bottom: 1rem !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }
  .image2-gold-heading br {
    display: none !important;
  }
  .image2-gold-script {
    font-size: 1.15em !important;
    display: inline-block !important;
    margin: 0 4px !important;
  }
  .image2-story-card {
    min-height: 240px !important;
    padding: 1.8rem 1.4rem !important;
  }
  .stats-row { flex-direction: column !important; gap: 1.2rem !important; padding: 2rem 4.5% !important; text-align: center !important; }
  .stat-item { flex: none !important; width: 100% !important; }
  .stat-item h2 { font-size: 2rem !important; margin-bottom: 2px !important; }
  .stat-item p { font-size: 0.8rem !important; letter-spacing: 1px !important; }

  /* Contact Page Visibility & Responsiveness */
  .contact-interface, .contact-details, .contact-form-col, .office-card, .faq-section, .faq-item {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  /* Master Hero Sections Desktop & Mobile Padding Normalization */
  .blog-hero,
  .news-hero,
  .vs-hero,
  .vs-text,
  .about-hero-section,
  .careers-hero-section {
    padding-top: 5rem !important;
    padding-bottom: 4rem !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    box-sizing: border-box !important;
  }

  /* Portfolio Page Mobile Responsiveness & Filter Bar */
  .wd-hero-left h1 br {
    display: none !important;
  }
  .wd-hero-left h1 span[style*="Great Vibes"] {
    font-size: 1.15em !important;
    display: inline-block !important;
    margin: 0 4px !important;
  }

  .filter-container {
    position: static !important;
    padding: 1.2rem 4.5% 0.8rem !important;
    background: #fff !important;
  }
  .filter-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem !important;
  }
  .filter-btn {
    padding: 8px 16px !important;
    font-size: 0.82rem !important;
    border-radius: 20px !important;
  }

  .portfolio-grid-container {
    padding: 1.5rem 4.5% 2.5rem !important;
  }
  .portfolio-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  .project-card {
    width: 100% !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    aspect-ratio: 16/9 !important;
    min-height: 220px !important;
  }

  .form-grid { grid-template-columns: 1fr !important; }
  .footer-mega { padding: 3.5rem 4% 2rem !important; }
  /* Outcomes Metrics 2x2 Grid on Mobile */
  .outcomes-metrics-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.8rem 1rem !important;
  }
  .outcomes-metrics-grid .reveal-card div[style*="font-size: clamp"] {
    font-size: clamp(2.2rem, 8vw, 3rem) !important;
  }
  .outcomes-metrics-grid .reveal-card p {
    font-size: 0.72rem !important;
    letter-spacing: 1px !important;
  }

  /* PR Review 1-Card Touch Snap Carousel on Mobile */
  .marquee-container {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 1rem 0 1.5rem !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }
  .marquee-track {
    animation: none !important;
    display: flex !important;
    gap: 1rem !important;
    width: max-content !important;
    padding: 0 7.5vw !important;
  }
  .marquee-quote-card {
    width: 85vw !important;
    max-width: 320px !important;
    flex: 0 0 85vw !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    margin: 0 !important;
    border: 1px solid rgba(196, 161, 66, 0.3) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04) !important;
  }
  .look-inside-grid { grid-template-columns: 1fr !important; }
  .dropdown-content { display: none !important; }
}

/* Small Mobile: 480px */
@media (max-width: 480px) {
  .navbar { 
    padding: 0.5rem 3% !important; 
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .logo {
    max-width: 65% !important;
  }
  .logo-wrapper svg {
    width: 120px !important;
    height: 38px !important;
    max-width: 100% !important;
  }
  .mobile-menu-toggle {
    padding: 6px !important;
  }
  .mobile-menu-toggle svg {
    width: 26px !important;
    height: 26px !important;
  }
  .wd-hero-left { padding: 1.5rem 4.5% 2rem !important; }
  .wd-hero-right { min-height: 220px !important; }
  .image2-gold-heading { font-size: clamp(1.8rem, 8.5vw, 2.8rem) !important; }
  .image2-gold-script { font-size: clamp(2.2rem, 10vw, 3.4rem) !important; }
  .stats-row { padding: 2rem 4%; }
  .stat-item h2 { font-size: 2rem; }
  .footer-mega .footer-grid { grid-template-columns: 1fr !important; }
  .filter-nav { flex-wrap: wrap; justify-content: center; gap: 0.4rem; }
  .filter-btn { padding: 7px 14px; font-size: 0.8rem; }
  .form-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .btn-submit { width: 100%; text-align: center; }
  .project-card { aspect-ratio: 4/3; }
  .story-card { min-height: 240px !important; }
  .image2-story-card { min-height: 240px !important; }
  .marquee-quote-card { width: 90vw !important; }
  .marquee-track { animation: none !important; flex-wrap: wrap !important; width: 100% !important; }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .project-overlay { opacity: 1 !important; background: rgba(0,0,0,0.5) !important; }
  .filter-btn { min-height: 44px; }
  .btn-primary, .btn-talk, .btn-submit { min-height: 44px; }
}

/* Global responsive base */
img { max-width: 100%; height: auto; }
body { overflow-x: hidden; }
* { box-sizing: border-box; }

/* ==========================================================================
   HERO TITLE SHINE ANIMATION (USER REQUESTED GRADIENT & SHINE)
   ========================================================================== */
.hero-gold-shine {
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin-bottom: 1.8rem;
  letter-spacing: -1px !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  background: linear-gradient(135deg, #c4a142 0%, #fdefb6 50%, #8b6e2d 100%) !important;
  background-size: 200% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: shine 5s linear infinite !important;
}

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




