:root {
  --deep-purple: #2E1046;
  --blush: #FCF1F7;
  --hot-pink: #E247C3;
  --gold: #FFBD2D;
  --gold-light: #ffc94d;
  --mid-purple: #4a3560;
  --white: #FFFFFF;
  --gray-text: #6B7280;
  --gray-border: #E5E7EB;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", -apple-system, sans-serif;
  --white-06: rgba(255,255,255,0.06);
  --white-08: rgba(255,255,255,0.08);
  --white-85: rgba(255,255,255,0.85);
  --deep-purple-06: rgba(46,16,70,0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--deep-purple); background: var(--white); line-height: 1.6; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 100;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  height: 64px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  border: 1px solid rgba(255,255,255,0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo .logo-dark { height: 32px; display: block; }
.nav-logo .logo-light { height: 32px; display: none; }
.nav-wordmark-dark, .nav-wordmark-light { height: 20px; width: auto; }
.nav-wordmark-dark { display: block; }
.nav-wordmark-light { display: none; }
.nav-right { display: flex; gap: 6px; align-items: center; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  color: var(--deep-purple); text-decoration: none;
  font-size: 14px; font-weight: 500; padding: 8px 14px;
  border-radius: 8px; transition: all 0.25s;
  letter-spacing: 0.01em;
}
.nav-link:hover { background: var(--deep-purple-06); }
.nav-link svg { width: 18px; height: 18px; stroke-width: 1.5; }
.nav-menu-wrap { position: relative; margin-left: 2px; }
.nav-hamburger {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--deep-purple); border-radius: 8px;
  transition: all 0.25s; background: none; border: none; padding: 0;
}
.nav-hamburger:hover { background: var(--deep-purple-06); }
.nav-hamburger svg { width: 20px; height: 20px; }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6); border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  min-width: 160px; z-index: 200; padding: 6px;
}
.nav-dropdown.open { display: block; }
.nav-dropdown-item {
  display: flex; align-items: center;
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  color: var(--deep-purple); text-decoration: none;
  transition: all 0.25s; white-space: nowrap;
}
.nav-dropdown-item:hover { background: var(--deep-purple-06); }

/* Scrolled / inverted state */
.nav.scrolled {
  top: 0; padding: 0;
}
.nav.scrolled .nav-inner {
  background: rgba(46, 16, 70, 0.97);
  backdrop-filter: blur(16px);
  border-radius: 0;
  max-width: 100%;
  padding: 0 max(32px, calc((100% - 1200px) / 2 + 32px));
  height: 64px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  border: none;
  border-bottom: 1px solid var(--white-06);
}
.nav.scrolled .nav-logo .logo-dark { display: none; }
.nav.scrolled .nav-logo .logo-light { display: block; }
.nav.scrolled .nav-wordmark-dark { display: none; }
.nav.scrolled .nav-wordmark-light { display: block; }
.nav.scrolled .nav-link {
  color: var(--white-85);
}
.nav.scrolled .nav-link:hover {
  color: var(--white); background: var(--white-08);
}
.nav.scrolled .nav-hamburger {
  color: var(--white-85);
}
.nav.scrolled .nav-hamburger:hover {
  background: var(--white-08); color: var(--white);
}
.nav.scrolled .nav-dropdown {
  background: rgba(46, 16, 70, 0.97);
  border-color: var(--white-06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.nav.scrolled .nav-dropdown-item { color: var(--white-85); }
.nav.scrolled .nav-dropdown-item:hover { background: var(--white-08); color: var(--white); }

/* ─── HERO ─── */
.hero {
  position: relative; height: 100vh; display: flex; align-items: stretch;
  background: #1a0a28; overflow: hidden; padding: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("assets/bg_home.webp") center/cover no-repeat;
  opacity: 0.5;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: 
    linear-gradient(170deg, rgba(26,10,40,0.75) 0%, rgba(26,10,40,0.3) 40%, rgba(46,16,70,0.1) 65%, rgba(226,71,195,0.06) 100%),
    linear-gradient(to top, rgba(26,10,40,0.65) 0%, transparent 35%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 120px 40px 0;
  display: flex; flex-direction: column;
}
.hero-content {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  max-width: 680px; padding-bottom: 80px;
}
.hero h1 {
  font-family: var(--font-display); font-size: 96px; font-weight: 600;
  line-height: 1.04; color: var(--white); margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: italic; color: var(--gold);
}
.hero-desc {
  font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.65);
  margin-bottom: 44px; max-width: 520px;
}
.hero-ctas { display: flex; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: 15px; font-weight: 600;
  border-radius: 8px; text-decoration: none; cursor: pointer;
  border: none; transition: all 0.25s; letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--gold); color: var(--deep-purple);
  box-shadow: 0 4px 16px rgba(255,189,45,0.3);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,189,45,0.4); }
