/* ============================================================
   CORPORATION DEVELOPMENT — Global Stylesheet
   Palette: Deep Blue, Purple, Orange accent
   Fonts: Syne (display) + DM Sans (body)
   ============================================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --blue:         #2A3BCC;
  --blue-dark:    #1A2490;
  --blue-deep:    #0D1660;
  --purple:       #5B2DA6;
  --purple-mid:   #7B4FCF;
  --purple-light: #A47CE5;
  --orange:       #F5A623;
  --orange-dark:  #E08C0A;
  --orange-pale:  rgba(245, 166, 35, 0.12);
  --blue-pale:    rgba(42, 59, 204, 0.08);
  --white:        #FFFFFF;
  --off-white:    #F4F5FF;
  --light-grey:   #EEF0FF;
  --text-dark:    #0D1036;
  --text-mid:     #3D4480;
  --text-light:   #8A90C0;
  --border:       rgba(42, 59, 204, 0.14);
  --border-light: rgba(42, 59, 204, 0.08);
  --shadow-sm:    0 2px 16px rgba(13, 22, 96, 0.07);
  --shadow-md:    0 8px 40px rgba(13, 22, 96, 0.12);
  --shadow-lg:    0 20px 60px rgba(13, 22, 96, 0.18);
  --shadow-orange: 0 8px 28px rgba(245, 166, 35, 0.35);
  --glass-bg:     rgba(255,255,255,0.60);
  --glass-blur:   blur(20px);
  --glass-border: rgba(255,255,255,0.75);
  --glass-dark-bg: rgba(13, 22, 96, 0.25);
  --radius:       10px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --transition:   0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* gradient shorthand */
  --grad-main:    linear-gradient(135deg, var(--blue-dark) 0%, var(--purple) 100%);
  --grad-hero:    linear-gradient(135deg, #1A2490 0%, #3A1E8A 50%, #5B2DA6 100%);
  --grad-accent:  linear-gradient(135deg, var(--orange) 0%, #F5C842 100%);
}

/* ---------- 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(--off-white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ---------- Layout ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section--light  { background: var(--off-white); }
.section--white  { background: var(--white); }
.section--dark   { background: var(--blue-deep); color: var(--white); }
.section--grad   { background: var(--grad-hero); color: var(--white); }

/* ---------- Glass ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}
.glass--dark {
  background: var(--glass-dark-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.15);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.nav__logo span {
  color: var(--orange);
  transition: color 0.3s ease;
}
.nav.scrolled .nav__logo { color: var(--blue-dark); text-shadow: none; }
.nav.scrolled .nav__logo span { color: var(--orange); }

/* Light hero override (index) */
.nav--light .nav__logo { color: var(--blue-dark); text-shadow: none; }
.nav--light .nav__logo span { color: var(--orange); }
.nav--light.scrolled .nav__logo { color: var(--blue-dark); text-shadow: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav.scrolled .nav__link { color: var(--text-mid); }
.nav.scrolled .nav__link:hover, .nav.scrolled .nav__link.active { color: var(--blue); }

.nav--light .nav__link { color: var(--text-mid); }
.nav--light .nav__link:hover, .nav--light .nav__link.active { color: var(--blue); }

/* CTA */
.nav__cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
}
.nav__cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(245,166,35,0.45);
}
.nav__cta::after { display: none !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__hamburger span,
.nav--light .nav__hamburger span { background: var(--text-dark); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile .nav__link { font-size: 1.1rem; color: var(--text-dark); }

/* ============================================================
   CONCERT HALL SVG
   ============================================================ */
.concert-svg {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(13,22,96,0.4));
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,166,35,0.45);
}
.btn--blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(42,59,204,0.3);
}
.btn--blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,59,204,0.4);
}
.btn--outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--ghost {
  border: 2px solid rgba(255,255,255,0.45);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(4px); }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s ease;
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed; inset: 0;
  background: var(--blue-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader__logo span { color: var(--orange); }
@keyframes loaderPulse {
  0%,100% { opacity: 0.25; transform: scale(0.96); }
  50%      { opacity: 1;    transform: scale(1); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ============================================================
   HERO — Main (index)
   ============================================================ */
/* ── Desktop: hero is relative container, visual is absolute right ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  padding-top: 72px;
}

/* Desktop inner: text on left, SVG absolute right */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Animated background blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobFloat var(--dur,10s) ease-in-out infinite var(--del,0s);
  pointer-events: none;
}
.hero__blob--1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(91,45,166,0.6) 0%, transparent 70%);
  --dur: 12s;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(42,59,204,0.5) 0%, transparent 70%);
  --dur: 9s; --del: -3s;
}
.hero__blob--3 {
  width: 300px; height: 300px;
  top: 40%; right: 25%;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  --dur: 7s; --del: -5s;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.06); }
  66%      { transform: translate(-20px,25px) scale(0.95); }
}

