/* ============================
   YOUNG HADENE — STYLESHEET
   Dark Toronto Drill / Trap Aesthetic
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Anton&family=Inter:wght@300;400;500;600;700;800;900&display=swap');


/* ----- CSS Variables ----- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1d1d1d;
  --bg-elevated: #1a1a1a;
  --accent: #dc2626;
  --accent-dark: #b91c1c;
  --accent-glow: rgba(220, 38, 38, 0.3);
  --accent-subtle: rgba(220, 38, 38, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --text-muted: #6b6b6b;
  --border-color: #222222;
  --border-accent: #dc2626;
  --font-heading: 'Bebas Neue', 'Impact', sans-serif;
  --font-subheading: 'Anton', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(220, 38, 38, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(220, 38, 38, 0.3);
  overscroll-behavior: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Scrollbar ----- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* ----- Selection ----- */
::selection {
  background: var(--accent);
  color: #fff;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 16px;
  line-height: 1.05;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 30px rgba(220, 38, 38, 0.4);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 14px 24px;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 0 20px var(--accent-glow);
  flex-shrink: 0;
}

.btn-play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.4);
}

.btn-play.small {
  width: 40px;
  height: 40px;
  font-size: 0.85rem;
}

/* ----- Header / Navigation ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(220, 38, 38, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  position: relative;
}

.logo-accent {
  color: var(--accent);
}

.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: -2px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  width: 100%;
  background: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- Hero Section ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(220, 38, 38, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(220, 38, 38, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 30%, #111111 60%, #0a0a0a 100%);
  z-index: 1;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

/* City Skyline */
.skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  opacity: 0.15;
}

.skyline-building {
  background: linear-gradient(180deg, transparent 0%, #1a1a2e 40%, #0f0f1a 100%);
  width: var(--b-width, 60px);
  height: var(--b-height, 200px);
  margin: 0 2px;
  clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
  position: relative;
}

.skyline-building::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: 3px;
  background: rgba(255, 200, 50, 0.15);
  border-radius: 2px;
  box-shadow:
    0 10px 0 rgba(255, 200, 50, 0.1),
    0 20px 0 rgba(255, 200, 50, 0.08),
    0 30px 0 rgba(255, 200, 50, 0.06);
}

.skyline-building.tall { --b-height: 320px; --b-width: 50px; }
.skyline-building.medium { --b-height: 220px; --b-width: 65px; }
.skyline-building.short { --b-height: 150px; --b-width: 45px; }
.skyline-building.wide { --b-width: 90px; --b-height: 180px; }
.skyline-building.xl { --b-width: 75px; --b-height: 280px; }

/* CN Tower */
.cn-tower {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 8px;
  height: 45vh;
  background: linear-gradient(180deg, transparent, rgba(100, 100, 120, 0.2) 60%, rgba(80, 80, 100, 0.15) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cn-tower-spire {
  width: 2px;
  height: 15%;
  background: rgba(150, 150, 170, 0.2);
}

.cn-tower-pod {
  width: 90px;
  height: 18px;
  background: rgba(80, 80, 100, 0.15);
  border-radius: 4px;
  margin: 4px 0;
  position: relative;
}

.cn-tower-pod::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 6px;
  background: rgba(220, 38, 38, 0.6);
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.8), 0 0 60px rgba(220, 38, 38, 0.3);
  animation: red-pulse 2s ease-in-out infinite;
}

.cn-tower-neck {
  width: 4px;
  height: 25%;
  background: rgba(100, 100, 120, 0.12);
}

@keyframes red-pulse {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 20px rgba(220, 38, 38, 0.8), 0 0 60px rgba(220, 38, 38, 0.3); }
  50% { opacity: 1; box-shadow: 0 0 30px rgba(220, 38, 38, 1), 0 0 80px rgba(220, 38, 38, 0.5); }
}

