/*
Theme Name: Buildex Constructions
Theme URI: https://buildex.cy
Author: Buildex Constructions
Author URI: https://buildex.cy
Description: A clean, modern Elementor-compatible theme for Buildex Constructions – a professional construction company based in Cyprus. Features minimalist design with white and light blue color palette.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: buildex
Tags: elementor, construction, business, one-page, portfolio, clean, minimal
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --buildex-white: #ffffff;
  --buildex-off-white: #f8fafc;
  --buildex-blue-50: #eff6ff;
  --buildex-blue-100: #dbeafe;
  --buildex-blue-200: #bfdbfe;
  --buildex-blue-300: #93c5fd;
  --buildex-blue-400: #60a5fa;
  --buildex-blue-500: #3b82f6;
  --buildex-blue-600: #2563eb;
  --buildex-blue-700: #1d4ed8;
  --buildex-blue-800: #1e40af;
  --buildex-blue-900: #1e3a8a;
  --buildex-navy: #0f1f3d;
  --buildex-dark: #0a1628;
  --buildex-gray-100: #f1f5f9;
  --buildex-gray-200: #e2e8f0;
  --buildex-gray-300: #cbd5e1;
  --buildex-gray-400: #94a3b8;
  --buildex-gray-500: #64748b;
  --buildex-gray-600: #475569;
  --buildex-gray-700: #334155;
  --buildex-gray-800: #1e293b;
  --buildex-accent: #0ea5e9;
  --buildex-accent-light: #38bdf8;
  --buildex-gold: #d4a843;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-display: 'Bebas Neue', Impact, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(15,31,61,0.08), 0 2px 8px rgba(15,31,61,0.04);
  --shadow-lg: 0 12px 40px rgba(15,31,61,0.12), 0 4px 16px rgba(15,31,61,0.06);
  --shadow-xl: 0 24px 64px rgba(15,31,61,0.16), 0 8px 24px rgba(15,31,61,0.08);
  --shadow-blue: 0 8px 32px rgba(59,130,246,0.25);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  --header-height: 80px;
  --container-max: 1280px;
  --section-padding: 100px 0;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--buildex-gray-700);
  background-color: var(--buildex-white);
  overflow-x: hidden;
}

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

a {
  color: var(--buildex-blue-600);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--buildex-blue-800);
}

ul, ol {
  list-style: none;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--buildex-navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.25rem;
  color: var(--buildex-gray-600);
  font-size: 1.0625rem;
  line-height: 1.75;
}

p:last-child { margin-bottom: 0; }

/* =============================================
   LAYOUT
   ============================================= */
.container,
.buildex-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-padding {
  padding: var(--section-padding);
}

.section-padding-sm {
  padding: 60px 0;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
#buildex-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: all var(--transition-base);
}

#buildex-header.scrolled {
  box-shadow: var(--shadow-md);
  height: 68px;
}

#buildex-header.scrolled .custom-logo-link img,
#buildex-header.scrolled .buildex-logo img,
#buildex-header.scrolled .buildex-logo-img {
  max-height: 36px;
  height: 36px;
  width: auto;
  min-width: 36px;
  max-width: 180px;
  transition: max-height var(--transition-base);
}

#buildex-header.scrolled .buildex-logo-svg {
  height: 36px !important;
}

#buildex-header.scrolled .buildex-logo-mark {
  width: 32px;
  height: 32px;
}

#buildex-header.transparent {
  background: transparent;
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.buildex-logo,
.custom-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.custom-logo-link img,
.buildex-logo img,
.buildex-logo-img {
  max-height: 48px !important;
  height: 48px !important;
  width: auto !important;
  min-width: 40px;        /* prevents SVG collapsing to 0 when no intrinsic size */
  max-width: 200px;
  display: inline-block !important;
  transition: max-height var(--transition-base);
}

/* Inline SVG logo */
.buildex-logo-svg {
  height: 48px !important;
  width: auto !important;
  max-width: 200px !important;
  display: block !important;
  transition: height var(--transition-base);
}

.buildex-logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--buildex-blue-600), var(--buildex-blue-800));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.buildex-logo-mark::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 5px;
  right: 5px;
  height: 2px;
  background: rgba(255,255,255,0.4);
}

.buildex-logo-mark::after {
  content: 'B';
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1;
}

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