/* Dot grid pattern overlay */
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero__tagline::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: dotBlink 1.5s ease-in-out infinite;
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}
.hero__title span { color: var(--orange); }
.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.78;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s ease forwards;
  margin-bottom: 2.8rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s ease forwards;
}

/* ============================================================
   HERO VISUAL — Event Stage (right side)
   ============================================================ */
.hero__visual {
  position: absolute;
  right: 0; top: 0;
  width: 48%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.event-canvas {
  width: 520px;
  height: 520px;
  position: relative;
}

/* Stage glow */
.ec-stage {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 12px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(245,166,35,0.7);
  animation: stagePulse 2.5s ease-in-out infinite;
}
@keyframes stagePulse {
  0%,100% { box-shadow: 0 0 30px rgba(245,166,35,0.5), 0 0 70px rgba(245,166,35,0.2); }
  50%      { box-shadow: 0 0 60px rgba(245,166,35,0.85), 0 0 120px rgba(245,166,35,0.3); }
}

/* Spotlights */
.ec-light {
  position: absolute;
  bottom: 72px;
  width: 0; height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 280px solid rgba(42,59,204,0.10);
  filter: blur(8px);
  transform-origin: bottom center;
}
.ec-light--1 { left: 60px; transform: rotate(-25deg); animation: lightSway1 4s ease-in-out infinite; }
.ec-light--2 { left: 50%; transform: translateX(-50%) rotate(0deg); animation: lightSway2 5s ease-in-out infinite; border-bottom-color: rgba(245,166,35,0.08); }
.ec-light--3 { right: 60px; transform: rotate(25deg); animation: lightSway3 4.5s ease-in-out infinite; }
@keyframes lightSway1 { 0%,100%{transform:rotate(-25deg);opacity:0.7;} 50%{transform:rotate(-10deg);opacity:1;} }
@keyframes lightSway2 { 0%,100%{transform:translateX(-50%) rotate(5deg);opacity:0.8;} 50%{transform:translateX(-50%) rotate(-5deg);opacity:0.5;} }
@keyframes lightSway3 { 0%,100%{transform:rotate(25deg);opacity:0.6;} 50%{transform:rotate(12deg);opacity:1;} }

/* Particles */
.ec-particle {
  position: absolute;
  border-radius: 50%;
  animation: particleRise var(--dur,4s) ease-in-out infinite var(--delay,0s);
  opacity: 0;
}
@keyframes particleRise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(-320px) scale(0.3); opacity: 0; }
}

/* Crowd */
.ec-crowd {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  align-items: flex-end;
}
.ec-person {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  animation: personBounce var(--dur,1.2s) ease-in-out infinite var(--delay,0s);
}
.ec-person__head { width: 10px; height: 10px; background: rgba(255,255,255,0.35); border-radius: 50%; }
.ec-person__body { width: 8px; height: var(--h,22px); background: rgba(255,255,255,0.25); border-radius: 2px; }
@keyframes personBounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(var(--lift,-4px));} }

/* Sound waves */
.ec-wave {
  position: absolute;
  border: 1.5px solid rgba(245,166,35,0.22);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  animation: waveExpand 3s ease-out infinite var(--delay,0s);
}
@keyframes waveExpand {
  0%  { transform: translate(-50%,-50%) scale(0.2); opacity: 0.8; }
  100%{ transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}

/* Floating glass cards */
.ec-card {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  font-size: 0.78rem;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.ec-card--1 { top: 60px; right: 20px; animation: cardFloat1 6s ease-in-out infinite; }
.ec-card--2 { top: 160px; left: 10px; animation: cardFloat2 7s ease-in-out infinite -2s; }
.ec-card--3 { bottom: 160px; right: 10px; animation: cardFloat3 5.5s ease-in-out infinite -1s; }
@keyframes cardFloat1 { 0%,100%{transform:translateY(0) rotate(-1deg);} 50%{transform:translateY(-12px) rotate(1deg);} }
@keyframes cardFloat2 { 0%,100%{transform:translateY(0) rotate(1.5deg);} 50%{transform:translateY(-16px) rotate(-0.5deg);} }
@keyframes cardFloat3 { 0%,100%{transform:translateY(0) rotate(-0.5deg);} 50%{transform:translateY(-10px) rotate(1.5deg);} }
.ec-card__dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); margin-right: 6px;
  animation: dotBlink 1.5s ease-in-out infinite;
}
@keyframes dotBlink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* ============================================================
   STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.stat-item:hover::after { transform: scaleX(1); }