.btn-secondary {
  background: var(--white-08); color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.btn svg { width: 18px; height: 18px; }

/* Hero bottom tagline */
.hero-bottom {
  text-align: center; padding-bottom: 24px;
}
.hero-tagline {
  font-size: 15px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.tagline-sep {
  width: 18px; height: 18px; display: inline-block; vertical-align: middle;
  margin: 0 8px; margin-bottom: 2px; color: rgba(255,255,255,0.2);
}
.tagline-icon {
  width: 18px; height: 18px; display: inline-block; vertical-align: middle;
  margin: 0 5px; margin-bottom: 2px; color: rgba(255,255,255,0.25);
}
.tagline-link {
  color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s;
  animation: tagline-pulse 3s ease-in-out infinite;
}
.tagline-link:hover { color: var(--white); animation: none; }
.tagline-link .tagline-sep { color: rgba(255,255,255,0.5); }
@keyframes tagline-pulse {
  0%, 100% { color: rgba(255,255,255,0.75); }
  50% { color: rgba(255,255,255,1); }
}

/* ─── SECTIONS ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
section { padding: 100px 0; }
section[id] { scroll-margin-top: 80px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--hot-pink); margin-bottom: 16px;
}
.section-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--hot-pink); flex-shrink: 0;
}
.text-center .section-tag { justify-content: center; }
.section-title {
  font-family: var(--font-display); font-size: 42px; font-weight: 700;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px; color: var(--gray-text); max-width: 560px; line-height: 1.6;
}

/* ─── EXPERTISE ─── */
.expertise { background: var(--white); border-bottom: 1px solid var(--gray-border); }
.expertise-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 48px;
}
.expertise-tag {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 24px; border: 1px solid var(--gray-border);
  border-radius: 8px; font-size: 15px; font-weight: 500;
  transition: all 0.2s; cursor: default;
  background: var(--white);
}
.expertise-tag:hover {
  border-color: var(--hot-pink); background: var(--blush);
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(226,71,195,0.08);
}
.expertise-tag svg { width: 20px; height: 20px; color: var(--hot-pink); flex-shrink: 0; }

/* ─── INDUSTRIES ─── */
.industries { background: var(--deep-purple); }
.industries .section-tag { color: var(--gold); }
.industries .section-tag::before { background: var(--gold); }
.industries .section-title { color: var(--white); }
.industries .expertise-tag {
  background: var(--white-06); border-color: rgba(255,255,255,0.12);
  color: var(--white-85);
}
.industries .expertise-tag:hover {
  border-color: var(--gold); background: rgba(255,189,45,0.1);
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,189,45,0.1);
}
.industries .expertise-tag svg { color: var(--gold); }

/* ─── WHY LL ─── */
.why-ll { background: var(--blush); }
.why-text .section-title { margin-bottom: 24px; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.why-text h3 {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  margin-bottom: 16px;
}
.why-text p { font-size: 16px; color: var(--gray-text); line-height: 1.7; margin-bottom: 16px; }
.why-text p:last-of-type { margin-bottom: 0; }
.stat-card {
  background: var(--white); border-radius: 12px; padding: 32px;
  margin-bottom: 16px; border: 1px solid rgba(226,71,195,0.1);
  box-shadow: 0 2px 12px rgba(46,16,70,0.04);
}
.stat-number {
  font-family: var(--font-display); font-size: 52px; font-weight: 700;
  color: var(--deep-purple); line-height: 1;
}
.stat-label {
  font-size: 14px; color: var(--gray-text); margin-top: 8px; line-height: 1.5;
}

/* ─── CLIENT PORTAL ─── */
.client-portal { background: var(--white); padding: 80px 0; }
.portal-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.portal-img img {
  width: 100%; border-radius: 16px;
  box-shadow: 0 8px 40px rgba(46,16,70,0.08);
}
.portal-text p {
  font-size: 18px; color: var(--gray-text); line-height: 1.7;
}

/* ─── PILLARS ─── */
.pillars { background: var(--blush); padding: 80px 0; }
.pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 0;
}
.pillar {
  text-align: center; padding: 40px 24px;
  border-radius: 12px; transition: all 0.3s;
}
.pillar:hover { background: rgba(255,255,255,0.7); }
.pillar-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--hot-pink);
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  line-height: 1.3;
}

