/* =============================================
   SAYAL – Global Styles
   Brand: Dusty Violet (#8A5BBF) & Warm Charcoal
   ============================================= */

:root {
  /* Brand purple — keep as-is */
  --purple:       #8A5BBF;
  --purple-dark:  #6A3EA0;
  --purple-light: #AE8EDB;
  --purple-pale:  #F0EAF8;
  --purple-mid:   #DCCEF0;

  /* Warm accent — gold/brass for featured elements */
  --gold:         #C49A3C;
  --gold-dark:    #8A6914;
  --gold-pale:    #FBF4E0;
  --gold-mid:     #EDD98A;

  /* Consolidated neutrals */
  --white:        #FDFCFA;
  --surface:      #F4F1F9;
  --charcoal:     #2C2833;

  /* Text */
  --text-primary:   #2C2833;
  --text-secondary: #5A5467;
  --text-muted:     #9890A6;

  /* Borders */
  --border:       #E4DCF0;
  --border-light: #EDE8F5;

  /* Semantic aliases for backward compat */
  --gray-200: #E4DCF0;
  --gray-400: #9890A6;
  --gray-600: #5A5467;
  --gray-900: #2C2833;
  --gray-100: #F4F1F9;
  --off-white: #F4F1F9;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(138,91,191,0.08);
  --shadow-md: 0 8px 32px rgba(138,91,191,0.12);
  --shadow-lg: 0 20px 60px rgba(138,91,191,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo { display: flex; align-items: center; line-height: 0; }
.logo img { display: block; background: transparent; mix-blend-mode: multiply; }
.logo-img { height: 72px; width: auto; object-fit: contain; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

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

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-900);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-900);
  border-bottom: 1px solid var(--surface);
}

.mobile-menu .mobile-nav-cta a {
  display: block;
  background: var(--purple);
  color: var(--white) !important;
  text-align: center;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  margin-top: 12px;
  border-bottom: none;
}

.mobile-menu .mobile-nav-cta a:hover {
  background: var(--purple-dark);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--purple);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138,91,191,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--purple);
  color: var(--purple);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.btn-ghost:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--purple);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.btn-white:hover {
  background: var(--purple-pale);
  transform: translateY(-2px);
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section {
  padding: 96px 0;
}

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

.section-tag {
  display: inline-block;
  background: var(--purple-pale);
  color: var(--purple);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.shape-1 {
  width: 600px; height: 600px;
  background: var(--purple);
  top: -200px; right: -100px;
}

.shape-2 {
  width: 400px; height: 400px;
  background: var(--purple-light);
  bottom: 0; left: -100px;
}

.shape-3 {
  width: 300px; height: 300px;
  background: var(--purple-dark);
  top: 50%; right: 30%;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-pale);
  border: 1px solid var(--purple-mid);
  color: var(--purple-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title .line {
  display: block;
  animation: fadeSlideUp 0.6s ease both;
}

.hero-title .line:nth-child(2) { animation-delay: 0.1s; }
.hero-title .line:nth-child(3) { animation-delay: 0.2s; }

.hero-title .accent { color: var(--purple); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeSlideUp 0.6s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.6s 0.4s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeSlideUp 0.6s 0.5s ease both;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-num.stat-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--purple);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual Cards */
.hero-visual {
  flex: 0 0 auto;
  position: relative;
  width: 340px;
  height: 420px;
  display: none;
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  width: 280px;
  border: 1px solid var(--border);
}

.hcard-icon { font-size: 2rem; }
.hcard-text strong { display: block; font-size: 0.9rem; font-weight: 600; }
.hcard-text span { font-size: 0.75rem; color: var(--text-muted); }

.card-float { top: 20px; left: 0; animation: float 4s ease-in-out infinite; }
.card-float-2 { top: 50%; left: 60px; animation: float 4s 1.3s ease-in-out infinite; }
.card-float-3 { bottom: 20px; left: 0; animation: float 4s 0.7s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   HERO INFO PANEL
   ============================================= */
.hero-info-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 320px;
}

.hip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: float 5s ease-in-out infinite;
}

.hip-card--mid { animation-delay: 1.2s; }
.hip-card--bot { animation-delay: 2.4s; }

.hip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hip-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 6px;
}

.hip-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.1;
}

.hip-card--mid .hip-value { color: var(--gold-dark); }

