/* ============================================
   FEMPIRE® INTERNATIONAL — Premium Dark Theme
   Atmospheric Glow · Glass Cards · Poppins
   Inspired by fempire-international.com
   ============================================ */

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

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0B0B0B;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-solid: #111111;
  --panel-hover: rgba(255, 255, 255, 0.07);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --white: #FFFFFF;
  --text: #FFFFFF;
  --text-light: #C0C0C0;
  --text-muted: #777777;
  --accent: #ED0A50;
  --accent-light: #FF1A65;
  --accent-dark: #C5083F;
  --accent-soft: rgba(237, 10, 80, 0.15);
  --accent-glow: rgba(237, 10, 80, 0.4);
  --accent-glow-strong: rgba(237, 10, 80, 0.6);
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.1);
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* --- Atmospheric Glow Backgrounds --- */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

body::after {
  content: '';
  position: fixed;
  bottom: -300px;
  left: -300px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

h1 { font-size: clamp(2.8rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }

p {
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.8;
  font-size: 0.95rem;
}

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.section-subtitle {
  font-size: 1rem;
  max-width: 620px;
  margin: 1.2rem auto 0;
  text-align: center;
  color: var(--text-light);
  line-height: 1.8;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}

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

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--accent-glow-strong);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(237, 10, 80, 0.15);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1rem;
}

/* --- Glass Card Mixin --- */
.glass-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.glass-card:hover {
  border-color: rgba(237, 10, 80, 0.3);
  box-shadow: 0 0 40px rgba(237, 10, 80, 0.08);
  transform: translateY(-4px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

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

.nav-logo img { height: 32px; width: auto; }

.nav-cta .btn {
  padding: 12px 28px;
  font-size: 0.82rem;
}

/* --- Section Spacing --- */
.section { padding: 120px 0; position: relative; }

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

/* --- Section Glow Accents --- */
.section-glow {
  position: relative;
}

.section-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(237, 10, 80, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.divider hr {
  border: none;
  border-top: 1px solid var(--border);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Hero atmospheric glow */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(237, 10, 80, 0.25) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 600px; }

.hero h1 {
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-image { position: relative; z-index: 1; }

.hero-image img {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
}

/* Hero Stats Bar */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--border);
}

.hero-stat-item {
  background: var(--panel-solid);
  padding: 28px 20px;
  text-align: center;
}

.hero-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== MISSION ========== */
.mission {
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mission h2 {
  max-width: 750px;
  margin: 0 auto 24px;
  font-weight: 700;
}

.mission p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ========== FEATURE CARDS (3) ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: linear-gradient(160deg, rgba(237, 10, 80, 0.08) 0%, rgba(255,255,255,0.03) 40%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237,10,80,0.3), transparent);
}

.feature-card:hover {
  border-color: rgba(237, 10, 80, 0.25);
  box-shadow: 0 8px 50px rgba(237, 10, 80, 0.1);
  transform: translateY(-6px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  border: 1px solid rgba(237, 10, 80, 0.2);
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 { margin-bottom: 12px; }

.feature-card p { font-size: 0.9rem; line-height: 1.75; }

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.feature-tag {
  font-size: 0.72rem;
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
}

/* ========== SERVICE CARDS (6) ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: linear-gradient(160deg, rgba(237, 10, 80, 0.06) 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237,10,80,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(237, 10, 80, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(237, 10, 80, 0.06);
}

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

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p { font-size: 0.88rem; line-height: 1.75; }

/* ========== BENTO GRID ========== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}

.bento-card:hover {
  border-color: rgba(237, 10, 80, 0.25);
  box-shadow: 0 0 30px rgba(237, 10, 80, 0.06);
}

.bento-card.span-2 { grid-column: span 2; }

.bento-card.accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: var(--accent);
  box-shadow: 0 8px 40px var(--accent-glow);
}

.bento-card.accent:hover {
  box-shadow: 0 12px 60px var(--accent-glow-strong);
  transform: translateY(-4px);
}

.bento-card.accent p { color: rgba(255,255,255,0.8); }
.bento-card.accent h3 { color: #fff; }

.bento-big-number {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.bento-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.bento-card p { font-size: 0.88rem; line-height: 1.7; }

/* ========== STANDARDS ========== */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.standard-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
}

.standard-card:hover {
  border-color: rgba(237, 10, 80, 0.2);
  transform: translateY(-3px);
}

.standard-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.5;
  text-shadow: 0 0 20px var(--accent-glow);
}

.standard-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.standard-card p { font-size: 0.88rem; line-height: 1.7; }

/* ========== RESULTS ========== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.result-card {
  background: linear-gradient(160deg, rgba(237, 10, 80, 0.08) 0%, rgba(255,255,255,0.03) 40%, transparent 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 48px 40px;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237,10,80,0.4), transparent);
}

.result-card:hover {
  border-color: rgba(237, 10, 80, 0.3);
  box-shadow: 0 8px 50px rgba(237, 10, 80, 0.1);
  transform: translateY(-4px);
}

.result-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.result-card h3 { font-size: 1.3rem; margin-bottom: 16px; line-height: 1.35; }
.result-card p { font-size: 0.9rem; }

/* ========== COUNTERS ========== */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
  background: var(--border);
}