/* ─── PROCESS ─── */
.process { background: var(--deep-purple); color: var(--white); }
.process .section-tag { color: var(--gold); }
.process .section-tag::before { background: var(--gold); }
.process .section-title { color: var(--white); }
.process .section-subtitle { color: rgba(255,255,255,0.55); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 56px; position: relative;
}
.process-step { text-align: center; position: relative; }
.process-step::after {
  content: "→"; position: absolute; right: -20px; top: 42px;
  font-size: 56px; color: rgba(255,255,255,0.15); line-height: 1;
}
.process-step:last-child::after { display: none; }
.step-img {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--white-08); border: 3px solid var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(255,255,255,0.3); font-family: monospace;
  overflow: hidden;
}
.step-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.step-title {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ─── PRICING ─── */
.pricing { background: var(--white); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 56px; text-align: left;
}
.pricing-card {
  border: 1px solid var(--gray-border); border-radius: 16px;
  padding: 40px; background: var(--white); position: relative;
  transition: all 0.3s;
}
.pricing-card:hover {
  border-color: var(--hot-pink);
  box-shadow: 0 8px 40px rgba(226,71,195,0.08);
}
.pricing-card.featured {
  border-color: var(--hot-pink); border-width: 2px;
  box-shadow: 0 8px 40px rgba(226,71,195,0.1);
}
.pricing-card.featured::before {
  content: "Most Popular"; position: absolute; top: -12px; left: 32px;
  background: var(--hot-pink); color: var(--white); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
}
.pricing-eor {
  font-size: 13px; color: var(--gray-text); margin-bottom: 4px;
}
.pricing-card h3 {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--font-display); font-size: 48px; font-weight: 700;
  color: var(--deep-purple); line-height: 1;
}
.pricing-amount span { font-size: 18px; font-weight: 400; color: var(--gray-text); }
.pricing-period { font-size: 13px; color: var(--gray-text); margin-top: 4px; margin-bottom: 24px; }
.guarantee-box {
  background: var(--blush); border-radius: 8px; padding: 16px; margin-bottom: 12px;
}
.guarantee-box strong {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--deep-purple); margin-bottom: 2px;
}
.guarantee-box p { font-size: 13px; color: var(--gray-text); }
.why-choose-list { margin-top: 24px; }
.why-choose-list h4 {
  font-size: 14px; font-weight: 700; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-text);
}
.why-choose-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 14px; color: var(--mid-purple);
  border-bottom: 1px solid var(--gray-border);
  list-style: none;
}
.why-choose-list li:last-child { border-bottom: none; }
.why-choose-list li svg { width: 16px; height: 16px; color: var(--hot-pink); flex-shrink: 0; margin-top: 2px; }
.pricing-cta { margin-top: 28px; }
.pricing-cta .btn { width: 100%; justify-content: center; }

/* ─── REVIEWS ─── */
.client-reviews { background: var(--blush); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px; text-align: left;
}
.review-card {
  background: var(--white); border-radius: 12px; padding: 32px;
  border: 1px solid rgba(226,71,195,0.08);
  box-shadow: 0 2px 12px rgba(46,16,70,0.03);
  display: flex; flex-direction: column;
}
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.review-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 15px; }
.review-name a {
  color: var(--deep-purple); text-decoration: none; transition: color 0.2s;
}
.review-name a:hover { color: var(--hot-pink); }
.review-company { font-size: 13px; color: var(--gray-text); }
.review-text {
  font-size: 14px; line-height: 1.7; color: var(--mid-purple); flex: 1;
  font-style: italic;
}
.review-source {
  display: flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 12px; color: var(--gray-text);
}
.review-source svg { width: 14px; height: 14px; }
.review-source a {
  display: flex; align-items: center; gap: 6px;
  color: inherit; text-decoration: none;
}
.review-source a:hover { color: var(--hot-pink); }