.stat-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.8rem; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,59,204,0.04), rgba(91,45,166,0.04));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(42,59,204,0.2); }
.service-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-pale), rgba(91,45,166,0.07));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.6rem;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--grad-main);
}
.service-card__icon svg { width: 26px; height: 26px; color: var(--blue); transition: color var(--transition); }
.service-card:hover .service-card__icon svg { color: var(--white); }
.service-card__title { font-size: 1.15rem; margin-bottom: 0.8rem; position: relative; color: var(--text-dark); }
.service-card__desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; position: relative; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-list { display: flex; flex-direction: column; }
.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
  position: relative;
}
.process-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px; top: 52px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, var(--blue), var(--border-light));
}
.process-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: var(--transition);
}
.process-item:hover .process-num {
  background: var(--grad-main);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.1);
}
.process-content { padding-top: 0.8rem; }
.process-content h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.process-content p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

/* ============================================================
   TESTIMONIALS SLIDER
   ============================================================ */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.testimonial-slide { min-width: 100%; padding: 0 1rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-light);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem; font-weight: 800;
  color: var(--blue);
  opacity: 0.07;
  position: absolute;
  top: 0.5rem; left: 2rem;
  line-height: 1;
}
.testimonial-card__text {
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
  position: relative;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}
.testimonial-card__author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-main);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--white);
}
.testimonial-card__name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.testimonial-card__role { font-size: 0.8rem; color: var(--text-light); }
.slider-controls { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2.5rem; }
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--text-mid);
}
.slider-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.slider-dots { display: flex; gap: 0.5rem; align-items: center; }
.slider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: var(--transition); cursor: pointer; }
.slider-dot.active { width: 24px; border-radius: 3px; background: var(--blue); }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 1.4rem; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition); text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card__photo {
  height: 190px;
  background: var(--grad-hero);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.team-card__initials { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: rgba(255,255,255,0.25); }
.team-card__info { padding: 1.4rem; }
.team-card__name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.team-card__role { font-size: 0.78rem; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 0.55rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42,59,204,0.1);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item { border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: rgba(42,59,204,0.25); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 1.6rem;
  cursor: pointer; background: var(--white);
  font-weight: 600; font-size: 0.95rem;
  transition: color var(--transition); user-select: none;
}
.faq-item.open .faq-question { color: var(--blue); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition); color: var(--text-mid);
}
.faq-item.open .faq-icon { background: var(--blue); border-color: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: var(--white); }
.faq-answer-inner {
  padding: 0 1.6rem 1.4rem;
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.75;
  border-top: 1px solid var(--border-light); padding-top: 1.2rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 38vh;
  display: flex; align-items: center;
  background: var(--grad-hero);
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.page-hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(245,166,35,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.page-hero__pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero .section-label { color: rgba(245,166,35,0.85); }
.page-hero .section-label::before { background: var(--orange); }
.page-hero__desc { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-top: 1rem; max-width: 540px; line-height: 1.75; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ============================================================
   HIGHLIGHT BAND
   ============================================================ */
.highlight-band {
  background: var(--grad-main);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: var(--white);
  position: relative; overflow: hidden;
}
.highlight-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  animation: bandOrb 8s ease-in-out infinite;
}
.highlight-band::after {
  content: '';
  position: absolute;
  bottom: -30%; left: 30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  animation: bandOrb 11s ease-in-out infinite 3s;
}
@keyframes bandOrb { 0%,100%{transform:translate(0,0);} 50%{transform:translate(-20px,20px);} }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1.5px solid var(--border-light);
  transition: var(--transition); position: relative; overflow: hidden;
}
.pricing-card--featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(42,59,204,0.04) 0%, var(--white) 100%);
  box-shadow: 0 8px 40px rgba(42,59,204,0.14);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pricing-badge {
  display: inline-block;
  background: var(--grad-main); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.pricing-name { font-size: 1.3rem; margin-bottom: 0.4rem; color: var(--text-dark); }
.pricing-desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.8rem; }
.pricing-price {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1.8rem;
}
.pricing-price span { font-size: 0.9rem; font-family: var(--font-body); -webkit-text-fill-color: var(--text-light); color: var(--text-light); font-weight: 400; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; color: var(--text-mid);
  padding: 0.4rem 0; border-bottom: 1px solid var(--border-light);
}
.pricing-features li svg { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }

/* ============================================================
   PORTFOLIO GRID (portfolio.html)
   ============================================================ */
