/* ============================================================
   ENTER THE STADIUM - Single Page
   Black & White · Big Fonts · Heavy Shadows · Fixed Images
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700;1,800&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --white: #ffffff;
  --off-white: #f7f7f7;
  --light-gray: #e0e0e0;
  --mid-gray: #888888;
  --dark-gray: #4a4a4a;
  --near-black: #111111;
  --black: #000000;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --tracking-tight: -0.04em;
  --tracking-normal: -0.01em;
  --tracking-wide: 0.12em;

  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-6: 1.5rem; --sp-8: 2rem; --sp-10: 2.5rem; --sp-12: 3rem;
  --sp-16: 4rem; --sp-20: 5rem; --sp-24: 6rem; --sp-32: 8rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 44px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.16);
  --shadow-2xl: 0 32px 80px rgba(0,0,0,0.20);
  --shadow-image: 0 20px 50px rgba(0,0,0,0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --accent-gold: #ffffff;
  --dark-bg: #0d0d0d;

  --header-h: 80px;
  scroll-padding-top: var(--header-h);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: var(--tracking-normal);
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container, .container--wide { margin: 0 auto; padding: 0 var(--sp-12); width: 100%; }
.container { max-width: 1440px; }
.container--wide { max-width: 1600px; }
.container--full { max-width: 100%; padding: 0; }

/* ---------- Typography - Big & Bold ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--near-black);
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.015em;
}

h4 {
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 700;
}

em { font-style: italic; font-family: var(--font-display); }

.lead { font-size: 1.15rem; line-height: 1.85; color: var(--dark-gray); }

/* ---------- Label Tag ---------- */
.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--near-black);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.03);
}

.section--dark .label-tag {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.label-tag--light {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.05);
}

.label-tag--hero {
  border: 1.5px solid rgba(255,255,255,0.4) !important;
  color: var(--white) !important;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 1.15rem;
  font-weight: 900;
  padding: 10px 24px;
  background: rgba(255,255,255,0.1) !important;
  backdrop-filter: blur(8px);
  margin-bottom: var(--sp-8);
  display: inline-block;
}

.hero-label-heading {
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.4em;
  margin-bottom: var(--sp-6);
  text-transform: uppercase;
  display: block;
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--white);
  margin-bottom: var(--sp-8);
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: var(--sp-6);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 17px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), filter 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn--primary {
  background: var(--white);
  color: var(--near-black);
  box-shadow: var(--shadow-lg);
}
.btn--primary::after {
  background: var(--off-white);
}
.btn--primary:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-4px);
}

/* Ghost button for dark backgrounds */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--ghost::after {
  background: rgba(255,255,255,0.1);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-4px);
}

/* Dark button for light backgrounds */
.btn--dark {
  background: var(--near-black);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.btn--dark::after {
  background: var(--black);
}
.btn--dark:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-4px);
}

/* Gold button refactored to BW for premium visibility */
.btn--outline-dark {
  background: transparent;
  color: var(--near-black);
  border: 2px solid var(--near-black);
  font-weight: 700;
}

.btn--outline-dark:hover {
  background: var(--near-black);
  color: #ffffff !important;
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.btn--with-icon {
  gap: 12px;
}
.btn--with-icon svg {
  transition: transform 0.4s var(--ease);
}
.btn--with-icon:hover svg {
  transform: scale(1.1) rotate(-10deg);
}

/* Button group helpers */
.btn--full { width: 100%; }
.btn-group { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0;
  width: 100%;
  z-index: 2000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease);
  background: transparent;
  padding-top: 20px;
}

/* Default: transparent with white text for hero */
.site-header .container { display: flex; justify-content: space-between; align-items: center; }

.site-header .logo { color: var(--white); transition: color 0.5s; }
.site-header .main-nav a { color: rgba(255,255,255,0.8); }
.site-header .main-nav a:hover { color: var(--white); }
.site-header .menu-toggle span { background: var(--white); }

/* Scrolled: solid white background */
.site-header.scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100%;
  background: #ffffff !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  height: 64px;
  padding-top: 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 2100;
}
.site-header.scrolled .logo { color: var(--near-black); }
.site-header.scrolled .logo-accent { color: #d4af37; } /* Keep gold accent or dark */
.site-header.scrolled .main-nav a { color: var(--near-black); }
.site-header.scrolled .btn--nav-pill { 
  border-color: var(--near-black);
  background: transparent;
}
.site-header.scrolled .btn--nav-pill:hover {
  background: var(--near-black);
  color: #ffffff !important;
}
.site-header.scrolled .menu-toggle span { background: var(--near-black); }

.logo-branded-container {
  text-decoration: none;
  display: inline-block;
  z-index: 1001;
}
.logo-white-box {
  background: #FFFFFF;
  padding: 15px 35px 10px 20px;
  height: 85px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.5s var(--ease);
  border: none;
  border-radius: 0 0 25px 25px; /* Only bottom corners rounded */
  position: relative;
  z-index: 1002;
  margin-top: -25px; /* Aggressive pull to hide top stripe */
  margin-left: -5px;
}

.logo-white-box.logo-no-shadow {
  border: none;
  background: #FFFFFF;
  padding: 15px 25px;
  border-radius: 12px;
  margin-left: 0;
  margin-top: 0;
  height: auto;
  box-shadow: none;
}
.footer-logo-wrap {
  display: inline-flex !important;
  margin-bottom: 20px !important;
}
.logo-white-box:hover {
  padding-bottom: 15px;
  border-radius: 0 0 35px 35px;
}
.logo-icon-img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.5s var(--ease);
}
.logo-white-box:hover .logo-icon-img {
  transform: scale(1.02);
}
.logo-text-new {
  color: #000000;
  font-size: 26px;
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
  transition: transform 0.3s var(--ease);
}
.logo-white-box:hover .logo-text-new {
  transform: scale(1.02);
}
.site-header.scrolled .logo-white-box {
  background: #FFFFFF;
  margin-top: 0;
  height: 54px;
  padding: 5px 25px;
  border-radius: 12px;
}
.logo-accent { font-style: normal; color: var(--white); opacity: 0.9; }
.scrolled .logo-accent { color: var(--near-black); }

.main-nav { display: flex; gap: var(--sp-8); align-items: center; }
.main-nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.4s var(--ease);
  opacity: 0.8;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--near-black) !important; font-weight: 700; }
.site-header:not(.scrolled) .main-nav a.active { color: var(--white) !important; }

.btn--nav-pill {
  padding: 8px 24px !important;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  margin-left: 10px;
  opacity: 1 !important;
}

.btn--nav-pill:hover {
  background: #ffffff;
  color: var(--near-black) !important;
  border-color: #ffffff;
}

.menu-toggle {
  display: none;
  flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px;
  z-index: 1001;
}
.menu-toggle span { display: block; width: 26px; height: 2px; transition: all 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--near-black);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-10);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  transition: opacity 0.3s;
}
.mobile-menu a:hover { opacity: 0.6; }

/* ============================================
   HERO ROW
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0; 
  background: var(--near-black);
  width: calc(100% - 48px);
  max-width: 1700px;
  margin: 16px auto 0 auto;
  border-radius: 60px;
  min-height: 300px;
  height: 440px;
  max-height: 500px;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: calc(var(--header-h) + 90px) var(--sp-6) var(--sp-4);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-bg-image, .hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 60px;
  pointer-events: none; /* Block all interactions */
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.35;
}

.hero-bg-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%) scale(3.2); /* Aggressive scale to hide all YouTube UI */
  pointer-events: none;
  border: 0;
  opacity: 0.4;
  filter: grayscale(100%) contrast(1.1) brightness(0.7);
  z-index: -1;
}

/* Full interaction blocker + bottom control hider */
.hero-bg-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: all;
  background: transparent;
}
/* Extra bottom strip that matches hero background to completely hide any controls */
.hero-bg-video::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 11;
  pointer-events: none;
  background: linear-gradient(transparent, #000);
}

/* Solid HTML shield sitting ABOVE the iframe — blocks all YouTube player UI */
.video-shield {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: all;
  background: transparent;
  cursor: default;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.78) 100%);
}

/* Swiper Navigation Customization */

.hero-swiper-button-prev,
.hero-swiper-button-next {
  color: var(--white);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  z-index: 10;
}

.hero-swiper-button-prev::after,
.hero-swiper-button-next::after {
  font-size: 1.2rem;
  font-weight: 900;
}

.hero-swiper-button-prev:hover,
.hero-swiper-button-next:hover {
  background: var(--white);
  color: var(--near-black);
}

.hero-container-center {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 2;
  position: relative;
}

.hero-content {
  width: 100%; 
  max-width: 1000px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--sp-6);
}
.hero-content h1 { 
  color: var(--white); 
  margin-bottom: var(--sp-4); 
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
}
.hero-content .lead {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto var(--sp-2);
  font-weight: 400;
  line-height: 1.5;
}
.hero-content .hero-sub-text {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: rgba(255,255,255,0.6);
  max-width: 800px;
  margin: 0 auto var(--sp-4);
  font-weight: 400;
  line-height: 1.6;
}
.hero-content .btn-group {
  margin-top: var(--sp-4);
}

/* ============================================
   HORIZONTAL CONNECT SERVICES
   ============================================ */
.connect-services {
  padding: 0 0 var(--sp-12) 0;
  background: #f8f9fa; /* Slight off-white background to make white cards pop */
}
.connect-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-4);
  color: var(--near-black);
  text-align: center;
}
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8); /* Tighter gap for card-like feel */
  width: calc(100% - 60px);
  max-width: 1200px;
  margin: 0 auto;
}
.connect-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 60px; /* Much rounder as per reference */
  padding: 24px;
  text-decoration: none;
  transition: all 0.5s var(--ease);
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.03);
}
.connect-icon-box {
  width: 100%;
  aspect-ratio: 16 / 11;
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 45px; /* Inset image rounding */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
  transition: all 0.5s var(--ease);
}

.connect-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  z-index: 0;
  opacity: 0.8;
  filter: grayscale(100%);
}

.connect-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* Deep dark overlay for icon pop */
  z-index: 1;
  transition: all 0.5s var(--ease);
}

.connect-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 0.9rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--white);
  opacity: 0.5;
  z-index: 2;
}

.connect-icon-box i.connect-main-icon {
  font-size: 72px; /* Much larger icon as per reference */
  color: var(--white);
  transition: all 0.5s var(--ease);
  z-index: 2;
  position: relative;
  opacity: 0.95;
}

.connect-card:hover .connect-icon-box {
  box-shadow: var(--shadow-lg);
}

.connect-card:hover .connect-bg-img {
  transform: scale(1.05);
  opacity: 1;
  filter: grayscale(100%) contrast(1.2);
}

.connect-card:hover .connect-overlay {
  background: rgba(0,0,0,0.3);
}

.connect-card:hover .connect-icon-box i.connect-main-icon {
  transform: scale(1.1);
}

.connect-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.connect-info-box h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--near-black);
  margin: 0;
  letter-spacing: -0.02em;
  transition: transform 0.5s var(--ease);
}
.connect-card:hover .connect-info-box h3 {
  transform: scale(1.1);
}

