/*
Theme Name: Professional Elevators
Theme URI: https://professionalelevators.com
Author: Professional Elevators Pvt Ltd
Author URI: https://professionalelevators.com
Description: Custom premium theme for Professional Elevators - South India's Premier Elevator Brand
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: professional-elevators
Tags: custom, dark, luxury, elevator, business
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --red: #e30014;
  --red-dark: #b5000f;
  --blue: #1caaec;
  --blue-dark: #0e8ec7;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --light-bg: #f5f3ef;
  --white: #ffffff;
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-10: rgba(255,255,255,0.1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-label: 'Barlow Condensed', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-lg: 0 25px 50px rgba(0,0,0,0.4);
  --shadow-red: 0 10px 40px rgba(227,0,20,0.3);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-xl { font-size: clamp(3rem, 7vw, 6rem); }
.display-lg { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.display-md { font-size: clamp(2rem, 4vw, 3.2rem); }
.display-sm { font-size: clamp(1.5rem, 3vw, 2.2rem); }

.label-text {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.accent-italic {
  font-style: italic;
  color: var(--blue);
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad { padding: 7rem 0; }
.section-pad-sm { padding: 4rem 0; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.text-muted { color: var(--white-70); }

/* =============================================
   SECTION LABEL
   ============================================= */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-label span {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(0,0,0,0.3);
}

.btn-outline-dark:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.btn .arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.btn:hover .arrow { transform: translateX(4px); }

/* =============================================
   NAVIGATION — Clean, conflict-proof
   ============================================= */
#site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  background: transparent !important;
  transition: background 0.3s ease, box-shadow 0.3s ease !important;
}

#site-header.scrolled {
  background: #2C2C2C !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4) !important;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.nav-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1.5rem 0;
  gap: 0;
}

/* Logo */
.site-logo {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.75rem !important;
  text-decoration: none !important;
  flex-shrink: 0;
  z-index: 9999;
}

.logo-badge {
  width: 32px !important;
  height: 32px !important;
  background: #e30014 !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  color: #fff !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}

.logo-text-stack {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1 !important;
}

.logo-name {
  font-family: 'Playfair Display', serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  display: block !important;
}

.logo-sub {
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.55rem !important;
  letter-spacing: 0.2em !important;
  color: rgba(255,255,255,0.65) !important;
  margin-top: 0.25rem !important;
  display: block !important;
}

/* Desktop nav links */
.nav-menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 2.5rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-menu li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.nav-menu a {
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none !important;
  transition: color 0.3s !important;
  display: block !important;
}

.nav-menu a:hover,
.nav-menu a.current-menu-item {
  color: #e30014 !important;
  text-decoration: none !important;
}

/* Nav right group */
.nav-right {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1rem !important;
  flex-shrink: 0;
  z-index: 9999;
}

/* Quote button */
.nav-quote-btn {
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  border-radius: 50px !important;
  padding: 0.6rem 1.4rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  background: transparent !important;
}

.nav-quote-btn:hover {
  border-color: #e30014 !important;
  color: #e30014 !important;
  text-decoration: none !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none !important;
  background: none !important;
  border: none !important;
  color: #fff !important;
  cursor: pointer !important;
  padding: 4px !important;
  z-index: 9999 !important;
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: #2C2C2C !important;
  z-index: 9998 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
}

.mobile-overlay.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.mobile-menu {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2rem !important;
  padding: 0 !important;
  margin: 0 !important;
}

.mobile-menu li { list-style: none !important; }

.mobile-menu a {
  font-family: 'Playfair Display', serif !important;
  font-size: 2.5rem !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.3s !important;
  display: block !important;
}

.mobile-menu a:hover { color: #e30014 !important; }

.mobile-quote-btn {
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.85rem !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  border-radius: 50px !important;
  padding: 0.75rem 2rem !important;
}

/* =============================================
   HERO — Full screen, conflict-proof IDs
   ============================================= */
#pe-hero {
  position: relative !important;
  width: 100% !important;
  height: 100vh !important;
  min-height: 600px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: #2C2C2C !important;
  margin: 0 !important;
  padding: 0 !important;
}

#pe-hero-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 0 !important;
  overflow: hidden !important;
}

#pe-hero-img {
  width: 100% !important;
  height: 120% !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 0.7 !important;
  display: block !important;
  max-width: none !important;
}

#pe-hero-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.6) 100%) !important;
}

#pe-hero-content {
  position: relative !important;
  z-index: 2 !important;
  text-align: center !important;
  color: #fff !important;
  padding: 0 2rem !important;
  max-width: 900px !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  animation: peFadeUp 0.8s ease-out forwards !important;
}

@keyframes peFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Badge */
#pe-hero-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  background: rgba(28,170,236,0.08) !important;
  border: 1px solid rgba(28,170,236,0.25) !important;
  border-radius: 50px !important;
  padding: 0.45rem 1.2rem !important;
  margin-bottom: 1.75rem !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #1caaec !important;
}

