/* ==========================================================================
   ANIDAM — STRATEGY, AI & DIGITAL INNOVATION STUDIO
   Official Color Palette & Master Stylesheet
   Palette:
   - Primary Vermillion Red: #ff2900
   - Secondary Warm Red:    #f4300f
   - Warm Sand / Ivory:     #f4f1e4
   - Pitch Black:           #000000
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & COLOR SYSTEM
   -------------------------------------------------------------------------- */
:root,
[data-theme="light"] {
  --page-bg: #FFFFFF;
  --surface: #F5F6F6;
  --text-primary: #090D11;
  --text-secondary: #626A70;
  --border-color: rgba(9, 13, 17, 0.10);
  --brand-accent: #FF351A;
  color-scheme: light;

  /* App compatibility aliases */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F6F6;
  --bg-subtle: #F5F6F6;
  --bg-card: #FFFFFF;
  --fg-primary: #090D11;
  --fg-muted: #626A70;
  --fg-faint: #8490A0;
  --border-light: rgba(9, 13, 17, 0.10);
  --border-medium: rgba(9, 13, 17, 0.14);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.09);
  --overlay-bg: rgba(255, 255, 255, 0.98);
  --nav-bg: rgba(255, 255, 255, 0.95);
  --brand-red: #FF351A;
  --brand-red-deep: #E02B12;

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --page-bg: #090B0C;
  --surface: #111516;
  --text-primary: #F7F7F2;
  --text-secondary: #A4A9AC;
  --border-color: rgba(255, 255, 255, 0.10);
  --brand-accent: #FF351A;
  color-scheme: dark;

  /* App compatibility aliases */
  --bg-primary: #090B0C;
  --bg-secondary: #111516;
  --bg-subtle: #111516;
  --bg-card: #111516;
  --fg-primary: #F7F7F2;
  --fg-muted: #A4A9AC;
  --fg-faint: #737B80;
  --border-light: rgba(255, 255, 255, 0.10);
  --border-medium: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.8);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.95);
  --overlay-bg: rgba(9, 11, 12, 0.96);
  --nav-bg: rgba(9, 11, 12, 0.90);
  --brand-red: #FF351A;
  --brand-red-deep: #E02B12;
}

/* --------------------------------------------------------------------------
   02. BASE RESET & HELPER CLASSES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

body {
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  line-height: 1.5;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

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

.font-syne { font-family: var(--font-display); }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.mt-2 { margin-top: 8px; }
.text-white { color: #ffffff !important; }
.text-sand { color: #f4f1e4 !important; }
.text-white-muted { color: rgba(244, 241, 228, 0.75) !important; }

/* --------------------------------------------------------------------------
   03. FLOATING CONTROLS (Compact Circular Buttons)
   -------------------------------------------------------------------------- */
.custom-cursor {
  display: none !important;
}

.fixed-floating-controls {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.floating-control-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
  outline: none;
  background: rgba(235, 235, 235, 0.90);
  color: #111111;
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), 
              background-color 240ms ease, 
              border-color 240ms ease, 
              color 240ms ease;
}

[data-theme="dark"] .floating-control-circle {
  background: rgba(25, 27, 28, 0.88);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.floating-control-circle:hover {
  transform: scale(1.06);
  border-color: rgba(255, 53, 26, 0.4);
}

.floating-control-circle:active {
  transform: scale(0.96);
}

.floating-control-circle:focus-visible {
  outline: 2px solid #FF351A;
  outline-offset: 2px;
}

.control-icon {
  width: 20px;
  height: 20px;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease;
}

.floating-control-circle:hover .control-icon {
  transform: rotate(14deg);
}

/* Sound Icon Playing Indicator */
.audio-btn.playing .control-icon {
  color: #FF351A;
}

/* Single Active Icon Display for Theme Toggle */
.theme-icon-sun,
.theme-icon-moon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}

[data-theme="light"] .theme-icon-moon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6) rotate(90deg);
  pointer-events: none;
}

[data-theme="light"] .theme-icon-sun {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

[data-theme="dark"] .theme-icon-sun {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6) rotate(-90deg);
  pointer-events: none;
}

[data-theme="dark"] .theme-icon-moon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

@media (max-width: 767px) {
  .fixed-floating-controls {
    bottom: 15px;
    right: 15px;
    gap: 6px;
  }
  .floating-control-circle {
    width: 40px;
    height: 40px;
  }
  .control-icon {
    width: 18px;
    height: 18px;
  }
}

/* --------------------------------------------------------------------------
   04. NAVBAR & DROPDOWN HEADER
   -------------------------------------------------------------------------- */
.main-navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 8000;
  padding: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. At Top State (Full Width Dark Header like Superside) */
.main-navbar-wrapper.at-top {
  padding: 0;
  background: rgba(7, 9, 10, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.main-navbar-wrapper.at-top .main-navbar {
  max-width: 1720px;
  margin: 0 auto;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 16px 24px;
}

.main-navbar-wrapper.at-top .nav-item,
.main-navbar-wrapper.at-top .dropdown-trigger {
  color: rgba(244, 241, 228, 0.85);
}

.main-navbar-wrapper.at-top .nav-item:hover,
.main-navbar-wrapper.at-top .nav-item.active,
.main-navbar-wrapper.at-top .dropdown-trigger:hover {
  color: #ffffff;
}

.main-navbar-wrapper.at-top .brand-header-logo-full {
  filter: none;
}

/* 2. Scrolled Down State (Floating Liquid Glass Pill Bar) */
.main-navbar-wrapper.scrolled {
  padding: 16px 24px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

.main-navbar-wrapper.scrolled .main-navbar {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-radius: 999px;
  padding: 8px 14px 8px 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: border-radius 400ms ease, background 400ms ease, box-shadow 400ms ease, padding 400ms ease;
}

[data-theme="dark"] .main-navbar-wrapper.scrolled .main-navbar {
  background: rgba(12, 12, 12, 0.78);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2), 0 16px 40px rgba(0, 0, 0, 0.6);
}

/* Logo contrast handling for white vs dark text variants matching folder logo */
.brand-header-logo-white {
  display: block;
  height: 38px;
  max-width: 220px;
  object-fit: contain;
}

.brand-header-logo-dark {
  display: none;
  height: 38px;
  max-width: 220px;
  object-fit: contain;
}

/* When scrolled in light liquid glass mode */
.main-navbar-wrapper.scrolled .brand-header-logo-white {
  display: none;
}

.main-navbar-wrapper.scrolled .brand-header-logo-dark {
  display: block;
}

/* When scrolled in dark theme mode */
[data-theme="dark"] .main-navbar-wrapper.scrolled .brand-header-logo-white {
  display: block;
}

[data-theme="dark"] .main-navbar-wrapper.scrolled .brand-header-logo-dark {
  display: none;
}

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

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-site-logo-png {
  height: 42px;
  max-width: 220px;
  object-fit: contain;
}

.brand-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

.brand-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--fg-primary);
}

.desktop-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--fg-muted);
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-item:hover, .nav-item.active {
  color: var(--fg-primary);
}

/* Dropdown Menu Styling */
.dropdown-parent {
  position: relative;
}

.dropdown-trigger {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.dropdown-parent:hover .dropdown-chevron,
.dropdown-parent.active .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--brand-red);
}

.dropdown-parent:hover .dropdown-trigger {
  color: var(--fg-primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 210px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  z-index: 100;
}

.dropdown-parent:hover .dropdown-menu,
.dropdown-parent.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-primary);
  transition: background-color var(--transition-fast);
}

.dropdown-link i {
  width: 16px;
  height: 16px;
  color: var(--brand-red);
}

.dropdown-link:hover {
  background: var(--bg-subtle);
}

/* --------------------------------------------------------------------------
   SUPERSIDE MEGA DROPDOWN MENU (Services Desktop Menu)
   -------------------------------------------------------------------------- */
.mega-dropdown-parent {
  position: relative;
}

.mega-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  width: min(94vw, 1340px);
  background: #faf8f2;
  color: #121820;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 36px 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  text-align: left;
}

.mega-dropdown-parent:hover .mega-dropdown-menu,
.mega-dropdown-parent.active .mega-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}

.mega-dropdown-container {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 36px;
}

.mega-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.mega-category-pill svg {
  width: 14px;
  height: 14px;
}

.pill-green {
  background: #c8ea80;
  color: #182810;
}

.pill-dark {
  background: #244238;
  color: #ffffff;
}

.pill-blue {
  background: #1c5274;
  color: #ffffff;
}

.pill-sand {
  background: #ebdcc4;
  color: #2c2214;
}

.mega-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mega-item {
  display: block;
  text-decoration: none;
  padding: 4px 0;
  transition: transform 0.2s ease;
}

.mega-item:hover {
  transform: translateX(4px);
}

.mega-item-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #121820;
}

.mega-item-sub {
  display: block;
  font-size: 13px;
  color: #646e7a;
  margin-top: 2px;
}

.badge-new {
  display: inline-block;
  background: #c8ea80;
  color: #182810;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 100px;
  text-transform: uppercase;
}

/* ─── Header CTA Button — White Liquid-Glass (matches hero Let's Contact) ─── */
.nav-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 4px 0 16px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 242, 245, 0.90) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #151821 !important;
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: inset 0 1.5px 1.5px rgba(255, 255, 255, 1), 0 4px 14px rgba(0, 0, 0, 0.14);
  transition: transform 220ms cubic-bezier(0.2, 1, 0.3, 1), box-shadow 220ms ease;
  will-change: transform;
  overflow: visible;
}

.nav-cta-btn::before {
  display: none;
}

.nav-cta-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #151821;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 220ms ease, background 220ms ease;
}

.nav-cta-arrow svg,
.nav-cta-arrow i {
  width: 14px;
  height: 14px;
  color: #FFFFFF;
  stroke-width: 2.5;
  transition: transform 220ms ease;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1.5px 1.5px rgba(255, 255, 255, 1), 0 8px 22px rgba(0, 0, 0, 0.22);
}

.nav-cta-btn:hover .nav-cta-arrow {
  background: var(--brand-red, #FF351A);
  transform: translate(2px, -2px);
}

.nav-cta-btn:hover .nav-cta-arrow svg,
.nav-cta-btn:hover .nav-cta-arrow i {
  transform: translate(1px, -1px);
}

.nav-cta-btn:active {
  transform: scale(0.97);
}

/* Scrolled dark-mode nav button — keep white glass */
[data-theme="dark"] .main-navbar-wrapper.scrolled .nav-cta-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(230, 232, 236, 0.86) 100%);
  border-color: rgba(255, 255, 255, 0.60);
}

/* Crisp White Mobile Hamburger Button Icon */
.hamburger-btn {
  display: none;
  font-size: 24px;
  color: #ffffff !important;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.hamburger-btn svg,
.hamburger-btn i {
  color: #ffffff !important;
  stroke: #ffffff !important;
  fill: none;
}

/* --------------------------------------------------------------------------
   05. HERO SECTION (Full-Screen Superside Layout)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   05. HERO SECTION (Full-Screen Animated Abstract Orange Torus Background)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1080px;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden !important;
  background: #05070a;
  color: #f4f1e4;
  border-radius: 0 0 13px 13px !important;
}

/* Hero Canvas Background Wrapper */
.hero-webgl-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden !important;
  pointer-events: none;
  z-index: 0;
  background: #05070a;
  border-radius: 0 0 14px 14px;
}

#hero-webgl-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  z-index: 0;
  pointer-events: none;
}

/* Multi-Stage Dark Black Gradient Overlay for Maximum Text Readability */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: 
    linear-gradient(to right, rgba(5, 7, 10, 0.82) 0%, rgba(5, 7, 10, 0.60) 35%, rgba(5, 7, 10, 0.30) 65%, rgba(5, 7, 10, 0.15) 100%),
    linear-gradient(to bottom, rgba(5, 7, 10, 0.70) 0%, rgba(5, 7, 10, 0.15) 30%, transparent 60%),
    linear-gradient(to top, rgba(5, 7, 10, 0.85) 0%, rgba(5, 7, 10, 0.20) 20%, transparent 50%);
}

/* Liquid-Glass Content Panel (Left Hero Content Wrapper) */
.hero-glass-panel {
  position: relative;
  background: rgba(8, 10, 12, 0.28);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 44px 36px 24px 36px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18), inset 1px 0 1px rgba(255, 255, 255, 0.10);
  overflow: hidden;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), border-color 240ms ease;
  will-change: transform;
}

.hero-glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  pointer-events: none;
}

.hero-glass-panel::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 53, 26, 0.16) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 300ms ease, opacity 300ms ease;
}
/* ================================================================
   HERO LEFT COLUMN — CLEAN OPEN 3-LINE HEADING SYSTEM & INLINE THUMBNAILS
================================================================ */
.hero-text-col--clean {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-clean-container {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  margin: 0 auto;
}

/* 3 Separate Horizontal Flex Rows Stack */
.hero-heading-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  width: 100%;
}

.hero-heading-line-wrapper {
  overflow: visible;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 2px 0;
}

.hero-heading-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  white-space: nowrap;
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  font-size: clamp(38px, 3.15vw, 60px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  will-change: transform, opacity;
}

.text-white {
  color: #FFFFFF;
}

.text-soft-gray {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

.text-orange {
  color: #FF351A;
  font-weight: 800;
}

/* Dedicated Inline Image Capsule (Pill) */
.hero-heading-line .hero-small-img-capsule,
.hero-small-img-capsule {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 68px !important;
  height: 48px !important;
  min-width: 68px !important;
  min-height: 48px !important;
  max-width: 68px !important;
  max-height: 48px !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  vertical-align: middle !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: none !important;
  box-shadow: none !important;
  margin-inline: 2px !important;
  will-change: transform;
}

.hero-heading-line .hero-small-img-capsule img,
.hero-small-img-capsule img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 999px !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Centered Paragraph Description */
.hero-clean-desc {
  max-width: 560px;
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  margin: 0;
}

/* Centered CTA Row */
.hero-clean-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px !important;
  margin-bottom: 24px !important;
  flex-wrap: wrap;
}

.hero-rating-box--centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* Compact Content-Sized Liquid-Glass Scroll to Explore Control */
.hero-bottom-glass-strip {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content !important;
  max-width: max-content !important;
  height: 40px;
  padding: 0 22px;
  background: rgba(8, 10, 12, 0.45);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: opacity 280ms ease, transform 280ms ease, border-color 200ms ease, background 200ms ease;
}

.hero-bottom-glass-strip:hover {
  background: rgba(12, 16, 20, 0.65);
  border-color: rgba(255, 53, 26, 0.40);
}

.scroll-explore-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  user-select: none;
}

.scroll-chevron-icon {
  width: 14px;
  height: 14px;
  color: #FF351A;
  animation: bounceChevron 2.2s infinite ease-in-out;
}

@keyframes bounceChevron {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3.5px); }
}

@media (max-width: 1024px) {
  .hero-glass-panel {
    padding: 32px 36px;
    border-radius: 24px;
  }
}