/* WhatsApp Button Style */
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px; /* Pill shape */
  color: #ffffff;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  font-weight: 600;
  transition: all 0.4s var(--ease);
}

.btn--whatsapp:hover {
  background: #ffffff;
  color: var(--near-black);
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* === SERVICES PILLARS (3 PILLAR LAYOUT) === */
.services-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-12);
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.pillar-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--light-gray);
  position: relative;
  box-shadow: var(--shadow-md);
}

.pillar-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 8rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.04);
  font-family: var(--font-display);
  z-index: 0;
  line-height: 1;
  pointer-events: none;
  transition: all 0.5s ease;
}

.pillar-card:hover .pillar-number {
  transform: translateY(10px);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), transparent 50%, rgba(0, 0, 0, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pillar-card:hover {
  transform: translateY(-12px);
  background: var(--white);
  border-color: var(--near-black);
  box-shadow: var(--shadow-2xl);
}

.pillar-card:hover::after {
  opacity: 1;
}

.pillar-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.pillar-card:hover .pillar-image img {
  transform: scale(1.15);
}

.pillar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark), transparent);
  opacity: 0.8;
}

.pillar-icon {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-6);
  width: 64px;
  height: 64px;
  background: var(--near-black);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: all 0.5s ease;
}

.pillar-card:hover .pillar-icon {
  transform: rotateY(180deg) scale(1.1);
  background: var(--dark-gray);
  color: var(--white);
}

.pillar-body {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.pillar-body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--near-black);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.03em;
  transition: transform 0.5s var(--ease);
  transform-origin: left center;
}
.pillar-card:hover .pillar-body h3 {
  transform: scale(1.05);
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-10);
  flex-grow: 1;
}

.pillar-list li {
  position: relative;
  padding-left: var(--sp-8);
  margin-bottom: var(--sp-4);
  font-size: 1.05rem;
  color: var(--dark-gray);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.pillar-list li:hover {
  color: var(--gold-light);
}

.pillar-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--near-black);
  font-weight: 900;
  font-size: 1.1rem;
}


.pillar-card .btn--full {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: auto; /* Force to bottom of card content */
  min-height: 58px; /* Standardize button height across cards */
}

/* ══════════════════════════════════════════
   PRODUCT CATALOG — TABS + CARDS (Midnight Luxury)
══════════════════════════════════════════ */

/* Tab nav strip */
.prod-tabs {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  margin-bottom: var(--sp-12);
  flex-wrap: wrap;
}

.prod-tab {
  padding: var(--sp-3) var(--sp-8);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.prod-tab:hover {
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}

.prod-tab--active {
  background: #fff;
  color: #0d0d0d;
  border-color: #fff;
}

/* Panel visibility */
.prod-panel {
  display: none;
}

.prod-panel--active {
  display: block;
}

/* ── Card Grid ── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

@media (max-width: 1280px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .prod-grid { grid-template-columns: 1fr; } }

/* ── Individual Card ── */
.prod-card {
  display: flex;
  flex-direction: column;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.2);
}

/* ── Image Area ── */
.prod-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.prod-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  background: #222;
  transition: transform 0.6s var(--ease-out);
}

.prod-card:hover .prod-card__img {
  transform: scale(1.07);
}

.prod-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

/* ── Text Body ── */
.prod-card__body {
  flex: 1;
  padding: var(--sp-6) var(--sp-6) var(--sp-4);
}

.prod-card__body h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: var(--sp-2);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.prod-card__body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5) !important;
  line-height: 1.65;
  margin: 0;
}

/* ── CTA Button ── */
.prod-card__cta {
  display: block;
  margin: 0 var(--sp-6) var(--sp-6);
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75) !important;
  background: transparent;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.prod-card__cta:hover {
  background: #000000;
  color: #ffffff !important;
  border-color: #000000;
}


/* Mobile Adjustments */
@media (max-width: 1024px) {
  .services-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
  }
}

@media (max-width: 768px) {
  .services-pillars-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  
  .pillar-body {
    padding: var(--sp-6);
  }
}

/* Section Header Width Adjustment */
.eco-desc.mx-auto {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.connect-card:hover .connect-icon-box {
  color: var(--near-black);
}
.connect-card:hover .connect-icon-box i.connect-main-icon {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .connect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .connect-title { font-size: 2.2rem; margin-bottom: var(--sp-4); }
  .connect-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .connect-services .container--wide {
    padding-left: var(--sp-4);
    padding-right: var(--sp-4);
  }
}
/* Orphaned connect styles removed */

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


.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-10); left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: var(--sp-3);
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.2; transform: scaleY(0.5); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--sp-24) 0; width: 100%; }
.section--alt { background: var(--off-white); }
.section-header { 
  margin-bottom: var(--sp-16);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-header--left p {
  margin-left: 0;
  margin-right: 0;
}

.section-header h2 {
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
}
.section-header h2 em {
  font-style: normal;
  color: var(--mid-gray);
  font-weight: 400;
}
.section-header p { 
  margin-top: var(--sp-6); 
  color: var(--dark-gray); 
  max-width: 600px; 
  font-size: 1.1rem;
  line-height: 1.6;
  letter-spacing: var(--tracking-normal);
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   ABOUT - Overlapping Image Stack
   ============================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.split-left h2 { margin-bottom: var(--sp-8); }
.split-left p { margin-bottom: var(--sp-6); }

.about-image-stack {
  position: relative;
  padding: var(--sp-8) 0 var(--sp-8) var(--sp-8);
}

.img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-image);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.6s, transform 0.6s var(--ease-out);
}
.img-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.img-card--main {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  z-index: 1;
}
.img-card--main:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl);
}

.img-card--accent {
  width: 52%;
  aspect-ratio: 4/3;
  position: absolute;
  bottom: -12px;
  left: -16px;
  z-index: 2;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-xl);
}
.img-card--accent:hover {
  transform: translate(-4px, -8px) rotate(-2deg);
  box-shadow: var(--shadow-2xl);
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: #000000 !important;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: var(--sp-16) 0;
  width: 100%;
  position: relative;
  z-index: 5;
}

.stats-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-12);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  margin-bottom: var(--sp-1);
}

.stat-number-light {
  color: #ffffff !important;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.8;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
  flex-shrink: 0;
}

/* ============================================
   CATEGORIES - 2x2 Grid with Wide Cards
   ============================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  height: 300px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl);
}

.cat-card-img {
  position: absolute;
  inset: 0;
}
.cat-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
  transition: filter 0.6s, transform 0.8s var(--ease-out);
  background: var(--near-black);
}
.cat-card:hover .cat-card-img img {
  filter: grayscale(0%);
  transform: scale(1.06);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-8);
  z-index: 1;
}

.cat-card-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--near-black);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: var(--sp-3);
}

.cat-card-overlay h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom: var(--sp-2);
  text-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.cat-card-overlay p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.5s var(--ease);
}
.cat-card:hover .cat-card-overlay p {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================
   EXPERIENCES - Section & Card Grid (v10 layout)
   ============================================ */
.exp-section {
  background: #f5f5f5;
  padding: 80px 0;
}

.exp-section .inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 40px;
}

/* Split layout: text left, cards right */
.exp-split {
  display: flex;
  align-items: center;
  gap: 48px;
}

.exp-text {
  flex: 0 0 280px;
  max-width: 300px;
}

.exp-text .sec-label {
  font-family: var(--font-display);
  color: var(--near-black);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.exp-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--near-black);
  margin: 0 0 12px;
  line-height: 1.1;
}

.exp-text > p:not(.sec-label) {
  font-family: var(--font-body);
  color: #666;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 24px;
}

.exp-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  background: var(--near-black);
  padding: 14px 28px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-md);
  line-height: 1.4;
}
.exp-btn:hover {
  background: var(--dark-gray);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* 4-column card grid (right side) */
.exp-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Card */
.exp-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.exp-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

/* Card image container */
.exp-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.exp-card:hover .exp-card-img img {
  transform: scale(1.06);
}

/* Overlay label at bottom of image */
.exp-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.exp-card__label strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.exp-card__label span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

/* Legacy support (not used in v10 layout but kept for other pages) */
.exp-card--featured { grid-column: span 2; flex-direction: row; }
.exp-card--featured .exp-card-img { flex: 1.2; min-height: 320px; }
.exp-card--featured .exp-card-body { flex: 1; }
.exp-badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--near-black);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 100px;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.exp-badge--sold { background: var(--dark-gray); }
.exp-card-body {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-3);
}
.exp-card-body h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.exp-meta { display: flex; gap: var(--sp-6); font-size: 0.8rem; color: var(--mid-gray); }
.exp-meta i { margin-right: var(--sp-1); }
.exp-card-body > p { font-size: 0.9rem; color: var(--dark-gray); line-height: 1.65; }
.exp-cta { font-size: 0.82rem; font-weight: 700; color: var(--near-black); letter-spacing: 0.02em; margin-top: var(--sp-2); transition: opacity 0.3s; display: inline-block; }
.exp-cta:hover { opacity: 0.6; }



/* ============================================
   WHY US - Cards
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.why-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-8);
  box-shadow: var(--shadow-md);
  transition: all 0.5s var(--ease-out);
  position: relative;
}
.why-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-8px);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: var(--sp-8); right: var(--sp-8);
  height: 3px;
  background: var(--near-black);
  border-radius: 0 0 4px 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-6);
  line-height: 1;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--near-black);
  transition: all 0.3s var(--ease);
}
.why-card:hover .why-icon {
  background: rgba(196,163,90,0.22);
  transform: scale(1.1);
}

.why-card h4 {
  margin-bottom: var(--sp-3);
  font-size: 1.2rem;
}
.why-card p { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.65; }

/* ============================================
   PARALLAX ECOSYSTEM SECTION
   ============================================ */
.parallax-section {
  position: relative;
  width: 100%;
  padding: var(--sp-32) 0;
  overflow: hidden;
  background: var(--near-black);
  color: var(--white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-section h2,
.parallax-section h2 em,
.parallax-section p,
.parallax-section .lead {
  color: var(--white);
}

.parallax-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(80%) contrast(1.2);
  transform: translateZ(0); /* hint for hardware accel */
  z-index: 0;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1;
}

.z-index-2 {
  position: relative;
  z-index: 2;
}

.text-white { color: var(--white) !important; }
.opacity-70 { opacity: 0.7; }
.text-center { text-align: center; }
.mt-5 { margin-top: var(--sp-12); }

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}

.eco-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-8);
  transition: all 0.5s var(--ease-out);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.eco-card:hover {
  background: var(--white);
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.eco-icon {
  font-size: 2rem;
  margin: 0 auto var(--sp-6);
  line-height: 1;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--near-black);
  transition: transform 0.3s ease;
}
.eco-card:hover .eco-icon {
  transform: scale(1.1);
}

.eco-card h4 {
  margin-bottom: var(--sp-3);
  font-size: 1.2rem;
  color: var(--near-black);
}
.eco-card p { font-size: 0.88rem; color: rgba(0,0,0,0.6); line-height: 1.65; }

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

/* ============================================
   PROCESS - Dark Section
   ============================================ */