/* Hero Particle Grid — subtle dots */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.05), transparent),
    radial-gradient(1px 1px at 30% 60%, rgba(255, 255, 255, 0.04), transparent),
    radial-gradient(1px 1px at 50% 10%, rgba(255, 255, 255, 0.06), transparent),
    radial-gradient(1px 1px at 70% 40%, rgba(255, 255, 255, 0.04), transparent),
    radial-gradient(1px 1px at 90% 80%, rgba(255, 255, 255, 0.05), transparent),
    radial-gradient(1px 1px at 20% 80%, rgba(255, 255, 255, 0.03), transparent),
    radial-gradient(1px 1px at 60% 90%, rgba(255, 255, 255, 0.04), transparent),
    radial-gradient(1px 1px at 80% 15%, rgba(255, 255, 255, 0.03), transparent);
}

/* Hero Car Silhouette */
.hero-car {
  position: absolute;
  bottom: 15vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 500px;
  height: 120px;
  opacity: 0.2;
}

/* Hooded Figure Silhouette */
.hero-figure {
  position: absolute;
  bottom: 18vh;
  right: 15%;
  z-index: 3;
  width: 120px;
  height: 200px;
  opacity: 0.25;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-figure-head {
  width: 40px;
  height: 40px;
  border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.hero-figure-head::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -5px;
  width: 50px;
  height: 30px;
  background: #1a1a1a;
  border-radius: 50% 50% 0 0;
}

.hero-figure-body {
  width: 70px;
  height: 100px;
  background: #1a1a1a;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  margin-top: -10px;
}

.hero-figure-legs {
  width: 80px;
  height: 60px;
  display: flex;
  gap: 10px;
  margin-top: -5px;
}

.hero-figure-legs::before,
.hero-figure-legs::after {
  content: '';
  flex: 1;
  height: 100%;
  background: #1a1a1a;
  clip-path: polygon(30% 0%, 70% 0%, 60% 100%, 40% 100%);
}

/* Red light streak on ground */
.hero-ground-streak {
  position: absolute;
  bottom: 14vh;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.3), rgba(220, 38, 38, 0.15), transparent);
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.1);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid rgba(220, 38, 38, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fade-in-down 0.8s ease-out forwards;
  opacity: 0;
}

.hero-title {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  animation: fade-in-up 0.8s 0.2s ease-out forwards;
  opacity: 0;
}

.hero-title .text-accent {
  display: block;
  font-size: clamp(5rem, 15vw, 11rem);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
  animation: fade-in-up 0.8s 0.4s ease-out forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s 0.5s ease-out forwards;
  opacity: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fade-in-up 0.8s 0.8s ease-out forwards, bounce-y 2s ease-in-out infinite;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--text-muted), transparent);
}

/* ----- Section Shared ----- */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ----- About Section ----- */
.about {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

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

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(220, 38, 38, 0.08), transparent),
    linear-gradient(180deg, #111, #0a0a0a);
  position: relative;
  overflow: hidden;
}

.about-image-placeholder .cn-tower-mini {
  width: 6px;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(100, 100, 120, 0.15));
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-image-placeholder .cn-tower-mini::after {
  content: '';
  width: 16px;
  height: 4px;
  background: rgba(220, 38, 38, 0.4);
  border-radius: 2px;
  margin-top: 30%;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
}

.about-image-overlay span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.about-content .section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.stat-item {
  text-align: center;
  padding: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ----- Feature Cards Section ----- */
.features {
  background: var(--bg-primary);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.feature-card:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(220, 38, 38, 0.05);
}

.feature-card:hover::before {
  transform: translateX(100%);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent-subtle);
  border: 1px solid rgba(220, 38, 38, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ----- Releases Section ----- */
.releases {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.releases-embed {
  max-width: 600px;
  margin: 0 auto;
}

.releases-embed iframe {
  display: block;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(220, 38, 38, 0.06);
}

/* ----- Newsletter Section ----- */
.newsletter {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.newsletter-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.05), transparent 70%);
  pointer-events: none;
}

.newsletter-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.newsletter-content .section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 8px;
}

.newsletter-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.newsletter-form-wrap {
  flex-shrink: 0;
  width: 420px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  gap: 0;
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-right: none;
  border-radius: 4px 0 0 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form .btn {
  border-radius: 0 4px 4px 0;
  padding: 16px 28px;
}

/* ----- Footer ----- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--accent-glow);
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.footer-bottom-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

/* ========================================
   BLOG PAGE
   ======================================== */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
}