.filter-tab {
  padding: 0.45rem 1.1rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; border: 1.5px solid var(--border); cursor: pointer;
  transition: var(--transition); background: var(--white); color: var(--text-mid);
}
.filter-tab.active, .filter-tab:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.portfolio-card {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.portfolio-card__visual { height: 220px; position: relative; overflow: hidden; }
.portfolio-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,22,96,0.9) 0%, rgba(13,22,96,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0; transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-card__overlay { opacity: 1; }
.portfolio-card__info { padding: 1.4rem; }
.portfolio-card__cat { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.4rem; font-weight: 600; }
.portfolio-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text-dark); }
.portfolio-card__meta { font-size: 0.8rem; color: var(--text-light); }
.portfolio-card__view { color: var(--white); font-size: 0.85rem; display: flex; align-items: center; gap: 0.4rem; font-weight: 600; }

/* ============================================================
   VALUE CARDS (about)
   ============================================================ */
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.4rem; border: 1px solid var(--border-light);
  transition: var(--transition); position: relative; overflow: hidden;
}
.value-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; width: 4px; height: 0;
  background: var(--grad-main); border-radius: 0 0 4px 0;
  transition: height var(--transition);
}
.value-card:hover::after { height: 100%; }
.value-card:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.value-card h4 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--text-dark); }
.value-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }
.value-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--blue); opacity: 0.07; position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }

/* Timeline */
.timeline { display: flex; flex-direction: column; }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 2rem; padding-bottom: 3rem; position: relative; }
.timeline-item:not(:last-child)::after { content: ''; position: absolute; left: 59px; top: 20px; width: 2px; height: calc(100% - 10px); background: linear-gradient(to bottom, var(--border), transparent); }
.timeline-year { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--blue); padding-top: 2px; }
.timeline-content h4 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--text-dark); }
.timeline-content p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* Partner logos */
.partner-strip { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }
.partner-logo {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 0.9rem 1.8rem;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--text-light); transition: var(--transition); letter-spacing: -0.01em;
}
.partner-logo:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem; margin-bottom: 4rem; }
.footer__logo {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em; margin-bottom: 1rem; display: block;
}
.footer__logo span { color: var(--orange); }
.footer__desc { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.45); max-width: 300px; margin-bottom: 2rem; }
.footer__social { display: flex; gap: 0.8rem; }
.footer__social-link {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); transition: var(--transition); font-size: 0.85rem; font-weight: 700;
}
.footer__social-link:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer__col h5 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1.4rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__links a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer__links a:hover { color: var(--orange); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.9rem; font-size: 0.88rem; color: rgba(255,255,255,0.45); }
.footer__contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--orange); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.28); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--grad-main); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(42,59,204,0.35);
  opacity: 0; transform: translateY(20px);
  transition: var(--transition); z-index: 99; cursor: pointer;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(42,59,204,0.45); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(13,22,96,0.85);
  backdrop-filter: blur(8px); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 680px; width: 90%; padding: 3rem;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s ease; position: relative;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); color: var(--text-mid);
}
.modal__close:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.modal__cat { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem; font-weight: 700; }
.modal__title { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; margin-bottom: 1.2rem; color: var(--text-dark); }
.modal__visual { height: 200px; background: var(--grad-hero); border-radius: var(--radius); margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.modal__desc { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.4rem; }
.modal__stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.modal__stat { text-align: center; padding: 1rem; background: var(--off-white); border-radius: var(--radius); }
.modal__stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--blue); }
.modal__stat-label { font-size: 0.75rem; color: var(--text-light); }

/* ============================================================
   KEYFRAMES (shared)
   ============================================================ */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn  { from{opacity:0;} to{opacity:1;} }
@keyframes rotate  { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }
@keyframes barGrow { from{transform:scaleY(0);} to{transform:scaleY(1);} }
@keyframes pinBounce { 0%,100%{transform:rotate(-45deg) translateY(0);} 50%{transform:rotate(-45deg) translateY(-6px);} }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Hero: stack text → SVG vertically ── */
  .hero {
    min-height: 100svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 72px;
    padding-bottom: 0;
  }

  .hero__inner {
    padding-top: 2rem;
    padding-bottom: 0.5rem;
    flex-shrink: 0;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__tagline { justify-content: center; }
  .hero__title   { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__desc    {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    max-width: 500px;
    margin-bottom: 2rem;
  }
  .hero__actions { justify-content: center; }

  /* ── SVG: full-width block below text ── */
  .hero__visual {
    position: relative;
    top: auto; right: auto;
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    z-index: 1;
    flex-shrink: 0;
  }

  .concert-svg {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: -40px; /* pull up to remove top whitespace in SVG */
  }
}

@media(max-width:600px) {
  .section { padding: 4rem 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.6rem; text-align: center; }
  .hero__actions { flex-direction: column; align-items: center; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }

  .hero { padding-top: 72px; }
  .hero__title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hero__desc { font-size: 0.9rem; }

  .hero__visual { margin-top: -20px; }

  .concert-svg {
    width: 100%;
    max-width: 100%;
    margin-top: -20px;
  }
}