.section--dark {
  position: relative;
  background: #050505 !important;
  overflow: hidden;
  scroll-margin-top: 120px;
}
.section--dark,
.parallax-section,
.cta-banner {
  color: var(--white) !important;
}

.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4, .section--dark h5, .section--dark h6, .section--dark p, .section--dark li, .section--dark .lead, .section--dark em,
.parallax-section h1, .parallax-section h2, .parallax-section h3, .parallax-section h4, .parallax-section h5, .parallax-section h6, .parallax-section p, .parallax-section li, .parallax-section .lead, .parallax-section em,
.cta-banner h1, .cta-banner h2, .cta-banner h3, .cta-banner h4, .cta-banner h5, .cta-banner h6, .cta-banner p, .cta-banner li, .cta-banner .lead, .cta-banner em {
  color: var(--white) !important;
}

.process-bg-img {
  position: absolute;
  inset: 0;
}
.process-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.1;
  filter: grayscale(100%);
  background: var(--near-black);
}

.section--dark .container { position: relative; z-index: 1; }

/* Light Section for About/Process */
.section--white {
  position: relative;
  background: var(--white) !important;
  overflow: hidden;
}
/* --- White/Light Sections -> Black Text --- */
.section--white, 
.section--alt,
.section--light {
  color: var(--near-black) !important;
}

.section--white h1, .section--white h2, .section--white h3, .section--white h4, .section--white h5, .section--white h6, .section--white p, .section--white li, .section--white .lead, .section--white .hero-title-dark, .section--white em,
.section--alt h1, .section--alt h2, .section--alt h3, .section--alt h4, .section--alt h5, .section--alt h6, .section--alt p, .section--alt li, .section--alt .lead, .section--alt em,
.section--light h1, .section--light h2, .section--light h3, .section--light h4, .section--light h5, .section--light h6, .section--light p, .section--light li, .section--light .lead, .section--light em {
  color: var(--near-black) !important;
}

.section--white .outlined-text-dark {
  -webkit-text-stroke: 1px rgba(0,0,0,0.3) !important;
}

.section--white .value-icon,
.section--white .why-icon,
.section--white .tech-icon,
.section--white .eco-icon {
  color: var(--near-black) !important;
}

.section--white .label-tag {
  background: rgba(0, 0, 0, 0.05) !important;
  color: var(--near-black) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.4); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-12);
  align-items: start;
}

.step {
  text-align: center;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}

.step:hover {
  transform: translateY(-5px);
}

.step-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: -1.5rem;
  transition: color 0.5s;
  display: block;
}

.step:hover .step-num { color: rgba(255,255,255,0.15); }

.step h4 { color: var(--white); margin-bottom: var(--sp-4); font-size: 1.4rem; position: relative; z-index: 2; }
.step p { font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.6; position: relative; z-index: 2; margin: 0 auto; max-width: 250px; }

/* ============================================
   FAQ (Midnight Luxury Edition)
   ============================================ */
.faq-premium-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.faq-premium-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: var(--sp-16);
  align-items: start;
  position: relative;
  z-index: 1;
}

.faq-left {
  position: sticky;
  top: 120px;
}

.faq-premium-section .label-tag {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--near-black);
}

.faq-left h2 { 
  margin-bottom: var(--sp-6);
  color: var(--near-black);
  line-height: 1.1;
}

.faq-subtitle {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

.faq-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  max-width: 360px;
  margin-top: var(--sp-8);
}

.faq-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.faq-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.8s, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: var(--off-white);
}

.faq-image:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-item:hover {
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.faq-item.active {
  border-color: var(--near-black);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--near-black);
  padding: 26px 48px;
  box-sizing: border-box;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-6);
  transition: color 0.3s;
}

.faq-question:focus-visible {
  outline: 2px solid var(--near-black);
  outline-offset: -2px;
}

.faq-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item:hover .faq-icon {
  background: rgba(0, 0, 0, 0.06);
}

.faq-item.active .faq-icon {
  background: var(--near-black);
  border-color: var(--near-black);
  transform: rotate(135deg);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--near-black);
  transition: background 0.4s;
  border-radius: 2px;
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background: var(--white);
}

.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 48px 32px 48px;
  box-sizing: border-box;
  color: var(--mid-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.07);
  align-items: start;
}

/* Left column */
.contact-text { display: flex; flex-direction: column; gap: 0; }
.contact-text .label-tag {
  display: inline-block;
  background: #ede9fe;
  color: #000000;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
}
.contact-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #111;
  margin: 0 0 12px;
  line-height: 1.1;
}
.contact-text > p {
  color: #666;
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 420px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-details a,
.contact-details .contact-address {
  font-size: 0.92rem;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
  margin: 0;
}
.contact-details a:hover { color: #000000; }

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ede9fe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-image {
  border-radius: 14px;
  overflow: hidden;
  height: 200px;
  border: 1px solid #eee;
}
.contact-image iframe {
  width: 100%;
  height: 100%;
  filter: none;
  transition: none;
  display: block;
}

/* Right column — form card */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #f7f5ff;
  border: 1.5px solid #e4dfff;
  border-radius: 20px;
  padding: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.93rem;
  padding: 12px 15px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  background: #fff;
  color: #111;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover { border-color: #bbb; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
  color: #111;
}

.form-group select option { color: #111; background: #fff; }

/* Submit */
.contact-form .btn--primary {
  background: #000000;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}
.contact-form .btn--primary:hover {
  background: #000000;
  transform: translateY(-2px);
}

.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 16px 24px;
  text-align: center;
}
.form-success p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #166534;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-block {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
  .form-row { grid-template-columns: 1fr; }
}



/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--near-black);
  color: var(--white);
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  z-index: 900;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--white);
  padding: var(--sp-20) 0 var(--sp-12);
  border-top: 1px solid var(--light-gray);
  color: #000000;
}

.site-footer .logo-accent {
  color: #000000;
  opacity: 1;
}

.site-footer h5 {
  color: #000000;
  margin-bottom: var(--sp-6);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: 0.9rem;
}

.site-footer p {
  color: #333333;
  font-size: 0.95rem;
  max-width: 320px;
}

.site-footer a {
  color: #000000;
  display: block;
  margin-bottom: var(--sp-2);
  font-size: 0.95rem;
  transition: opacity 0.3s var(--ease);
}

.site-footer a:hover {
  opacity: 0.6;
}

.site-footer .footer-bottom {
  border-top: 1px solid var(--light-gray);
  margin-top: var(--sp-12);
  padding-top: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666666;
}

.site-footer .footer-bottom a {
  display: inline-block;
  margin-left: var(--sp-6);
  margin-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-16);
}

.connect-main-icon {
  font-size: 2.2rem;
  color: #ffffff !important; /* Force white color for visibility */
  margin-bottom: var(--sp-4);
  display: inline-block;
}

.footer-brand .logo {
  font-size: 1.6rem;
  margin-bottom: var(--sp-4);
  display: inline-block;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--mid-gray);
  max-width: 320px;
}

.footer-col h5 {
  font-size: 0.85rem;
  margin-bottom: var(--sp-8);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--near-black);
  font-weight: 800;
}

.footer-col a {
  display: block;
  font-size: 0.95rem;
  color: var(--mid-gray);
  margin-bottom: var(--sp-4);
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--near-black);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid var(--light-gray);
  padding-top: var(--sp-10);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--sp-8);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  font-size: 0.9rem;
  color: var(--dark-gray);
  max-width: 400px;
}

.footer-contact-info span {
  line-height: 1.6;
}

.footer-bottom .copyright {
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-top: auto;
  white-space: nowrap;
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-6);
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: var(--mid-gray);
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: var(--near-black);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }
  
  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--sp-6);
  }
  
  .footer-contact-info {
    max-width: 100%;
  }
}

/* ============================================
   GSAP Animation Helpers
   ============================================ */
.js-gsap-active .fade-up { visibility: hidden; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .container { padding: 0 var(--sp-8); }
}