#pe-hero-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #e30014 !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  animation: peDotPulse 2.5s cubic-bezier(0.4,0,0.6,1) infinite !important;
}

@keyframes peDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(1.7); }
}

/* Headline */
#pe-hero-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(3rem, 7.5vw, 6.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  color: #fff !important;
  margin: 0 0 1.5rem 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

#pe-hero-blue {
  color: #1caaec !important;
  font-style: normal !important;
}

#pe-hero-italic {
  font-style: italic !important;
  font-weight: 300 !important;
  display: block !important;
  color: #fff !important;
}

/* Subtitle */
#pe-hero-sub {
  font-family: 'Manrope', sans-serif !important;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem) !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.88) !important;
  max-width: 560px !important;
  line-height: 1.7 !important;
  margin: 0 0 2.5rem 0 !important;
  text-align: center !important;
}

/* Play button */
#pe-play-btn {
  position: relative !important;
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: border-color 0.3s, background 0.3s !important;
  flex-shrink: 0 !important;
}

#pe-play-btn:hover {
  border-color: #e30014 !important;
  background: rgba(255,255,255,0.05) !important;
}

#pe-play-btn:hover #pe-play-icon { fill: #e30014 !important; }

#pe-play-pulse {
  position: absolute !important;
  inset: 0 !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  animation: pePulse 3s cubic-bezier(0.4,0,0.6,1) infinite !important;
}

@keyframes pePulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.2); opacity: 0.15; }
}

#pe-play-icon {
  width: 24px !important;
  height: 24px !important;
  fill: #fff !important;
  margin-left: 4px !important;
  transition: fill 0.3s !important;
}

/* Scroll indicator */
#pe-scroll {
  position: absolute !important;
  bottom: 2rem !important;
  left: 0 !important;
  right: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.4rem !important;
  z-index: 3 !important;
  pointer-events: none !important;
  color: rgba(255,255,255,0.7) !important;
  animation: peScrollBounce 2s ease-in-out infinite !important;
}

#pe-scroll span {
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  display: block !important;
}

#pe-scroll svg {
  width: 16px !important;
  height: 16px !important;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .nav-menu { display: none !important; }
  .nav-toggle { display: flex !important; }
  .nav-container { padding: 0 1.5rem !important; }
}

@media (max-width: 480px) {
  #pe-hero-title { font-size: 2.8rem !important; }
}
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, padding 0.3s ease;
  padding: 0;
}

#site-header.scrolled {
  background: #2C2C2C;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  transition: padding 0.3s ease;
}

#site-header.scrolled .nav-inner {
  padding: 1rem 0;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 50;
}

.logo-badge {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
  flex-shrink: 0;
}

.logo-text-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  margin-top: 0.2rem;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.current-menu-item {
  color: var(--red);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  z-index: 50;
}

/* Quote button */
.nav-quote-btn {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-quote-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  z-index: 50;
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: #2C2C2C;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--red); }

.mobile-quote-btn {
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 0.75rem 2rem;
}

/* =============================================
   HERO SECTION — Site 2 Style
   ============================================= */
#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2C2C2C;
}

/* Parallax container */
.hero-parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero-bg-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.6) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(28, 170, 236, 0.08);
  border: 1px solid rgba(28, 170, 236, 0.25);
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  margin-bottom: 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: badgePulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

/* Headline */
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  drop-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-title-blue {
  color: var(--blue);
  font-style: normal;
}

.hero-title-italic {
  font-style: italic;
  font-weight: 300;
  display: block;
}

/* Subtitle */
.hero-subtitle {
  font-family: 'Manrope', 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* Play button */
.hero-play-btn {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.hero-play-btn:hover {
  border-color: var(--red);
  background: rgba(255,255,255,0.05);
}

.hero-play-btn:hover .hero-play-icon {
  fill: var(--red);
}

.hero-play-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  animation: playPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 0.2; }
}

.hero-play-icon {
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 4px;
  transition: fill 0.3s ease;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  pointer-events: none;
  animation: bounce 2s infinite;
  color: rgba(255,255,255,0.75);
}

.hero-scroll span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-scroll-icon {
  width: 16px;
  height: 16px;
}

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

/* =============================================
   STATS BAR — Reference style
   ============================================= */
#stats-bar {
  position: relative;
  background: #1c1917;
  padding: 6rem 0;
  border-top: 1px solid #292524;
  border-bottom: 1px solid #292524;
  overflow: hidden;
}

/* Subtle texture overlay */
#stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1541888075769-1229b1103dce?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: default;
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #2d2d2d;
  border: 1px solid #3d3d3d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: background 0.5s ease, border-color 0.5s ease;
  flex-shrink: 0;
}

.stat-item:hover .stat-icon {
  background: rgba(28,170,236,0.12);
  border-color: rgba(28,170,236,0.4);
}

.stat-icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
  stroke: var(--blue);
  stroke-width: 1.25;
  fill: none;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin: 0;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
  color: var(--blue);
}

.stat-label {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a8a29e;
  margin: 0;
}