.page-hero .section-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 8px;
}

.page-hero .section-subtitle {
  margin: 0 auto;
}

/* Blog Categories */
.blog-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.blog-categories a {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: all var(--transition);
}

.blog-categories a:hover,
.blog-categories a.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Featured Article */
.featured-article {
  margin-top: 40px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.featured-card:hover {
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.featured-image {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a0a, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.featured-image-label {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.1em;
  transform: rotate(-10deg);
}

.featured-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
}

.featured-image-overlay .category-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
}

.featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content .post-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.featured-content h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

.featured-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}

.read-more:hover {
  gap: 12px;
}

/* Blog Grid */
.blog-grid-section {
  padding: 60px 0 100px;
}

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

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  border-color: rgba(220, 38, 38, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #111, #0a0a0a);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-image .card-art-label {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: 0.1em;
}

.blog-card-image .category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--accent);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
}

.blog-card-body {
  padding: 20px;
}

.blog-card-body .post-date {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.blog-card-body p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.pagination a:hover,
.pagination a.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.services-grid-section {
  padding: 60px 0 100px;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.03), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.service-card:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(220, 38, 38, 0.06);
}

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

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid rgba(220, 38, 38, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-card .price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-card .btn {
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Services CTA */
.services-cta {
  padding: 60px 0 100px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.services-cta .section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 12px;
}

.services-cta p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   FAQ
   ======================================== */
.faq-q {
  font-family: var(--font-heading);
  font-size: 1rem !important;
  margin-bottom: 8px !important;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.faq-a {
  font-size: 0.85rem !important;
  margin: 0 !important;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-down {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .hamburger { display: flex; }

  .nav-list.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link {
    font-size: 1rem;
    padding: 10px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-list.open {
    padding: 24px 24px calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .btn, .btn-primary, .btn-outline, .btn-ghost {
    min-height: 44px;
  }

  .hero { min-height: 92vh; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-title .text-accent { font-size: clamp(3.5rem, 14vw, 5.5rem); }
  .hero-subtitle { font-size: 0.85rem; letter-spacing: 0.08em; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 16px 24px; }
  .hero-badge { font-size: 0.6rem; padding: 5px 12px; }
  .hero-figure, .hero-car, .hero-ground-streak { display: none; }
  .skyline { opacity: 0.06; }
  .cn-tower { opacity: 0.35; }
  .hero-content { padding: 0 20px; }
  .hero-scroll-indicator { bottom: 20px; }

  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-image { aspect-ratio: 16/9; }
  .about-content .section-title { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  .about-content p { font-size: 0.9rem; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px 24px; }

  .gallery-grid { display: grid; gap: 20px; }
  .gallery-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid-2 { grid-template-columns: repeat(2, 1fr); margin-top: 20px; }
  .gallery-card { padding: 0 !important; overflow: hidden; }
  .gallery-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
  .gallery-card:hover img { transform: scale(1.05); }
  .gallery-card { aspect-ratio: 3/4; }
  .gallery-card-wide { aspect-ratio: 16/9; }

  .blog-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }
  .service-card .price { font-size: 1.3rem; }

  .featured-card { grid-template-columns: 1fr; }
  .featured-image { min-height: 200px; }
  .featured-content { padding: 24px; }
  .featured-content h2 { font-size: 1.4rem; }

  .blog-card-body h3 { font-size: 1rem; }
  .blog-card-body { padding: 16px; }

  .post-full .post-full-header h2 { font-size: 1.5rem; }
  .post-full { padding: 24px 0; }

  .releases-embed iframe { height: 280px !important; }

  .newsletter-inner { flex-direction: column; text-align: center; padding: 28px 20px; gap: 20px; }
  .newsletter-form-wrap { width: 100%; }
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-form input { border-radius: 4px; border-right: 1px solid var(--border-color); }
  .newsletter-form .btn { border-radius: 4px; width: 100%; justify-content: center; }
  .newsletter-content .section-title { font-size: 1.6rem; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .footer-brand p { margin: 0 auto; max-width: 280px; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .section { padding: 48px 0; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: clamp(2rem, 6vw, 3rem); }
  .section-subtitle { font-size: 0.9rem; }

  .stat-item { padding: 12px; }
  .stat-number { font-size: 1.5rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }

  .blog-categories { gap: 8px; }
  .blog-categories a { font-size: 0.65rem; padding: 6px 12px; }

  .container { padding: 0 16px; }

  .header-inner { padding: 0 calc(16px + env(safe-area-inset-right, 0px)) 0 calc(16px + env(safe-area-inset-left, 0px)); }
  .container { padding-left: calc(16px + env(safe-area-inset-left, 0px)); padding-right: calc(16px + env(safe-area-inset-right, 0px)); }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-title .text-accent { font-size: 3rem; }
  .hero-subtitle { font-size: 0.72rem; }
  .hero-badge { font-size: 0.55rem; }
  .hero { min-height: 90vh; }
  .hero-particles { display: none; }
  .cn-tower { opacity: 0.15; }

  .about-stats { grid-template-columns: 1fr; gap: 8px; }

  .gallery-grid-3 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-grid-2 { grid-template-columns: 1fr; gap: 12px; margin-top: 12px; }

  .section-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .section { padding: 40px 0; }
  .container { padding: 0 12px; }

  .feature-card { padding: 24px 20px; }
  .feature-icon { width: 48px; height: 48px; font-size: 1.2rem; }

  .releases-embed iframe { height: 240px !important; }

  .newsletter-inner { padding: 24px 16px; }
  .newsletter-form input { padding: 14px 16px; }
  .newsletter-form .btn { padding: 14px 20px; }

  .blog-card-image { min-height: 160px; }
  .featured-image { min-height: 180px; }
  .featured-content h2 { font-size: 1.2rem; }
  .featured-content { padding: 18px; }

  .service-card { padding: 24px 20px; }
  .service-icon { width: 60px; height: 60px; font-size: 1.4rem; }

  .login-box { padding: 32px 20px; }
  .admin-panel { padding: 16px; }
  .blog-form { padding: 20px; }

  .pagination a { width: 36px; height: 36px; font-size: 0.75rem; }

  .btn { padding: 12px 24px; font-size: 0.8rem; }
}

/* Tiny screens (iPhone SE, etc.) */
@media (max-width: 380px) {
  .hero-title { font-size: 2rem; }
  .hero-title .text-accent { font-size: 2.5rem; }
  .hero-subtitle { font-size: 0.65rem; letter-spacing: 0.06em; }
  .hero-badge { font-size: 0.5rem; padding: 4px 10px; }
  .hero-actions .btn { padding: 14px 18px; font-size: 0.75rem; }

  .section-title { font-size: 1.4rem; }
  .container { padding: 0 10px; }

  .feature-card { padding: 20px 16px; }
  .feature-card h3 { font-size: 1.1rem; }
  .feature-card p { font-size: 0.8rem; }

  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: 0.6rem; }

  .releases-embed iframe { height: 200px !important; }
}

/* ========================================
   SERVICES PAGE — PREMIUM DESIGN
   ======================================== */

/* --- Services Hero --- */
.services-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

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

.services-hero-image {
  position: absolute;
  inset: 0;
  background: url('../images/young_hadene_background_2.png') center 30%/cover no-repeat;
  opacity: 0.7;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.85) 50%, #050505 100%);
  z-index: 1;
}

.services-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(209,18,18,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 30%, rgba(209,18,18,0.05) 0%, transparent 60%);
  z-index: 2;
}

.services-hero-fog {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 40% at 50% 0%, rgba(255,255,255,0.02) 0%, transparent 60%),
    radial-gradient(ellipse 100% 30% at 50% 100%, rgba(209,18,18,0.03) 0%, transparent 50%);
  z-index: 3;
  animation: fog-drift 8s ease-in-out infinite alternate;
}

@keyframes fog-drift {
  0% { transform: translateX(-2%); opacity: 0.8; }
  100% { transform: translateX(2%); opacity: 1; }
}

/* Services Skyline */
.services-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55vh;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  opacity: 0.12;
}

.services-building {
  width: var(--w, 50px);
  height: var(--h, 200px);
  background: linear-gradient(180deg, transparent 0%, #1a1a2e 30%, #0f0f1a 100%);
  clip-path: polygon(5% 100%, 8% 0%, 92% 0%, 95% 100%);
  position: relative;
}

.services-building::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 2px;
  background: rgba(255,200,50,0.1);
  box-shadow:
    0 12px 0 rgba(255,200,50,0.08),
    0 24px 0 rgba(255,200,50,0.06),
    0 36px 0 rgba(255,200,50,0.04);
}

/* CN Tower */
.services-cn-tower {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 48vh;
}

.services-cn-spire {
  width: 2px;
  height: 20%;
  background: rgba(150,150,170,0.15);
}

.services-cn-pod {
  width: 90px;
  height: 16px;
  background: rgba(80,80,100,0.12);
  border-radius: 4px;
  margin: 3px 0;
  position: relative;
}

.services-cn-pod::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 24px;
  height: 5px;
  background: rgba(209,18,18,0.7);
  border-radius: 3px;
  box-shadow: 0 0 25px rgba(209,18,18,0.9), 0 0 70px rgba(209,18,18,0.3);
  animation: cn-pulse 2s ease-in-out infinite;
}

@keyframes cn-pulse {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 25px rgba(209,18,18,0.9), 0 0 70px rgba(209,18,18,0.3); }
  50% { opacity: 1; box-shadow: 0 0 35px rgba(209,18,18,1), 0 0 90px rgba(209,18,18,0.5); }
}

.services-cn-neck {
  width: 3px;
  height: 30%;
  background: rgba(100,100,120,0.1);
}

.services-cn-base {
  width: 40px;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(80,80,100,0.08));
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}

/* Ambient Floating Red Lights */
.ambient-light {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209,18,18,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 3;
  animation: ambient-float 6s ease-in-out infinite alternate;
}

@keyframes ambient-float {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(20px, -15px) scale(1.1); opacity: 1; }
  100% { transform: translate(-10px, 10px) scale(0.9); opacity: 0.7; }
}