@media (max-width: 1024px) {
  .split-layout { grid-template-columns: 1fr; gap: var(--sp-12); }
  .about-image-stack { padding-left: 0; max-width: 500px; }
  .img-card--accent { left: 0; }
  .exp-card--featured { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
  .step-connector { display: none; }
  .step { min-width: auto; }
  .faq-layout { grid-template-columns: 1fr; gap: var(--sp-8); }
  .faq-left { position: static; text-align: center; }
  .faq-left h2 { margin-left: auto; margin-right: auto; }
  .faq-image { display: none; }
  .contact-block { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .site-header {
    width: 100%;
    top: 0;
    margin: 0;
    padding-top: 0;
    background: #ffffff !important;
  }
  .site-header .container { 
    padding: 0 16px; 
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .site-header .menu-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .site-header .menu-toggle span {
    background: var(--near-black) !important;
  }
  .container, .container--wide { padding: 0 16px; }
  
  /* Mobile Logo — flex item, no absolute positioning */
  .site-header .logo-branded-container {
    position: relative;
    flex-shrink: 1;
    min-width: 0;
  }
  
  /* Mobile Logo Sizing */
  .logo-white-box {
    padding: 10px 18px;
    height: 70px;
    margin-top: 0;
    border-radius: 0;
    gap: 12px;
    margin-left: 0;
    box-shadow: none;
  }
  .logo-icon-img { height: 48px; }
  .logo-text-new { font-size: 24px; }
  .site-header.scrolled .logo-white-box {
    height: 54px;
    padding: 6px 14px;
    border-radius: 0;
    margin-top: 0;
    box-shadow: none;
  }
  .hero { 
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    min-height: 320px;
    height: auto; 
    max-height: none;
    padding: 0;
    margin-bottom: 0;
  }
  .hero-slide-content {
    padding: calc(var(--header-h) + 50px) 20px 24px;
    align-items: center;
  }
  .connect-services { padding-top: 20px !important; }
  .section-header--left,
  .section-header--left p,
  .section-header--left h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .hero-swiper-button-prev,
  .hero-swiper-button-next {
    display: none !important; /* Hide arrows on mobile, users can swipe naturally */
  }

  h1 { font-size: clamp(1.8rem, 8vw, 2.2rem); }
  .hero-content .lead { font-size: 0.9rem; line-height: 1.55; margin-bottom: 8px; }
  .hero-content .hero-sub-text { display: none; } /* Hide secondary text on mobile to save space */
  .hero-content .btn-group { margin-top: 16px; }
  .connect-title { font-size: 2.6rem; margin-bottom: var(--sp-6); }
  .connect-grid { gap: var(--sp-10); width: calc(100% - 32px); }

  h2 { font-size: clamp(2rem, 7vw, 2.8rem); }

  .section { padding: var(--sp-16) 0; }
  .section-header { margin-bottom: var(--sp-10); }

  /* FAQ Mobile Tweaks */
  .faq-question {
    padding: 22px 36px;
    font-size: 1rem;
    gap: var(--sp-4);
  }
  .faq-icon {
    width: 28px;
    height: 28px;
  }
  .faq-answer-inner {
    padding: 0 36px 28px 36px;
  }

  .stats-strip { padding: var(--sp-10) 0; }
  .stats-strip-inner { flex-wrap: wrap; gap: var(--sp-6); padding: 0 var(--sp-6); }
  .stat-divider { display: none; }
  .stat-item { min-width: 42%; text-align: center; }
  .stat-number { font-size: clamp(2rem, 8vw, 3rem); }

  .category-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .cat-card { height: 220px; }
  .cat-card--wide { height: 260px; }
  .cat-card-overlay { padding: var(--sp-6); }
  .cat-card-overlay h3 { font-size: 1.5rem; }
  .cat-card-overlay p { opacity: 1; transform: none; font-size: 0.78rem; }

  .exp-section { padding: 48px 0; }
  .exp-section .inner { padding: 0 20px; }
  .exp-split { flex-direction: column; gap: 32px; align-items: flex-start; }
  .exp-text { flex: none; max-width: 100%; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .exp-card-img { aspect-ratio: 3 / 4; }
  .exp-card__label { padding: 24px 12px 12px; }
  .exp-card__label strong { font-size: 0.82rem; }
  .exp-card__label span { font-size: 0.65rem; }
  .exp-card--featured { grid-column: span 1; flex-direction: column; }
  .exp-card--featured .exp-card-img { min-height: 200px; flex: none; }
  .exp-card--featured .exp-card-body { flex: none; }
  .exp-card-body { padding: var(--sp-6); }

  .why-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .why-card { padding: var(--sp-8) var(--sp-6); }

  .steps-row { grid-template-columns: 1fr; gap: var(--sp-6); }
  .step { width: 100%; max-width: 100%; }
  .step-num { font-size: 3rem; margin-bottom: var(--sp-3); }

  .faq-question { font-size: 0.95rem; padding: 20px 28px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-block { padding: var(--sp-6); gap: var(--sp-8); border-radius: var(--radius-lg); }
  .contact-image { display: block; height: 180px; margin-top: 10px; }
  .contact-text { max-width: 100%; }
  .contact-details { font-size: 0.95rem; }



  .back-to-top { bottom: var(--sp-4); right: var(--sp-4); width: 42px; height: 42px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .site-header { margin: 0; top: 0; padding-top: 0; }
  .site-header .container { padding: 0 12px; }
  .site-header .menu-toggle { right: 12px; }
  .container, .container--wide { padding: 0 10px; }
  .logo-white-box { padding: 8px 14px; height: 54px; gap: 8px; border-radius: 0; }
  .logo-icon-img { height: 36px; }
  .logo-text-new { font-size: 17px; }
  .hero { width: 100%; margin: 0 auto; border-radius: 0; padding: 0; min-height: 260px; height: auto; max-height: none; margin-bottom: 0; }
  .connect-services { padding-top: 16px !important; }
  .hero-slide-content { padding: calc(var(--header-h) + 40px) 12px 20px; }

  h1 { font-size: clamp(2.2rem, 12vw, 3rem); }
  h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }

  .btn { padding: 14px 28px; font-size: 0.82rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; text-align: center; }

  .stats-strip-inner { flex-direction: column; gap: var(--sp-4); padding: 0 var(--sp-4); }
  .stat-item { width: 100%; padding: var(--sp-2) 0; }

  .cat-card { height: 200px; border-radius: var(--radius-md); }
  .cat-card-overlay h3 { font-size: 1.3rem; }

  .exp-card { border-radius: var(--radius-md); }
  .exp-card-img { min-height: 180px; }
  .exp-card-body { padding: var(--sp-4); gap: var(--sp-2); }
  .exp-card-body h3 { font-size: 1.1rem; }
  .exp-meta { flex-direction: column; gap: var(--sp-1); }

  .why-card { padding: var(--sp-6) var(--sp-4); border-radius: var(--radius-md); }
  .why-icon { font-size: 1.3rem; margin-bottom: var(--sp-4); width: 2.8rem; height: 2.8rem; }
  .why-card h4 { font-size: 1.05rem; }
  .why-card p { font-size: 0.84rem; }

  .section--dark { padding: var(--sp-12) 0; }
  .step p { font-size: 0.82rem; }

  .faq-question { font-size: 0.88rem; padding: 18px 24px; }
  .faq-answer-inner { font-size: 0.85rem; padding: 0 24px 20px 24px; }

  .form-group input, .form-group select, .form-group textarea { padding: 12px 14px; font-size: 0.9rem; }
  .form-group label { font-size: 0.65rem; }

  .footer-links { gap: var(--sp-4); }
  .footer-links a { font-size: 0.75rem; }


}

/* ---------- Services Grid ---------- */
/* ---------- Modern Services Grid ---------- */
.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.service-v2-card {
  position: relative;
  height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--near-black);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.service-v2-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.service-v2-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: grayscale(0.2);
}

.service-v2-card:hover .service-v2-img img {
  transform: scale(1.1);
  filter: grayscale(0);
}

.service-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0.8) 70%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 2;
  transition: opacity 0.4s;
}

.service-v2-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--sp-10);
  z-index: 3;
  color: var(--white);
  transition: transform 0.4s var(--ease-out);
}

.service-v2-card:hover .service-v2-content {
  transform: translateY(-10px);
}

.service-v2-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  margin-bottom: var(--sp-6);
  color: var(--white);
  transition: background 0.3s;
}

.service-v2-card:hover .service-v2-icon {
  background: var(--white);
  color: var(--near-black);
}

.service-v2-content h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: var(--sp-2);
  font-family: var(--font-display);
}

.service-v2-content p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 0;
  transition: margin 0.4s;
}

.service-v2-card:hover p {
  margin-bottom: var(--sp-4);
}

.service-v2-list {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.service-v2-card:hover .service-v2-list {
  opacity: 1;
  max-height: 150px;
  visibility: visible;
}

.service-v2-list li {
  font-size: 0.92rem;
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.service-v2-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .service-v2-card {
    height: 400px;
  }
}

.section-cta {
  text-align: center;
  margin-top: var(--sp-12);
  display: flex;
  justify-content: center;
}

#services {
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-24);
  scroll-margin-top: var(--header-h);
}

.section-footnote {
  text-align: center;
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-top: var(--sp-8);
  font-style: italic;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .service-card--featured .service-card-img {
    height: 100%;
    min-height: 340px;
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card--featured {
    grid-column: 1 / -1;
    grid-template-columns: 1.2fr 1fr;
  }
}

/* ---------- What We Do Grid ---------- */
.whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.whatwedo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.whatwedo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.whatwedo-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--near-black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: var(--sp-4);
}
.whatwedo-card h4 {
  font-size: 1.15rem;
  margin-bottom: var(--sp-3);
  color: var(--near-black);
}
.whatwedo-card p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* ---------- Tech Grid (Access Technologies) ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.tech-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.tech-icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto var(--sp-4);
}
.tech-card h4 {
  font-size: 1.1rem;
  margin-bottom: var(--sp-2);
  color: var(--near-black);
}
.tech-card p {
  font-size: 0.85rem;
  color: var(--dark-gray);
  line-height: 1.65;
}

/* ---------- Hero Sub Text ---------- */
.hero-sub-text {
  font-size: 0.95rem !important;
  opacity: 0.75;
  margin-top: -0.5rem;
}

/* ---------- Tickets Note ---------- */
.tickets-note {
  text-align: center;
  margin-top: var(--sp-8);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.tickets-note p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.8;
}

/* ---------- Exp Actions ---------- */
.exp-actions {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
}

/* ---------- Footer Extended ---------- */
.footer-tagline {
  font-size: 0.85rem;
  color: var(--mid-gray);
  max-width: 600px;
  margin: var(--sp-3) auto var(--sp-6);
  line-height: 1.7;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
  font-size: 0.8rem;
  color: var(--mid-gray);
}

/* ---------- Contact Address ---------- */
.contact-address {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 0.92rem;
  color: var(--dark-gray);
  margin-top: var(--sp-3);
}

/* ---------- Split Layout ---------- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.split-left .lead {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--dark-gray);
}

@media (min-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
  }
}

/* ---------- About Image Stack ---------- */
.about-image-stack {
  position: relative;
}
.img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.img-card--main {
  height: 400px;
}
.img-card--accent {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 55%;
  height: 200px;
  border: 5px solid var(--white);
  border-radius: var(--radius-md);
}

/* ---------- Responsive: New Sections ---------- */
@media (max-width: 599px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card--featured {
    grid-template-columns: 1fr;
  }
  .service-card-img {
    height: 200px;
  }
  .service-card-body {
    padding: var(--sp-6);
  }

  .whatwedo-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
  }
  .tech-card {
    padding: var(--sp-4);
  }
  .tech-icon {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1rem;
  }
  .tech-card h4 {
    font-size: 0.95rem;
  }

  .about-image-stack .img-card--accent {
    display: none;
  }
  .img-card--main {
    height: 260px;
  }

  .footer-contact {
    flex-direction: column;
    gap: var(--sp-2);
    text-align: center;
  }
}

/* ---------- Selection & Scrollbar ---------- */
::selection { background: var(--near-black); color: var(--white); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--light-gray); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--mid-gray); }

/* ---------- Focus Styles for A11y ---------- */
.btn:focus-visible, .faq-question:focus-visible, a:focus-visible {
  outline: 2px solid var(--near-black);
  outline-offset: 3px;
}

/* ============================================
   ECOSYSTEM BOX (Large rounded card)
   ============================================ */
#services.section--dark {
  background: #050505 !important;
  padding: 180px 0 120px 0 !important; /* Massive padding to clear sticky header */
  position: relative;
  z-index: 1;
}

.text-white {
  color: #ffffff !important;
}

.text-gold {
  color: var(--near-black) !important;
}

.outlined-text {
  color: var(--white);
  text-transform: uppercase;
}
.highlight-bg-white {
  background-color: #fff;
  color: #000;
  padding: 0 0.15em;
  border-radius: 8px;
  display: inline-block;
  line-height: 1.2;
}
.text-dark-outline {
  color: var(--near-black) !important;
}
.ecosystem-box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 40px;
  padding: var(--sp-16) var(--sp-10);
  box-shadow: 0 10px 60px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(100% - 100px);
  max-width: 1600px;
  margin: 0 auto;
}

/* Service Detail Styles for Dark Mode */
.section--dark .eco-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.eco-card h4, .eco-card p {
  color: #000000 !important;
}

.section--dark .eco-card:hover {
  transform: translateY(-5px);
  border-color: var(--near-black);
  background: var(--white);
}

.section--dark .eco-icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-6);
}

.section--dark .info-block {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 30px;
  padding: var(--sp-16);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section--dark .cta-banner {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: var(--sp-12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-10);
}

@media (max-width: 768px) {
  .section--dark .cta-banner {
    flex-direction: column;
    text-align: center;
  }
  }
.hero-title-dark {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--near-black);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.02em;
}

.section--dark .hero-title-dark,
.luxury-midnight .hero-title-dark {
  color: var(--white) !important;
}

/* Specificity override for white sections in luxury-midnight */
.luxury-midnight .section--white .hero-title-dark {
  color: var(--near-black) !important;
}

.outlined-text-dark {
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.3);
}