.buildex-logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--buildex-navy);
  line-height: 1;
  text-transform: uppercase;
}

.buildex-logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--buildex-gray-500);
  font-family: var(--font-body);
  font-weight: 500;
  margin-top: 2px;
}

/* Navigation */
.buildex-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.buildex-nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--buildex-gray-700);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.buildex-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--buildex-blue-600);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.buildex-nav a:hover,
.buildex-nav a.active {
  color: var(--buildex-blue-700);
}

.buildex-nav a:hover::after,
.buildex-nav a.active::after {
  width: 60%;
}

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--buildex-gray-700);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 61, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: white;
  text-decoration: none;
  transition: color var(--transition-fast);
  letter-spacing: -0.01em;
}

.mobile-nav a:hover {
  color: var(--buildex-accent-light);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn,
.buildex-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary,
.buildex-btn-primary {
  background: var(--buildex-blue-700);
  color: white;
  border-color: var(--buildex-blue-700);
}

.btn-primary:hover,
.buildex-btn-primary:hover {
  background: var(--buildex-blue-800);
  border-color: var(--buildex-blue-800);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-outline,
.buildex-btn-outline {
  background: transparent;
  color: var(--buildex-blue-700);
  border-color: var(--buildex-blue-700);
}

.btn-outline:hover,
.buildex-btn-outline:hover {
  background: var(--buildex-blue-700);
  color: white;
}

.btn-white {
  background: white;
  color: var(--buildex-blue-700);
  border-color: white;
}

.btn-white:hover {
  background: var(--buildex-blue-50);
  color: var(--buildex-blue-800);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  color: white;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.9375rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--buildex-blue-600);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--buildex-blue-600);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--buildex-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--buildex-gray-500);
  line-height: 1.75;
  max-width: 600px;
}

.section-header {
  margin-bottom: 60px;
}

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

.section-header.center .section-label {
  justify-content: center;
}

.section-header.center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   HERO SECTION
   ============================================= */
.buildex-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--buildex-dark);
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrapper video,
.hero-video-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.5) 50%,
    rgba(15, 31, 61, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--buildex-blue-300);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--buildex-accent-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--buildex-blue-300);
}

.hero-title span.outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.5);
  color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: white;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-stat-number span {
  color: var(--buildex-blue-300);
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-drop 1.5s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-text {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.buildex-about {
  background: var(--buildex-white);
  padding: var(--section-padding);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 560px;
}

.about-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 85%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-image-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid white;
  box-shadow: var(--shadow-lg);
}

.about-badge-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--buildex-blue-700);
  color: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-blue);
  z-index: 1;
  min-width: 100px;
}

.about-badge-float .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: white;
}

.about-badge-float .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: 4px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem;
  background: var(--buildex-blue-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--buildex-blue-100);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--buildex-blue-700);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.about-feature-text {
  font-size: 0.875rem;
  color: var(--buildex-gray-700);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* =============================================
   FOUNDER SECTION
   ============================================= */
.buildex-founder {
  background: var(--buildex-off-white);
  padding: var(--section-padding);
}

.founder-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}

.founder-photo-frame {
  position: relative;
}

.founder-photo-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--buildex-blue-200);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.founder-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.founder-photo-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--buildex-blue-800) 0%, var(--buildex-blue-600) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.founder-photo-placeholder .initials {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  opacity: 0.9;
}

.founder-photo-placeholder .name-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.6;
  margin-top: 0.5rem;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1.5rem 0;
}

.credential-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--buildex-blue-50);
  border: 1px solid var(--buildex-blue-200);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.8125rem;
  color: var(--buildex-blue-700);
  font-weight: 500;
}

.founder-timeline {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: var(--buildex-blue-100);
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--buildex-blue-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--buildex-blue-700);
  font-family: var(--font-body);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--buildex-blue-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.9375rem;
  color: var(--buildex-gray-700);
  line-height: 1.5;
  margin: 0;
}

/* =============================================
   WHY CHOOSE US / MISSION
   ============================================= */
.buildex-why {
  background: linear-gradient(135deg, var(--buildex-navy) 0%, var(--buildex-blue-900) 100%);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.buildex-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 20% 50%, rgba(59,130,246,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(14,165,233,0.1) 0%, transparent 50%);
}

.buildex-why .section-title {
  color: white;
}