/* ===== MOBILE HERO LAYOUT — max 767px ===== */
@media (max-width: 767px) {
  .hero-left-content,
  .hero-text-col--clean {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 54px !important;
    padding-bottom: 26px !important;
  }

  /* MOBILE CORRECTION 1: Tight Headline Line Spacing */
  .hero-title,
  .hero-heading,
  .hero-heading-stack {
    font-size: clamp(26px, 7vw, 32px) !important;
    line-height: 0.98 !important;
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    gap: 2px !important;
    row-gap: 2px !important;
  }

  .hero-heading-line-wrapper {
    overflow: visible !important;
    padding: 0 !important;
    margin-block: 0 !important;
  }

  .hero-heading-line {
    min-height: 0 !important;
    margin-block: 0 !important;
    padding: 0 !important;
    font-size: clamp(26px, 7vw, 32px) !important;
    line-height: 0.98 !important;
    gap: 4px !important;
    row-gap: 2px !important;
    white-space: normal !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-heading-line span {
    font-size: clamp(26px, 7vw, 32px) !important;
    line-height: 0.98 !important;
    margin: 0 !important;
  }

  .hero-heading-image,
  .hero-heading-line .hero-small-img-capsule,
  .hero-small-img-capsule {
    display: inline-flex !important;
    width: 44px !important;
    height: 28px !important;
    min-width: 44px !important;
    min-height: 28px !important;
    max-width: 44px !important;
    max-height: 28px !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    vertical-align: middle !important;
    margin-inline: 2px !important;
  }

  .hero-heading-line .hero-small-img-capsule img,
  .hero-small-img-capsule img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 999px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
  }

  .hero-description,
  .hero-clean-desc {
    max-width: 340px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .hero-actions,
  .hero-clean-cta-row {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
    margin-top: 24px !important;
    margin-bottom: 20px !important;
  }

  /* MOBILE CORRECTION 2: Space Below Rating */
  .hero-rating,
  .hero-rating-box {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
  }

  /* MOBILE PORTFOLIO SLIDER: 1:1 Aspect Ratio Cards Across 3 Columns */
  .hero-image-col,
  .mobile-portfolio-wrapper,
  .mobile-portfolio-grid {
    order: 2 !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-grid-slider-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  .hero-work-card,
  .mobile-portfolio-card {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    border-radius: 12px !important;
  }

  .hero-work-card img,
  .mobile-portfolio-card img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
  }

  /* MOBILE SCROLL CONTROL: Centered Directly Below Mobile Image Slider */
  .desktop-scroll-control,
  .mobile-scroll-control {
    order: 3 !important;
    position: relative !important;
    inset: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: auto !important;
    margin-top: 16px !important;
    margin-bottom: 14px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    z-index: 5 !important;
  }

  .hero-bottom-glass-strip {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
  }

  .scroll-explore-indicator {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 7px 18px !important;
    border-radius: 100px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
  }

  .mobile-scroll-control::before,
  .mobile-scroll-control::after {
    display: none !important;
    content: none !important;
  }

  .mobile-scroll-control .hero-bottom-glass-strip {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: 38px !important;
    padding: 0 20px !important;
    background: rgba(8, 10, 12, 0.45) !important;
    backdrop-filter: blur(14px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 100px !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 4px 12px rgba(0, 0, 0, 0.25) !important;
  }

  .mobile-scroll-control .scroll-explore-indicator {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 11px !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.82) !important;
  }
}

/* Below 340px: stack CTA actions if needed */
@media (max-width: 340px) {
  .hero-cta-row,
  .hero-dual-actions {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
  }
}

/* At 320px: reduce side margins to 8px */
@media (max-width: 320px) {
  .hero-glass-panel {
    width: calc(100% - 16px) !important;
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .annot-brand-strategy,
  .annot-ai-automation,
  .annot-web-digital {
    font-size: 8px !important;
    padding: 3px 5px !important;
  }
}

@media (max-width: 340px) {
  .hero-rating-box {
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-image-layer {
    animation: none !important;
    transform: scale(1.05) !important;
  }
  .hero-click-pulse {
    display: none !important;
  }
}

/* ==========================================================================
   MORE RECENT WORK — Stacked Editorial Case Studies
   ========================================================================== */
.mrw-section {
  padding: clamp(84px, 10vw, 150px) 0;
  background: #ffffff;
  color: #080c10;
  overflow: clip;
}

.mrw-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.mrw-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 32px 70px;
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 88px);
}

.mrw-kicker {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--brand-red, #ff351a);
  font: 700 11px/1 var(--font-main);
  letter-spacing: 2.5px;
}

.mrw-heading {
  margin: 0;
  font: 700 clamp(2.5rem, 5.8vw, 5rem)/.98 var(--font-display);
  letter-spacing: -.055em;
}

.mrw-heading em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

.mrw-intro {
  margin: 0 0 6px;
  color: rgba(8,12,16,.62);
  font: 400 15px/1.75 var(--font-main);
}

.mrw-list {
  display: block;
  position: relative;
}

.mrw-card {
  --mrw-text: #080c10;
  --mrw-muted: rgba(8,12,16,.64);
  --mrw-meta: rgba(8,12,16,.55);
  --mrw-panel: rgba(8,12,16,.055);
  --mrw-accent: #ff391e;
  display: grid;
  grid-template-columns: .94fr 1.16fr;
  min-height: 510px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(.22,1,.36,1);
  position: sticky;
  top: calc(var(--header-height, 72px) + 28px);
  margin-bottom: 26px;
  transform-origin: center top;
  will-change: transform, filter;
  color: var(--mrw-text);
}

.mrw-card:nth-child(1) { z-index: 1; }
.mrw-card:nth-child(2) { z-index: 2; top: calc(var(--header-height, 72px) + 44px); }
.mrw-card:nth-child(3) { z-index: 3; top: calc(var(--header-height, 72px) + 60px); }

.mrw-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mrw-section.is-enhanced .mrw-card:not(.is-visible) {
  opacity: 0;
  transform: translateY(54px) scale(.975);
}

.mrw-card:hover {
  box-shadow: none;
}

.mrw-card--lavender {
  background: linear-gradient(135deg, #fffaf8 0%, #f1efec 100%);
  border-color: rgba(255,57,30,.16);
}
.mrw-card--coral {
  --mrw-text: #ffffff;
  --mrw-muted: rgba(255,255,255,.68);
  --mrw-meta: rgba(255,255,255,.56);
  --mrw-panel: rgba(255,255,255,.09);
  background: linear-gradient(135deg, #070b0e 0%, #171316 100%);
  border-color: rgba(255,255,255,.12);
}
.mrw-card--mint {
  --mrw-text: #ffffff;
  --mrw-muted: rgba(255,255,255,.78);
  --mrw-meta: rgba(255,255,255,.66);
  --mrw-panel: rgba(255,255,255,.16);
  --mrw-accent: #ffffff;
  background: linear-gradient(135deg, #ff4a31 0%, #df250f 100%);
  border-color: rgba(255,57,30,.2);
}

.mrw-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 50px);
}

.mrw-type {
  margin: 0 0 17px;
  color: var(--mrw-accent);
  font: italic 600 17px/1.2 Georgia, 'Times New Roman', serif;
}

.mrw-copy h3 {
  margin: 0 0 17px;
  font: 700 clamp(1.75rem, 3.1vw, 3rem)/1.04 var(--font-display);
  letter-spacing: -.04em;
}

.mrw-description {
  max-width: 490px;
  margin: 0;
  color: var(--mrw-muted);
  font: 400 14px/1.7 var(--font-main);
}

.mrw-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: auto 0 24px;
}

.mrw-results div { display: grid; gap: 7px; }
.mrw-results dt { color: var(--mrw-meta); font: 500 12px/1 var(--font-main); }
.mrw-results dd { margin: 0; font: 700 24px/1 var(--font-display); }

.mrw-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 17px 19px;
  border-radius: 12px;
  background: var(--mrw-panel);
  color: inherit;
  text-decoration: none;
  font: 700 13px/1 var(--font-main);
  transition: background 220ms ease, transform 220ms ease;
}

.mrw-link:hover,
.mrw-link:focus-visible {
  background: rgba(255,57,30,.18);
  transform: translateY(-2px);
  outline: 2px solid #ff391e;
  outline-offset: 2px;
}

.mrw-card--coral .mrw-link:hover,
.mrw-card--coral .mrw-link:focus-visible,
.mrw-card--mint .mrw-link:hover,
.mrw-card--mint .mrw-link:focus-visible {
  background: rgba(255,255,255,.2);
  outline-color: rgba(255,255,255,.9);
}

.mrw-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 17px;
  background: rgba(255,255,255,.06);
}

.mrw-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.28);
  box-sizing: border-box;
  border-radius: inherit;
  pointer-events: none;
}

.mrw-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.1s cubic-bezier(.22,1,.36,1), filter 500ms ease;
}

.mrw-card:hover .mrw-visual img { transform: scale(1.1); }

.mrw-footer {
  display: flex;
  justify-content: center;
  padding-top: 46px;
}

.mrw-all-projects {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 16px 22px;
  border-radius: 999px;
  background: #ff391e;
  color: #fff;
  text-decoration: none;
  font: 700 13px/1 var(--font-main);
  transition: transform 220ms ease, background 220ms ease;
}

.mrw-all-projects:hover,
.mrw-all-projects:focus-visible {
  transform: translateY(-3px);
  background: #ffffff;
  color: #080c10;
  outline: none;
}

@media (max-width: 767px) {
  .mrw-section { padding: 72px 0; }
  .mrw-container { width: calc(100% - 32px); }
  .mrw-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 42px; }
  .mrw-heading { font-size: clamp(2.45rem, 13vw, 3.65rem); }
  .mrw-intro { font-size: 14px; }
  .mrw-list { display: grid; gap: 18px; }
  .mrw-card {
    position: relative;
    top: auto !important;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 10px;
    margin-bottom: 0;
    border-radius: 18px;
    filter: none !important;
    transition: opacity 650ms ease, transform 800ms cubic-bezier(.22,1,.36,1);
  }
  .mrw-section.is-enhanced .mrw-card:not(.is-visible) {
    opacity: 0;
    transform: translateY(42px) scale(.975) !important;
  }
  .mrw-section.is-enhanced .mrw-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1) !important;
  }
  .mrw-copy { min-height: 400px; padding: 26px 20px 22px; }
  .mrw-copy h3 { font-size: 2rem; }
  .mrw-results { margin-top: 42px; }
  .mrw-visual { min-height: 330px; order: -1; }
  .mrw-card:hover .mrw-visual img { transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .mrw-card { opacity: 1 !important; transform: none !important; transition: none; }
  .mrw-visual img { transition: none; }
}

@media (max-width: 767px) {
  .hero-bg-image-layer {
    animation-duration: 26s;
  }
}

.hero-content-container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 100px 24px 40px 24px;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
  position: relative;
}

.hero-text-col {
  position: relative;
  z-index: 10;
  max-width: 710px;
}

/* Small Category Tagline Label */
.hero-category-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--brand-red, #FF351A);
  margin-bottom: 16px;
}

.hero-category-label .label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-red, #FF351A);
  box-shadow: 0 0 8px rgba(255, 53, 26, 0.6);
}

/* ================================================================
   HERO HEADING + ANNOTATION GRID
   Three-column layout: [left annotations | heading | right annotations]
   h1 uses display:contents so its span children become grid items.
   Labels sit in dedicated side columns — never over the heading.
================================================================ */

/* The grid container */
.hero-heading-composition {
  display: grid;
  grid-template-columns: 100px minmax(0, 390px) 100px;
  grid-template-rows: repeat(3, auto);
  column-gap: 12px;
  row-gap: 4px;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 0;
  align-items: center;
}

/* h1 is transparent to the grid — its 3 spans become grid items */
.hero-title {
  display: contents;
}

/* All heading lines share typography defaults */
.hero-title .title-line {
  display: block;
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #FFFFFF;
  white-space: nowrap;
  max-width: 100%;
  overflow: visible;
  justify-self: start;
}

/* Center-column row placements */
.title-line-1 {
  grid-column: 2;
  grid-row: 1;
  font-size: clamp(2.7rem, 3.2vw, 3.6rem);
}

.title-line-2 {
  grid-column: 2;
  grid-row: 2;
  font-size: clamp(2.05rem, 2.55vw, 2.8rem);
}

.title-line-3 {
  grid-column: 2;
  grid-row: 3;
  font-size: clamp(2.7rem, 3.2vw, 3.6rem);
}

/* Orange italic override on BRAND & DIGITAL */
.hero-title .serif-italic-highlight {
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif !important;
  font-style: italic !important;
  font-weight: 800 !important;
  color: var(--brand-red, #FF351A) !important;
  letter-spacing: -0.04em !important;
  white-space: nowrap !important;
  max-width: 100% !important;
  overflow: visible !important;
}

/* Copy and Actions Wrapper (Paragraph + CTA) */
.hero-copy-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
}

/* Supporting Paragraph */
.hero-description,
.hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
  max-width: 520px;
  margin: 0;
}

/* ================================================================
   ANNOTATION PILL BASE STYLE
   Desktop: grid-placed (position:static). Mobile: position:absolute.
================================================================ */
.hero-annot-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 7px;
  border-radius: 8px;
  background: rgba(8, 10, 12, 0.52);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  cursor: default;
  user-select: none;
  pointer-events: auto;
  width: max-content;
  max-width: 100px;
  position: static;
  transform: none;
  margin: 0;
  z-index: 4;
}

.hero-annot-pill svg,
.hero-annot-pill i {
  width: 9px;
  height: 9px;
  color: var(--brand-red, #FF351A);
  flex-shrink: 0;
}

@media (hover: hover) {
  .hero-annot-pill:hover {
    border-color: rgba(255, 53, 26, 0.65);
    box-shadow: inset 0 1px 1px rgba(255, 100, 60, 0.18);
  }
}

/* ── Desktop grid placement for labels ── */

/* ROW 1 — "Impactful" */
.annot-brand-strategy {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  position: static;
  transform: none;
  margin: 0;
}

.annot-ai-automation {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  align-self: center;
  position: static;
  transform: none;
  margin: 0;
}

/* ROW 2 — "BRAND & DIGITAL" */
.annot-growth {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  align-self: center;
  position: static;
  transform: none;
  margin: 0;
  max-width: 100px;
}

.annot-web-digital {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
  align-self: center;
  position: static;
  transform: none;
  margin: 0;
  z-index: 2;
  max-width: 100px;
}

/* ROW 3 — "Experiences." */
.annot-creative {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
  align-self: center;
  position: static;
  transform: none;
  margin: 0;
  max-width: 100px;
}

/* Narrow panel / Tablet: Hide Web & Digital first if space is tight */
@media (min-width: 768px) and (max-width: 1100px) {
  .annot-web-digital {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-annot-desktop-only {
    display: none !important;
  }
  .hero-heading-composition {
    grid-template-columns: 100px minmax(0, 390px) 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-annot-pill {
    animation: none !important;
    transition: none !important;
  }
}

/* Two Compact Actions in One Row */
.hero-cta-row,
.hero-dual-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 0;
  position: static;
  transform: none;
  z-index: 2;
  width: fit-content;
  line-height: 1;
}

/* Primary Action: White Liquid-Glass Capsule */
.hero-primary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 6px 0 18px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 242, 245, 0.90) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.80);
  color: #151821 !important;
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 1.5px 1.5px rgba(255, 255, 255, 1), 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 220ms cubic-bezier(0.2, 1, 0.3, 1), box-shadow 220ms ease;
  cursor: pointer;
}

.hero-primary-btn .arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #151821;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms ease, background 220ms ease;
}

.hero-primary-btn .arrow-circle svg,
.hero-primary-btn .arrow-circle i {
  width: 16px;
  height: 16px;
  color: #FFFFFF;
  stroke-width: 2.5;
  transition: transform 220ms ease;
}

.hero-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1.5px 1.5px rgba(255, 255, 255, 1), 0 12px 28px rgba(0, 0, 0, 0.35);
}

.hero-primary-btn:hover .arrow-circle {
  background: var(--brand-red, #FF351A);
  transform: translate(2px, -2px);
}

.hero-primary-btn:active {
  transform: scale(0.97);
}

/* Secondary Action: Text + Arrow with Underline Hover */
.hero-secondary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF !important;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 0;
  transition: color 220ms ease;
  cursor: pointer;
}

.hero-secondary-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--brand-red, #FF351A);
  transition: width 240ms ease;
}

.hero-secondary-btn .secondary-arrow {
  width: 15px;
  height: 15px;
  color: var(--brand-red, #FF351A);
  transition: transform 220ms ease;
}

.hero-secondary-btn:hover {
  color: var(--brand-red, #FF351A) !important;
}

.hero-secondary-btn:hover::after {
  width: 100%;
}

.hero-secondary-btn:hover .secondary-arrow {
  transform: translate(3px, -3px);
}

.hero-rating-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(244, 241, 228, 0.95);
}

.star-group {
  display: flex;
  gap: 3px;
}

.star-filled {
  width: 16px;
  height: 16px;
  fill: #ff2900;
  color: #ff2900;
}

/* Full Vertical Scale Superside 3-Stream Work Grid (Shifted Left with Soft Top & Bottom Blur Mask) */
.hero-image-col {
  position: absolute;
  top: 0;
  bottom: 0;
  right: max(60px, calc((100vw - 1720px) / 2 + 60px));
  width: 46%;
  max-width: 740px;
  height: 100%;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  z-index: 1;
}

.hero-grid-slider-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  height: 100%;
  padding: 0;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 100px, black calc(100% - 100px), transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100px, black calc(100% - 100px), transparent 100%);
}

.hero-slider-col {
  overflow: hidden;
  height: 100%;
}

.col-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: max-content;
}

.track-up {
  animation: moveColUp 72s linear infinite;
}

.track-down {
  animation: moveColDown 84s linear infinite;
}

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

@keyframes moveColUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes moveColDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.hero-work-card {
  width: 100%;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition-smooth);
}

.hero-work-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.hero-work-card:hover {
  transform: scale(1.04);
  border-color: var(--brand-red);
  box-shadow: 0 16px 40px rgba(255, 41, 0, 0.4);
}

.hero-work-card:hover img {
  transform: scale(1.08);
}

/* Floating Overlapping Hero Cards Row (5 Cards) */
.hero-floating-cards-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
  transform: translateY(40px);
}

.hero-card {
  background: rgba(244, 241, 228, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 20px;
  color: #000000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(255, 41, 0, 0.25);
}

/* Card 1: Tags */
.card-tags {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.tag-chip {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--bg-subtle);
  color: #000000;
  font-weight: 500;
}

.tag-chip.tag-accent {
  background: var(--brand-red);
  color: #ffffff;
  font-weight: 700;
}

.card-bottom-label {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}

.card-bottom-label span {
  font-size: 12px;
  color: var(--fg-muted);
}

.large-num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  color: #000000;
}

/* Card 2: Metrics & Avatar */
.card-metrics {
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.metric-portrait {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.metric-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-badge-overlay {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(244, 241, 228, 0.95);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.m-row {
  display: flex;
  flex-direction: column;
}

.m-label {
  font-size: 10px;
  color: #4a463a;
}

.green-pct {
  color: var(--brand-red);
  font-weight: 700;
}

.m-val {
  font-size: 13px;
  font-weight: 700;
  color: #000000;
}

/* Card 3: Dark Card */
.card-dark {
  background: #000000 !important;
  color: #f4f1e4 !important;
  border-color: rgba(255, 41, 0, 0.3) !important;
  display: flex;
  align-items: center;
}

.card-dark-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.red-dot-pulse {
  display: inline-block;
  color: #ff2900;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Card 4: Finance Widget */
.card-finance {
  display: flex;
  flex-direction: column;
}

.finance-header {
  margin-bottom: 8px;
}

.f-sub {
  font-size: 11px;
  color: #4a463a;
}

.f-total {
  font-size: 18px;
  font-weight: 800;
  color: #000000;
}

.f-max {
  font-size: 12px;
  color: #858072;
  font-weight: 400;
}

.progress-bar-container {
  height: 6px;
  background: #e4dfce;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: var(--brand-red);
  border-radius: 100px;
}

.transaction-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tx-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}

.tx-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tx-icon {
  width: 14px;
  height: 14px;
  color: var(--brand-red);
}

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

.tx-info span {
  font-size: 9px;
  color: #858072;
}

.tx-amount {
  font-weight: 700;
  color: #000000;
}

/* Card 5: App Notifications */
.card-apps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  background: linear-gradient(135deg, rgba(244, 241, 228, 0.95), rgba(255, 41, 0, 0.2)) !important;
}

.app-pill-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.app-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
}

.app-icon {
  width: 16px;
  height: 16px;
  color: var(--brand-red);
}

.live-badge {
  margin-left: auto;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 100px;
  background: var(--brand-red);
  color: #ffffff;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   05-B. INTRODUCTORY STATISTICS SECTION (Pure White Minimal Editorial Layout)
   -------------------------------------------------------------------------- */
.intro-stats-section {
  background: #ffffff !important;
  color: #0b0f17;
  padding: 130px 24px 110px 24px;
  position: relative;
  z-index: 5;
  border-top: none;
  margin-top: 0;
}

.intro-stats-container {
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
}

.intro-copy-block {
  max-width: 920px;
}

.section-badge-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-red);
}