.section--dark .outlined-text-dark,
.luxury-midnight .outlined-text-dark {
  -webkit-text-stroke: 1px rgba(255,255,255,0.3) !important;
}
.eco-desc {
  max-width: 600px;
  color: #555;
  font-size: 1.1rem;
  margin: 0 auto var(--sp-8);
}
.eco-btn {
  border-radius: 30px;
  padding: var(--sp-4) var(--sp-8);
}
.label-light {
  background: rgba(0,0,0,0.05);
  color: var(--near-black);
  border: 1px solid rgba(0,0,0,0.1);
}

/* ============================================
   FEATURED EVENTS - Card Grid
   ============================================ */
.section--featured-posts {
  background: var(--near-black);
  padding: var(--sp-24) 0;
  overflow: hidden;
}

.section--featured-posts .affiliations-heading {
  color: var(--white);
  text-align: center;
  margin-bottom: var(--sp-12);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-10);
  max-width: 1600px;
  margin: 0 auto;
}

.event-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.6s var(--ease-out);
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.event-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 50px 120px rgba(0,0,0,0.5);
}

.event-card--featured {
  grid-column: span 2;
  flex-direction: row;
}

.event-card-img {
  position: relative;
  overflow: hidden;
  flex: 1.2;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  border-radius: var(--radius-md);
}

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

.event-badge {
  position: absolute;
  top: var(--sp-6);
  left: var(--sp-6);
  background: var(--white);
  color: var(--black);
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.event-card-body {
  flex: 1;
  padding: var(--sp-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-6);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.event-top-info {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.event-tag {
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
}

.event-date {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
}

.event-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.event-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.6;
}

.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.event-location {
  color: var(--white);
  opacity: 0.8;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.event-location i {
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .event-card--featured {
    flex-direction: column;
  }
  .event-card-img {
    height: 350px;
    flex: none;
  }
  .event-card-body {
    padding: var(--sp-10);
  }
}

@media (max-width: 768px) {
  .section--featured-posts {
    padding: var(--sp-12) 0;
  }
  .event-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .event-card-img {
    height: 300px;
  }
  .event-title {
    font-size: 2rem;
  }
  .event-desc {
    font-size: 0.95rem;
  }
  .event-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-6);
  }
}

/* ============================================
   AFFILIATIONS SECTION
   ============================================ */
.section--affiliations {
  padding: 100px 0;
  background: var(--soft-white);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.affiliations-heading {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: var(--near-black);
  letter-spacing: -1px;
}

/* Visibility Control */
.affiliations-desktop-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.affiliations-mobile-view {
  display: none !important;
}

@media (max-width: 1024px) {
  .affiliations-desktop-grid {
    display: none !important;
  }
  .affiliations-mobile-view {
    display: block !important;
    padding: 0 15px;
  }
}

/* Affiliation Cards */
.affiliation-card {
  background: white;
  height: 180px;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0,0,0,0.03);
}

.affiliation-card img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.affiliation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.1);
}

.affiliation-card:hover img {
  transform: scale(1.05);
}

/* Mobile Swiper Customization */
.aff-mobile-view {
  padding: 0 40px; /* Reclaim space, add balanced side padding */
}

.aff-mobile-swiper {
  padding-bottom: 70px !important;
  position: relative;
}

/* Hide Arrows on Mobile for cleaner look */
.aff-mobile-next,
.aff-mobile-prev {
  display: none !important;
}

.aff-mobile-pagination {
  bottom: 0px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.aff-mobile-pagination .swiper-pagination-bullet {
  background: var(--near-black) !important;
  opacity: 0.15 !important;
  width: 8px !important;
  height: 8px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0 6px !important;
}

.aff-mobile-pagination .swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 12px !important;
}

@media (max-width: 768px) {
  .affiliation-card {
    height: 180px;
    padding: 12px;
  }
  .affiliation-card img {
    max-width: 95%;
    max-height: 90%;
  }
}

/* ============================================
   VALUES SECTION
   ============================================ */
.section--values {
  background: var(--white);
  padding: var(--sp-16) 0;
}

.values-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-12);
  align-items: start;
}

.values-header {
  position: sticky;
  top: 120px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.value-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--near-black);
  margin-bottom: var(--sp-6);
}

.value-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: var(--sp-3);
  font-family: var(--font-display);
}

.value-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .values-container {
    grid-template-columns: 1fr;
  }
  .values-header {
    position: relative;
    top: 0;
  }
}
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   ACCREDITATION CAROUSEL
   ========================================== */
.accreditation-carousel {
  margin-top: 3rem;
  margin-bottom: 2rem;
  width: 100%;
}

.acc-filters {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0.8rem;
  padding: 1rem 0; /* Vertical padding only */
  margin-bottom: 2rem;
  background: transparent;
  border: none;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  /* Premium Fade Effect */
  mask-image: linear-gradient(to right, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
}

.acc-filters::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .acc-filters {
    justify-content: center;
    width: fit-content;
    background: #000000;
    padding: 1rem;
    border-radius: 100px;
    margin-left: auto;
    margin-right: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.acc-filter-btn {
  background: transparent;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  scroll-snap-align: start;
}

.acc-filter-btn i {
  font-size: 0.9rem;
  opacity: 0.7;
}

.acc-filter-btn.active, .acc-filter-btn:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .acc-filter-btn {
    color: #ffffff;
    border-color: transparent;
  }
  .acc-filter-btn.active, .acc-filter-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
  }
}

.acc-filter-btn.active i {
  opacity: 1;
}

.acc-swiper {
  width: 100%;
  padding-bottom: 1rem;
}

.acc-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
}

.acc-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #ffffff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 30px rgba(255, 255, 255, 0.1);
}

.acc-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
  position: relative;
}

.acc-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: #ffffff;
  color: #000000;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.acc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-card:hover .acc-card-img img {
  transform: scale(1.05);
}

.acc-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.acc-card-body h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.acc-card-body p {
  color: #ffffff;
  opacity: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.acc-btn {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.85rem 1.25rem;
  width: 100%;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.acc-btn i {
  transition: transform 0.3s ease;
}

.acc-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.acc-btn:hover i {
  transform: translateX(5px);
}

/* ============================================
   SUBPAGE UTILITIES & COMPONENTS
   ============================================ */

.container--narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-12);
}

.hero--sm {
  min-height: 55vh;
  margin-bottom: var(--sp-2);
}

.hero--sm .hero-content {
  max-width: 800px;
}

.hero--sm .hero-title-main {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
}

.hero--left .hero-content {
  text-align: left;
  align-items: flex-start;
}

.hero--left .hero-container-center {
  justify-content: flex-start;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(0.45);
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-12);
  color: var(--mid-gray);
  opacity: 0.8;
}

.breadcrumbs a {
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: var(--near-black);
}

.breadcrumbs .sep {
  opacity: 0.4;
  font-weight: 400;
}

/* Service Detail */
.service-detail h2 {
  margin-bottom: var(--sp-6);
}

.service-detail .lead {
  margin-bottom: var(--sp-8);
  font-size: 1.3rem;
  color: var(--near-black);
  font-weight: 500;
}

.service-detail p {
  margin-bottom: var(--sp-6);
  color: rgba(0,0,0,0.7);
  font-size: 1.05rem;
}

.hero--sm .hero-content p {
  color: rgba(255,255,255,0.8);
}

.luxury-midnight .service-detail .lead {
  color: var(--near-black);
}

.luxury-midnight .service-detail p {
  color: rgba(0,0,0,0.7);
}

/* Eco Card */
.eco-card {
  background: var(--off-white);
  padding: var(--sp-10);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.5s var(--ease-out);
}

.eco-card:hover {
  transform: translateY(-10px);
  background: var(--white);
  box-shadow: var(--shadow-xl);
  border-color: var(--near-black);
}

.eco-icon {
  font-size: 2.2rem;
  color: var(--near-black);
  margin-bottom: var(--sp-6);
}

.eco-card h4 {
  margin-bottom: var(--sp-3);
  font-size: 1.25rem;
}