/* Services Hero Content */
.services-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.services-hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid rgba(209,18,18,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fade-in-down 0.8s ease-out forwards;
  opacity: 0;
}

.services-hero-title {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  animation: fade-in-up 0.8s 0.2s ease-out forwards;
  opacity: 0;
}

.services-hero-title .text-accent {
  font-size: clamp(4rem, 12vw, 8rem);
}

.services-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  letter-spacing: 0.08em;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fade-in-up 0.8s 0.4s ease-out forwards;
  opacity: 0;
}

.services-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s 0.5s ease-out forwards;
  opacity: 0;
}

.services-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fade-in-up 0.8s 0.8s ease-out forwards, bounce-y 2s ease-in-out infinite;
  opacity: 0;
}

.services-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--text-muted), transparent);
}

/* --- Services Section --- */
.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #050505 100%);
  position: relative;
}

.services-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-premium-card {
  position: relative;
  padding: 48px 32px;
  background: rgba(17,17,17,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
  z-index: 1;
}

.service-premium-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(209,18,18,0.02), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-premium-card:hover {
  border-color: rgba(209,18,18,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(209,18,18,0.08);
  background: rgba(17,17,17,0.8);
}

.service-premium-card:hover .service-premium-bg {
  opacity: 1;
}

.service-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(209,18,18,0.6), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-premium-card:hover::before {
  transform: translateX(100%);
}

.service-premium-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(209,18,18,0.08);
  border: 1px solid rgba(209,18,18,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  transition: all 0.4s ease;
}

.service-premium-card:hover .service-premium-icon {
  background: rgba(209,18,18,0.15);
  border-color: rgba(209,18,18,0.3);
  box-shadow: 0 0 30px rgba(209,18,18,0.1);
  transform: scale(1.1);
}

.service-premium-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.service-premium-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-premium-card .btn {
  width: 100%;
  justify-content: center;
}

/* --- Featured Banner: Built for the 6ix --- */
.featured-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.featured-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.featured-banner-image {
  position: absolute;
  inset: 0;
  background: url('../images/poster3.png') center 40%/cover no-repeat;
  opacity: 0.2;
}

.featured-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5,5,5,0.7) 50%, #050505 100%),
    linear-gradient(180deg, transparent 0%, rgba(209,18,18,0.05) 50%, transparent 100%);
}