.badge-text {
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #646e7a;
  text-transform: uppercase;
}

.editorial-intro-text {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #0b0f17;
}

.line-mask {
  overflow: hidden;
  display: block;
  padding-bottom: 2px;
}

.line-inner {
  display: block;
  will-change: transform, opacity;
}

.highlight-orange-wipe {
  position: relative;
  display: inline-block;
  color: var(--brand-red);
  font-weight: 800;
}

.highlight-orange-wipe .wipe-inner {
  display: inline-block;
  will-change: transform, clip-path, opacity;
}

/* Suppress any unwanted cyan or blue dots */
.stat-editorial-card .dot-accent,
.blue-dot, .cyan-dot {
  display: none !important;
}

/* Asymmetric Editorial Statistics Grid */
.stats-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  align-items: start;
  margin-top: 90px;
}

.stat-editorial-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Asymmetric Vertical Positioning on Desktop */
@media (min-width: 1025px) {
  .stat-offset-1 {
    transform: translateY(0);
  }

  .stat-offset-2 {
    transform: translateY(48px);
  }

  .stat-offset-3 {
    transform: translateY(18px);
  }
}

.stat-number-wrap {
  margin-bottom: 12px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 92px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  color: #0b0f17;
  text-shadow: none !important;
  filter: none !important;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: #0b0f17;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.stat-subtext {
  font-size: 14px;
  line-height: 1.6;
  color: #586270;
  max-width: 320px;
}

/* Mobile Responsive Stacking */
@media (max-width: 1024px) {
  .intro-stats-section {
    padding: 80px 20px 60px 20px !important;
  }

  .stats-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
    margin-top: 50px !important;
  }

  .stat-editorial-card {
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   CINEMATIC PLAY REEL SECTION (GSAP Scroll-Expanded Showreel)
   -------------------------------------------------------------------------- */
.play-reel-section {
  background: #ffffff !important;
  color: #0b0f17;
  padding: 100px 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.play-reel-container {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}

.reel-description {
  font-family: var(--font-main);
  font-size: clamp(13px, 1.4vw, 16px);
  color: #586270;
  text-align: center;
  max-width: 580px;
  margin-bottom: 36px;
  transition: color 0.4s ease;
  z-index: 10;
  position: relative;
}

/* Same Horizontal Stage for PLAY | VIDEO | REEL */
.reel-stage-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
  z-index: 10;
}

.reel-word {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 130px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -3px;
  color: #0b0f17;
  transition: color 0.4s ease;
  will-change: transform, color;
  pointer-events: none;
  user-select: none;
  z-index: 12;
}

/* Centered Video Wrapper Card */
.reel-video-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(340px, 32vw, 440px);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #05070a;
  box-shadow: none !important;
  z-index: 5;
  will-change: width, height, border-radius, transform;
}

.reel-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Play / Pause Toggle Button */
.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  color: #0b0f17;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 12;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.reel-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #ffffff;
}

.reel-play-btn:focus-visible {
  outline: 3px solid var(--brand-red);
  outline-offset: 4px;
}

.btn-icon-play,
.btn-icon-pause {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

.hidden {
  display: none !important;
}

/* Error Fallback */
.reel-error-msg {
  position: absolute;
  inset: 0;
  background: #05070a;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 15;
  font-size: 15px;
  font-weight: 600;
}

.reel-error-msg i {
  width: 32px;
  height: 32px;
  color: var(--brand-red);
}

/* Reduced Motion Mode */
@media (prefers-reduced-motion: reduce) {
  .play-reel-section {
    min-height: auto;
    padding: 80px 24px;
  }

  .reel-video-wrapper {
    width: 100% !important;
    max-width: 1100px;
    height: auto !important;
    aspect-ratio: 16 / 9;
    border-radius: 16px !important;
  }
}

/* --------------------------------------------------------------------------
   06. ABOUT US SECTION (4-Card Bento Grid)
   -------------------------------------------------------------------------- */
.about-section {
  padding: 140px 24px 100px;
  max-width: 1720px;
  margin: 0 auto;
  background: #ffffff !important;
}

.section-tag-row {
  margin-bottom: 16px;
}

.section-bullet {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.about-main-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg-primary);
  max-width: 960px;
  margin-bottom: 56px;
}

.inline-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 4px;
}

.badge-black {
  background: #000000;
  color: #f4f1e4;
}

.badge-red {
  background: var(--brand-red);
  color: #ffffff;
}

.inline-badge i {
  width: 22px;
  height: 22px;
}

/* Bento Grid */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bento-card {
  border-radius: 28px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

.bento-light {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.bento-red {
  background: var(--brand-red);
  color: #ffffff;
  box-shadow: 0 16px 40px var(--red-glow);
}

.bento-dark-nature {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?auto=format&fit=crop&w=800&q=80') center/cover;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 41, 0, 0.2);
}

.bento-top-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-sm {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--bg-subtle);
  color: var(--fg-muted);
}

.bento-stat-bottom {
  margin-top: 24px;
}

.bento-label {
  font-size: 13px;
  color: var(--fg-muted);
}

.bento-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--fg-primary);
  line-height: 1.1;
}

.bento-huge-number {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
  margin: 12px 0;
}

.bento-subtitle {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.bento-desc {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   07. DUAL-ROW CLIENT LOGOS SLIDER (Matching Reference Screenshot)
   - Headline: "Creative support for 50+ top global brands"
   - Row 1: Slides RIGHT
   - Row 2: Slides LEFT
   - Edge Fade Mask
   -------------------------------------------------------------------------- */
.client-slider-section {
  padding: 64px 0 68px 0 !important;
  background: #ffffff !important;
  border-top: none !important;
  border-bottom: none !important;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

.client-slider-header {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 24px;
}

.client-slider-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: #070B0D;
  letter-spacing: -0.01em;
  margin: 0;
}

.dual-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.slider-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.slider-track {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
  will-change: transform;
}

.track-right {
  animation: slideRight 80s linear infinite;
}

.track-left {
  animation: slideLeft 80s linear infinite;
}

@media (hover: hover) {
  .client-slider-section:hover .slider-track {
    animation-play-state: paused !important;
  }
}

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

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

/* Reference Card Pill Container */
.ref-client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 188px;
  padding: 0 24px;
  border-radius: 14px !important;
  background: #F2F2F2 !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.ref-client-card:hover {
  background: #E6E6E6 !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-2px);
}

.ref-client-logo {
  height: auto;
  max-height: 36px;
  width: auto;
  max-width: 136px;
  object-fit: contain;
  filter: brightness(0) opacity(0.85);
  transition: filter 300ms ease, transform 300ms ease;
}

.ref-client-card:hover .ref-client-logo {
  filter: brightness(0) opacity(1);
  transform: scale(1.04);
}

/* Mobile Responsive Layout (< 768px) */
@media (max-width: 767px) {
  .client-slider-section {
    padding: 44px 0 48px 0 !important;
  }

  .client-slider-header {
    margin-bottom: 24px;
  }

  /* Keep both counter-moving marquee rows on mobile. */
  .dual-slider-wrapper .slider-row:nth-child(2) {
    display: flex !important;
  }

  .ref-client-card {
    height: 62px !important;
    min-width: 150px !important;
    padding: 0 16px !important;
    border-radius: 12px !important;
  }

  .ref-client-logo {
    height: auto !important;
    max-height: 29px !important;
    max-width: 112px !important;
  }
}

/* Prefers Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
  .slider-track {
    animation: none !important;
  }
  .dual-slider-wrapper {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* --------------------------------------------------------------------------
   CINEMATIC PLAY REEL SECTION (Clean 3-Column CSS Grid Architecture)
   -------------------------------------------------------------------------- */
.reel-scroll {
  position: relative;
  width: 100%;
  height: 260vh;
  background: #ffffff !important;
  color: #0b0f17;
  z-index: 5;
  box-sizing: border-box;
}

.reel-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  z-index: 20;
}

/* --------------------------------------------------------------------------
   CINEMATIC PLAY REEL SECTION (Content-Sized Flex Row Architecture)
   -------------------------------------------------------------------------- */
.reel-scroll {
  position: relative;
  width: 100%;
  height: 260vh;
  background: #ffffff !important;
  color: #0b0f17;
  z-index: 5;
  box-sizing: border-box;
}

.reel-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  z-index: 20;
}

.reel-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
}

.reel-description {
  position: relative;
  margin: 0;
  max-width: 580px;
  text-align: center;
  font-family: var(--font-main);
  font-size: clamp(13px, 1.4vw, 16px);
  color: #586270;
  transition: color 0.4s ease, opacity 0.4s ease;
  z-index: 25;
  pointer-events: none;
}

.reel-composition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 36px);
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.reel-video-frame {
  width: clamp(260px, 25vw, 440px);
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #05070a;
  box-shadow: none !important;
  transform-origin: center center;
  flex-shrink: 0;
  z-index: 1;
  will-change: width, height, border-radius;
}

.reel-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.reel-play,
.reel-word {
  position: relative;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 110px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  color: #0b0f17;
  z-index: 25;
  pointer-events: none;
  user-select: none;
  flex-shrink: 0;
}

/* Ensure next section (Pre-Footer CTA) sits above Play Reel unpinned stage */
.pre-footer-cta-strip {
  position: relative;
  z-index: 30;
}

/* Sticky Navbar Layering */
.main-navbar-wrapper {
  z-index: 1000 !important;
}

@media (max-width: 767px) {
  .reel-scroll {
    height: auto !important;
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .reel-stage {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .reel-center {
    gap: 16px;
    padding: 0 12px;
  }
  .reel-composition {
    gap: clamp(8px, 2vw, 16px);
  }
  .reel-description {
    font-size: clamp(12px, 3.2vw, 14px);
  }
  .reel-play,
  .reel-word {
    font-size: clamp(24px, 7.5vw, 42px);
  }
  .reel-video-frame {
    width: min(160px, 100%);
  }
}

/* --------------------------------------------------------------------------
   EDITORIAL VISION SECTION (The Future of Creative Work)
   -------------------------------------------------------------------------- */
.editorial-vision-section {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  color: var(--text-primary, #090D11);
  padding: 130px 24px;
  z-index: 30;
  box-sizing: border-box;
  overflow: hidden;
  transition: background-color 300ms ease, color 300ms ease;
}

[data-theme="dark"] .editorial-vision-section {
  background: var(--page-bg, #090B0C);
  color: var(--text-primary, #F7F7F2);
}

.editorial-container {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(60px, 6.5vw, 100px);
  position: relative;
  z-index: 2;
}

.editorial-content-col {
  flex: 1 1 54%;
  max-width: 56%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.editorial-image-col {
  flex: 1 1 42%;
  max-width: 44%;
  width: 100%;
}

.editorial-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  width: 100%;
}

.editorial-label {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--text-secondary, #626A70);
  white-space: nowrap;
}

[data-theme="dark"] .editorial-label {
  color: #A4A9AC;
}

.editorial-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--border-color, rgba(9, 13, 17, 0.12));
}

[data-theme="dark"] .editorial-line {
  background: rgba(255, 255, 255, 0.12);
}

.editorial-heading {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.5vw, 66px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: var(--text-primary, #090D11);
  margin: 0 0 28px 0;
}

[data-theme="dark"] .editorial-heading {
  color: #F7F7F2;
}

.serif-italic {
  font-family: 'Playfair Display', 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.editorial-subheading {
  font-family: var(--font-main);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-primary, #090D11);
  margin: 0 0 16px 0;
  max-width: 540px;
}

[data-theme="dark"] .editorial-subheading {
  color: #F7F7F2;
}

.editorial-body {
  font-family: var(--font-main);
  font-size: clamp(15px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary, #626A70);
  margin: 0 0 36px 0;
  max-width: 520px;
}

[data-theme="dark"] .editorial-body {
  color: #A4A9AC;
}

.editorial-image-frame {
  position: relative;
  width: 100%;
  height: clamp(520px, 60vh, 700px);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
}

.editorial-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 16px;
  transform-origin: center center;
}

@media (max-width: 1024px) {
  .editorial-vision-section {
    padding: 80px 24px;
  }
  .editorial-container {
    flex-direction: column;
    gap: 48px;
  }
  .editorial-content-col,
  .editorial-image-col {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .editorial-image-frame {
    height: clamp(400px, 55vh, 520px);
  }
}

@media (max-width: 767px) {
  .editorial-vision-section {
    padding: 64px 20px;
  }
  .editorial-container {
    gap: 40px;
  }
  .editorial-label-row {
    margin-bottom: 18px;
  }
  .editorial-label {
    font-size: 12px;
    letter-spacing: 1.8px;
  }
  .editorial-heading {
    font-size: clamp(34px, 9vw, 46px);
    letter-spacing: -1px;
    margin-bottom: 20px;
  }
  .editorial-subheading {
    font-size: 17px;
    margin-bottom: 14px;
  }
  .editorial-body {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .editorial-image-frame {
    height: clamp(360px, 50vh, 460px);
    border-radius: 14px;
  }
}

.service-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-red);
}

.service-head h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  flex-grow: 1;
}

.service-toggle-icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-fast);
}

.service-item.active .service-toggle-icon {
  transform: rotate(45deg);
  color: var(--brand-red);
}

.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), opacity var(--transition-smooth);
  opacity: 0;
}

.service-item.active .service-body {
  max-height: 300px;
  opacity: 1;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.service-body p {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
}

.service-list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '•';
  color: var(--brand-red);
  font-size: 18px;
}

/* Drawer Backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-backdrop.active, .drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   SUPERSIDE & DZ!NR FULLSCREEN LIQUID-GLASS MOBILE NAVIGATION OVERLAY
   ========================================================================== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 99999;
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 53, 26, .22), transparent 38%),
    radial-gradient(circle at 92% 72%, rgba(255, 112, 34, .17), transparent 42%),
    radial-gradient(circle at 24% 88%, rgba(37, 71, 82, .20), transparent 44%),
    rgba(5, 7, 12, 0.94);
  backdrop-filter: blur(30px) saturate(140%);
  -webkit-backdrop-filter: blur(30px) saturate(140%);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Prevent Body Scroll when Menu is Open */
body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

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

/* Liquid-Glass Ambient Glowing Blobs */
.mobile-menu-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.mobile-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: screen;
  opacity: 0.55;
  will-change: transform;
  animation: blobLiquidMove 18s ease-in-out infinite alternate;
}

.mobile-blob.blob-1 {
  width: 380px;
  height: 380px;
  top: -10%;
  left: -15%;
  background: radial-gradient(circle, rgba(255, 41, 0, 0.5) 0%, rgba(244, 48, 15, 0.2) 60%, transparent 80%);
  animation-duration: 20s;
}

.mobile-blob.blob-2 {
  width: 420px;
  height: 420px;
  bottom: 5%;
  right: -20%;
  background: radial-gradient(circle, rgba(255, 65, 0, 0.45) 0%, rgba(200, 234, 128, 0.2) 60%, transparent 80%);
  animation-duration: 24s;
  animation-delay: -6s;
}

.mobile-blob.blob-3 {
  width: 320px;
  height: 320px;
  top: 45%;
  left: 20%;
  background: radial-gradient(circle, rgba(244, 240, 15, 0.3) 0%, rgba(255, 41, 0, 0.2) 50%, transparent 80%);
  animation-duration: 16s;
  animation-delay: -12s;
}

@keyframes blobLiquidMove {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(45px, -35px) scale(1.15); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Inner Liquid-Glass Layout Container */
.menu-overlay-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 5vw, 40px) clamp(24px, 6vw, 44px);
  box-sizing: border-box;
  padding-top: max(clamp(24px, 5vw, 40px), env(safe-area-inset-top));
  padding-bottom: max(clamp(24px, 5vw, 40px), env(safe-area-inset-bottom));
}

/* Header Top Bar: Full Desktop Logo + Clean Glass Circular Close Button */
.menu-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-nav-logo .brand-header-logo-full {
  height: clamp(26px, 6vw, 32px);
  width: auto;
}

.menu-close-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none !important;
  filter: none !important;
  drop-shadow: none !important;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.menu-close-btn:focus-visible {
  background: rgba(255, 41, 0, 0.8);
  border-color: var(--brand-red);
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
  box-shadow: none !important;
}

@media (hover: hover) {
  .menu-close-btn:hover {
    background: rgba(255, 41, 0, 0.8);
    border-color: var(--brand-red);
    transform: rotate(90deg) scale(1.05);
    box-shadow: none !important;
  }
}

.menu-close-btn svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  filter: none !important;
}

/* Content Area: Center Left Numbered Navigation Items (Flat Sharp Styling - No Shadows) */
.menu-overlay-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  margin: 20px 0;
}

.overlay-nav-links {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.5vh, 24px);
}

.nav-overlay-item {
  display: flex;
  align-items: baseline;
  gap: clamp(12px, 3vw, 20px);
  text-decoration: none;
  width: 100%;
  padding: 6px 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease, color var(--transition-fast);
}