.eco-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.luxury-midnight .eco-card {
  background: var(--white);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.luxury-midnight .eco-card h4 {
  color: var(--near-black);
}

.luxury-midnight .eco-card p {
  color: rgba(0,0,0,0.6);
}

.luxury-midnight .eco-icon {
  color: var(--near-black);
}

.luxury-midnight .eco-card:hover {
  background: var(--white);
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Grid Utilities */
.grid { display: grid; gap: var(--sp-10); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

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

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

/* Info Block */
.info-block {
  background: var(--near-black);
  color: var(--white);
  padding: var(--sp-16);
  border-radius: 40px;
  margin-top: var(--sp-20);
  box-shadow: var(--shadow-2xl);
}

.info-block h3 {
  color: var(--white);
  margin-bottom: var(--sp-8);
  font-size: 2.2rem;
}

.info-block .grid {
  align-items: start;
}

.luxury-midnight .info-block p {
  color: rgba(255,255,255,0.7);
}

.luxury-midnight .info-block h4,
.luxury-midnight .info-block li {
  color: var(--white) !important;
}

.luxury-midnight .info-block .pillar-list li::before {
  color: var(--gold-light) !important;
}

/* List Checked */
.list-checked {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.list-checked li {
  position: relative;
  padding-left: 32px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
}

.list-checked li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: 900;
  opacity: 0.5;
}

/* CTA Banner */
.cta-banner {
  background: var(--near-black);
  padding: var(--sp-12) var(--sp-16);
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-8);
  margin-top: var(--sp-20);
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.cta-banner h3 { color: var(--white); margin-bottom: var(--sp-2); font-size: 1.8rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0; font-size: 1.1rem; }

/* Force white CTA text in luxury-midnight */
.luxury-midnight .cta-banner p,
.luxury-midnight .cta-banner h3 {
  color: var(--white);
}

@media (max-width: 768px) {
  .cta-banner { flex-direction: column; text-align: center; padding: var(--sp-10); }
}

/* Removed conflicting steps overrides - consolidated at line 1107 */

.mt-10 { margin-top: var(--sp-10); }
.mt-20 { margin-top: var(--sp-20); }

/* Theme Helpers */
.luxury-midnight {
  background: var(--near-black);
  color: var(--white);
}

body.light-page {
  background: var(--white) !important;
}

.theme--light {
  background: #ffffff !important;
  color: #111111 !important;
}

.theme--light .site-header {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.theme--light .site-header .logo,
.theme--light .site-header .main-nav a {
  color: #111111 !important;
}

.theme--light .site-header .menu-toggle span {
  background: #111111 !important;
}

/* ── Light-page hero offset: push pg-hero below the fixed nav ── */
body.light-page .pg-hero {
  padding-top: calc(80px + 40px); /* header height + breathing room */
}

/* ── Light-page header: dark nav from the very top (no scroll needed) ── */
body.light-page .site-header {
  background: rgba(255,255,255,0.97) !important;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
body.light-page .site-header .logo,
body.light-page .site-header .main-nav a {
  color: #111 !important;
}
body.light-page .site-header .logo-img,
.theme--light .site-header .logo-img {
  /* Removed filter to preserve user's custom uploaded logo colors */
}
body.light-page .site-header .main-nav a:not(.btn--nav-pill):hover {
  color: #000000 !important;
}
body.light-page .site-header .btn--nav-pill {
  border-color: #000000 !important;
  color: #000000 !important;
  background: transparent !important;
  border-radius: 50px !important;
}
body.light-page .site-header .btn--nav-pill:hover {
  background: #000000 !important;
  color: #ffffff !important;
}
.site-header .main-nav a.btn--nav-pill::after {
  display: none !important;
}
body.light-page .site-header .menu-toggle span {
  background: #111 !important;
}

/* ── Dark-hero override: transparent header over dark hero, light on scroll ── */
@media (min-width: 769px) {
  body.has-dark-hero .site-header:not(.scrolled) {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
  }
  body.has-dark-hero .site-header:not(.scrolled) .logo,
  body.has-dark-hero .site-header:not(.scrolled) .main-nav a {
    color: rgba(255,255,255,0.9) !important;
  }
  body.has-dark-hero .site-header:not(.scrolled) .main-nav a:hover {
    color: #ffffff !important;
  }
  body.has-dark-hero .site-header:not(.scrolled) .btn--nav-pill {
    border-color: #ffffff !important;
    color: #ffffff !important;
    background: transparent !important;
  }
  body.has-dark-hero .site-header:not(.scrolled) .btn--nav-pill:hover {
    background: #ffffff !important;
    color: #000000 !important;
  }
  body.has-dark-hero .site-header:not(.scrolled) .menu-toggle span {
    background: #ffffff !important;
  }
  /* Removed transparent logo box overrides for has-dark-hero to match index page */
  /* When both light-page AND has-dark-hero are present, dark-hero wins for un-scrolled header */
  body.light-page.has-dark-hero .site-header:not(.scrolled) {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
  }
  body.light-page.has-dark-hero .site-header:not(.scrolled) .main-nav a:not(.btn--nav-pill) {
    color: rgba(255,255,255,0.9) !important;
  }
  body.light-page.has-dark-hero .site-header:not(.scrolled) .btn--nav-pill {
    border-color: #ffffff !important;
    color: #ffffff !important;
    background: transparent !important;
  }
  body.light-page.has-dark-hero .site-header:not(.scrolled) .btn--nav-pill:hover {
    background: #ffffff !important;
    color: #000000 !important;
  }
}
.luxury-midnight h1,
.luxury-midnight h2,
.luxury-midnight h3:not(.info-block h3, .step h4, .cta-banner h3),
.luxury-midnight h4:not(.info-block h4, .step h4, .cta-banner h3) {
  color: var(--near-black);
}

.luxury-midnight .info-block h3,
.luxury-midnight .info-block h4,
.luxury-midnight .cta-banner h3,
.luxury-midnight .step h4 {
  color: var(--white);
}

/* Force white text in heroes even in luxury-midnight */
.luxury-midnight .hero p,
.luxury-midnight .hero h1,
.luxury-midnight .hero .label-tag {
  color: var(--white);
}

.luxury-midnight .hero-title-dark {
  color: var(--near-black);
}

.luxury-midnight .outlined-text-dark {
  -webkit-text-stroke: 1px rgba(0,0,0,0.2);
}

.luxury-midnight .breadcrumbs a:hover {
  color: var(--accent);
}

.luxury-grid-overlay {
  display: none;
}

/* ==========================================================================
   BLOG STYLES (PREMIUM OVERHAUL)
   ========================================================================== */

/* Wide alignment to match Hero section exactly */
.blog-container {
  width: calc(100% - 100px);
  max-width: 1600px;
  margin: var(--sp-12) auto;
}

.section-title--list {
  font-size: clamp(2.2rem, 5vw, 3.2rem); /* More balanced head size */
  margin-bottom: var(--sp-6);
  letter-spacing: -0.02em;
}

/* Category Filter Bar */
.blog-filters {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: var(--sp-4);
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.blog-filters::-webkit-scrollbar { display: none; }

.filter-btn {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  color: rgba(0,0,0,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  border-radius: 4px;
}
.filter-btn:hover { color: var(--near-black); }
.filter-btn.active {
  color: var(--near-black);
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.1);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-10);
}

/* Featured Article Style - Strict Refinement */
.blog-card.blog-featured {
  grid-column: 1 / -1; 
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  margin-bottom: var(--sp-16);
  min-height: 520px;
  flex-direction: row; /* Override base flex if needed */
}

.blog-card.blog-featured .blog-image {
  height: 100%;
  aspect-ratio: auto;
}

.blog-card.blog-featured .blog-content {
  padding: var(--sp-16);
  justify-content: center;
}

.blog-card.blog-featured .blog-title {
  font-size: 2.5rem;
  margin-bottom: var(--sp-6);
}

/* Standard Card Adjustments */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 40px;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(0,0,0,0.1);
}

.blog-image {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  border-radius: 40px 40px 0 0;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-category {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--near-black);
  margin-bottom: var(--sp-4);
  transition: color 0.3s;
}

.blog-card:hover .blog-title {
  color: var(--accent);
}

.blog-excerpt {
  font-size: 0.92rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.6;
  margin-bottom: var(--sp-8);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.72rem;
  color: rgba(0,0,0,0.4);
  font-weight: 500;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Newsletter Section - Full Hero Alignment */
.cta-banner-container {
  width: calc(100% - 100px);
  max-width: 1600px;
  margin: var(--sp-20) auto;
  background: var(--near-black);
  border-radius: 40px;
  overflow: hidden;
}

.cta-banner {
  display: grid;
  grid-template-columns: 1fr 450px;
  align-items: center;
  gap: var(--sp-12);
  padding: var(--sp-16) var(--sp-12);
}

.cta-brand h2 { color: var(--white); margin-bottom: var(--sp-2); }
.cta-brand p { color: rgba(255,255,255,0.6); }

.cta-banner--dark {
  background: var(--near-black);
  color: var(--white);
  border-radius: 40px;
}

.cta-banner--dark h3 {
  color: var(--white) !important;
}

.cta-banner--dark p {
  color: rgba(255,255,255,0.7) !important;
}

.cta-actions {
  display: flex;
  gap: 12px;
}

.cta-actions input {
  flex-grow: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  color: var(--white);
  border-radius: 8px;
  font-size: 0.9rem;
}

@media (max-width: 1200px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card.blog-featured { grid-template-columns: 1.2fr 1fr; }
}

@media (max-width: 1024px) {
  .blog-container, .cta-banner-container { width: calc(100% - 40px); }
  .blog-card.blog-featured { grid-template-columns: 1fr; grid-column: span 2; }
  .cta-banner { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.blog-featured { grid-column: span 1; }
  .section-title--list { font-size: 2.2rem; }
}
/* ============================================
   CONTRAST OVERRIDES - DARK SECTIONS
   Explicitly forcing white text in dark backgrounds
   ============================================ */

.luxury-midnight .parallax-section h2,
.luxury-midnight .parallax-section h2 em,
.luxury-midnight .parallax-section p,
.luxury-midnight .parallax-section .lead,
.luxury-midnight .section--dark > .container > h2,
.luxury-midnight .section--dark > .container > h3,
.luxury-midnight .section--dark > .container > p,
.luxury-midnight .section--dark > .container > .lead,
.luxury-midnight .section--dark .section-header h2,
.luxury-midnight .section--dark .section-header p,
.luxury-midnight .section--dark .section-header .lead {
  color: var(--white) !important;
}

/* Ensure text inside white cards remains black */
.luxury-midnight .section--dark .value-card h4,
.light-page .section--dark .value-card h4,
.luxury-midnight .section--dark .value-card p,
.light-page .section--dark .value-card p,
.luxury-midnight .section--dark .value-icon,
.light-page .section--dark .value-icon,
.luxury-midnight .section--dark .why-icon,
.light-page .section--dark .why-icon,
.luxury-midnight .section--dark .tech-icon,
.light-page .section--dark .tech-icon,
.luxury-midnight .section--dark .eco-icon,
.light-page .section--dark .eco-icon,
.luxury-midnight .section--dark .why-card h4,
.light-page .section--dark .why-card h4,
.luxury-midnight .section--dark .why-card p,
.light-page .section--dark .why-card p,
.luxury-midnight .section--dark .tech-card h4,
.light-page .section--dark .tech-card h4,
.luxury-midnight .section--dark .tech-card p,
.light-page .section--dark .tech-card p,
.luxury-midnight .section--dark .eco-card h4,
.light-page .section--dark .eco-card h4,
.luxury-midnight .section--dark .eco-card p,
.light-page .section--dark .eco-card p,
.luxury-midnight .section--dark .pillar-card h3,
.light-page .section--dark .pillar-card h3,
.luxury-midnight .section--dark .pillar-card p,
.light-page .section--dark .pillar-card p,
.luxury-midnight .section--dark .pillar-card li,
.light-page .section--dark .pillar-card li,
.luxury-midnight .parallax-section .eco-card h4,
.light-page .parallax-section .eco-card h4,
.luxury-midnight .parallax-section .eco-card p,
.light-page .parallax-section .eco-card p,
.luxury-midnight .parallax-section .eco-icon i,
.light-page .parallax-section .eco-icon i {
  color: #000000 !important;
}

.luxury-midnight .parallax-section .eco-card,
.light-page .parallax-section .eco-card {
  background: #ffffff !important;
}

.luxury-midnight .section--dark .eco-card:hover .eco-icon i,
.luxury-midnight .parallax-section .eco-card:hover .eco-icon i,
.light-page .section--dark .eco-card:hover .eco-icon i,
.light-page .parallax-section .eco-card:hover .eco-icon i {
  color: #ffffff !important;
}

/* ══════════════════════════════════════════
   REQUEST FORM PAGE — Midnight Luxury
══════════════════════════════════════════ */

/* ── Wrapper card that holds the form ── */
.request-form-card {
  background: #ffffff !important;
  border-radius: var(--radius-xl);
  padding: var(--sp-12);
  box-shadow: 0 40px 100px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.request-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: #000000;
}

.request-form-card h2 {
  color: #111111 !important;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}

.request-form-card .form-intro {
  color: #666666;
  font-size: 1rem;
  margin-bottom: var(--sp-10);
  line-height: 1.6;
}

/* ── Row (2-col) ── */
.request-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Individual field ── */
.request-form-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.request-form-card .form-group:last-of-type {
  margin-bottom: 0;
}

/* ── Label ── */
.request-form-card .form-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888888;
  line-height: 1;
}

/* ── Inputs + Selects + Textarea ── */
.request-form-card .form-input,
.request-form-card .form-select,
.request-form-card .form-textarea {
  width: 100%;
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #111111;
  outline: none;
  transition: all 0.3s var(--ease);
  appearance: none;
}

.request-form-card .form-input::placeholder,
.request-form-card .form-textarea::placeholder {
  color: #bbbbbb;
}

.request-form-card .form-input:focus,
.request-form-card .form-select:focus,
.request-form-card .form-textarea:focus {
  border-color: #111111;
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

/* Select arrow */
.form-select-wrap::after {
  content: '↓';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #888888;
  pointer-events: none;
  font-size: 0.8rem;
  font-family: var(--font-body);
}

.request-form-card .form-select {
  cursor: pointer;
  padding-right: 50px;
}

.form-select option {
  background: #ffffff;
  color: #111;
}

/* Textarea */
.request-form-card .form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

/* ── Submit button ── */
.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 22px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  background: #000000;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  margin-top: var(--sp-4);
  transition: all 0.4s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-submit:hover {
  background: #000000;
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.form-fine-print {
  font-size: 0.78rem;
  color: #999999;
  margin-top: var(--sp-6);
  line-height: 1.6;
  text-align: center;
}

.form-fine-print a {
  color: #111111;
  text-decoration: underline;
}

/* ── Trust sidebar ── */
.trust-sidebar {
  padding-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  padding-left: var(--sp-12);
}

.trust-block {
  padding: var(--sp-8) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-block:last-child {
  border-bottom: none;
}

.trust-block h4 {
  color: var(--near-black) !important;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-block p {
  color: #666666;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Product Prefill Notice */
.product-prefill-notice {
  background: #f5f5f5;
  border: 1px solid #000000;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-8);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #111111;
}

.product-prefill-notice strong {
  color: var(--near-black);
}

@media (max-width: 992px) {
  .request-layout {
    grid-template-columns: 1fr !important;
  }
  .trust-sidebar {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 0;
    padding-top: var(--sp-12);
  }
}

.trust-block:first-child {
  padding-top: 0;
}

.trust-block:last-child {
  border-bottom: none;
}

.trust-block h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111 !important;
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.trust-block h4::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #cccccc;
  flex-shrink: 0;
}

.trust-block p {
  color: #666666 !important;
  font-size: 0.9rem;
  line-height: 1.65;
  padding-left: calc(24px + var(--sp-3));
}

/* Product pre-fill tag */
.product-prefill-notice {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-5);
  margin-bottom: var(--sp-6);
  font-size: 0.82rem;
  color: #555555;
}

.product-prefill-notice strong {
  color: #111111;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .request-layout {
    grid-template-columns: 1fr !important;
  }

  .request-form-card {
    padding: var(--sp-8) var(--sp-6);
  }
}

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

/* ============================================================
   BRAND COLOR STANDARDIZATION
   All internal pages — unified font + #6c4cff purple accent
   ============================================================ */

:root {
  /* Monochrome Identity */
  --accent: #000000;
}

/* ── Typography — ensure Montserrat on all headings ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

/* ── hero-title-dark: large heading on white-bg sections ── */
.hero-title-dark {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--near-black);
  margin-bottom: var(--sp-6);
}

/* ── outlined-text-dark: brand purple stroke text on light bg ── */
.outlined-text-dark {
  color: transparent;
  -webkit-text-stroke: 2px #000000;
  font-style: italic;
}

/* ── Breadcrumbs ── */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-family: var(--font-body);
  color: #888;
  margin-bottom: var(--sp-10);
}
.breadcrumbs a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: #000000; }
.breadcrumbs .sep { color: #ccc; }
.breadcrumbs [aria-current="page"] { color: var(--near-black); font-weight: 600; }

/* ── Service Detail wrapper ── */
.service-detail {
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
}
.service-detail .lead {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: var(--sp-4);
}
.service-detail p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: #666;
}

/* ── section--white: force white background + dark text ── */
.section--white {
  background: #ffffff !important;
  color: var(--near-black) !important;
}
.section--white h2, .section--white h3, .section--white h4 {
  color: var(--near-black);
  font-family: var(--font-display);
}
.section--white p, .section--white li {
  color: #555;
  font-family: var(--font-body);
}

/* ── Eco Cards — brand purple icon ── */
.eco-icon {
  font-size: 1.6rem;
  color: #000000 !important;
  background: #f5f5f5 !important;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  transition: transform 0.3s ease, background 0.3s;
}
.eco-card:hover .eco-icon {
  background: #000000 !important;
  color: #fff !important;
  transform: scale(1.08);
}
.eco-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--near-black);
  font-size: 1.1rem;
  margin-bottom: var(--sp-2);
}
.eco-card p {
  font-family: var(--font-body);
  color: #666;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── Info Block (dark card with list) ── */
.info-block {
  background: var(--near-black);
  padding: var(--sp-12) var(--sp-12);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
}
.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--sp-8);
}
.info-block h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: var(--sp-2);
}
.info-block p {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
}

/* ── Pillar List (checklist in info-block) ── */
.pillar-list {
  list-style: none;
  padding: 0;
}
.pillar-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #000000;
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.pillar-list li:last-child { border-bottom: none; }
.pillar-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
}

/* ── Cap Items (capability pairs) ── */
.cap-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: var(--sp-8);
}
.cap-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-3);
}
.cap-item h4 i { color: #000000; }
.cap-item p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ── CTA Banner — brand consistent ── */
.cta-banner {
  background: var(--near-black);
  border-radius: 24px;
  padding: var(--sp-10) var(--sp-12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-8);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(108, 76, 255, 0.2);
}
.cta-banner h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}
.cta-banner p {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-size: 1rem;
}
.cta-banner .btn--primary {
  background: #000000;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.cta-banner .btn--primary:hover {
  background: #000000;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .cta-banner { flex-direction: column; text-align: center; padding: var(--sp-8); }
}