.buildex-why .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--buildex-blue-400), var(--buildex-accent-light));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--buildex-blue-600), var(--buildex-blue-800));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.why-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   PROJECTS / PORTFOLIO
   ============================================= */
.buildex-projects {
  background: var(--buildex-white);
  padding: var(--section-padding);
}

.projects-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--buildex-gray-100);
  color: var(--buildex-gray-600);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--buildex-blue-700);
  color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  group: true;
}

.project-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--buildex-blue-900);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.project-overlay-tag {
  background: var(--buildex-blue-600);
  color: white;
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.project-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-image-placeholder .icon {
  font-size: 2.5rem;
  opacity: 0.3;
}

.project-body {
  padding: 1.5rem;
}

.project-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--buildex-blue-600);
  margin-bottom: 0.5rem;
}

.project-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--buildex-navy);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.project-location {
  font-size: 0.875rem;
  color: var(--buildex-gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* =============================================
   TEAM SECTION
   ============================================= */
.buildex-team {
  background: var(--buildex-off-white);
  padding: var(--section-padding);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-align: center;
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--buildex-blue-800), var(--buildex-blue-600));
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(255,255,255,0.7);
}

.team-info {
  padding: 1.25rem 1rem 1.5rem;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--buildex-navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8125rem;
  color: var(--buildex-blue-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================================
   CLIENTS SECTION
   ============================================= */
.buildex-clients {
  background: var(--buildex-white);
  padding: 80px 0;
  border-top: 1px solid var(--buildex-gray-100);
  border-bottom: 1px solid var(--buildex-gray-100);
}

.clients-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.clients-intro p {
  font-size: 0.875rem;
  color: var(--buildex-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.clients-scroll-track {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-scroll {
  display: flex;
  gap: 3rem;
  animation: clients-scroll 30s linear infinite;
  width: max-content;
}

.clients-scroll:hover {
  animation-play-state: paused;
}

@keyframes clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--buildex-gray-100);
  border-radius: var(--radius-md);
  min-width: 160px;
  height: 60px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--buildex-gray-500);
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  white-space: nowrap;
  border: 1px solid var(--buildex-gray-200);
}

.client-logo-item:hover {
  background: var(--buildex-blue-50);
  color: var(--buildex-blue-700);
  border-color: var(--buildex-blue-200);
}

/* =============================================
   VALUES SECTION
   ============================================= */
.buildex-values {
  background: var(--buildex-blue-700);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.buildex-values::after {
  content: '"';
  position: absolute;
  right: -2%;
  top: -10%;
  font-family: var(--font-heading);
  font-size: 40vw;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.values-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: white;
  line-height: 1.35;
  font-style: italic;
  font-weight: 500;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.values-quote span {
  color: var(--buildex-blue-200);
}

.values-attribution {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.values-attribution-line {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.4);
}

.values-attribution-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.buildex-contact {
  background: var(--buildex-white);
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--buildex-blue-50);
  border: 1px solid var(--buildex-blue-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--buildex-gray-400);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--buildex-navy);
  margin: 0;
}

.contact-form {
  background: var(--buildex-off-white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--buildex-gray-200);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--buildex-gray-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--buildex-gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--buildex-gray-800);
  background: white;
  transition: border-color var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--buildex-blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* =============================================
   FOOTER
   ============================================= */
.buildex-footer {
  background: var(--buildex-dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .buildex-logo-name {
  color: white;
}

.footer-brand .buildex-logo-tagline {
  color: rgba(255,255,255,0.4);
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.footer-copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* =============================================
   ELEMENTOR OVERRIDES
   ============================================= */
body.elementor-page .elementor-section {
  padding: 0;
}

.elementor-kit-1 {
  --e-global-color-primary: #2563eb;
  --e-global-color-secondary: #0f1f3d;
  --e-global-color-text: #475569;
  --e-global-color-accent: #0ea5e9;
  --e-global-typography-primary-font-family: 'Cormorant Garamond';
  --e-global-typography-secondary-font-family: 'DM Sans';
}

/* Elementor section full height */
.elementor-section.buildex-hero-section {
  min-height: 100vh;
}

/* Elementor widget customizations */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-heading);
}

.elementor-widget-button .elementor-button {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Page specific padding */
.elementor-section-full_width .elementor-container {
  max-width: 100%;
}

/* Elementor column gaps */
.elementor-section .elementor-column-gap-extended > .elementor-container {
  gap: 40px;
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: white; }
.text-blue { color: var(--buildex-blue-600); }
.text-navy { color: var(--buildex-navy); }
.text-muted { color: var(--buildex-gray-500); }

.bg-white { background: var(--buildex-white); }
.bg-off-white { background: var(--buildex-off-white); }
.bg-blue-50 { background: var(--buildex-blue-50); }
.bg-navy { background: var(--buildex-navy); }
.bg-dark { background: var(--buildex-dark); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-fade-up {
  animation: fadeInUp 0.7s ease forwards;
}

.animate-fade {
  animation: fadeIn 0.7s ease forwards;
}

[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

/* =============================================
   RESPONSIVE — Full Device Coverage
   Breakpoints:
     1280px  Container max
     1024px  Tablet landscape
     768px   Tablet portrait
     640px   Large mobile
     480px   Mobile
     380px   Small phone
   ============================================= */

/* ── 1280px: constrain container ── */
@media (max-width: 1280px) {
  :root { --container-max: 100%; }
  .container,
  .buildex-container { padding-left: 2rem; padding-right: 2rem; }
}

/* ── 1024px: Tablet landscape ── */
@media (max-width: 1024px) {
  /* Layout */
  .about-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-stack { height: 380px; }
  .about-features    { grid-template-columns: 1fr 1fr; }

  .founder-inner     { grid-template-columns: 300px 1fr; gap: 3rem; }

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

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

/* ── 900px: Tablet portrait ── */
@media (max-width: 900px) {
  :root { --section-padding: 70px 0; --header-height: 72px; }

  /* Header */
  .buildex-nav   { display: none; }
  .nav-toggle    { display: flex; }
  .header-cta .btn-outline { display: none; }

  /* Layouts → single column */
  .about-grid,
  .founder-inner,
  .contact-grid  { grid-template-columns: 1fr; }

  .about-image-stack { height: 340px; }
  .founder-photo-frame::before { display: none; }
  .founder-photo-placeholder,
  .founder-photo-frame img { height: 360px; }

  /* Hero */
  .hero-stats    { flex-wrap: wrap; gap: 2rem; }

  /* Grids */
  .why-grid      { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }

  /* Form */
  .form-row      { grid-template-columns: 1fr; }

  /* Contact form */
  .contact-form  { padding: 2rem; }
}

/* ── 768px: Tablet portrait tight ── */
@media (max-width: 768px) {
  .section-title  { font-size: clamp(1.75rem, 5vw, 2.5rem); }

  .founder-inner  { grid-template-columns: 1fr; }
  .founder-credentials { flex-wrap: wrap; }

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

  /* Projects filter wrap */
  .projects-filter { gap: 6px; }
  .filter-btn     { padding: 6px 14px; font-size: 0.75rem; }

  /* Team → 2 cols */
  .team-grid      { grid-template-columns: repeat(2, 1fr); }

  /* Hero actions wrap */
  .hero-actions   { flex-wrap: wrap; }
}

/* ── 640px: Large mobile ── */
@media (max-width: 640px) {
  :root {
    --header-height: 64px;
    --section-padding: 55px 0;
    --container-max: 100%;
  }

  .container,
  .buildex-container { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* Logo */
  .custom-logo-link img,
  .buildex-logo img,
  .buildex-logo-img     { max-height: 28px; height: 28px; min-width: 30px; max-width: 160px; }
  .buildex-logo-svg     { height: 28px !important; }

  /* Hero */
  .buildex-hero         { min-height: 100svh; }
  .hero-title           { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-description     { font-size: 0.9375rem; }
  .hero-actions         { flex-direction: column; align-items: stretch; }
  .hero-actions .btn    { width: 100%; justify-content: center; }
  .hero-stats           { gap: 1.5rem; flex-wrap: wrap; }
  .hero-badge           { font-size: 0.7rem; padding: 5px 12px; }
  .hero-scroll-hint     { display: none; }

  /* Sections */
  .section-title        { font-size: clamp(1.6rem, 6vw, 2.25rem); }
  .section-subtitle     { font-size: 0.9375rem; }

  /* About */
  .about-grid           { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-stack    { height: 260px; }
  .about-image-main     { width: 90%; height: 90%; }
  .about-image-secondary { width: 50%; height: 50%; border-width: 4px; }
  .about-features       { grid-template-columns: 1fr; }
  .about-badge-float    { display: none; }

  /* Founder */
  .founder-inner        { grid-template-columns: 1fr; gap: 2rem; }
  .founder-photo-placeholder,
  .founder-photo-frame img { height: 280px; }
  .founder-timeline     { gap: 0; }

  /* Why grid */
  .why-grid             { grid-template-columns: 1fr; }
  .why-card             { padding: 1.5rem; }

  /* Projects */
  .projects-grid        { grid-template-columns: 1fr; }
  .projects-filter      { gap: 6px; }

  /* Team */
  .team-grid            { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid         { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form         { padding: 1.5rem; border-radius: var(--radius-lg); }
  .form-row             { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid          { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom        { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom-links  { justify-content: center; }

  /* Values quote */
  .values-quote         { font-size: clamp(1.25rem, 4.5vw, 1.75rem); }

  /* Clients ticker */
  .clients-scroll       { gap: 2rem; }
  .client-logo-item     { min-width: 130px; font-size: 0.8rem; }

  /* Buttons */
  .btn-lg               { padding: 0.875rem 1.75rem; font-size: 0.875rem; }
}

/* ── 480px: Mobile ── */
@media (max-width: 480px) {
  :root {
    --header-height: 60px;
    --section-padding: 48px 0;
  }

  .container,
  .buildex-container { padding-left: 1rem; padding-right: 1rem; }

  /* Header */
  .buildex-logo-name    { font-size: 1.25rem; }
  .buildex-logo-tagline { display: none; }
  .buildex-logo-mark    { width: 36px; height: 36px; }
  .custom-logo-link img,
  .buildex-logo img,
  .buildex-logo-img     { max-height: 24px; height: 24px; min-width: 24px; max-width: 140px; }
  .buildex-logo-svg     { height: 24px !important; }

  /* Hero */
  .hero-title           { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-stats           { padding-top: 1.5rem; gap: 1.25rem; }
  .hero-stat-number     { font-size: 2.25rem; }

  /* Section headings */
  .section-title        { font-size: clamp(1.5rem, 5.5vw, 2rem); }

  /* Cards */
  .team-grid            { grid-template-columns: 1fr 1fr; gap: 14px; }
  .project-card         { border-radius: var(--radius-md); }
  .project-image        { aspect-ratio: 16/10; }

  /* Why cards */
  .why-icon             { width: 44px; height: 44px; font-size: 1.125rem; }

  /* Footer */
  .footer-links a       { font-size: 0.875rem; }
  .footer-copy          { font-size: 0.8125rem; }
}

/* ── 380px: Small phone ── */
@media (max-width: 380px) {
  :root {
    --header-height: 58px;
    --section-padding: 44px 0;
  }

  .container,
  .buildex-container { padding-left: 0.875rem; padding-right: 0.875rem; }

  .hero-title           { font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
  .hero-description     { font-size: 0.875rem; }
  .custom-logo-link img,
  .buildex-logo img,
  .buildex-logo-img     { max-height: 20px; height: 20px; min-width: 20px; max-width: 120px; }
  .buildex-logo-svg     { height: 20px !important; }

  .team-grid            { grid-template-columns: 1fr 1fr; gap: 10px; }
  .team-name            { font-size: 0.9375rem; }

  .contact-form         { padding: 1.25rem; }

  .projects-filter      { gap: 4px; }
  .filter-btn           { padding: 5px 10px; font-size: 0.6875rem; }
}

/* ── Landscape mobile ── */
@media (max-width: 768px) and (orientation: landscape) {
  .buildex-hero   { min-height: 100vw; }
  .hero-title     { font-size: clamp(2rem, 6vw, 3rem); }
  .hero-content   { padding-top: calc(var(--header-height) + 20px); }
  .hero-scroll-hint { display: none; }
}

/* ── High DPI / Retina ── */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .buildex-logo-mark { image-rendering: -webkit-optimize-contrast; }
}

/* ── Print ── */
@media print {
  #buildex-header,
  .buildex-footer,
  .nav-toggle,
  .hero-scroll-hint,
  .clients-scroll-track { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .buildex-hero { min-height: auto; padding: 2rem 0; }
}