.menu-overlay.active .nav-overlay-item {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay.active .nav-overlay-item:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .nav-overlay-item:nth-child(2) { transition-delay: 0.15s; }
.menu-overlay.active .nav-overlay-item:nth-child(3) { transition-delay: 0.2s; }
.menu-overlay.active .nav-overlay-item:nth-child(4) { transition-delay: 0.25s; }
.menu-overlay.active .nav-overlay-item:nth-child(5) { transition-delay: 0.3s; }

.item-num {
  display: none !important;
  font-family: var(--font-mono, monospace);
  font-size: clamp(12px, 3.2vw, 15px);
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(244, 241, 228, 0.6);
  text-shadow: none !important;
  filter: none !important;
  transition: color var(--transition-fast);
}

.item-text {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 54px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
  color: rgba(244, 241, 228, 0.7);
  text-shadow: none !important;
  filter: none !important;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

/* Touch/Click Selected State: Sharp Flat Anidam Orange-Red (No Shadows) */
.nav-overlay-item.selected .item-text,
.nav-overlay-item.selected .item-num,
.nav-overlay-item:active .item-text,
.nav-overlay-item:active .item-num,
.nav-overlay-item.active .item-text,
.nav-overlay-item.active .item-num {
  color: var(--brand-red) !important;
  text-shadow: none !important;
  filter: none !important;
}

.nav-overlay-item.selected .item-text,
.nav-overlay-item:active .item-text,
.nav-overlay-item.active .item-text {
  transform: translateX(6px);
}

/* Desktop Hover State (Disabled on touch devices to avoid sticky mobile hover) */
@media (hover: hover) {
  .nav-overlay-item:hover .item-text {
    color: var(--brand-red);
    text-shadow: none !important;
    filter: none !important;
    transform: translateX(6px);
  }
  .nav-overlay-item:hover .item-num {
    color: var(--brand-red);
    text-shadow: none !important;
    filter: none !important;
  }
}

.nav-overlay-item:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 4px;
  border-radius: 4px;
  box-shadow: none !important;
}

/* Bottom Footer Area */
.menu-overlay-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quick-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(244, 241, 228, 0.45);
  text-transform: uppercase;
}

.quick-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(244, 241, 228, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.quick-link:hover {
  color: var(--brand-red);
}

.social-quick {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(244, 241, 228, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.social-link:hover {
  color: #ffffff;
}

/* Prefers Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
  .mobile-blob {
    animation: none !important;
  }

  .nav-overlay-item {
    transition: opacity 0.2s ease !important;
    transform: none !important;
  }
}

/* Drawer Panel */
.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  height: 100%;
  background: var(--bg-card);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
}

.drawer-backdrop.active .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.drawer-header h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
}

.drawer-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-medium);
  background: var(--bg-subtle);
  color: var(--fg-primary);
  font-family: inherit;
  font-size: 14px;
}

.submit-inquiry-btn {
  background: var(--brand-red);
  color: #ffffff;
  padding: 14px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: 0 6px 20px var(--red-glow);
}

.form-success-msg {
  display: none;
  background: var(--brand-red);
  color: #ffffff;
  padding: 16px;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
}

.form-success-msg.active { display: flex; }

/* Modal Content */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 700px;
  background: var(--bg-card);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-smooth);
}

.modal-backdrop.active .modal-content {
  transform: translate(-50%, -50%) scale(1);
}

.modal-close-btn, .menu-close-btn, .drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.main-footer {
  background: #000000;
  color: #f4f1e4;
  padding: 80px 24px 40px;
}

/* Keep the shared inner-page footer visually identical to the home footer. */
.footer-master {
  background: #07090A !important;
  color: #F7F7F2 !important;
  position: relative;
  overflow: hidden;
  padding: 80px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-master::after {
  content: "ANIDAM";
  position: absolute;
  left: 50%;
  bottom: -0.12em;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 240px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.footer-main-container {
  width: min(1380px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-master .footer-logo-link {
  display: inline-flex;
  margin-bottom: 20px;
}

.footer-master .footer-logo-img {
  display: block;
  width: min(180px, 100%);
  height: auto;
}

.footer-master .footer-brand-desc {
  max-width: 340px;
  margin: 0 0 24px;
  color: #A4A9AC;
  font-size: 15px;
  line-height: 1.65;
}

.footer-master .footer-contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-master .footer-contact-item svg {
  width: 17px;
  height: 17px;
}

.footer-master .footer-bottom-row {
  position: relative;
  z-index: 3;
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-master .footer-copyright {
  margin: 0;
  color: #737B80;
  font-size: 13px;
}

/* Shared inner-page pre-footer CTA uses the home page's dark/orange treatment. */
.pre-footer-cta-strip .pre-footer-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.pre-footer-cta-strip .pre-footer-title {
  margin: 0 0 12px;
  color: #F7F7F2 !important;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.pre-footer-cta-strip .pre-footer-sub {
  margin: 0 auto 24px;
  color: rgba(247, 247, 242, .66) !important;
  font-size: 15px;
}

.pre-footer-cta-strip .pre-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #FF351A;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.footer-container {
  max-width: 1720px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: #a39f93;
  margin-top: 16px;
  max-width: 340px;
}

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

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--brand-red);
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: #a39f93;
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.footer-col a:hover { color: #f4f1e4; }

.footer-bottom {
  border-top: 1px solid rgba(244, 241, 228, 0.12);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #858072;
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --------------------------------------------------------------------------
   12. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .hero-floating-cards-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .desktop-nav-menu, .nav-cta-btn { display: none !important; }
  .hamburger-btn { display: block !important; }

  /* Hero Section Mobile Border Radius */
  .hero-section,
  .hero-webgl-wrapper {
    border-radius: 0 0 16px 16px !important;
  }

  /* Mobile Background Position Adjustment for Abstract Orange Torus */
  .hero-bg-animated-image {
    background-position: 85% center !important;
  }

  /* Hero Section Mobile & Tablet Layout (Strict Vertical Stacking: Text UP, Slider DOWN) */
  .hero-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding-top: 100px !important;
    padding-bottom: 40px !important;
    overflow: hidden !important;
  }

  .hero-content-container {
    order: 1 !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    z-index: 10 !important;
  }

  .hero-grid {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }

  .hero-text-col {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .hero-subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-action-group {
    display: flex !important;
    justify-content: center !important;
  }

  .hero-cta-pill {
    width: 100% !important;
    max-width: 320px !important;
    justify-content: center !important;
  }

  .hero-rating-box {
    justify-content: center !important;
    margin-bottom: 16px !important;
  }

  /* Work Cards Mobile Slider (Horizontal Edge-to-Edge Carousel DOWN Below Text - 2 LINES TALL PORTRAIT SIZE) */
  .hero-image-col {
    order: 2 !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 355px !important;
    margin: 20px 0 0 0 !important;
    overflow: hidden !important;
    z-index: 5 !important;
    clear: both !important;
  }

  .hero-grid-slider-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px;
    height: 100%;
    padding: 0;
    mask-image: linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
  }

  .hero-slider-col {
    width: 100%;
    height: 165px !important;
    overflow: hidden;
  }

  .hero-slider-col:nth-child(3) {
    display: none !important;
  }

  .col-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 14px;
    width: max-content;
    height: 100%;
  }

  .hero-work-card {
    width: 130px !important;
    height: 165px !important;
    flex-shrink: 0;
    border-radius: 16px;
  }

  .hero-work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .track-up {
    animation: slideHorizontalLeft 35s linear infinite;
  }

  .track-down {
    animation: slideHorizontalRight 40s linear infinite;
  }

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

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

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

@media (max-width: 580px) {
  .hero-floating-cards-row {
    grid-template-columns: 1fr;
  }
  .about-cards-grid {
    grid-template-columns: 1fr;
  }
  .estimator-summary-box {
    flex-direction: column;
    gap: 16px;
  }
}

/* --------------------------------------------------------------------------
   13. DESKTOP HERO RESTORATION (min-width: 1025px)
   -------------------------------------------------------------------------- */
@media (min-width: 1025px) {
  .hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1080px;
    display: flex;
    align-items: center;
    border-radius: 0 0 24px 24px !important;
    overflow: hidden !important;
  }

  .hero-content-container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 100px 24px 40px 24px;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    position: relative;
    text-align: left;
  }

  .hero-text-col {
    position: relative;
    z-index: 10;
    max-width: 680px;
    text-align: left;
  }

  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-action-group {
    display: block;
  }

  .hero-cta-pill {
    width: auto;
    max-width: none;
  }

  .hero-rating-box {
    justify-content: flex-start;
  }

  .hero-image-col {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    right: max(60px, calc((100vw - 1720px) / 2 + 60px)) !important;
    left: auto !important;
    width: 46% !important;
    max-width: 740px !important;
    height: 100% !important;
    overflow: hidden !important;
    margin: 0 !important;
    z-index: 1 !important;
  }

  .hero-grid-slider-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    flex-direction: row !important;
    gap: 16px !important;
    height: 100% !important;
    padding: 0 !important;
    overflow: hidden !important;
    mask-image: linear-gradient(to bottom, transparent 0%, black 100px, black calc(100% - 100px), transparent 100%) !important;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100px, black calc(100% - 100px), transparent 100%) !important;
  }

  .hero-slider-col {
    width: auto !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  .col-track {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    min-height: max-content !important;
    width: 100% !important;
    height: auto !important;
  }

  .hero-work-card {
    width: 100% !important;
    height: auto !important;
    border-radius: 20px !important;
  }

  .track-up {
    animation: moveColUp 72s linear infinite !important;
  }

  .track-down {
    animation: moveColDown 84s linear infinite !important;
  }
}

/* --------------------------------------------------------------------------
   MOBILE CLIENT MARQUEE SINGLE-ROW & SPEED CONTROL (max-width: 767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .dual-slider-wrapper {
    gap: 12px !important;
  }

  .row-slide-left {
    display: flex !important;
  }

  .slider-row {
    width: 100% !important;
    overflow: hidden !important;
    white-space: nowrap !important;
  }

  .slider-track {
    gap: 32px !important;
    animation-duration: 72s !important;
  }

  .ref-client-card {
    height: 62px !important;
    min-width: 150px !important;
    padding: 0 16px !important;
  }

  .ref-client-logo {
    height: auto !important;
    max-height: 29px !important;
    max-width: 112px !important;
  }
}

/* --------------------------------------------------------------------------
   PRE-FOOTER CTA STRIP & EDITORIAL DARK FOOTER WITH PARALLAX WORDMARK
   -------------------------------------------------------------------------- */
.pre-footer-cta-strip {
  background: #070b0c;
  padding: 60px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px 24px 0 0;
  position: relative;
  z-index: 5;
  margin-top: 0 !important;
}

.pre-footer-container {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.pre-footer-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
}

.cta-pill-orange {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--brand-red);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-pill-orange:hover {
  transform: translateY(-2px);
  background: #e02400;
}

.arrow-badge-white {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Footer Container */
.main-footer {
  background: #07090A !important;
  color: #F7F7F2;
  position: relative;
  overflow: hidden;
  padding: 80px 24px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-container {
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 70px;
}

.footer-logo-wrap {
  margin-bottom: 20px;
}

.footer-brand-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: #A4A9AC;
  max-width: 340px;
  margin-bottom: 24px;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #92999D;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 280ms ease, transform 280ms ease;
}

.footer-contact-item i {
  color: #92999D;
  transition: color 280ms ease;
}

.footer-contact-item:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-contact-item:hover i {
  color: #FF351A;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FF351A !important;
  margin-bottom: 24px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-list a {
  position: relative;
  display: inline-block;
  color: #92999D;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 280ms cubic-bezier(0.22, 1, 0.36, 1), transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-links-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FF351A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-links-list a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-links-list a:hover::after {
  transform: scaleX(1);
}

.footer-social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-social-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #92999D;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 280ms ease;
}

.footer-social-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FF351A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.social-arrow-icon {
  width: 14px;
  height: 14px;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), color 280ms ease;
}

.footer-social-links a:hover {
  color: #FFFFFF;
}

.footer-social-links a:hover::after {
  transform: scaleX(1);
}

.footer-social-links a:hover .social-arrow-icon {
  transform: translate(2px, -2px);
  color: #FF351A;
}

/* Newsletter Box */
.footer-newsletter-box {
  background: #111516;
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 24px;
  border-radius: 16px;
}

.newsletter-title {
  font-size: 16px;
  font-weight: 700;
  color: #F7F7F2;
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 10px 18px;
  color: #FFFFFF;
  font-size: 13px;
  outline: none;
  transition: border-color 200ms ease;
}

.newsletter-input:focus {
  border-color: #FF351A;
}

.newsletter-submit-btn {
  background: #FF351A;
  color: #FFFFFF;
  border: none;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 250ms ease;
}

.newsletter-submit-btn:hover {
  background: #E02B12;
}

.newsletter-subtext {
  font-size: 12px;
  color: #737B80;
  margin: 0;
}

.newsletter-feedback {
  font-size: 12px;
  margin-top: 8px;
  color: #FF351A;
}

/* Bottom Bar */
.footer-bottom-bar {
  background: #0B0E0F;
  margin: 70px -24px 0 -24px;
  padding: 28px 160px 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
  z-index: 5;
}

.copyright-text {
  font-size: 13px;
  color: #737B80;
}

.back-to-top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #92999D;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 250ms ease;
}

.back-to-top-link i {
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1), color 250ms ease;
}

.back-to-top-link:hover {
  color: #FFFFFF;
}

.back-to-top-link:hover i {
  transform: translateY(-4px);
  color: #FF351A;
}

/* Large Background ANIDAM Wordmark */
.footer-bg-wordmark-container {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  overflow: hidden;
}

.footer-bg-wordmark {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 240px);
  font-weight: 900;
  letter-spacing: -4px;
  color: rgba(255, 255, 255, 0.035) !important;
  line-height: 0.8;
  display: inline-block;
  will-change: transform;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .pre-footer-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-newsletter-box .newsletter-form {
    flex-direction: column;
  }
  .pre-footer-cta-strip {
    border-radius: 16px 16px 0 0;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding: 24px 112px 24px 48px;
  }
}

/* ================================================================
   NEW OUR SERVICES SECTION — STACKED CARDS EXPERIENCE
================================================================ */
/* ================================================================
   OUR SERVICES SECTION — DESKTOP STICKY STACK & MOBILE FLOW
================================================================ */
.services-section {
  position: relative;
  background-color: #070B0E !important;
  color: #FFFFFF !important;
  padding: 120px 0 72px 0 !important;
  margin-bottom: 0 !important;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
  z-index: 5;
}

/* Centered Desktop Container & Layout */
.services-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.services-layout,
.services-grid {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 58%);
  align-items: start;
  gap: clamp(48px, 7vw, 120px);
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

/* Left Column: Sticky Intro Column (42%) */
.services-intro {
  grid-column: 1;
  position: sticky;
  top: 120px;
  align-self: start;
  height: fit-content;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.services-label-tag,
.services-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF351A;
}

.services-label-tag .label-dot,
.services-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF351A;
  box-shadow: 0 0 10px rgba(255, 53, 26, 0.8);
}

.services-heading,
.services-intro h2 {
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin: 0;
}

.services-subtext,
.services-intro p {
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.64);
  max-width: 440px;
  margin: 0;
}

.services-progress-box,
.services-progress {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 7px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.services-progress-box::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF351A;
  box-shadow: 0 0 8px rgba(255, 53, 26, 0.8);
  flex-shrink: 0;
}

.progress-current,
.services-progress .current {
  font-size: 14px;
  color: #FF351A;
  transition: color 200ms ease;
}

.progress-separator,
.progress-total,
.services-progress span:not(.current) {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Right Column: Cards Stack (58%) */
.services-cards,
.services-card-stack {
  grid-column: 2;
  width: 100%;
  max-width: 590px;
  justify-self: end;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Service Card Base Style — Compact Horizontal Content Card (#0B1015) */
.service-stacked-card {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 330px;
  border-radius: 20px;
  background: #0B1015 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
  padding: 32px;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 0;
  will-change: opacity, transform;
  transition: background 350ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 350ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 350ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-stacked-card:last-child {
  margin-bottom: 0;
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;
}

.card-number {
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FF391E;
  transition: color 350ms ease;
}

/* Small 42-46px rounded-square icon container at top-right */
.card-icon-wrap {
  width: 44px !important;
  height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: background 350ms ease, border-color 350ms ease;
}

/* Small 20-22px icon inside container */
.card-icon-wrap svg,
.card-icon-wrap i,
.card-icon-svg {
  width: 21px !important;
  height: 21px !important;
  max-width: 21px !important;
  max-height: 21px !important;
  min-width: 21px !important;
  min-height: 21px !important;
  color: rgba(255, 255, 255, 0.75);
  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 1.8;
  flex-shrink: 0;
  object-fit: contain;
  transition: color 350ms ease, stroke 350ms ease;
}

.card-title {
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 12px 0 10px 0;
  padding-right: 16px;
  transition: color 350ms ease;
}

.card-description {
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 18px 0;
  transition: color 350ms ease, opacity 350ms ease;
}

.card-capabilities-wrapper {
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 350ms ease;
}

.card-capabilities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-capabilities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 350ms ease;
}

.bullet-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF391E;
  flex-shrink: 0;
  transition: background 350ms ease;
}

/* Active Card — Subtle dark orange/brown gradient */
.service-stacked-card.active,
.service-stacked-card.is-active {
  background: linear-gradient(
    135deg,
    rgba(255, 57, 30, 0.16) 0%,
    rgba(255, 57, 30, 0.07) 45%,
    #0B1015 100%
  ) !important;
  border: 1px solid rgba(255, 55, 30, 0.35) !important;
  box-shadow:
    0 18px 45px rgba(255, 57, 30, 0.14),
    0 0 24px rgba(255, 57, 30, 0.08) !important;
  z-index: 4;
}

.service-stacked-card.active .card-number,
.service-stacked-card.is-active .card-number {
  color: #FF391E !important;
}

.service-stacked-card.active .card-icon-wrap,
.service-stacked-card.is-active .card-icon-wrap {
  background: rgba(255, 57, 30, 0.16) !important;
  border-color: rgba(255, 57, 30, 0.38) !important;
}

.service-stacked-card.active .card-icon-wrap svg,
.service-stacked-card.is-active .card-icon-wrap svg,
.service-stacked-card.active .card-icon-svg,
.service-stacked-card.is-active .card-icon-svg {
  color: #FF391E !important;
  stroke: #FF391E !important;
}

.service-stacked-card.active .card-title,
.service-stacked-card.is-active .card-title {
  color: #FFFFFF !important;
}

.service-stacked-card.active .card-description,
.service-stacked-card.is-active .card-description {
  color: rgba(255, 255, 255, 0.8) !important;
}

.service-stacked-card.active .card-capabilities-list li,
.service-stacked-card.is-active .card-capabilities-list li {
  color: rgba(255, 255, 255, 0.92) !important;
}

.service-stacked-card.active .bullet-dot,
.service-stacked-card.is-active .bullet-dot {
  background: #FF391E !important;
  box-shadow: 0 0 8px rgba(255, 57, 30, 0.7) !important;
}

/* Card Bottom Divider & Action Row */
.card-footer-row {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 400ms ease;
}

.service-stacked-card.active .card-footer-row,
.service-stacked-card.is-active .card-footer-row {
  border-top-color: rgba(255, 255, 255, 0.12) !important;
}

.card-explore-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  font-family: 'Manrope', 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 250ms ease;
}

.service-stacked-card.active .card-explore-btn,
.service-stacked-card.is-active .card-explore-btn {
  color: #FFFFFF !important;
}

.card-arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 250ms ease, transform 250ms ease;
}