/* ── Global btn--primary brand purple ── */
.btn--primary {
  background: #000000 !important;
  color: #fff !important;
  border: none !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
}
.btn--primary:hover {
  background: #000000 !important;
}

/* ── btn--outline brand purple ── */
.btn--outline {
  border: 2px solid #000000 !important;
  color: #000000 !important;
  background: transparent !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
}
.btn--outline:hover {
  background: #000000 !important;
  color: #fff !important;
}

/* ── label-tag brand pill ── */
.label-tag {
  display: inline-block;
  background: #f5f5f5;
  color: #000000;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: var(--sp-4);
}
/* Hero variant stays white */
.label-tag--hero {
  background: rgba(255,255,255,0.15) !important;
  color: rgba(255,255,255,0.9) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
}

/* ── Request Access form card brand colors ── */
.request-form-card {
  background: #fff;
  border: 1.5px solid #e8e4ff;
  border-radius: 24px;
  padding: var(--sp-12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.request-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--near-black);
  margin-bottom: var(--sp-3);
}
.form-intro {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #666;
  margin-bottom: var(--sp-8);
  line-height: 1.65;
}
.form-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  display: block;
  margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  font-family: var(--font-body);
  font-size: 0.93rem;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  background: #fff;
  color: #111;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: #bbb; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E") no-repeat center;
  pointer-events: none;
}
.form-select { padding-right: 40px; cursor: pointer; }
.form-submit {
  background: #000000;
  color: #fff;
  border: none;
  padding: 15px 32px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.15s;
  margin-top: var(--sp-4);
}
.form-submit:hover {
  background: #000000;
  transform: translateY(-2px);
}
.form-fine-print {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #aaa;
  margin-top: var(--sp-4);
  text-align: center;
}
.form-fine-print a { color: #000000; }

/* ── Trust Sidebar ── */
.trust-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.trust-block {
  background: #f8f7ff;
  border: 1px solid #e8e4ff;
  border-radius: 12px;
  padding: var(--sp-4) var(--sp-6);
  transition: box-shadow 0.2s;
}
.trust-block:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.trust-block h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 4px;
}
.trust-block p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #666;
  margin: 0;
  line-height: 1.55;
}
.product-prefill-notice {
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--near-black);
  margin-bottom: var(--sp-6);
}
.product-prefill-notice strong { color: #000000; }

/* ==========================================================================
   INTERNAL PAGE STANDARDIZATION (v8)
   ========================================================================== */

/* --- HERO SECTION --- */
.pg-hero { 
  background: var(--near-black); 
  width: calc(100% - 48px);
  max-width: 1700px;
  margin: 16px auto 0 auto;
  border-radius: 60px;
  padding: 140px 0; 
  position: relative;
  overflow: hidden;
}

body.light-page .pg-hero {
  padding-top: 140px !important;
}

.pg-hero .container { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: center; 
  max-width: 1280px; 
  margin: auto; 
  padding: 0 40px; 
}

.pg-hero__text .label { 
  display: inline-block; 
  background: rgba(255,255,255,0.06); 
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff; 
  font-family: var(--font-display); 
  font-size: 0.72rem; 
  font-weight: 700; 
  letter-spacing: 0.12em; 
  padding: 6px 16px; 
  border-radius: 100px; 
  margin-bottom: 24px; 
  text-transform: uppercase;
}

.pg-hero__text h1 { 
  font-family: var(--font-display); 
  font-size: clamp(2.4rem, 5.5vw, 4.2rem); 
  font-weight: 900; 
  line-height: 1.05; 
  letter-spacing: -0.04em;
  color: #fff; 
  margin: 0 0 28px; 
}

.pg-hero__text h1 span { 
  color: var(--white); 
}

/* --- Centered Dark Hero (v10 dark style) --- */
.pg-hero--centered {
  background: var(--near-black);
  width: calc(100% - 48px);
  max-width: 1700px;
  margin: 16px auto 0 auto;
  border-radius: 60px;
  padding: 160px 0 100px;
  text-align: center;
  color: #fff;
  min-height: auto;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.pg-hero--centered > .container {
  display: block;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.pg-hero--centered .label {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 36px;
  display: inline-block;
  text-transform: uppercase;
}

.pg-hero--centered h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #fff;
}

.pg-hero--centered h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.18);
  font-style: normal;
  font-weight: 400;
  margin-top: 6px;
}

.pg-hero--centered p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* --- Breadcrumbs (Mockup Style) --- */
.bc-item {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #888;
}
.bc-sep {
  margin: 0 12px;
  color: #ccc;
  font-size: 0.8rem;
}
.bc-item--active {
  color: #111;
}

/* --- Info Box (Trust Sidebar) --- */
.info-box {
  background: #f4f4f6;
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 2px solid #e0e0e0;
}

.info-box__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.info-box p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.request-form-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.request-form-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #111;
}
.form-intro {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.pg-hero__text p { 
  font-family: var(--font-body); 
  font-size: 1.15rem; 
  color: rgba(255, 255, 255, 0.7); 
  line-height: 1.75; 
  max-width: 540px; 
  margin: 0 0 44px; 
}

.pg-hero__btns { 
  display: flex; 
  gap: 20px; 
  flex-wrap: wrap; 
}

.pg-hero__btns .btn-solid { 
  background: #fff; 
  color: #000; 
  padding: 16px 36px; 
  border-radius: 100px; 
  font-family: var(--font-display); 
  font-weight: 700; 
  font-size: 1rem; 
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  gap: 12px; 
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pg-hero__btns .btn-ghost { 
  border: 2px solid rgba(255,255,255,0.2); 
  color: #fff; 
  padding: 14px 34px; 
  border-radius: 100px; 
  font-family: var(--font-display); 
  font-weight: 700; 
  font-size: 1rem; 
  text-decoration: none; 
  transition: all 0.3s ease;
}

.pg-hero__btns .btn-solid:hover { 
  background: #ccc; 
  transform: translateY(-3px); 
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); 
}

.pg-hero__btns .btn-ghost:hover { 
  background: #fff; 
  color: #000; 
  transform: translateY(-2px);
}

/* --- HERO VISUAL --- */
.pg-hero__visual { 
  position: relative; 
}

.hero-main-img-wrap { 
  position: relative; 
}

.hero-main-img { 
  width: 100%; 
  height: auto; 
  max-height: 700px; 
  display: block; 
  object-fit: contain; 
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), filter 1s ease; 
}