.hip-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =============================================
   SERVICES PREVIEW
   ============================================= */
.services-preview { background: var(--surface); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-mid);
}

.service-card.featured {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.service-card.featured h3,
.service-card.featured p { color: rgba(255,255,255,0.9); }

.service-card.featured .service-link { color: rgba(255,255,255,0.8); }
.service-card.featured .service-link:hover { color: var(--white); }

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}

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

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--purple);
  transition: gap var(--transition);
}

.service-link:hover { text-decoration: underline; }

/* =============================================
   INDUSTRIES
   ============================================= */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.industry-item:hover {
  border-color: var(--purple);
  background: var(--purple-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.ind-icon { font-size: 2rem; }

.industry-item span:last-child {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* =============================================
   MISSION / VISION
   ============================================= */
.mv-section { background: var(--gray-900); }

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

.mv-card {
  padding: 48px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}

.mv-card:hover { background: rgba(255,255,255,0.07); }

.mv-card.accent-card { background: var(--purple); border-color: var(--purple); }

.mv-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.mv-card.accent-card .mv-num { color: rgba(255,255,255,0.3); }

.mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.mv-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

.values-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.values-list li::before {
  content: '✦';
  color: var(--purple-light);
  font-size: 0.6rem;
}

/* =============================================
   WHY SAYAL
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-item {
  padding: 32px 24px;
  border-left: 3px solid var(--purple-mid);
  transition: border-color var(--transition);
}

.why-item:hover { border-color: var(--purple); }

.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.why-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.5;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, #7A4FA8 100%);
  padding: 96px 0;
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-banner .btn-white {
  background: var(--gold-pale);
  color: var(--gold-dark);
  border: 1px solid var(--gold-mid);
}
.cta-banner .btn-white:hover {
  background: var(--gold-mid);
  color: var(--gold-dark);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--gray-900);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer .logo-img { filter: brightness(0) invert(1); mix-blend-mode: normal; height: 144px; }

.logo-text-footer {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

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

.footer-social a {
  width: 36px; height: 36px;
  background: var(--surface);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: background 0.3s, color 0.3s;
}

.footer-social a:hover {
  background: var(--purple);
  color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-full {
  padding: 96px 0;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child { border-bottom: none; }
.service-block.reverse .service-block-img { order: -1; }

.service-block-content .section-tag { text-align: left; }

.service-block-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 12px 0 16px;
  color: var(--gray-900);
}

.service-block-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-900);
}

.feature-item::before {
  content: '✦';
  color: var(--purple);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.service-block-img {
  border-radius: var(--radius-lg);
  background: var(--purple-pale);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border: 1px solid var(--purple-mid);
}

/* =============================================
   JOBS PAGE
   ============================================= */
.jobs-section { padding: 96px 0; }

.jobs-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

.jobs-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: all var(--transition);
}

.job-card:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.job-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.job-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.job-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--purple-pale);
  color: var(--purple);
}

.job-apply {
  background: var(--purple);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
}

.job-apply:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.no-jobs {
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
}

/* =============================================
   JOB DETAIL MODAL
   ============================================= */
.job-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,40,51,0.55);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.job-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.job-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 660px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.job-modal-overlay.open .job-modal {
  transform: translateY(0);
}

.jm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.jm-close {
  background: var(--surface);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  margin-top: 2px;
}

.jm-close:hover { background: var(--border); color: var(--gray-900); }

.jm-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 14px;
}

.jm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jm-tag {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--surface);
  color: var(--text-secondary);
  padding: 5px 14px;
  border-radius: 50px;
}

.jm-tag.accent {
  background: var(--purple-pale);
  color: var(--purple);
  font-weight: 600;
}

.jm-body {
  padding: 28px 36px;
}

.jm-section {
  margin-bottom: 28px;
}

.jm-section:last-child { margin-bottom: 0; }

.jm-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jm-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.jm-section-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.85;
  white-space: pre-line;
}

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

.jm-footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.job-card { cursor: pointer; }

.job-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-pale);
  color: var(--purple);
  border: 1px solid var(--purple-mid);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
}

.job-card:hover .job-view-btn {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

@media (max-width: 600px) {
  .jm-header, .jm-body, .jm-footer { padding-left: 20px; padding-right: 20px; }
  .job-modal-overlay { padding: 12px; align-items: flex-end; }
  .job-modal { max-height: 92vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-section { padding: 96px 0; }

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

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

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-mid);
}

.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--purple-mid);
}

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