.card-arrow-circle svg,
.card-arrow-circle i {
  width: 15px;
  height: 15px;
  color: #FFFFFF;
  transition: transform 250ms ease;
}

.service-stacked-card.active .card-arrow-circle,
.service-stacked-card.is-active .card-arrow-circle {
  background: #FF3B1F !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(255, 59, 31, 0.45) !important;
}

.service-stacked-card.active .card-arrow-circle svg,
.service-stacked-card.is-active .card-arrow-circle svg,
.service-stacked-card.active .card-arrow-circle i,
.service-stacked-card.is-active .card-arrow-circle i {
  color: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

.card-explore-btn:hover .card-arrow-circle {
  transform: translate(2px, -2px);
  background: #FF3B1F !important;
}

/* Mouse Cursor Pointer-Following Glow Overlay (Desktop Only) */
.card-glow-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 59, 31, 0.13),
    transparent 55%
  );
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: normal;
  transition: opacity 350ms ease;
  z-index: 2;
}

@media (min-width: 768px) {
  .service-stacked-card:hover .card-glow-bg {
    opacity: 1;
  }

  .service-stacked-card:hover {
    transform: translateY(-3.5px);
    border-color: rgba(255, 59, 31, 0.85) !important;
    box-shadow: 0 20px 48px rgba(255, 59, 31, 0.15), 0 0 28px rgba(255, 59, 31, 0.1) !important;
  }
}

/* Obsolete Metallic Reflection Disabled */
.card-reflection {
  display: none !important;
}

/* Scaled/Stacked Previous Card State */
.service-stacked-card.is-stacked-prev {
  transform: scale(0.96) translateY(-14px) !important;
  filter: brightness(0.7) !important;
  background: #0B0F14 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
  z-index: 2;
}

.service-stacked-card.is-stacked-prev .card-number {
  color: #FF351A;
}

.service-stacked-card.is-stacked-prev .bullet-dot {
  background: #FF351A;
}

/* Mobile Sticky Status Bar (Hidden by default on Desktop) */
.mobile-sticky-status-bar {
  display: none !important;
}

/* Mobile & Tablet Overrides (< 1024px) */
@media (max-width: 1023px) {
  .services-section {
    padding: 80px 0 40px 0;
  }

  .services-container {
    width: min(100% - 32px, 640px);
    margin: 0 auto;
  }

  .services-layout,
  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .services-intro {
    position: relative !important;
    top: auto !important;
    width: 100%;
  }

  .services-cards,
  .services-card-stack {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .card-capabilities-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 56px 0 !important;
  }

  .services-heading,
  .services-intro h2 {
    font-size: clamp(2.0rem, 7vw, 2.8rem);
  }

  .services-subtext,
  .services-intro p {
    font-size: 15px;
  }

  /* MOBILE COLLAPSED CARD SHELL & EXPANSION */
  .service-stacked-card {
    position: relative !important;
    top: auto !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 16px 20px !important;
    border-radius: 18px !important;
    background: #0B0F14 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
    overflow: hidden !important;
    transition: background 400ms ease, border-color 400ms ease, box-shadow 400ms ease, padding 400ms ease;
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .service-stacked-card:not(.active):not(.is-active) .card-top-row {
    margin-bottom: 0;
  }

  /* Inactive collapsed card: keep the title beside the number; hide only details. */
  .service-stacked-card:not(.active):not(.is-active) .card-description,
  .service-stacked-card:not(.active):not(.is-active) .card-capabilities-wrapper,
  .service-stacked-card:not(.active):not(.is-active) .card-footer-row {
    max-height: 0 !important;
    opacity: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    overflow: hidden !important;
    pointer-events: none !important;
    transition: max-height 380ms cubic-bezier(0.4, 0, 0.2, 1), opacity 250ms ease, margin 380ms ease, padding 380ms ease;
  }

  .service-stacked-card:not(.active):not(.is-active) .card-inner {
    position: relative;
  }

  .service-stacked-card:not(.active):not(.is-active) .card-title {
    position: absolute;
    top: 50%;
    left: 48px;
    right: 62px;
    transform: translateY(-50%);
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(13px, 3.7vw, 16px);
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 1 !important;
    pointer-events: none;
  }

  /* Active Expanded Card: Reveal title, description, capabilities list, divider & explore button */
  .service-stacked-card.active .card-title,
  .service-stacked-card.is-active .card-title,
  .service-stacked-card.active .card-description,
  .service-stacked-card.is-active .card-description,
  .service-stacked-card.active .card-capabilities-wrapper,
  .service-stacked-card.is-active .card-capabilities-wrapper,
  .service-stacked-card.active .card-footer-row,
  .service-stacked-card.is-active .card-footer-row {
    max-height: 500px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: max-height 380ms cubic-bezier(0.4, 0, 0.2, 1), opacity 350ms ease 80ms;
  }

  .service-stacked-card.active,
  .service-stacked-card.is-active {
    padding: 24px 20px !important;
    border-color: rgba(255, 53, 26, 0.55) !important;
  }

  .card-title {
    font-size: 1.35rem;
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .card-description {
    font-size: 14px;
  }

  .card-capabilities-list li {
    font-size: 13px;
  }
}




/* ==========================================================================
   RECENT PROJECTS SECTION — Dark 2-Column Grid
   ========================================================================== */

.rp-section {
  background-color: #070B0E;
  color: #FFFFFF;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Subtle Orange-Red Ambient Radial Lighting */
.rp-lighting-effect {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 57, 30, 0.12) 0%, rgba(255, 57, 30, 0) 70%);
  pointer-events: none;
}

.rp-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.rp-header {
  margin-bottom: clamp(44px, 6vw, 72px);
  max-width: 720px;
}

.rp-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 18px 0 16px;
}

.rp-subtext {
  font-family: var(--font-main);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Grid Layout */
.rp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 28px;
  transition: opacity 300ms ease;
}

/* Hover dimming: when hovering one card, dim other cards in the grid */
@media (hover: hover) {
  .rp-grid:has(.rp-card:hover) .rp-card:not(:hover) {
    opacity: 0.55;
    transform: scale(0.99);
  }
}

/* Card Container */
.rp-card {
  display: flex;
  flex-direction: column;
  background: #12161A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #FFFFFF;
  position: relative;
  box-sizing: border-box;
  will-change: transform, opacity;
  transition:
    transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 400ms ease,
    box-shadow 400ms ease,
    opacity 350ms ease;
  cursor: pointer;
}

.rp-card:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 4px;
}

.rp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 57, 30, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 24px rgba(255, 57, 30, 0.12);
  z-index: 10;
}

/* Liquid-Glass Shimmer Effect on Hover */
.rp-card-shine {
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 5;
  transition: left 750ms ease;
}

.rp-card:hover .rp-card-shine {
  left: 150%;
}

/* Card Top Header */
.rp-card-header {
  padding: 24px 28px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(18, 22, 26, 0.95);
  position: relative;
  z-index: 3;
}

.rp-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rp-card-category {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--brand-red);
  text-transform: uppercase;
}

.rp-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0;
}

/* Circular Arrow Icon */
.rp-card-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: background 350ms ease, border-color 350ms ease, transform 350ms cubic-bezier(0.22, 1, 0.36, 1), color 350ms ease;
}

.rp-card-arrow svg {
  width: 18px;
  height: 18px;
}

.rp-card:hover .rp-card-arrow {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #FFFFFF;
  transform: translate(3px, -3px);
}

/* Card Media & Image */
.rp-card-media {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: #0B0E11;
}

.rp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.rp-card:hover .rp-card-img {
  transform: scale(1.04);
}

.rp-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 11, 14, 0.6) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

/* Bottom CTA Button */
.rp-footer-cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.rp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 100px;
  background: #FFFFFF;
  color: #070B0E !important;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 350ms ease, color 350ms ease, transform 350ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 350ms ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.rp-cta-arrow {
  font-size: 16px;
  transition: transform 350ms ease;
}

.rp-cta-btn:hover {
  background: var(--brand-red);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 57, 30, 0.3);
}

.rp-cta-btn:hover .rp-cta-arrow {
  transform: translate(2px, -2px);
}

/* ==========================================================================
   RECENT PROJECTS — MOBILE (< 768px)
   ========================================================================== */
@media (max-width: 767px) {
  .rp-section {
    padding: 72px 0 64px;
  }

  .rp-container {
    width: calc(100% - 32px);
  }

  .rp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rp-card-media {
    height: 250px;
  }

  .rp-card-header {
    padding: 20px 20px 16px;
  }

  .rp-card-title {
    font-size: 1.25rem;
  }

  .rp-footer-cta {
    margin-top: 44px;
  }

  .rp-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
  }
}

/* ==========================================================================
   RECENT PROJECTS — REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .rp-card,
  .rp-card-img,
  .rp-card-arrow,
  .rp-cta-btn {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .rp-card-shine {
    display: none !important;
  }
}


/* ==========================================================================
   WHY CHOOSE ANIDAM — Staggered Cards Section
   ========================================================================== */

.wca-section {
  background: #FFFFFF;
  padding: 100px 0 0;
  overflow: hidden;
  position: relative;
}

/* Container */
.wca-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 72px;
}

/* ── Header ── */
.wca-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.wca-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin: 0 0 18px;
}

.wca-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #080C10;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
}

/* ── Cards Row ── */
.wca-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
  position: relative;
}

/* ── Individual Card ── */
.wca-card {
  border-radius: 16px;
  cursor: default;
  position: relative;
  overflow: hidden;
  /* Transform-origin at center for scale/rotation */
  transform-origin: center center;
  will-change: transform, opacity;
  transition:
    transform  340ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 340ms ease;
}

.wca-card-inner {
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  min-height: 340px;
}

/* ── Color variants ── */
.wca-card--gray  { background: #F2F2F2; }
.wca-card--black { background: #080C10; }
.wca-card--red   { background: var(--brand-red); }

/* ── Card top: pill + icon ── */
.wca-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
}

/* Pill label */
.wca-pill {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
  border: 1px solid;
  line-height: 1.4;
}

.wca-card--gray  .wca-pill { color: rgba(8,12,16,0.55); border-color: rgba(8,12,16,0.18); }
.wca-card--black .wca-pill { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.18); }
.wca-card--red   .wca-pill { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.35); }

/* Icon wrap */
.wca-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wca-card--gray  .wca-icon-wrap { color: rgba(8,12,16,0.5);    border-color: rgba(8,12,16,0.12); }
.wca-card--black .wca-icon-wrap { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.15); }
.wca-card--red   .wca-icon-wrap { color: rgba(255,255,255,0.85);border-color: rgba(255,255,255,0.35); }

.wca-icon {
  width: 18px;
  height: 18px;
}

/* ── Card body ── */
.wca-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.wca-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0;
}

.wca-card--gray  .wca-card-title { color: #080C10; }
.wca-card--black .wca-card-title { color: #FFFFFF; }
.wca-card--red   .wca-card-title { color: #FFFFFF; }

.wca-card-desc {
  font-family: var(--font-main);
  font-size: clamp(0.82rem, 1.1vw, 0.9rem);
  line-height: 1.65;
  margin: 0;
}

.wca-card--gray  .wca-card-desc { color: rgba(8,12,16,0.55); }
.wca-card--black .wca-card-desc { color: rgba(255,255,255,0.55); }
.wca-card--red   .wca-card-desc { color: rgba(255,255,255,0.8); }

/* ── Hover ── */
@media (hover: hover) {
  .wca-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 12px 40px rgba(8, 12, 16, 0.10),
                0 0 0 1.5px rgba(255, 53, 26, 0.35) !important;
    z-index: 2;
  }
  .wca-card:hover .wca-icon-wrap {
    transform: rotate(12deg);
  }
}

/* Focus-visible ring */
.wca-card:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 4px;
}

/* ── Bottom Marquee ── */
.wca-marquee-outer {
  overflow: hidden;
  border-top: 1px solid rgba(8, 12, 16, 0.06);
  padding: 28px 0;
  width: 100%;
}

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

.wca-marquee-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(8, 12, 16, 0.08);
  white-space: nowrap;
  padding-right: 0;
  text-transform: uppercase;
}

@keyframes wcaMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ==========================================================================
   WHY CHOOSE ANIDAM — MOBILE (< 768px)
   ========================================================================== */
@media (max-width: 767px) {

  .wca-section {
    padding: 64px 0 0;
  }

  .wca-container {
    width: calc(100% - 40px);
    padding-bottom: 44px;
  }

  .wca-header {
    margin-bottom: 32px;
  }

  .wca-heading {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .wca-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Remove stagger offsets on mobile */
  .wca-card:nth-child(1),
  .wca-card:nth-child(2),
  .wca-card:nth-child(3),
  .wca-card:nth-child(4) {
    margin-bottom: 0;
  }

  .wca-card-inner {
    min-height: 220px;
    padding: 22px 20px 24px;
  }

  .wca-card-top {
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   WHY CHOOSE ANIDAM — TABLET (768px – 1023px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1023px) {

  .wca-section {
    padding: 80px 0 0;
  }

  .wca-cards {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

/* ==========================================================================
   WHY CHOOSE ANIDAM — REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

  .wca-marquee-track {
    animation: none !important;
  }

  .wca-card {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}



/* ==========================================================================
   PLATFORMS & TOOLS WE WORK WITH — Premium Tech Grid
   ========================================================================== */

/* ==========================================================================
   RECENT PROJECTS — Cinematic Perspective Carousel
   ========================================================================== */
.fp-section {
  --fp-accent: #ff351a;
  position: relative;
  overflow: hidden;
  min-height: 900px;
  padding: 88px 0 48px;
  background: #ffffff;
  color: #080c10;
}

.fp-section::before,
.fp-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
  opacity: .5;
}

.fp-section::before {
  width: 420px;
  height: 420px;
  top: -210px;
  right: -110px;
  border: 1px solid rgba(8,12,16,.08);
  animation: fpOrbit 18s linear infinite;
}

.fp-section::after {
  width: 260px;
  height: 260px;
  bottom: -130px;
  left: -70px;
  border: 1px solid rgba(255,53,26,.2);
  animation: fpOrbit 13s linear infinite reverse;
}

@keyframes fpOrbit { to { transform: rotate(360deg); } }

.fp-header {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  position: relative;
  z-index: 20;
}

.fp-kicker {
  margin: 0 0 12px;
  color: var(--fp-accent);
  font: 700 11px/1.2 var(--font-main);
  letter-spacing: 2.4px;
}

.fp-heading {
  max-width: 650px;
  margin: 0;
  font: 700 clamp(2rem, 4vw, 3.5rem)/1.04 var(--font-display);
  letter-spacing: -0.04em;
}

.fp-view-all,
.fp-project-link {
  color: inherit;
  font: 700 13px/1 var(--font-main);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.fp-view-all { color: rgba(8,12,16,.72); }

.fp-view-all:hover,
.fp-view-all:focus-visible { color: var(--fp-accent); }

.fp-stage {
  position: relative;
  width: 100%;
  height: 620px;
  margin-top: 24px;
  perspective: 1600px;
  transform-style: preserve-3d;
  touch-action: pan-y;
}

.fp-stage::before {
  content: "";
  position: absolute;
  inset: 15% 24%;
  border-radius: 50%;
  background: rgba(255,53,26,.08);
  filter: blur(70px);
  pointer-events: none;
}

.fp-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(52vw, 820px);
  height: min(31vw, 500px);
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 30px 70px rgba(38, 18, 12, 0.18);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.7);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform 850ms cubic-bezier(.22,1,.36,1), opacity 550ms ease, filter 550ms ease, box-shadow 550ms ease;
  will-change: transform, opacity;
  cursor: pointer;
}

.fp-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(5,7,8,.68) 100%);
  pointer-events: none;
}

.fp-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 1.2s cubic-bezier(.22,1,.36,1), filter 550ms ease;
}

.fp-slide.is-active {
  z-index: 5;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotateY(0);
  box-shadow: 0 42px 100px rgba(38,18,12,.3), 0 8px 24px rgba(38,18,12,.15);
  cursor: grab;
}

.fp-slide.is-active img { transform: scale(1); }
.fp-slide.is-active:hover img { transform: scale(1.045); }

.fp-slide.is-prev,
.fp-slide.is-next {
  z-index: 3;
  opacity: .9;
  filter: saturate(.82);
}