.hero-main-img-wrap:hover .hero-main-img { 
  transform: scale(1.08); 
  filter: grayscale(0.2); 
}

/* --- FEATURE STRIP --- */
.feat-strip { 
  background: #fff; 
  border-top: 1px solid #f0f0f0; 
  border-bottom: 1px solid #f0f0f0; 
  padding: 80px 0; 
  position: relative;
  z-index: 5;
}

.feat-strip .inner { 
  max-width: 1280px; 
  margin: auto; 
  padding: 0 40px; 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 48px; 
}

.feat-item { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
}

.feat-item__icon { 
  width: 56px; 
  height: 56px; 
  background: #f5f5f5; 
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.4rem; 
  color: #000; 
  transition: all 0.3s ease;
}

.feat-item:hover .feat-item__icon {
  background: #000;
  color: #fff;
  transform: scale(1.1);
}

.feat-item__text strong { 
  display: block; 
  font-family: var(--font-display); 
  font-size: 1rem; 
  color: #000; 
  margin-bottom: 4px; 
}

.feat-item__text span { 
  font-family: var(--font-body); 
  font-size: 0.85rem; 
  color: #777; 
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .pg-hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .pg-hero__text p { margin: 0 auto 40px; }
  .pg-hero__btns { justify-content: center; }
  .feat-strip .inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .pg-hero, .pg-hero--centered {
    margin-top: 86px;
  }
}

@media (max-width: 640px) {
  .pg-hero, .pg-hero--centered {
    padding: 60px 0 80px;
  }
  .feat-strip .inner { grid-template-columns: 1fr; }
  .feat-strip { padding: 60px 0; }
}

/* --- SERVICE DETAILS SECTION --- */
.svc-section { 
  background: #fff; 
  padding: 100px 0; 
}

.svc-section .inner { 
  max-width: 1280px; 
  margin: auto; 
  padding: 0 40px; 
}

.svc-section .sec-label { 
  font-family: var(--font-display); 
  color: #000; 
  font-size: 0.75rem; 
  font-weight: 700; 
  letter-spacing: 0.12em; 
  text-transform: uppercase; 
  text-align: center; 
}

.svc-section h2 { 
  font-family: var(--font-display); 
  text-align: center; 
  font-size: clamp(1.8rem, 4vw, 3.2rem); 
  font-weight: 900; 
  letter-spacing: -0.02em;
  color: #000; 
  margin: 16px 0 12px; 
}

.svc-section .sub { 
  font-family: var(--font-body); 
  text-align: center; 
  color: #666; 
  font-size: 1.1rem; 
  margin: 0 auto 64px; 
  max-width: 700px; 
  line-height: 1.6;
}

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

.svc-card { 
  background: #fff; 
  border: 1px solid #eee; 
  border-radius: 24px; 
  padding: 40px 32px; 
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
  display: flex;
  flex-direction: column;
  height: 100%;
}

.svc-card:hover { 
  box-shadow: 0 20px 50px rgba(0,0,0,0.08); 
  border-color: #000; 
  transform: translateY(-8px);
}

.svc-card__icon { 
  width: 64px; 
  height: 64px; 
  border-radius: 16px; 
  background: #f5f5f5; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.6rem; 
  color: #000; 
  margin-bottom: 28px; 
  transition: all 0.3s ease;
}

.svc-card:hover .svc-card__icon {
  background: #000;
  color: #fff;
}

.svc-card h3 { 
  font-family: var(--font-display); 
  font-size: 1.3rem; 
  font-weight: 800; 
  color: #000; 
  margin-bottom: 16px; 
}

.svc-card p { 
  font-family: var(--font-body); 
  font-size: 0.95rem; 
  color: #666; 
  line-height: 1.6; 
  margin-bottom: 24px;
}

.svc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
}

.svc-card ul li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}

.svc-card ul li i {
  color: #000;
  font-size: 0.85rem;
  margin-top: 2px;
}

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

@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-section { padding: 80px 0; }
  .svc-card { padding: 32px 24px; }
}

/* --- STATS BAR --- */
.stats-bar { 
  background: #fff; 
  border-top: 1px solid #eee; 
  padding: 80px 0; 
}

.stats-bar .inner { 
  max-width: 1280px; 
  margin: auto; 
  padding: 0 40px; 
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  gap: 32px; 
}

.stat-col { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
  border-right: 1px solid #eee; 
  padding-right: 20px; 
}

.stat-col:last-child { 
  border-right: none; 
}

.stat-col__icon { 
  width: 56px; 
  height: 56px; 
  border-radius: 50%; 
  border: 2px solid #000; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: #000; 
  font-size: 1.4rem; 
  flex-shrink: 0; 
}

.stat-col h3 { 
  font-family: var(--font-display); 
  font-size: 2.2rem; 
  font-weight: 800; 
  color: #000; 
  margin: 0; 
  line-height: 1; 
}

.stat-col p { 
  font-family: var(--font-body); 
  font-size: 0.85rem; 
  color: #777; 
  margin: 4px 0 0; 
  font-weight: 500; 
}

@media (max-width: 1024px) {
  .stats-bar .inner { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .stat-col:nth-child(3) { border-right: none; }
}

@media (max-width: 768px) {
  .stats-bar .inner { grid-template-columns: repeat(2, 1fr); }
  .stat-col { border-right: none; }
}

@media (max-width: 480px) {
  .stats-bar .inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ETS STADIUM ACCREDITATION CATALOG (INNOVATIVE ALTERNATING DESIGN)
   ========================================================================== */
.catalog-section { 
  background: #000; 
  padding: 120px 0; 
  position: relative; 
  overflow: hidden; 
  border-top: 1px solid #111;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.002) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.002) 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px, 30px 30px;
}
.studio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}
.catalog-section::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, #000, transparent);
  pointer-events: none;
}
.catalog-section h2 { 
  color: #fff; 
  font-family: var(--font-display); 
  font-size: clamp(2.5rem, 5vw, 3.8rem); 
  font-weight: 900; 
  letter-spacing: -0.03em; 
  text-align: center;
  margin-bottom: 12px;
}
.catalog-section h2 .outlined-text { 
  color: transparent; 
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.4); 
  text-transform: none !important;
  font-style: normal !important;
}
.catalog-section .sec-desc { 
  color: #888; 
  max-width: 600px; 
  margin: 0 auto 56px; 
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Category Tab Selector */
.catalog-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto 80px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 50px;
}

.catalog-tab {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.catalog-tab + .catalog-tab {
  border-left: none;
}
.catalog-tab--active {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: none;
}
.catalog-tab:hover:not(.catalog-tab--active) {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* Product Panel Containers */
.catalog-panel {
  display: none;
}
.catalog-panel--active {
  display: block;
}

/* ── Showcase Split Layout ── */
.catalog-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #0d0d0d;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 600px;
}

/* ── Left: Gallery ── */
.showcase-gallery {
  position: relative;
  background: #080808;
  display: flex;
  flex-direction: column;
}

/* Main Image */
.showcase-hero {
  position: relative;
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 480px;
}
.showcase-hero__img {
  width: auto;
  height: 400px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1), transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.showcase-hero__img.active {
  opacity: 1;
  transform: scale(1);
}

/* Gradient accent line */
.showcase-gallery::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
}

/* Navigation Arrows */
.showcase-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
}
.showcase-nav:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.08);
}
.showcase-nav--prev { left: 16px; }
.showcase-nav--next { right: 16px; }

/* Thumbnail Strip */
.showcase-thumbs {
  display: flex;
  gap: 12px;
  padding: 16px 24px 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  background: rgba(0,0,0,0.6);
  border-top: 1px solid rgba(255,255,255,0.06);
  cursor: grab;
  user-select: none;
}
.showcase-thumbs:active { cursor: grabbing; }

/* Custom Scrollbar for Desktop Visibility */
.showcase-thumbs::-webkit-scrollbar {
  height: 4px;
}
.showcase-thumbs::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.02);
}
.showcase-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
}
.showcase-thumbs::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.25);
}

.showcase-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.45;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #1a1a1a;
  scroll-snap-align: start;
}
.showcase-thumb:hover {
  opacity: 0.75;
  border-color: rgba(255,255,255,0.15);
}
.showcase-thumb.active {
  opacity: 1;
  border-color: #fff;
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
}
.showcase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Right: Details Panel ── */
.showcase-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 44px 44px 36px;
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  min-height: 520px;
}

/* Subtle decorative gradient blob */
.showcase-details::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-counter {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.showcase-counter__bar {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.showcase-counter__fill {
  height: 100%;
  background: #fff;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.showcase-cat {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff !important;
  margin-bottom: 10px;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: #ffffff !important;
  margin: 0 0 14px;
  line-height: 1.25;
  min-height: 2.6em;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: opacity 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.showcase-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.1));
  margin-bottom: 18px;
  border-radius: 2px;
}

.showcase-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.72;
  margin: 0 0 24px;
  min-height: 4.8em;
  transition: opacity 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Feature Tags */
.showcase-features {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  min-height: 100px;
  list-style: none;
  padding: 0;
}
.showcase-features li {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 6px 14px;
  line-height: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.showcase-features li:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}

/* CTA */
.showcase-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: 12px;
  background: #fff;
  color: #000;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  align-self: flex-start;
  margin-top: auto;
}
.showcase-cta:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.12);
}
.showcase-cta .cta-arrow {
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}
.showcase-cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* ── Responsive ── */
@media(max-width: 1024px) {
  .catalog-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .showcase-gallery {
    position: relative;
    overflow: visible;
  }
  .showcase-hero {
    min-height: 300px;
    padding: 30px;
  }
  .showcase-details {
    padding: 32px 28px;
  }
}
@media(max-width: 768px) {
  .catalog-showcase {
    border-radius: 16px;
    overflow: hidden;
    max-width: 100%;
  }
  .showcase-gallery {
    position: relative;
    overflow: hidden;
  }
  .showcase-hero {
    min-height: 240px;
    padding: 20px 16px;
  }
  .showcase-hero__img {
    height: auto;
    max-height: 300px;
    width: 100%;
    object-fit: contain;
  }
  .showcase-nav {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    z-index: 10;
    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(255,255,255,0.25);
    top: 35%;
  }
  .showcase-nav--prev { left: 8px; }
  .showcase-nav--next { right: 8px; }
  .showcase-details {
    padding: 24px 20px;
  }
  .showcase-title {
    font-size: 1.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    min-height: auto;
  }
  .showcase-desc {
    font-size: 0.85rem;
    min-height: auto;
  }
  .showcase-features li {
    font-size: 0.68rem;
    padding: 5px 10px;
  }
  .showcase-cta {
    padding: 14px 28px;
    font-size: 0.78rem;
    width: 100%;
    justify-content: center;
  }
}
@media(max-width: 600px) {
  .catalog-tab {
    padding: 12px 18px;
    font-size: 0.75rem;
  }
  .showcase-thumb {
    width: 48px;
    height: 48px;
  }
  .showcase-hero {
    min-height: 240px;
    padding: 20px 46px;
  }
  .showcase-title {
    font-size: 1.1rem;
  }
}