/* ─── FOR CANDIDATES DIVIDER ─── */
.candidates-divider {
  background: linear-gradient(to bottom, var(--hot-pink) 0%, var(--deep-purple) 100%);
  color: var(--white); padding: 48px 0; text-align: center;
  position: relative; overflow: hidden;
}
.candidates-divider::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 60px
  );
}
.candidates-divider .section-tag {
  color: var(--gold); position: relative; z-index: 1;
}
.candidates-divider .section-tag::before { background: var(--gold); }
.candidates-divider .section-title {
  color: var(--white); position: relative; z-index: 1;
  margin-bottom: 8px;
}
.candidates-divider .divider-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.7); position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto;
}

/* ─── FOR CANDIDATES (legacy) ─── */
.candidates-intro {
  background: var(--deep-purple); color: var(--white);
  position: relative; overflow: hidden;
}
.candidates-intro::before {
  content: ""; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(226,71,195,0.08) 0%, transparent 70%);
}
.candidates-intro .section-tag { color: var(--gold); }
.candidates-intro .section-tag::before { background: var(--gold); }
.candidates-intro .section-title { color: var(--white); }
.candidates-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
  position: relative; z-index: 1;
}
.candidates-intro .section-tag { margin-bottom: 16px; }
.candidates-intro .section-title { margin-bottom: 24px; }
.candidate-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
.resource-links {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 12px 32px; margin-top: 56px;
  position: relative; z-index: 1;
}
.resource-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); text-decoration: none; font-size: 15px; font-weight: 500;
  transition: all 0.2s; padding: 6px 0;
}
.resource-link:hover { color: var(--gold-light); transform: translateX(4px); }
.resource-link svg { width: 18px; height: 18px; }

/* ─── CANDIDATE REVIEWS ─── */
.candidate-reviews { background: var(--white); }
.candidate-reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 56px; text-align: left;
}
.candidate-review {
  background: #fafafa; border-radius: 12px; padding: 28px;
  border: 1px solid var(--gray-border);
}
.candidate-review .review-header { margin-bottom: 16px; }
.candidate-review .review-text { font-size: 14px; }

/* ─── TEAM ─── */
.team { background: var(--blush); }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  margin-top: 56px; text-align: center;
}
.team-photo {
  width: 160px; height: 160px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--gray-border); border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(46,16,70,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--gray-text); font-family: monospace;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-name {
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
}
.team-role { font-size: 14px; color: var(--gray-text); margin-top: 2px; }

/* ─── FOOTER ─── */
.footer { background: var(--deep-purple); color: rgba(255,255,255,0.6); padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { height: 32px; opacity: 0.8; }
.footer-brand img.footer-wordmark { height: 20px; width: auto; opacity: 0.9; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  color: rgba(255,255,255,0.5); transition: color 0.2s; text-decoration: none;
}
.footer-social:hover { color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; display: block; }
.footer h4 {
  font-family: var(--font-display); color: var(--white); font-size: 16px; font-weight: 700;
  margin-bottom: 16px;
}
.footer a {
  display: block; color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 14px; padding: 4px 0; transition: color 0.2s;
}
.footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--white-08);
  padding-top: 24px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.25);
}

/* ─── STAT BANNER ─── */
.stat-banner { padding: 0; overflow: hidden; }
.stat-banner img { width: 100%; height: auto; display: block; border-radius: inherit; }

/* ─── SECTION CTA ─── */
.section-cta { margin-top: 48px; text-align: center; }
.section-cta--portal { margin-top: 40px; }
.cta-group { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ─── WHY CTA ─── */
.why-cta { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── CALENDAR IFRAME ─── */
.cal-iframe { border: 0; display: block; width: 100%; height: 100%; min-height: 600px; }

/* ─── BTN OUTLINE (light bg variant) ─── */
.btn-outline {
  background: transparent; color: var(--deep-purple);
  border: 2px solid var(--deep-purple);
}
.btn-outline:hover {
  background: var(--deep-purple); color: var(--white);
  transform: translateY(-1px); box-shadow: 0 6px 24px rgba(46,16,70,0.15);
}

/* ─── BTN OUTLINE LIGHT (dark bg variant) ─── */
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65);
  color: var(--white); transform: translateY(-1px);
}