.fp-slide.is-prev {
  transform: translate(-132%, -48%) scale(.68) rotateY(18deg) rotateZ(-3deg);
}

.fp-slide.is-next {
  transform: translate(32%, -48%) scale(.68) rotateY(-18deg) rotateZ(3deg);
}

.fp-slide.is-far-prev,
.fp-slide.is-far-next {
  z-index: 1;
  opacity: .55;
  filter: saturate(.7);
}

.fp-slide.is-far-prev {
  transform: translate(-192%, -45%) scale(.44) rotateY(24deg) rotateZ(-5deg);
}

.fp-slide.is-far-next {
  transform: translate(92%, -45%) scale(.44) rotateY(-24deg) rotateZ(5deg);
}

.fp-active-copy {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  width: min(46vw, 720px);
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  pointer-events: none;
  transition: opacity 220ms ease, transform 400ms cubic-bezier(.22,1,.36,1), filter 300ms ease;
}

.fp-active-copy.is-changing {
  opacity: 0;
  filter: blur(8px);
  transform: translate(-50%, calc(-50% + 18px));
}

.fp-active-category {
  margin: 0 0 10px;
  font: 700 11px/1.2 var(--font-main);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.fp-active-title {
  margin: 0 0 22px;
  font: 800 clamp(2.4rem, 6vw, 5.8rem)/.94 var(--font-display);
  letter-spacing: -0.055em;
}

.fp-project-link {
  display: inline-flex;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #080c10;
  text-shadow: none;
  pointer-events: auto;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.fp-project-link:hover,
.fp-project-link:focus-visible {
  transform: translateY(-3px);
  background: var(--fp-accent);
  color: #fff;
  outline: none;
}

.fp-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 20;
  width: fit-content;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(8,12,16,.12);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(245,245,245,.72));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -1px 0 rgba(8,12,16,.04),
    0 12px 34px rgba(8,12,16,.1);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
}

.fp-controls::before {
  content: "";
  position: absolute;
  inset: 3px 12% auto;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), transparent);
  pointer-events: none;
}

.fp-control {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(8,12,16,.12);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  color: #080c10;
  font-size: 22px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 #ffffff, 0 5px 14px rgba(8,12,16,.1);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.fp-next {
  background: linear-gradient(145deg, rgba(255,87,60,.96), rgba(255,53,26,.72));
  border-color: rgba(255,130,108,.58);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.36), 0 7px 22px rgba(255,53,26,.27);
}

.fp-control:hover,
.fp-control:focus-visible {
  background: linear-gradient(145deg, #171b1e, #080c10);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 9px 22px rgba(8,12,16,.2);
  outline: 1px solid rgba(8,12,16,.25);
  outline-offset: 2px;
}

.fp-next:hover,
.fp-next:focus-visible {
  background: linear-gradient(145deg, #ff684f, var(--fp-accent));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 10px 28px rgba(255,53,26,.35);
}

.fp-counter {
  min-width: 58px;
  margin: 0;
  text-align: center;
  font: 700 12px/1 var(--font-main);
  color: rgba(8,12,16,.82);
}

.fp-progress {
  width: clamp(80px, 10vw, 150px);
  height: 2px;
  overflow: hidden;
  background: rgba(8,12,16,.14);
}

.fp-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--fp-accent);
  transform: scaleX(.2);
  transform-origin: left center;
  transition: transform 650ms cubic-bezier(.22,1,.36,1);
}

@media (max-width: 767px) {
  .fp-section {
    min-height: 690px;
    padding: 64px 0 36px;
  }

  .fp-header {
    width: calc(100% - 40px);
    align-items: flex-start;
  }

  .fp-view-all {
    display: none;
  }

  .fp-heading {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .fp-stage {
    height: 450px;
    margin-top: 18px;
  }

  .fp-slide {
    width: 78vw;
    height: 350px;
    min-height: 0;
    border-radius: 14px;
  }

  .fp-slide.is-prev { transform: translate(-126%, -50%) scale(.72) rotateY(12deg); }
  .fp-slide.is-next { transform: translate(26%, -50%) scale(.72) rotateY(-12deg); }
  .fp-slide.is-far-prev,
  .fp-slide.is-far-next { opacity: 0; }

  .fp-active-copy {
    width: 68vw;
  }

  .fp-active-title {
    font-size: clamp(2rem, 12vw, 3.3rem);
  }

  .fp-progress { width: 72px; }

  .fp-section::before {
    width: 260px;
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fp-slide,
  .fp-slide img,
  .fp-active-copy,
  .fp-progress span { transition: none; }
  .fp-section::before,
  .fp-section::after { animation: none; }
}


.pat-section {
  background-color: #050708;
  color: #FFFFFF;
  padding: 100px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Container */
.pat-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
}

/* Header */
.pat-header {
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 720px;
}

.section-badge-label--dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.pat-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 18px 0 16px;
}

.pat-subtext {
  font-family: var(--font-main);
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* 3-Column x 2-Row Card Grid */
.pat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Individual Tech Card */
.pat-card {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  cursor: default;
  will-change: transform, opacity;
  transition:
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 380ms ease,
    box-shadow 380ms ease,
    background-color 380ms ease;
}

.pat-card:hover,
.pat-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(255, 53, 26, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 20px rgba(255, 53, 26, 0.08);
  background-color: #1a1a1a;
  outline: none;
}

/* Mouse-following Orange Glow */
.pat-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 53, 26, 0.16) 0%, rgba(255, 53, 26, 0) 70%);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 350ms ease;
  z-index: 1;
}

/* Logo Wrapper & Logos */
.pat-logo-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 68px;
}

.pat-logo {
  max-height: 52px;
  max-width: 135px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pat-logo--google { max-height: 50px; max-width: 120px; }
.pat-logo--meta { max-height: 46px; max-width: 135px; }
.pat-logo--figma { max-height: 52px; max-width: 45px; }
.pat-logo--shopify { max-height: 52px; max-width: 55px; }
.pat-logo--adobe { max-height: 48px; max-width: 60px; }
.pat-logo--wordpress { max-height: 52px; max-width: 52px; }

/* On hover: Logo subtle scale */
.pat-card:hover .pat-logo,
.pat-card:focus-visible .pat-logo {
  transform: scale(1.06);
}

/* Platform Name Label */
.pat-card-name {
  position: absolute;
  bottom: 18px;
  left: 22px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.45);
  z-index: 2;
  transition: color 350ms ease;
}

.pat-card:hover .pat-card-name,
.pat-card:focus-visible .pat-card-name {
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   PLATFORMS & TOOLS — MOBILE (< 768px)
   ========================================================================== */
@media (max-width: 767px) {

  .pat-section {
    padding: 64px 0 56px;
  }

  .pat-container {
    width: calc(100% - 40px);
  }

  .pat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pat-card {
    height: 135px;
    border-radius: 10px;
  }

  .pat-logo-wrapper {
    height: 44px;
  }

  .pat-logo {
    max-width: 36px;
    max-height: 36px;
  }

  .pat-card-name {
    bottom: 12px;
    left: 14px;
    font-size: 11px;
  }

  /* Disable cursor glow on touch */
  .pat-card-glow {
    display: none;
  }
}

/* ==========================================================================
   PLATFORMS & TOOLS — REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

  .pat-card {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .pat-logo {
    transition: none !important;
    filter: grayscale(0%) opacity(1) !important;
  }
}


/* ================================================================
   FAQ SECTION — EDITORIAL PURE WHITE VERTICAL ACCORDION PANELS
================================================================ */
.faq-section {
  position: relative;
  background-color: #FFFFFF !important;
  color: #070B0D !important;
  padding: 100px 0 110px 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 6;
}

.faq-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.faq-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #070B0D;
  margin: 0;
}

.text-orange-accent {
  color: #FF391E !important;
}

/* Accordion Horizontal Row Layout (Desktop >= 768px) */
.faq-accordion-wrapper {
  display: flex;
  gap: 16px;
  height: 520px;
  width: 100%;
  box-sizing: border-box;
}

/* Base Panel (Inactive/Closed Question Panel — Matching Floating Header Menu) */
.faq-panel {
  position: relative;
  flex: 0 0 90px;
  height: 100%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  transition: flex 650ms cubic-bezier(0.4, 0, 0.2, 1),
              background 650ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 400ms ease,
              transform 350ms ease,
              box-shadow 650ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-panel:hover:not(.is-active) {
  transform: translateY(-4px);
  border-color: rgba(255, 57, 30, 0.35) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

/* Active Panel (Expanded) */
.faq-panel.is-active {
  flex: 1 1 420px;
  background: linear-gradient(135deg, #FF391E 0%, #E02B12 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 20px 48px rgba(255, 57, 30, 0.25) !important;
  cursor: default;
}

/* Header Button inside Panel */
.faq-panel-header {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 90px;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  z-index: 3;
}

.faq-panel-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #718096;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: color 400ms ease;
}

.faq-panel.is-active .faq-panel-num {
  color: rgba(255, 255, 255, 0.8) !important;
}

.faq-vertical-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #070B0D;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-height: 260px;
  transition: opacity 400ms ease, color 400ms ease;
}

.faq-panel.is-active .faq-vertical-title {
  opacity: 0;
  pointer-events: none;
}

.faq-panel-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #070B0D;
  transition: background 400ms ease, transform 400ms ease, color 400ms ease;
}

.faq-panel:hover:not(.is-active) .faq-panel-icon {
  color: #FF391E;
  border-color: rgba(255, 57, 30, 0.4);
}

.faq-panel.is-active .faq-panel-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.faq-panel .icon-minus {
  display: none;
}

.faq-panel .icon-plus {
  display: block;
}

.faq-panel.is-active .icon-minus {
  display: block;
}

.faq-panel.is-active .icon-plus {
  display: none;
}

/* Content inside Panel (Revealed on Active) */
.faq-panel-content {
  position: absolute;
  top: 0;
  left: 90px;
  right: 0;
  bottom: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity 400ms cubic-bezier(0.2, 1, 0.3, 1) 150ms,
              transform 400ms cubic-bezier(0.2, 1, 0.3, 1) 150ms,
              visibility 400ms ease 150ms;
}

.faq-panel.is-active .faq-panel-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.faq-question-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF !important;
  margin: 0;
}

.faq-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 20px 0;
}

.faq-answer-text {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92) !important;
  margin: 0 0 24px 0;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 100px;
  background: #FFFFFF;
  color: #FF391E !important;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: background 300ms ease, transform 300ms ease, color 300ms ease;
}

.faq-cta-btn:hover {
  background: #070B0D;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.faq-arrow-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 57, 30, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-cta-btn:hover .faq-arrow-circle {
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile Accordion Stack (< 768px) */
@media (max-width: 767px) {
  .faq-section {
    padding: 60px 0 !important;
  }

  .faq-container {
    width: calc(100% - 32px) !important;
    margin: 0 16px !important;
  }

  .faq-header {
    margin-bottom: 32px;
    gap: 14px;
  }

  .faq-heading {
    width: 100%;
    max-width: 470px;
    font-size: clamp(2rem, 7.4vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-wrap: balance;
  }

  .faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    height: auto !important;
    gap: 16px;
  }

  .faq-panel {
    flex: none !important;
    width: 100% !important;
    height: auto !important;
    flex-direction: column !important;
    padding: 0 !important;
    border-radius: 18px !important;
  }

  .faq-panel-header {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    padding: 20px !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) 42px;
    align-items: center !important;
    gap: 14px;
  }

  .faq-panel-num {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    flex-shrink: 0;
  }

  .faq-vertical-title {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    max-height: none !important;
    font-size: 15px !important;
    white-space: normal !important;
    text-align: left;
    line-height: 1.25;
    min-width: 0;
    opacity: 1 !important;
  }

  .faq-panel.is-active .faq-vertical-title {
    color: #FFFFFF !important;
  }

  .faq-panel-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    padding: 0 20px 24px 20px !important;
    transform: none !important;
    box-sizing: border-box;
  }

  .faq-panel:not(.is-active) .faq-panel-content {
    display: none !important;
  }

  .faq-panel.is-active .faq-panel-content {
    display: flex !important;
  }

  .faq-question-heading {
    display: none;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION — Client Stories Marquee
   viewport > track > set×3, GSAP-animated
   ========================================================================== */

/* Section wrapper */
.testimonials-section {
  background: #FFFFFF;
  padding: 96px 0 0;
  position: relative;
  /* NO overflow:hidden here — handled per row */
}

/* Header */
.testimonials-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.testimonials-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #070B0D;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.testimonials-subtext {
  font-family: var(--font-main);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0;
}

/* ── Viewport: clips horizontally, generous vertical padding for lifted cards ── */
.tms-viewport {
  overflow-x: hidden;
  overflow-y: visible;           /* lifted cards never cut vertically */
  padding: 24px 0;               /* breathing room above & below each row */
  /* Edge fade mask — horizontal only */
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

/* ── Track: the moving element, measured by GSAP ── */
.tms-track {
  display: flex;
  width: max-content;
  align-items: stretch;
  /* No animation here — GSAP drives x transform */
  will-change: transform;
}

/* ── Set: one full group of cards, gap between every card ── */
.tms-set {
  display: flex;
  gap: 20px;
  padding-right: 20px; /* gap between last card of one set and first of next */
}

/* ── Individual Card ── */
.tms-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 360px;
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1px solid rgba(9, 13, 17, 0.09);
  border-radius: 12px;
  padding: 26px 28px 24px;
  box-sizing: border-box;
  cursor: default;
  transform-origin: center;
  /* transition handled by GSAP hover tween */
  transition: border-color 350ms ease, box-shadow 350ms ease;
  position: relative;
  z-index: 0;
}

.tms-card:hover,
.tms-card:focus-within,
.tms-card.is-active {
  border-color: rgba(255, 53, 26, 0.30);
  box-shadow: 0 8px 32px rgba(255, 53, 26, 0.08);
  z-index: 10;
  outline: none;
}

/* ── Card Author row ── */
.tms-card-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border: none;
  padding: 0;
  margin: 0;
}

.tms-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF391E 0%, #E02B12 100%);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.tms-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tms-name {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: #070B0D;
  line-height: 1.3;
}

.tms-role {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ── Quote ── */
.tms-quote {
  margin: 0;
  padding: 0;
  flex: 1;
}

.tms-quote p {
  font-family: var(--font-main);
  font-size: 14.5px;
  line-height: 1.7;
  color: #2A2E34;
  margin: 0;
}

/* ── Card footer: company logo ── */
.tms-card-footer {
  padding-top: 12px;
  border-top: 1px solid rgba(9, 13, 17, 0.07);
  display: flex;
  align-items: center;
  margin: 0;
}

.tms-company-logo {
  max-height: 24px;
  max-width: 110px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) opacity(0.4);
  transition: filter 350ms ease;
}

.tms-card:hover .tms-company-logo,
.tms-card.is-active .tms-company-logo {
  filter: brightness(0) opacity(0.65);
}

/* ── Bottom padding after last row ── */
.testimonials-section > .tms-viewport:last-of-type {
  padding-bottom: 88px;
}

/* ── Mobile: hidden on desktop ── */
.tms-mobile-outer {
  display: none;
}

/* ==========================================================================
   TESTIMONIALS — MOBILE (< 768px)
   ========================================================================== */
@media (max-width: 767px) {

  .testimonials-section {
    padding: 64px 0 0;
  }

  .testimonials-header {
    margin-bottom: 36px;
  }

  /* Hide desktop viewports on mobile */
  .tms-viewport {
    display: none;
  }

  /* Show mobile track */
  .tms-mobile-outer {
    display: block;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 0 60px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    scrollbar-width: none;
  }

  .tms-mobile-outer::-webkit-scrollbar { display: none; }

  .tms-mobile-track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 8px 20px 8px;
    -webkit-overflow-scrolling: touch;
  }

  .tms-mobile-track .tms-card {
    width: calc(100vw - 40px);
    min-width: 0;
    max-width: 360px;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

/* ==========================================================================
   TESTIMONIALS — TABLET (768px – 1023px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  .tms-card { width: 300px; }
}

/* ==========================================================================
   TESTIMONIALS — REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

  /* Stop GSAP tickers — handled in JS; fallback: make track scrollable */
  .tms-viewport {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .tms-track {
    /* Do not transform */
    will-change: auto;
  }

  .tms-card:hover,
  .tms-card.is-active {
    transform: none !important;
    box-shadow: none !important;
  }
}


/* ==========================================================================
   PAGE-SPECIFIC STYLES FOR MULTI-PAGE ANIDAM SITE
   ========================================================================== */

/* ── Standard Inner Page Hero ────────────────────────────────────────────── */
.pg-hero {
  padding: 160px 0 60px;
  background-color: var(--bg-main, #FFFFFF);
  color: var(--text-main, #070B0E);
  position: relative;
  transition: background-color 350ms ease, color 350ms ease;
}

.pg-hero--dark {
  background-color: #070B0E;
  color: #FFFFFF;
}

.pg-hero-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  max-width: 840px;
}

.pg-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 20px 0 20px;
}

.pg-hero-desc {
  font-family: var(--font-main);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  opacity: 0.75;
  margin: 0;
}

/* ── About Page Styles ──────────────────────────────────────────────────── */
.abt-story-section, .abt-values-section, .abt-stats-section {
  padding: 80px 0;
}

.abt-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.abt-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .abt-story-grid { grid-template-columns: 1fr; gap: 40px; }
}

.abt-sublabel {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-red);
  text-transform: uppercase;
}

.abt-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0 24px;
}

.abt-story-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 16px;
}

.abt-story-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

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

.abt-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .abt-values-grid { grid-template-columns: 1fr; }
}

.abt-value-card {
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 350ms ease, border-color 350ms ease;
}

[data-theme="dark"] .abt-value-card {
  background: #12161A;
  border-color: rgba(255,255,255,0.08);
}

.abt-value-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-red);
}