.blog-cat {
  display: inline-block;
  background: var(--purple-pale);
  color: var(--purple);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.3;
}

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

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.blog-read-more {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { padding: 96px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--purple-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.contact-item-text span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(138,91,191,0.08);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.form-submit:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138,91,191,0.35);
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: #F0FFF4;
  border: 1px solid #86EFAC;
  border-radius: var(--radius);
  color: #166534;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}

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

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

/* =============================================
   PATH SELECTOR (Home – Who is this for)
   ============================================= */
.path-selector-wrapper {
  border-top: 2px solid var(--border);
}

.path-selector-header {
  text-align: center;
  padding: 40px 24px 28px;
  background: var(--white);
}

/* =============================================
   HERO SCROLL CUE
   ============================================= */
.hero-scroll-cue {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  animation: fadeSlideUp 0.6s 0.6s ease both;
  transition: opacity 0.4s ease;
}

.hero-scroll-cue.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-chevron {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(7px); opacity: 0.7; }
}

/* =============================================
   SERVICES – TRACK BAR
   ============================================= */
.services-track-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.track-panel {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border-radius: 0;
  transition: filter 0.2s ease;
}

.track-panel:hover {
  filter: brightness(1.15);
  color: var(--white);
}

.track-dark { background: var(--gray-900); }
.track-purple { background: var(--purple); }

.path-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.path-card {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.path-card.dark {
  background: var(--gray-900);
  border-right: 1px solid rgba(255,255,255,0.07);
}

.path-card.purple { background: var(--purple); }
.path-card.dark:hover { background: #231F2E; }
.path-card.purple:hover { background: var(--purple-dark); }

.path-audience {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.path-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.path-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 380px;
  flex: 1;
}

.path-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.path-service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 12px;
  border-radius: 50px;
}

.path-cta-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}

.path-cta-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.path-card:hover .path-cta-arrow {
  background: rgba(255,255,255,0.22);
  transform: translateX(4px);
}

/* =============================================
   SERVICES – STICKY SUB-NAV
   ============================================= */
.services-subnav {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 52px;
  opacity: 1;
}

.services-subnav.visible {
  height: 52px;
  opacity: 1;
}

.services-subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
}

.services-subnav-inner::-webkit-scrollbar { display: none; }

.subnav-pill {
  padding: 7px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.subnav-pill:hover { border-color: var(--purple); color: var(--purple); }
.subnav-pill.active { background: var(--purple); border-color: var(--purple); color: var(--white); }

/* =============================================
   SERVICES – AUDIENCE DIVIDERS
   ============================================= */
.audience-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.audience-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-pale);
  border: 1px solid var(--purple-mid);
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.audience-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

.audience-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* =============================================
   SERVICES – CAREER AGENT HIGHLIGHT BANNER
   ============================================= */
.career-highlight {
  background: linear-gradient(135deg, var(--purple-pale), var(--purple-mid));
  border-left: 4px solid var(--purple);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
}

.career-highlight-main {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 3px;
}

.career-highlight-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =============================================
   SERVICES – PACKAGE BEST-FOR LABEL
   ============================================= */
.package-best-for {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.package-best-for strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 4px;
}

.package-card.featured .package-best-for {
  color: rgba(255,255,255,0.55);
  border-bottom-color: rgba(255,255,255,0.15);
}

.package-card.featured .package-best-for strong {
  color: rgba(255,255,255,0.75);
}

/* =============================================
   PHOTO PLACEHOLDER
   ============================================= */
.photo-placeholder {
  background: linear-gradient(135deg, var(--surface) 0%, var(--purple-pale) 100%);
  border: 1px solid var(--purple-mid);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: placeholderPulse 2s ease-in-out infinite;
}

@keyframes placeholderPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.photo-placeholder-icon {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--purple-mid);
  position: relative;
}

.photo-placeholder-icon::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--purple-light);
}

/* =============================================
   HOME – HERO REVAMP
   ============================================= */
