/* ============================================================
   SolarZ — Premium FiveM Landing Page
   Theme: Summer / Miami / Sunset
   ============================================================ */

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

:root {
  --pink:    #FF5AA5;
  --orange:  #FF7A18;
  --yellow:  #FFD54F;
  --dark:    #1A1024;
  --dark2:   #120b1a;
  --dark3:   #0d0714;

  --pink-glow:   rgba(255, 90, 165, 0.35);
  --orange-glow: rgba(255, 122, 24, 0.35);
  --yellow-glow: rgba(255, 213, 79, 0.25);

  --glass-bg:     rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.10);

  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,0.72);
  --text-muted:     rgba(255,255,255,0.45);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Syne', 'Inter', sans-serif;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

/* ─── PARTICLES CANVAS ──────────────────────────────────────── */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ─── LOADING SCREEN ────────────────────────────────────────── */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--dark3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  width: 96px;
  height: 96px;
  animation: loadingPulse 1.4s ease-in-out infinite;
}

.loading-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

@keyframes loadingPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 12px var(--pink-glow)); }
  50%       { transform: scale(1.06); filter: drop-shadow(0 0 28px var(--orange-glow)); }
}

.loading-bar-wrap {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow));
  border-radius: 99px;
  animation: loadingFill 1.8s ease forwards;
}

@keyframes loadingFill {
  to { width: 100%; }
}

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

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn-lg {
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
}

.btn-sm {
  font-size: 0.82rem;
  padding: 8px 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--pink-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--pink-glow), 0 0 0 1px rgba(255,90,165,0.3);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--pink-glow);
}

.btn-discord {
  background: linear-gradient(135deg, #5865F2, #7289da);
  color: #fff;
  box-shadow: 0 4px 16px rgba(88,101,242,0.35);
}

.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(88,101,242,0.5);
}

.btn-fivem {
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  color: var(--dark);
  box-shadow: 0 4px 16px var(--orange-glow);
}

.btn-fivem:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--orange-glow);
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition), padding var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(26, 16, 36, 0.85);
  backdrop-filter: blur(20px);
  border-color: var(--glass-border);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

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

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

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

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(26,16,36,0.55) 0%,
      rgba(26,16,36,0.25) 40%,
      rgba(26,16,36,0.72) 80%,
      rgba(26,16,36,1) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--yellow) 40%, var(--orange) 70%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(255,122,24,0.5));
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(255,213,79,0.6);
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: 2px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ─── SECTION SHARED ────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-desc {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for children */
.cards-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.cards-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.cards-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.stats-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.stats-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.team-grid .reveal:nth-child(2) { transition-delay: 0.15s; }

.contact-grid .reveal:nth-child(2) { transition-delay: 0.1s; }

/* ─── WHY SOLARZ — FEATURE CARDS ────────────────────────────── */
.section-why {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  overflow: hidden;
  cursor: default;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,90,165,0.3);
  box-shadow: 0 20px 60px rgba(255,90,165,0.12);
}

.feature-card:hover .card-glow {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255,90,165,0.18), rgba(255,122,24,0.18));
  border: 1px solid rgba(255,90,165,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  transition: all var(--transition);
}

.feature-card:hover .card-icon {
  background: linear-gradient(135deg, rgba(255,90,165,0.3), rgba(255,122,24,0.3));
  color: var(--yellow);
  transform: scale(1.06);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

.card-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,165,0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

/* ─── STATS ─────────────────────────────────────────────────── */
.section-stats {
  background: var(--dark2);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,122,24,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: rgba(255,213,79,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,213,79,0.1);
}

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--yellow);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

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

/* ─── GLASS CARD LARGE ──────────────────────────────────────── */
.section-boutique,
.section-rules {
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}

.glass-card-large {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.glass-card-large::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,90,165,0.5), transparent);
}

.glass-card-large:hover {
  border-color: rgba(255,90,165,0.2);
  box-shadow: 0 0 60px rgba(255,90,165,0.06);
}

.glass-card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--orange);
  opacity: 0.85;
}

.glass-card-large h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.glass-card-large p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(255,213,79,0.12), rgba(255,122,24,0.12));
  border: 1px solid rgba(255,213,79,0.25);
  color: var(--yellow);
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── TEAM ──────────────────────────────────────────────────── */
.section-team {
  background: var(--dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}

.team-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,90,165,0.3);
  box-shadow: 0 20px 60px rgba(255,90,165,0.12);
}

.team-card:hover .team-card-glow { opacity: 1; }

.team-avatar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.avatar-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 28px rgba(255,90,165,0.3);
}

.avatar-1 {
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.avatar-2 {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.team-badge-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff;
  white-space: nowrap;
}

.team-badge-role.co-founder {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--dark);
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 12px;
}

.team-role.co {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
}

.team-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.team-card-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,165,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

/* ─── APPLY SECTION ─────────────────────────────────────────── */
.section-apply {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.apply-card {
  position: relative;
  background: linear-gradient(135deg,
    rgba(255,90,165,0.08) 0%,
    rgba(255,122,24,0.06) 50%,
    rgba(255,213,79,0.04) 100%
  );
  border: 1px solid rgba(255,90,165,0.2);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 48px;
}

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

.apply-content h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

.apply-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.apply-deco {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
  z-index: 0;
}

.apply-deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.c1 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--pink), transparent 70%);
  top: -40px;
  right: 40px;
}

.c2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--orange), transparent 70%);
  bottom: -20px;
  right: 120px;
}

.c3 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--yellow), transparent 70%);
  top: 50%;
  right: 240px;
  transform: translateY(-50%);
}

/* ─── CONTACT ───────────────────────────────────────────────── */
.section-contact {
  background: var(--dark2);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,90,165,0.25);
  box-shadow: 0 16px 48px rgba(255,90,165,0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255,90,165,0.15), rgba(255,122,24,0.15));
  border: 1px solid rgba(255,90,165,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-bottom: 4px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-value {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--dark3);
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--orange), var(--yellow), transparent);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
}

.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.footer-tagline {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--pink);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

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

/* ─── ANIMATED GRADIENT BACKGROUND ─────────────────────────── */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .nav-links {
    gap: 2px;
  }

  .nav-link {
    padding: 6px 10px;
    font-size: 0.85rem;
  }

  .apply-card {
    padding: 56px 40px;
  }
}

/* Medium — 768px */
@media (max-width: 768px) {
  .navbar {
    padding: 14px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 11, 26, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: 1.3rem;
    padding: 12px 24px;
  }

  .nav-actions {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    flex-direction: column;
    align-items: center;
  }

  .nav-actions.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .hero-title {
    font-size: clamp(3.5rem, 18vw, 7rem);
  }

  .section {
    padding: 72px 0;
  }

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

  .glass-card-large {
    padding: 40px 28px;
  }

  .glass-card-large h3 {
    font-size: 1.3rem;
  }

  .apply-card {
    padding: 48px 32px;
    flex-direction: column;
    text-align: center;
  }

  .apply-content p {
    max-width: 100%;
  }

  .apply-deco {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-links {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .glass-card-large {
    padding: 32px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .apply-card {
    padding: 36px 24px;
  }

  .apply-content h2 {
    font-size: 1.8rem;
  }

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

  .footer-links {
    gap: 32px;
  }
}