/* Stat fade-up animation */
.stat-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.stat-item.stat-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:nth-child(2) { transition-delay: 0.1s; }
.stat-item:nth-child(3) { transition-delay: 0.2s; }
.stat-item:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   ABOUT / IDENTITY SECTION
   ============================================= */
#about-section {
  background: var(--light-bg);
  color: var(--dark);
}

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

.about-content .section-label::before { background: var(--red); }
.about-content .section-label span { color: var(--red); }

.about-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 1.5rem;
}

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

.about-body {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #333;
}

.about-feature svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.25rem;
  transition: var(--transition);
}

.about-link:hover { color: var(--red); gap: 0.9rem; }

/* About image collage */
.about-visuals {
  position: relative;
  height: 480px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 120px;
  bottom: 80px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stat-card {
  position: absolute;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.about-stat-card.card-red {
  background: var(--red);
  top: 0;
  right: 0;
  width: 160px;
  color: var(--white);
}

.about-stat-card.card-dark {
  background: var(--dark);
  bottom: 0;
  left: 60px;
  width: 200px;
  color: var(--white);
}

.stat-card-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-card-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
#products-section {
  background: var(--dark);
}

.products-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.products-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}

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

.products-desc {
  color: var(--white-70);
  font-size: 1rem;
  line-height: 1.7;
}

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

.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
  pointer-events: none;
}

.product-card:hover {
  border-color: rgba(28,170,236,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(28,170,236,0.1);
}

.product-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  transition: opacity 0.4s;
}

.product-card:hover .product-card-bg { opacity: 0.2; }

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(28,170,236,0.1);
  border: 1px solid rgba(28,170,236,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.product-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.6;
  position: relative;
}

/* =============================================
   PROJECTS / PORTFOLIO
   ============================================= */
#projects-section {
  background: var(--light-bg);
  color: var(--dark);
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.projects-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
}

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

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

.project-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--dark-3);
  cursor: pointer;
}

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

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.project-category {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.project-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials-section {
  background: var(--black);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-top: 1rem;
}

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

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

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(28,170,236,0.2);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--red);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--white-40);
}

/* =============================================
   CTA SECTION
   ============================================= */
#cta-section {
  background: var(--red);
  padding: 5rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* =============================================
   BLOG SECTION
   ============================================= */
#blog-section {
  background: var(--dark-2);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.blog-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}

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

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

.blog-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover { transform: translateY(-4px); border-color: rgba(28,170,236,0.2); }

.blog-card-image {
  height: 200px;
  background: var(--dark);
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card-body { padding: 1.5rem; }

.blog-card-tag {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--white-70);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--white-40);
}

/* =============================================
   CONTACT SECTION / PAGE
   ============================================= */
#contact-section, .page-contact { background: var(--black); }

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

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-info h2 em { font-style: italic; color: var(--blue); }

.contact-info p {
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(227,0,20,0.1);
  border: 1px solid rgba(227,0,20,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 18px; height: 18px; color: var(--red); }

.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  color: var(--white-40);
  font-family: var(--font-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-item-text span {
  font-size: 0.95rem;
  color: var(--white);
}

/* Contact form */
.contact-form {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2.5rem;
}

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

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-70);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-40); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(28,170,236,0.03);
}

.form-group select option { background: var(--dark-3); }

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

.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: #050505;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--white-40);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-40);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(227,0,20,0.05);
}

.social-link svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--white-40);
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--white-40);
}

.footer-bottom a { color: var(--white-40); }
.footer-bottom a:hover { color: var(--red); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 12rem 0 6rem;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(227,0,20,0.06) 0%, transparent 70%);
}

.page-hero-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.page-hero-label::before,
.page-hero-label::after {
  content: '';
  height: 1px;
  width: 2rem;
  background: rgba(255,255,255,0.2);
}

.page-hero-label span {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-40);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  position: relative;
}

.page-hero h1 em { font-style: italic; color: var(--blue); }

/* =============================================
   QUOTE PAGE
   ============================================= */
.quote-section {
  background: var(--black);
  padding: 6rem 0;
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-form {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 3rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-page-section {
  background: var(--light-bg);
  color: var(--dark);
}

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

.about-journey {
  background: var(--dark);
  padding: 7rem 0;
}

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

.journey-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 500px;
}

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

.journey-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.journey-badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.journey-badge-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
}

.journey-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.journey-content h2 em { font-style: italic; color: var(--blue); }

.journey-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.journey-body {
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.journey-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.journey-stat h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.journey-stat p {
  font-size: 0.8rem;
  color: var(--white-40);
  font-family: var(--font-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid,
  .products-header,
  .products-grid,
  .contact-grid,
  .footer-grid,
  .about-page-grid,
  .journey-grid { grid-template-columns: 1fr; gap: 3rem; }

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

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

  .cta-inner { flex-direction: column; text-align: center; }

  .about-visuals { height: 350px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,10,10,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 1000; }
  .projects-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .projects-header, .blog-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}