.abt-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,57,30,0.1);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.abt-value-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.abt-value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.7;
  margin: 0;
}

/* Stats Counter */
.abt-stats-section {
  background: #070B0E;
  color: #FFFFFF;
}

.abt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

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

.abt-stat-box .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--brand-red);
}

.abt-stat-box .stat-label {
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.7;
  text-transform: uppercase;
}

/* ── Services Page Detail Cards ─────────────────────────────────────────── */
.svc-list-section {
  padding: 40px 0 100px;
}

.svc-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.svc-detail-card {
  background: var(--bg-main, #FFFFFF);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 350ms ease, border-color 350ms ease;
}

[data-theme="dark"] .svc-detail-card {
  background: #12161A;
  border-color: rgba(255,255,255,0.08);
}

.svc-detail-card:hover {
  border-color: rgba(255,57,30,0.4);
  transform: translateY(-4px);
}

.svc-card-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

[data-theme="dark"] .svc-card-header {
  border-bottom-color: rgba(255,255,255,0.06);
}

.svc-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-red);
  line-height: 1;
}

.svc-category-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--brand-red);
  text-transform: uppercase;
}

.svc-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  margin: 4px 0 0;
}

.svc-card-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

@media (max-width: 850px) {
  .svc-card-grid { grid-template-columns: 1fr; gap: 24px; }
}

.svc-overview {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 24px;
}

.svc-deliverables h4, .svc-benefits-box h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.svc-deliverables ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-deliverables li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.svc-deliverables li svg {
  width: 18px;
  height: 18px;
  color: var(--brand-red);
  flex-shrink: 0;
}

.svc-benefits-box {
  background: rgba(255,57,30,0.05);
  border: 1px solid rgba(255,57,30,0.15);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.svc-benefits-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 20px;
}

.svc-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-red) !important;
  text-decoration: none;
  transition: gap 300ms ease;
}

.svc-cta-link:hover {
  gap: 12px;
}

/* ── Projects Archive Filter Bar ────────────────────────────────────────── */
.prj-filter-section {
  padding: 20px 0 40px;
}

.prj-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.prj-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.prj-filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
}

.prj-filter-btn:hover, .prj-filter-btn.active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #FFFFFF;
}

/* ── Insights Page ──────────────────────────────────────────────────────── */
.ins-featured-section, .ins-grid-section, .ins-newsletter-section {
  padding: 40px 0 60px;
}

.ins-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.ins-hero-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  overflow: hidden;
}

[data-theme="dark"] .ins-hero-card {
  background: #12161A;
  border-color: rgba(255,255,255,0.08);
}

@media (max-width: 850px) {
  .ins-hero-card { grid-template-columns: 1fr; }
}

.ins-hero-media {
  height: 380px;
}

.ins-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ins-hero-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ins-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--brand-red);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ins-hero-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.25;
  margin-bottom: 14px;
}

.ins-hero-content p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.75;
  margin-bottom: 20px;
}

.ins-meta {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 24px;
}

.ins-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-red) !important;
  text-decoration: none;
}

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

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

.ins-card {
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 350ms ease, border-color 350ms ease;
}

[data-theme="dark"] .ins-card {
  border-color: rgba(255,255,255,0.08);
  background: #12161A;
}

.ins-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-red);
}

.ins-card-media {
  height: 200px;
}

.ins-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ins-card-body {
  padding: 24px;
}

.ins-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 10px 0;
}

.ins-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.7;
}

.ins-nl-card {
  background: #070B0E;
  color: #FFFFFF;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.ins-nl-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.ins-nl-card p {
  opacity: 0.7;
  margin-bottom: 28px;
}

.ins-nl-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 550px) {
  .ins-nl-form { flex-direction: column; }
}

.ins-nl-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  font-size: 14px;
}

.ins-nl-btn {
  padding: 14px 28px;
  border-radius: 100px;
  background: var(--brand-red);
  color: #FFFFFF;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

/* ── Contact Page Styles ────────────────────────────────────────────────── */
.cnt-main-section {
  padding: 40px 0 100px;
}

.cnt-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.cnt-layout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

@media (max-width: 950px) {
  .cnt-layout-grid { grid-template-columns: 1fr; }
}

.cnt-form-card {
  background: var(--bg-main, #FFFFFF);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

[data-theme="dark"] .cnt-form-card {
  background: #12161A;
  border-color: rgba(255,255,255,0.08);
}

.cnt-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.cnt-form-sub {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 32px;
}

.cnt-full-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cnt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.cnt-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cnt-field label {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
}

.cnt-field input, .cnt-field select, .cnt-field textarea {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.02);
  color: inherit;
  font-family: var(--font-main);
  font-size: 14px;
}

[data-theme="dark"] .cnt-field input,
[data-theme="dark"] .cnt-field select,
[data-theme="dark"] .cnt-field textarea {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.cnt-field input:focus, .cnt-field select:focus, .cnt-field textarea:focus {
  outline: none;
  border-color: var(--brand-red);
}

.cnt-checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  opacity: 0.8;
}

.cnt-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  background: var(--brand-red);
  color: #FFFFFF;
  border: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 300ms ease, box-shadow 300ms ease;
  margin-top: 10px;
}

.cnt-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255,57,30,0.3);
}

.cnt-success-alert {
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cnt-info-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cnt-info-box {
  background: var(--bg-main, #FFFFFF);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 30px;
}

[data-theme="dark"] .cnt-info-box {
  background: #12161A;
  border-color: rgba(255,255,255,0.08);
}

.cnt-info-box h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.cnt-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cnt-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cnt-info-list li svg {
  color: var(--brand-red);
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.cnt-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.5;
  text-transform: uppercase;
}

.cnt-info-list a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.cnt-info-list a:hover { color: var(--brand-red); }

.cnt-social-links {
  display: flex;
  gap: 12px;
}

.cnt-social-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.1);
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

[data-theme="dark"] .cnt-social-badge {
  border-color: rgba(255,255,255,0.1);
}

/* ==========================================================================
   HOW WE WORK — Circular Interactive Scroll-Driven 5-Step Process Section
   ========================================================================== */

.hww-process-section {
  position: relative;
  background-color: var(--bg-main, #FFFFFF);
  color: var(--text-main, #070B0E);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  transition: background-color 350ms ease, color 350ms ease;
}

[data-theme="dark"] .hww-process-section {
  background-color: #070B0E;
  color: #FFFFFF;
}

.hww-process-stage {
  position: relative;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0 4vw;
}

.hww-layout-container {
  width: 100%;
  display: grid;
  grid-template-columns: 34% 66%;
  align-items: center;
  box-sizing: border-box;
}

/* ── 1. Left Dial Column (34%) ───────────────────────────────────────────── */
.hww-col-dial {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.hww-dial-wrap {
  position: absolute;
  right: 45%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(640px, 58vw, 900px);
  height: clamp(640px, 58vw, 900px);
  transform-origin: center center;
  will-change: transform;
}

.hww-dial-ring-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hww-dial-outline {
  stroke: rgba(0, 0, 0, 0.08);
  stroke-width: 1px;
  transition: stroke 350ms ease;
}

[data-theme="dark"] .hww-dial-outline {
  stroke: rgba(255, 255, 255, 0.09);
}

/* Fixed Anidam Orange-Red Active Indicator Dot on right focal point */
.hww-fixed-dot {
  position: absolute;
  right: calc(45% - 4px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hww-dot-inner {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-red, #FF351A);
  box-shadow: 0 0 10px rgba(255, 53, 26, 0.7);
  display: block;
}

/* Step Numbers placed along circle circumference */
.hww-dial-num {
  position: absolute;
  width: 48px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  color: #A0A5AA;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.02em;
  opacity: 0.32;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  transition: color 300ms ease, opacity 300ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] .hww-dial-num {
  color: #6C757D;
}

/* Radius = 450px, Center = (450, 450). Angle step = 28 deg */
.hww-dial-num--1 {
  left: 105.5%;
  top: 50%;
}

.hww-dial-num--2 {
  left: 99%;
  top: 76.06%;
}

.hww-dial-num--3 {
  left: 81.04%;
  top: 96.02%;
}

.hww-dial-num--4 {
  left: 55.79%;
  top: 105.19%;
}

.hww-dial-num--5 {
  left: 29.21%;
  top: 101.46%;
}

.hww-dial-num.is-active {
  color: #070B0E !important;
  opacity: 1 !important;
  font-weight: 700;
  transform: translate(-50%, -50%) scale(1.18);
}

[data-theme="dark"] .hww-dial-num.is-active {
  color: #FFFFFF !important;
}

/* ── 2. Center Content Column (36%) ──────────────────────────────────────── */
.hww-col-content {
  position: relative;
  width: 100%;
  padding: 0 4vw;
  z-index: 5;
}

.hww-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  max-width: 680px;
}

.hww-badge {
  margin-bottom: 0 !important;
}

.hww-counter-badge {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(7, 11, 14, 0.5);
}

[data-theme="dark"] .hww-counter-badge {
  color: rgba(255, 255, 255, 0.5);
}

.hww-counter-badge span {
  color: var(--brand-red, #FF351A);
}

.hww-content-wrap {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hww-step-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 680px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(28px);
  filter: blur(6px);
  will-change: transform, opacity, filter;
}

.hww-step-block.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  filter: blur(0);
  position: relative;
}

.hww-step-eyebrow {
  display: block;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-red, #FF351A);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hww-step-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-main, #070B0E);
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

[data-theme="dark"] .hww-step-title {
  color: #FFFFFF;
}

.hww-step-desc {
  font-family: var(--font-main);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(7, 11, 14, 0.75);
  margin: 0 0 24px;
}

[data-theme="dark"] .hww-step-desc {
  color: rgba(255, 255, 255, 0.75);
}

.hww-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hww-tag-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: rgba(0, 0, 0, 0.03);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main, #070B0E);
  letter-spacing: 0.01em;
  transition: border-color 300ms ease, background 300ms ease;
}

[data-theme="dark"] .hww-tag-pill {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

/* ── 3. Right Visual Column (30%) ────────────────────────────────────────── */
.hww-col-visual {
  display: none;
}

.hww-sculpture-box {
  position: relative;
  width: clamp(260px, 24vw, 360px);
  height: clamp(260px, 24vw, 360px);
  max-width: 360px;
  max-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hww-sculpture-asset {
  width: 100%;
  height: 100%;
  display: block;
}

.hww-shadow-ambient {
  position: absolute;
  bottom: -15px;
  width: 70%;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(8px);
  pointer-events: none;
}

[data-theme="dark"] .hww-shadow-ambient {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
}

/* ── Responsive Tablet & Mobile (< 900px) ────────────────────────────────── */
@media (max-width: 900px) {
  .hww-process-section {
    overflow: hidden;
  }

  .hww-process-stage {
    height: auto;
    min-height: auto;
    padding: 64px 20px 32px;
  }

  .hww-layout-container {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
  }

  .hww-col-dial {
    display: none;
  }

  .hww-top-meta {
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 28px;
    max-width: none;
  }

  .hww-col-content {
    padding: 0;
  }

  .hww-step-block {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
    margin-bottom: 0;
    padding: 28px 0;
    border-top: 1px solid rgba(7, 11, 14, 0.1);
    max-width: 100%;
  }

  .hww-step-block:last-child {
    border-bottom: 1px solid rgba(7, 11, 14, 0.1);
  }

  .hww-step-title {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
    margin-bottom: 12px;
  }

  .hww-step-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .hww-content-wrap {
    min-height: auto;
  }

  .hww-step-tags {
    justify-content: flex-start;
  }

  .hww-sculpture-box {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
}

/* Mobile keeps the same pinned circular process experience as desktop. */
@media (max-width: 900px) {
  .hww-process-stage {
    width: 100%;
    height: 100svh;
    min-height: 640px;
    padding: 32px 14px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hww-layout-container {
    display: grid;
    grid-template-columns: 38% 62%;
    align-items: center;
    gap: 0;
    height: 100%;
    position: relative;
    text-align: left;
    transform: none;
  }

  .hww-col-dial {
    display: flex;
    height: 430px;
  }

  .hww-dial-wrap {
    width: 430px;
    height: 430px;
    right: 48%;
  }

  .hww-fixed-dot {
    right: calc(48% - 4px);
  }

  .hww-dial-num {
    width: 38px;
    height: 30px;
    font-size: 16px;
  }

  .hww-col-content {
    width: 100%;
    min-width: 0;
    padding: 0 0 0 10px;
    position: static;
  }

  .hww-top-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    position: absolute;
    top: 0;
    left: calc(38% + 10px);
    right: 0;
    margin: 0;
  }

  .hww-badge {
    display: none !important;
  }

  .hww-badge .badge-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
  }

  .hww-badge .badge-text {
    display: block;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 1.5px;
  }

  .hww-counter-badge {
    display: none;
  }

  .hww-content-wrap {
    position: relative;
    min-height: 330px;
  }

  .hww-step-block {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    filter: blur(6px);
  }

  .hww-step-block:last-child {
    border-bottom: 0;
  }

  .hww-step-block.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    filter: blur(0);
  }

  .hww-step-eyebrow {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: normal;
    margin: 0 0 18px;
  }

  .hww-step-title {
    font-size: clamp(1.75rem, 8.4vw, 2.2rem);
    line-height: 1.05;
    margin-bottom: 12px;
  }

  .hww-step-desc {
    font-size: 0.84rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .hww-step-tags {
    justify-content: flex-start;
    gap: 6px;
  }

  .hww-tag-pill {
    padding: 6px 10px;
    font-size: 10px;
  }
}

/* ── Reduced Motion ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hww-process-stage {
    height: auto !important;
  }
  .hww-step-block {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
    margin-bottom: 40px;
  }
  .hww-col-dial {
    display: none !important;
  }
}

/* ==========================================================================
   OUR PROCESS PAGE STYLES (our-process.html)
   ========================================================================== */

.prc-timeline-section {
  padding: 40px 0 80px;
  background: var(--bg-main, #FFFFFF);
}

.prc-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.prc-stages-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.prc-stage-card {
  background: var(--bg-main, #FFFFFF);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 350ms ease, border-color 350ms ease;
}

[data-theme="dark"] .prc-stage-card {
  background: #12161A;
  border-color: rgba(255,255,255,0.08);
}

.prc-stage-card:hover {
  border-color: var(--brand-red);
}

.prc-stage-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

[data-theme="dark"] .prc-stage-header {
  border-bottom-color: rgba(255,255,255,0.06);
}

.prc-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-red);
}

.prc-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--brand-red);
  text-transform: uppercase;
}

.prc-stage-title-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  margin: 4px 0 0;
}

.prc-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 850px) {
  .prc-stage-grid { grid-template-columns: 1fr; }
}

.prc-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.prc-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

.prc-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prc-col li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.prc-col li svg {
  width: 16px;
  height: 16px;
  color: var(--brand-red);
  flex-shrink: 0;
}

.prc-cta-section {
  padding: 40px 0 100px;
}

.prc-cta-box {
  background: #070B0E;
  color: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.prc-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.prc-cta-box p {
  font-size: 1.05rem;
  opacity: 0.75;
  margin-bottom: 32px;
}

.prc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  background: var(--brand-red);
  color: #FFFFFF !important;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  transition: transform 300ms ease;
}

.prc-cta-btn:hover {
  transform: translateY(-3px);
}

/* ========================================================================== 
   UNIFIED EDITORIAL FOOTER — Newsletter-led, responsive Anidam treatment
   ========================================================================== */
.main-footer,
.footer-master {
  background:
    radial-gradient(circle at 12% 0%, rgba(255,57,30,.09), transparent 28%),
    #05090a !important;
  color: #f7f7f2 !important;
  border-top: 1px solid rgba(255,255,255,.1);
}

.main-footer::before,
.footer-master::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff391e 22%, #ff391e 78%, transparent);
  opacity: .72;
}

.main-footer {
  padding: clamp(68px, 8vw, 110px) 24px 0;
}

.footer-master {
  padding: clamp(68px, 8vw, 110px) 24px 30px;
}

.main-footer .footer-container,
.footer-master .footer-main-container {
  width: min(1380px, 100%);
  margin-inline: auto;
}

.main-footer .footer-main-grid {
  grid-template-columns: minmax(260px, 1.15fr) minmax(130px, .62fr) minmax(210px, .9fr) minmax(300px, 1.25fr);
  gap: clamp(34px, 4vw, 72px);
  align-items: start;
  margin-bottom: 0;
}

.footer-master .footer-main-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.45fr) minmax(260px, 1.15fr) minmax(130px, .62fr) minmax(180px, .78fr);
  gap: clamp(30px, 3.5vw, 64px);
  align-items: start;
  margin-bottom: 0;
}

.footer-master .footer-newsletter-box--master {
  order: -2;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.footer-eyebrow {
  margin: 0 0 16px;
  color: #ff4a31;
  font: 700 10px/1 var(--font-main);
  letter-spacing: 2.4px;
}

.footer-master .newsletter-title {
  max-width: 390px;
  margin: 0 0 24px;
  color: #fff;
  font: 700 clamp(1.7rem, 2.5vw, 2.65rem)/1.03 var(--font-display);
  letter-spacing: -.04em;
}

.footer-master .newsletter-form {
  max-width: 440px;
  padding: 5px;
  gap: 6px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
}

.footer-master .newsletter-input {
  min-width: 0;
  padding: 12px 14px;
  background: transparent;
  border: 0;
  border-radius: 10px;
}

.footer-master .newsletter-submit-btn {
  padding: 12px 20px;
  border-radius: 10px;
}

.footer-master .newsletter-subtext {
  margin-top: 10px;
  color: #7f888c;
}

.footer-master .footer-col-brand {
  order: -1;
}

.main-footer .footer-col-title,
.footer-master .footer-col-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: #f7f7f2 !important;
  font-size: 12px;
  letter-spacing: 1.4px;
}