.hero-bolder-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-900);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-bolder-tag span {
  width: 6px;
  height: 6px;
  background: var(--purple-light);
  border-radius: 50%;
  display: inline-block;
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

/* =============================================
   HOME – ABOUT STRIP
   ============================================= */
.about-strip {
  padding: 80px 0;
  background: var(--gray-900);
}

.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.about-strip-item {
  padding: 40px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.about-strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 14px;
}

.about-strip-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.about-strip-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.about-values-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.about-value-item {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about-value-item strong {
  color: var(--white);
}

.about-value-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple-light);
  flex-shrink: 0;
  margin-top: 7px;
}

/* =============================================
   HOME – SERVICE PILLARS
   ============================================= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-mid);
}

.pillar-card.featured {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.pillar-photo {
  aspect-ratio: 16/9;
}

.pillar-body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple-mid);
  line-height: 1;
  margin-bottom: 16px;
}

.pillar-card.featured .pillar-num {
  color: rgba(255,255,255,0.2);
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.2;
}

.pillar-card.featured .pillar-title { color: var(--white); }

.pillar-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.pillar-card.featured .pillar-desc { color: rgba(255,255,255,0.75); }

.pillar-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.pillar-card.featured .pillar-link { color: rgba(255,255,255,0.9); }
.pillar-card.featured .photo-placeholder {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}
.pillar-link:hover { gap: 10px; }

/* =============================================
   HOME – WHO BENEFITS
   ============================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--purple);
  transition: all var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--purple-mid);
  line-height: 1;
  margin-bottom: 14px;
}

.benefit-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =============================================
   HOME – GLOBAL NETWORK
   ============================================= */
.global-section {
  background: var(--surface);
  padding: 96px 0;
}

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

.global-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.15;
}

.global-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

.industries-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-tag {
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.industry-tag:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-pale);
}

/* =============================================
   HOME – WHY SAYAL
   ============================================= */
.standout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.standout-item {
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}

.standout-item:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-sm);
}

.standout-line {
  width: 32px;
  height: 3px;
  background: var(--purple);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.standout-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.standout-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   HOME – DUAL CTA
   ============================================= */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.dual-cta-panel {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dual-cta-panel.dark {
  background: var(--gray-900);
}

.dual-cta-panel.purple {
  background: var(--purple-dark);
  border-left: 4px solid var(--gold);
}

.dual-cta-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.dual-cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.dual-cta-panel p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 380px;
}

/* =============================================
   SERVICES PAGE – FRAMEWORK
   ============================================= */
.framework-intro {
  padding: 80px 0 60px;
  background: var(--surface);
}

.framework-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.framework-content .section-tag { text-align: left; }

.framework-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.15;
}

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

.framework-questions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.framework-q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--purple);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.fq-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple);
  flex-shrink: 0;
  line-height: 1.2;
}

/* =============================================
   SERVICES PAGE – SERVICE SECTIONS
   ============================================= */
.service-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.service-section:last-of-type { border-bottom: none; }
.service-section.bg-off { background: var(--surface); }

.service-section-header {
  margin-bottom: 56px;
}

.service-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 10px;
  margin-bottom: 14px;
  line-height: 1.15;
}

.service-section-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 680px;
}

.service-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 56px;
}

.service-two-col.reverse { direction: rtl; }
.service-two-col.reverse > * { direction: ltr; }

/* =============================================
   SERVICES PAGE – ELEMENTS LIST
   ============================================= */
.elements-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.element-item {
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--purple);
  transition: box-shadow var(--transition);
}

.element-item:hover { box-shadow: var(--shadow-sm); }

.element-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.element-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   SERVICES PAGE – METHODOLOGY STEPS
   ============================================= */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0 56px;
}

.method-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color var(--transition);
}

.method-step:hover { border-color: var(--purple-mid); }

.method-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple-mid);
  line-height: 1;
  margin-bottom: 10px;
}

.method-step-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
}

/* =============================================
   SERVICES PAGE – LOCAL SERVICES CARDS
   ============================================= */
.local-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}

.local-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.local-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-mid);
}

.local-service-card.accent {
  background: var(--purple);
  border-color: var(--purple);
}

.local-service-header {
  padding: 28px 28px 0;
}

.local-service-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 6px;
}

.local-service-card.accent .local-service-label {
  color: rgba(255,255,255,0.55);
}

.local-service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.2;
}

.local-service-card.accent .local-service-title { color: var(--white); }