.featured-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.featured-banner-title {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.featured-banner-title .text-accent {
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  text-shadow: 0 0 40px rgba(209,18,18,0.3), 0 0 80px rgba(209,18,18,0.1);
}

.featured-banner-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* Animated Stats */
.featured-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.featured-stat {
  text-align: center;
  padding: 28px 16px;
  background: rgba(17,17,17,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.featured-stat:hover {
  border-color: rgba(209,18,18,0.2);
  box-shadow: 0 0 30px rgba(209,18,18,0.04);
}

.featured-stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.featured-stat-number::after {
  content: '+';
  color: var(--accent);
}

.featured-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #050505 0%, #0d0d0d 50%, #050505 100%);
}

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

.testimonial-card {
  position: relative;
  padding: 40px 32px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}

.testimonial-glass {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  z-index: -1;
  transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-glass {
  border-color: rgba(209,18,18,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 30px rgba(209,18,18,0.04);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(209,18,18,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.testimonial-stars {
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(209,18,18,0.15);
  border: 1px solid rgba(209,18,18,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- CTA Section --- */
.services-cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.services-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-cta-image {
  position: absolute;
  inset: 0;
  background: url('../images/poster5.png') center 30%/cover no-repeat;
  opacity: 0.15;
}

.services-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #050505 0%, rgba(5,5,5,0.6) 40%, rgba(5,5,5,0.8) 60%, #050505 100%),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(209,18,18,0.06) 0%, transparent 70%);
}

.services-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.services-cta-title {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.services-cta-title .text-accent {
  text-shadow: 0 0 60px rgba(209,18,18,0.4), 0 0 120px rgba(209,18,18,0.15);
}

.services-cta-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

.services-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Services Hero/Page Responsive --- */
@media (max-width: 1024px) {
  .services-premium-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-stats { grid-template-columns: repeat(2, 1fr); max-width: 500px; }
}

@media (max-width: 768px) {
  .services-hero { min-height: 92vh; }
  .services-hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .services-hero-title .text-accent { font-size: clamp(3rem, 14vw, 5rem); }
  .services-hero-subtitle { font-size: 0.85rem; letter-spacing: 0.06em; }
  .services-hero-actions { flex-direction: column; max-width: 320px; margin: 0 auto; }
  .services-hero-actions .btn { width: 100%; justify-content: center; }
  .services-hero-badge { font-size: 0.6rem; }
  .services-skyline { opacity: 0.06; }
  .services-cn-tower { opacity: 0.25; }
  .services-hero-fog { display: none; }
  .ambient-light { opacity: 0.3; }

  .services-premium-grid { grid-template-columns: 1fr; }
  .service-premium-card { padding: 32px 24px; }

  .featured-banner { padding: 80px 0; }
  .featured-banner-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .featured-banner-title .text-accent { font-size: clamp(2.5rem, 12vw, 4rem); }
  .featured-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 400px; }
  .featured-stat { padding: 20px 12px; }
  .featured-stat-number { font-size: 2rem; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 32px 24px; }

  .services-cta-section { padding: 80px 0; }
  .services-cta-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .services-cta-actions { flex-direction: column; max-width: 320px; margin: 0 auto; }
  .services-cta-actions .btn { width: 100%; justify-content: center; }

  .services-section { padding: 60px 0; }
  .testimonials-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .services-hero { min-height: 90vh; }
  .services-hero-title { font-size: 2rem; }
  .services-hero-title .text-accent { font-size: 2.5rem; }
  .services-hero-subtitle { font-size: 0.72rem; }

  .featured-banner { padding: 60px 0; }
  .featured-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .featured-stat-number { font-size: 1.6rem; }
  .featured-stat-label { font-size: 0.6rem; }

  .service-premium-card { padding: 24px 20px; }
  .service-premium-icon { width: 60px; height: 60px; font-size: 1.5rem; }
  .service-premium-card h3 { font-size: 1.2rem; }

  .services-cta-section { padding: 60px 0; }
  .services-cta-title { font-size: 2rem; }
}