/* ─── CANDIDATE PHOTO ─── */
.candidate-photo {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px;
  display: block;
}

/* ─── TEAM NAME LINKS ─── */
.team-name a {
  color: var(--deep-purple); text-decoration: none; transition: color 0.2s;
}
.team-name a:hover { color: var(--hot-pink); }

/* ─── MODAL ─── */
.modal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: stretch; justify-content: stretch;
  padding: 40px 80px;
}
.modal[hidden] { display: none; }
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.modal-panel {
  position: relative; z-index: 1;
  background: var(--white); border-radius: 16px;
  width: 100%; flex: 1; overflow-y: auto;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.modal-panel iframe { flex: 1; min-height: 600px; }
.modal-close {
  position: absolute; top: 12px; right: 16px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.08); border: none; cursor: pointer;
  font-size: 22px; line-height: 1; color: var(--deep-purple);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.15); }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.8s ease-out; }
.hero-bottom { animation: fadeUp 0.8s ease-out 0.6s both; }

/* ─── SCROLL REVEAL ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
  .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 70ms; }
  .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 140ms; }
  .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 210ms; }
  .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 280ms; }
  .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 350ms; }
  .reveal-stagger.is-visible > *:nth-child(n+7) { transition-delay: 420ms; }
}


/* ─── TABLET ─── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 56px; }
  .hero-desc { font-size: 20px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .candidate-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  /* Nav */
  .nav { padding: 0 16px; }
  .nav-inner { padding: 0 16px; height: 56px; }
  .nav-link { display: none; }
  .nav-wordmark-dark, .nav-wordmark-light { height: 16px; }
  section[id] { scroll-margin-top: 72px; }

  /* Hero */
  .hero { height: auto; min-height: 100vh; }
  .hero-inner { padding: 80px 20px 0; }
  .hero-content { padding-bottom: 16px; flex: 1; justify-content: flex-end; }
  .hero h1 { margin-bottom: 16px; }
  .hero-desc { font-size: 20px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; margin-bottom: 24px; }
  .hero-ctas .btn { justify-content: center; }
  .hero-tagline { font-size: 12px; letter-spacing: 0.12em; }
  .tagline-sep, .tagline-icon { width: 14px; height: 14px; }

  /* Sections */
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 15px; }

  /* Why LL */
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-number { font-size: 36px; }
  .stat-card { padding: 24px; }
  .why-cta { flex-direction: column; }
  .why-cta .btn { justify-content: center; }

  /* Pillars */
  .pillars { padding: 64px 0; }
  .pillars-grid { grid-template-columns: 1fr; gap: 8px; }
  .pillar {
    display: flex; align-items: center; gap: 16px;
    text-align: left; padding: 16px 20px;
  }
  .pillar-icon { margin: 0; flex-shrink: 0; }

  /* Process */
  .cta-group { flex-direction: column; align-items: center; }
  .cta-group .btn { width: 100%; max-width: 280px; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
  .process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    text-align: left;
  }
  .step-img { grid-row: 1; grid-column: 1 / -1; justify-self: center; }
  .step-title { grid-row: 2; grid-column: 1 / -1; align-self: center; }
  .step-desc { grid-row: 3; grid-column: 1 / -1; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 24px; }
  .pricing-card { padding: 28px; }
  .pricing-amount { font-size: 36px; }
  .pricing-card h3 { font-size: 22px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 24px; }

  /* Client Portal */
  .portal-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Candidates */
  .candidates-intro-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Candidate Reviews */
  .candidate-reviews-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .team-photo { width: 120px; height: 120px; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }

  /* Modal */
  .modal { padding: 20px; }
  .modal-panel iframe { height: 480px; }
}

/* ─── SMALL MOBILE ─── */
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-photo { width: 140px; height: 140px; }
}