.local-service-sub {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.local-service-card.accent .local-service-sub {
  color: rgba(255,255,255,0.7);
}

.local-service-body {
  padding: 20px 28px 28px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-item {
  font-size: 0.855rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.local-service-card.accent .check-item {
  color: rgba(255,255,255,0.8);
}

.check-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--purple-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  font-size: 0.6rem;
  color: var(--purple);
  font-weight: 700;
}

.local-service-card.accent .check-mark {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* =============================================
   SERVICES PAGE – PACKAGE PRICING TABLES
   ============================================= */
.packages-section {
  padding: 60px 0 0;
}

.packages-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}

.packages-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.packages-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.65;
}

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

.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: var(--gold-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.package-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}

.package-card.featured .package-tier { color: rgba(255,255,255,0.55); }

.package-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.package-card.featured .package-name { color: var(--white); }

.package-price {
  display: none;
}

.package-features-header {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.package-card.featured .package-features-header {
  color: rgba(255,255,255,0.4);
}

.package-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pkg-feature {
  font-size: 0.855rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.package-card.featured .pkg-feature { color: rgba(255,255,255,0.8); }

.pkg-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  margin-top: 6px;
}

.package-card.featured .pkg-dot { background: rgba(255,255,255,0.5); }
.package-card.featured .btn-white {
  background: var(--white);
  color: var(--gold-dark);
}
.package-card.featured .btn-white:hover {
  background: var(--gold-pale);
}

/* =============================================
   SERVICES PAGE – EOR WHY CHOOSE GRID
   ============================================= */
.eor-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 48px;
}

.eor-why-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.eor-why-item:hover {
  border-color: var(--purple-mid);
  box-shadow: var(--shadow-sm);
}

.eor-why-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.eor-why-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =============================================
   APPLY PAGE
   ============================================= */
.apply-section { padding: 80px 0; }

.apply-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.apply-sidebar {
  background: var(--purple);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 92px;
}

.apply-sidebar-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.apply-sidebar-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.apply-sidebar-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.8;
}

.apply-sidebar-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
}

.apply-sidebar-back {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.apply-sidebar-back:hover { color: var(--white); }

.apply-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* File drop zone */
.file-drop-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.file-drop-zone:hover,
.file-drop-zone.drag-over {
  border-color: var(--purple);
  background: var(--purple-pale);
}

.file-drop-icon { font-size: 2rem; margin-bottom: 10px; }

.file-drop-zone p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.file-browse-btn {
  background: none;
  border: none;
  color: var(--purple);
  font-weight: 600;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.file-drop-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.file-chosen-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--purple-pale);
  border-radius: var(--radius);
  padding: 12px 16px;
}

.file-chosen-icon { font-size: 1.4rem; }

.file-chosen-name {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--purple-dark);
  word-break: break-all;
}

.file-remove-btn {
  background: none;
  border: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
}

.file-remove-btn:hover { color: #EF4444; }

/* Apply errors */
.apply-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #991B1B;
  margin-bottom: 16px;
}

/* Success screen */
.apply-success-screen {
  text-align: center;
  padding: 40px 24px;
}

.apply-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.apply-success-screen h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.apply-success-screen p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Jobs loading spinner */
.jobs-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--purple-mid);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse .service-block-img { order: 0; }
}

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

  .hero {
    flex-direction: column;
    min-height: auto;
    padding: 100px 24px 60px;
    text-align: center;
  }

  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .section { padding: 60px 0; }

  .path-selector { grid-template-columns: 1fr; }
  .path-card { padding: 48px 32px; }
  .services-subnav { top: 60px; }
  .apply-layout { grid-template-columns: 1fr; }
  .apply-sidebar { position: static; }
  .apply-form-wrap { padding: 24px; }

  .about-strip-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .global-grid { grid-template-columns: 1fr; gap: 40px; }
  .standout-grid { grid-template-columns: 1fr 1fr; }
  .dual-cta { grid-template-columns: 1fr; }
  .dual-cta-panel { padding: 56px 32px; }
  .framework-grid { grid-template-columns: 1fr; }
  .service-two-col { grid-template-columns: 1fr; }
  .service-two-col.reverse { direction: ltr; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .local-services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .eor-why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .standout-grid { grid-template-columns: 1fr; }
  .eor-why-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1024px) {
  .hero-visual { display: block; }
}