.counter-item {
  background: var(--panel-solid);
  padding: 44px 24px;
  text-align: center;
}

.counter-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.counter-value .suffix {
  font-size: 2rem;
  color: var(--accent);
}

.counter-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

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

.testimonial-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.testimonial-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 2px solid var(--accent-soft);
}

.testimonial-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Audio Player */
.audio-player {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  padding: 10px 16px;
  border: 1px solid var(--border);
}

.audio-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  box-shadow: 0 2px 12px var(--accent-glow);
}

.audio-play-btn:hover {
  background: var(--accent-light);
  transform: scale(1.08);
  box-shadow: 0 4px 20px var(--accent-glow-strong);
}

.audio-play-btn svg { width: 14px; height: 14px; fill: #fff; }

.audio-progress-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  cursor: pointer;
}

.audio-progress {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 6px var(--accent-glow);
}

.audio-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: right;
}

/* ========== FAQ ========== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 0;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  margin-left: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
  width: 14px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner { padding-bottom: 28px; }
.faq-answer p { font-size: 0.95rem; line-height: 1.8; }

/* ========== CTA ========== */
.cta-section {
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(237, 10, 80, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 { margin-bottom: 16px; position: relative; }
.cta-section p { margin-bottom: 40px; font-size: 1.1rem; position: relative; }

/* ========== FOOTER ========== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img { height: 24px; }

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

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

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

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

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ========== APPLY PAGE ========== */
.apply-page { min-height: 100vh; background: var(--bg); }

.apply-hero-banner {
  height: 35vh;
  min-height: 240px;
  background: url('assets/img/hero.png') center/cover no-repeat;
  position: relative;
}

.apply-hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,11,0), var(--bg));
}

.apply-logo { position: absolute; top: 32px; left: 40px; z-index: 10; }
.apply-logo img { height: 28px; }

.apply-container {
  max-width: 600px;
  margin: -60px auto 0;
  padding: 0 24px 80px;
  position: relative;
  z-index: 10;
}

.apply-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.apply-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.apply-progress-step {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  transition: background 0.4s ease;
}

.apply-progress-step.active {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.apply-step-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
}

.apply-step { display: none; }

.apply-step.active {
  display: block;
  animation: stepFadeIn 0.4s ease;
}

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

.apply-step h2 { font-size: 1.8rem; margin-bottom: 16px; }
.apply-step > p { margin-bottom: 12px; font-size: 0.95rem; }
.apply-step .step-intro { margin-bottom: 32px; }

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group label .required { color: var(--accent); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-radio-group,
.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-radio-label,
.form-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid var(--border);
  color: var(--text-light);
}

.form-radio-label:hover,
.form-checkbox-label:hover { border-color: var(--border-strong); }

.form-radio-label input,
.form-checkbox-label input { display: none; }

.form-radio-label.selected,
.form-checkbox-label.selected {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 500;
}

.conditional-field { display: none; animation: stepFadeIn 0.3s ease; }
.conditional-field.show { display: block; }

.apply-nav { display: flex; gap: 12px; margin-top: 36px; }
.apply-nav .btn { flex: 1; justify-content: center; }

.btn-back {
  background: rgba(255,255,255,0.05);
  color: var(--text-light);
  border: 1px solid var(--border);
}

.btn-back:hover { border-color: var(--border-strong); }

.apply-success { display: none; text-align: center; padding: 40px 0; }

.apply-success.active {
  display: block;
  animation: stepFadeIn 0.5s ease;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}

.apply-success h2 { margin-bottom: 12px; }
.apply-success p { font-size: 1rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { text-align: center; width: 100%; }
  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }

  .features-grid,
  .services-grid,
  .standards-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.span-2 { grid-column: span 1; }
  .results-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-inner { padding: 0 20px; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .footer-inner { flex-direction: column; text-align: center; }
  .apply-card { padding: 32px 24px; }
  .apply-hero-banner { height: 25vh; min-height: 180px; }
  .section-header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 16px 32px; font-size: 0.95rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats-bar { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr; }
  .apply-logo { left: 20px; }
}