.main-footer .footer-col-title::before,
.footer-master .footer-col-title::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: #ff391e;
}

.main-footer .footer-links-list,
.footer-master .footer-links-list {
  gap: 12px;
}

.main-footer .footer-links-list a,
.footer-master .footer-links-list a,
.main-footer .footer-social-links a,
.footer-master .footer-contact-item {
  color: #9ba3a7;
}

.footer-master .footer-logo-link {
  margin-bottom: 18px;
}

.footer-master .footer-logo-img {
  width: 154px;
  filter: none;
}

.footer-master .footer-brand-desc {
  color: #8d969a;
  line-height: 1.7;
}

.footer-master .footer-contact-item {
  display: inline-flex;
  margin: 0;
}

.footer-master .footer-connect-inline {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-master .footer-connect-inline .footer-col-title {
  margin-bottom: 14px;
}

.footer-master .footer-connect-inline .footer-links-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-master .footer-connect-inline .footer-links-list li {
  display: block;
}

.footer-master .footer-connect-inline .footer-links-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #f7f7f2;
  background: transparent;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  line-height: 1;
}

.footer-master .footer-connect-inline .footer-links-list a::after {
  display: none;
}

.footer-master .footer-connect-inline .footer-links-list a:hover {
  color: #fff;
  background: #ff391e;
  border-color: #ff391e;
  transform: translateY(-2px);
}

.footer-social-mark {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.footer-social-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.6;
}

.footer-social-mark svg rect,
.footer-social-mark svg circle {
  fill: none;
}

.footer-social-mark svg .fill-shape {
  fill: currentColor;
  stroke: none;
}

.footer-master .footer-bottom-row,
.main-footer .footer-bottom-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  margin-top: clamp(60px, 7vw, 92px);
  padding: 24px 0;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.1);
}

.main-footer .footer-bottom-bar {
  margin-inline: 0;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.footer-legal-links a {
  color: #8b9498;
  font: 600 12px/1 var(--font-main);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-master::after,
.footer-bg-wordmark {
  color: rgba(255,255,255,.028) !important;
}

@media (max-width: 1100px) {
  .main-footer .footer-main-grid,
  .footer-master .footer-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-master .footer-newsletter-box--master,
  .footer-master .footer-col-brand,
  .main-footer .footer-col-brand,
  .main-footer .footer-col-newsletter {
    grid-column: 1 / -1;
  }

  .footer-master .footer-newsletter-box--master {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .main-footer,
  .footer-master {
    padding-inline: 20px;
  }

  .main-footer .footer-main-grid,
  .footer-master .footer-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 22px;
  }

  .footer-master .footer-newsletter-box--master,
  .footer-master .footer-col-brand,
  .main-footer .footer-col-brand,
  .main-footer .footer-col-newsletter {
    grid-column: 1 / -1;
  }

  .footer-master .newsletter-title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .footer-master .newsletter-form,
  .main-footer .newsletter-form {
    flex-direction: row;
  }

  .footer-master .newsletter-submit-btn,
  .main-footer .newsletter-submit-btn {
    padding-inline: 16px;
  }

  .footer-master .footer-bottom-row,
  .main-footer .footer-bottom-bar {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    padding: 24px 0 70px;
  }

  .footer-legal-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* ========================================================================== 
   PROJECTS / WORK PAGE — Premium case-study portfolio
   ========================================================================== */
.projects-page {
  background: #ffffff;
  color: #080c10;
}

.wrk-main {
  overflow: clip;
}

.wrk-shell {
  width: min(1380px, calc(100% - 48px));
  margin-inline: auto;
}

.wrk-hero {
  position: relative;
  min-height: 900px;
  padding: 160px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 24%, rgba(255,57,30,.2), transparent 31%),
    radial-gradient(circle at 91% 78%, rgba(255,57,30,.13), transparent 32%),
    linear-gradient(140deg, #05080a 0%, #0a0d10 54%, #180c09 100%);
  color: #ffffff;
}

.wrk-hero::after {
  content: "WORK";
  position: absolute;
  right: -0.05em;
  bottom: -.18em;
  color: rgba(255,255,255,.025);
  font: 900 clamp(10rem, 29vw, 33rem)/.75 var(--font-display);
  letter-spacing: -.08em;
  pointer-events: none;
}

.wrk-hero-orbit {
  position: absolute;
  width: 720px;
  height: 720px;
  right: -280px;
  top: -280px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
}

.wrk-hero-orbit::before,
.wrk-hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: 1px solid rgba(255,57,30,.13);
}

.wrk-hero-orbit::before { inset: 90px; }
.wrk-hero-orbit::after { inset: 190px; }

.wrk-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, .85fr);
  gap: clamp(54px, 7vw, 120px);
  align-items: center;
}

.wrk-eyebrow,
.wrk-section-index {
  margin: 0;
  color: #ff4a31;
  font: 700 10px/1.2 var(--font-main);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.wrk-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.wrk-eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff391e;
  box-shadow: 0 0 15px rgba(255,57,30,.65);
}

.wrk-hero h1 {
  max-width: 830px;
  margin: 0;
  font: 750 clamp(4rem, 7.2vw, 7.4rem)/.88 var(--font-display);
  letter-spacing: -.07em;
}

.wrk-hero-lead {
  max-width: 640px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.66);
  font: 400 clamp(1rem, 1.4vw, 1.2rem)/1.7 var(--font-main);
}

.wrk-case-link,
.wrk-impact-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 15px 19px;
  border-radius: 999px;
  background: #ff391e;
  color: #ffffff !important;
  font: 700 13px/1 var(--font-main);
  text-decoration: none;
  transition: transform 250ms ease, background 250ms ease;
}

.wrk-case-link:hover,
.wrk-impact-link:hover {
  background: #ffffff;
  color: #080c10 !important;
  transform: translateY(-3px);
}

.wrk-hero-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  height: 52px;
  margin-top: 34px;
  padding: 0 6px 0 20px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(236,239,243,.92));
  color: #151821 !important;
  box-shadow: inset 0 1.5px 1.5px #fff, 0 10px 24px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font: 700 13.5px/1 var(--font-main);
  letter-spacing: .2px;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(.2,1,.3,1), box-shadow 220ms ease;
}

.wrk-hero-link-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #151821;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease;
}

.wrk-hero-link:hover {
  color: #151821 !important;
  transform: translateY(-2px);
  box-shadow: inset 0 1.5px 1.5px #fff, 0 14px 30px rgba(0,0,0,.34);
}

.wrk-hero-link:hover .wrk-hero-link-arrow {
  background: #ff391e;
  transform: translateY(2px);
}

.wrk-hero-link:active { transform: scale(.97); }

.wrk-hero-collage {
  position: relative;
  min-height: 590px;
}

.wrk-collage-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: #131719;
  box-shadow: 0 28px 70px rgba(0,0,0,.36);
}

.wrk-collage-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}

.wrk-collage-card:hover img { transform: scale(1.055); }

.wrk-collage-card--main {
  width: 64%;
  height: 440px;
  left: 2%;
  top: 100px;
  z-index: 2;
  transform: rotate(-3deg);
}

.wrk-collage-card--top {
  width: 42%;
  height: 270px;
  right: 0;
  top: 8px;
  z-index: 1;
  transform: rotate(4deg);
}

.wrk-collage-card--bottom {
  width: 43%;
  height: 285px;
  right: 0;
  bottom: 4px;
  z-index: 3;
  transform: rotate(2deg);
}

.wrk-collage-seal {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 52%;
  width: 132px;
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff391e;
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%) rotate(7deg);
  box-shadow: 0 18px 40px rgba(255,57,30,.3);
}

.wrk-collage-seal strong { font: 800 2rem/1 var(--font-display); }
.wrk-collage-seal span { margin-top: 5px; font: 650 9px/1.2 var(--font-main); letter-spacing: 1px; text-transform: uppercase; }

.wrk-hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  border-top: 1px solid rgba(255,255,255,.13);
}

.wrk-hero-stats div {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 25px 26px 0 0;
}

.wrk-hero-stats strong { font: 750 clamp(1.7rem, 2.7vw, 2.7rem)/1 var(--font-display); }
.wrk-hero-stats span { color: rgba(255,255,255,.5); font: 500 12px/1.3 var(--font-main); }

.wrk-featured,
.wrk-archive {
  background: #ffffff;
  color: #080c10;
}

.wrk-featured { padding: clamp(90px, 10vw, 150px) 0 72px; }

.wrk-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
}

.wrk-section-note {
  margin: 0;
  color: #687075;
  font: 600 12px/1 var(--font-main);
}

.wrk-feature-card {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  min-height: 680px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 100%, rgba(255,57,30,.18), transparent 36%),
    #080c10;
  color: #ffffff;
}

.wrk-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5.3vw, 78px);
}

.wrk-client {
  margin: 0 0 24px;
  color: #ff4a31;
  font: 800 11px/1 var(--font-main);
  letter-spacing: 2.3px;
}

.wrk-feature-copy h2 {
  margin: 0;
  font: 730 clamp(2.4rem, 4.4vw, 4.5rem)/.98 var(--font-display);
  letter-spacing: -.055em;
}

.wrk-feature-copy > p:not(.wrk-client) {
  margin: 27px 0 0;
  color: rgba(255,255,255,.64);
  font: 400 15px/1.72 var(--font-main);
}

.wrk-feature-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: auto 0 0;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.wrk-feature-results div { display: grid; gap: 9px; }
.wrk-feature-results dt { color: rgba(255,255,255,.45); font: 500 10px/1.2 var(--font-main); }
.wrk-feature-results dd { margin: 0; font: 750 1.7rem/1 var(--font-display); }
.wrk-case-link { align-self: flex-start; margin-top: 32px; }

.wrk-feature-media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.wrk-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,12,16,.2), transparent 30%);
}

.wrk-feature-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}

.wrk-feature-card:hover .wrk-feature-media img { transform: scale(1.045); }

.wrk-feature-media figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  background: rgba(7,10,12,.52);
  color: rgba(255,255,255,.78);
  font: 600 10px/1 var(--font-main);
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.wrk-filter-section {
  position: sticky;
  z-index: 40;
  top: var(--header-height, 76px);
  padding: 16px 0;
  background: rgba(255,255,255,.9);
  border-block: 1px solid rgba(8,12,16,.08);
  backdrop-filter: blur(18px) saturate(150%);
}

.projects-page .prj-filter-bar {
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.projects-page .prj-filter-btn {
  flex: 0 0 auto;
  padding: 11px 19px;
  border-color: rgba(8,12,16,.12);
  background: #ffffff;
  color: #535b60;
}

.projects-page .prj-filter-btn:hover,
.projects-page .prj-filter-btn.active {
  background: #080c10;
  border-color: #080c10;
  color: #ffffff;
}

.wrk-archive {
  padding: clamp(88px, 9vw, 140px) 0 clamp(100px, 11vw, 170px);
  scroll-margin-top: 150px;
}

.wrk-archive-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  gap: 50px;
  align-items: end;
  margin-bottom: 62px;
}

.wrk-archive-head h2 {
  max-width: 820px;
  margin: 17px 0 0;
  font: 750 clamp(2.8rem, 5.8vw, 5.7rem)/.94 var(--font-display);
  letter-spacing: -.06em;
}

.wrk-archive-head > p {
  margin: 0 0 8px;
  color: #656d72;
  font: 400 15px/1.72 var(--font-main);
}

.wrk-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.wrk-card {
  position: relative;
  grid-column: span 5;
  min-height: 620px;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #0a0d10;
  color: #ffffff !important;
  text-decoration: none;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 750ms cubic-bezier(.22,1,.36,1);
}

.wrk-card--wide { grid-column: span 7; }

.wrk-grid.is-enhanced .wrk-card:not(.is-visible) {
  opacity: 0;
  transform: translateY(46px) scale(.985);
}

.wrk-card-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.wrk-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,8,10,.02) 20%, rgba(5,8,10,.2) 52%, rgba(5,8,10,.94) 100%);
}

.wrk-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.15s cubic-bezier(.22,1,.36,1), filter 500ms ease;
}

.wrk-card-content {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: clamp(24px, 3vw, 38px);
}

.wrk-card-content > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.wrk-card-content > div span {
  color: #ff4a31;
  font: 800 10px/1 var(--font-main);
}

.wrk-card-content > div p {
  margin: 0;
  color: rgba(255,255,255,.6);
  font: 650 10px/1 var(--font-main);
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.wrk-card h3 {
  max-width: 620px;
  margin: 0;
  font: 730 clamp(2rem, 3.7vw, 3.8rem)/.96 var(--font-display);
  letter-spacing: -.05em;
}

.wrk-card-summary {
  max-width: 540px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  color: rgba(255,255,255,.68);
  font: 400 13px/1.6 var(--font-main);
  transform: translateY(12px);
  transition: max-height 450ms ease, margin 450ms ease, opacity 350ms ease, transform 450ms cubic-bezier(.22,1,.36,1);
}

.wrk-card-arrow {
  position: absolute;
  right: clamp(24px, 3vw, 38px);
  bottom: clamp(24px, 3vw, 38px);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  font-size: 20px;
  transition: background 250ms ease, transform 350ms cubic-bezier(.22,1,.36,1);
}

.wrk-card:hover { transform: translateY(-7px); }
.wrk-card:hover .wrk-card-media img { transform: scale(1.065); filter: saturate(1.08); }
.wrk-card:hover .wrk-card-summary { max-height: 90px; margin-top: 16px; opacity: 1; transform: translateY(0); }
.wrk-card:hover .wrk-card-arrow { background: #ff391e; border-color: #ff391e; transform: rotate(8deg); }

.wrk-impact {
  position: relative;
  overflow: hidden;
  padding: 0 0 clamp(100px, 11vw, 160px);
  background: #070b0d;
  color: #ffffff;
}

.wrk-impact-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.1);
}

.wrk-impact-marquee > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 20px 0;
  animation: wrkMarquee 30s linear infinite;
}

.wrk-impact-marquee span { font: 800 clamp(1.1rem, 2vw, 1.8rem)/1 var(--font-display); letter-spacing: -.02em; }
.wrk-impact-marquee i { color: #ff391e; font-style: normal; }

@keyframes wrkMarquee { to { transform: translateX(-50%); } }

.wrk-impact-inner {
  padding-top: clamp(90px, 10vw, 150px);
  text-align: center;
}

.wrk-impact-inner .wrk-section-index { margin-bottom: 26px; }

.wrk-impact h2 {
  margin: 0;
  font: 750 clamp(3.2rem, 7.2vw, 7.5rem)/.9 var(--font-display);
  letter-spacing: -.07em;
}

.wrk-impact h2 em {
  color: #ff4a31;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

.wrk-impact-link { margin-top: 42px; }

@media (max-width: 1100px) {
  .wrk-hero-grid { grid-template-columns: 1fr; }
  .wrk-hero-copy { max-width: 900px; }
  .wrk-hero-collage { width: min(760px, 100%); margin-inline: auto; }
  .wrk-feature-card { grid-template-columns: 1fr; }
  .wrk-feature-media { min-height: 560px; order: -1; }
  .wrk-feature-copy { min-height: 620px; }
  .wrk-card,
  .wrk-card--wide { grid-column: span 6; }
}

@media (max-width: 767px) {
  .wrk-shell { width: calc(100% - 32px); }
  .wrk-hero { min-height: 0; padding: 130px 0 44px; }
  .wrk-hero h1 { font-size: clamp(3.25rem, 15.2vw, 5rem); }
  .wrk-hero-lead { margin-top: 24px; font-size: 15px; }
  .wrk-hero-collage { min-height: 430px; margin-top: 16px; }
  .wrk-collage-card { border-radius: 15px; }
  .wrk-collage-card--main { width: 66%; height: 305px; top: 70px; }
  .wrk-collage-card--top { width: 43%; height: 180px; }
  .wrk-collage-card--bottom { width: 45%; height: 190px; }
  .wrk-collage-seal { width: 92px; height: 92px; }
  .wrk-collage-seal strong { font-size: 1.35rem; }
  .wrk-collage-seal span { font-size: 7px; }
  .wrk-hero-stats { grid-template-columns: 1fr; margin-top: 28px; }
  .wrk-hero-stats div { justify-content: space-between; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .wrk-section-head { align-items: flex-start; flex-direction: column; }
  .wrk-featured { padding: 72px 0 48px; }
  .wrk-feature-card { border-radius: 19px; }
  .wrk-feature-media { min-height: 390px; }
  .wrk-feature-copy { min-height: 0; padding: 32px 24px; }
  .wrk-feature-copy h2 { font-size: clamp(2.25rem, 11vw, 3.2rem); }
  .wrk-feature-results { margin-top: 42px; grid-template-columns: 1fr 1fr; }
  .wrk-feature-results div:last-child { grid-column: 1 / -1; }
  .wrk-filter-section { top: var(--header-height, 68px); padding: 12px 0; }
  .wrk-archive {
    padding: 72px 0 92px;
    scroll-margin-top: 132px;
  }
  .wrk-archive-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .wrk-archive-head h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .wrk-grid { gap: 18px; }
  .wrk-card,
  .wrk-card--wide { grid-column: 1 / -1; min-height: 510px; border-radius: 17px; }
  .wrk-card-summary { display: none; }
  .wrk-card-arrow { width: 42px; height: 42px; }
  .wrk-card h3 { max-width: calc(100% - 56px); font-size: clamp(2rem, 9vw, 2.8rem); }
  .wrk-impact h2 { font-size: clamp(3rem, 14vw, 4.8rem); }
}

@media (prefers-reduced-motion: reduce) {
  .wrk-impact-marquee > div { animation: none; }
  .wrk-card,
  .wrk-grid.is-enhanced .wrk-card:not(.is-visible) { opacity: 1; transform: none; transition: none; }
  .wrk-card-media img,
  .wrk-collage-card img,
  .wrk-feature-media img { transition: none; }
}
