/* ============================================
   Partner Experts — Premium Website
   Color Palette: #052702 primary, #6EB964 highlight
   ============================================ */

:root {
  --primary: #052702;
  --primary-dark: #031a01;
  --primary-mid: #0a3d05;
  --highlight: #6EB964;
  --highlight-light: #8fce87;
  --highlight-pale: #b5dfb0;
  --highlight-bg: #e8f5e6;
  --highlight-50: #f2f9f1;

  --white: #ffffff;
  --off-white: #f7f8f7;
  --gray-50: #f1f3f1;
  --gray-100: #e2e5e2;
  --gray-200: #c8cdc8;
  --gray-300: #a5aba5;
  --gray-400: #828882;
  --gray-500: #636963;
  --gray-600: #4a4f4a;
  --gray-700: #353935;
  --gray-800: #1e211e;
  --gray-900: #0f110f;

  --red-soft: #dc2626;
  --red-bg: #fef2f2;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 40px rgba(0,0,0,0.1);
  --transition: 0.25s ease;
  --transition-fast: 0.15s ease;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: hidden; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ===================== NAVIGATION ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,39,2,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(110,185,100,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.25); background: rgba(5,39,2,0.99); }
.nav-container {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 41px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 13px; font-weight: 500; color: var(--white); transition: var(--transition);
  letter-spacing: 0.2px; position: relative;
}
.nav-link:hover { color: var(--white); }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--highlight); border-radius: 1px;
  transform: scaleX(0); transition: transform 0.25s ease;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:focus-visible { outline: 2px solid var(--highlight); outline-offset: 4px; border-radius: 2px; }
.nav-link.active {
  color: var(--highlight); background: rgba(255,255,255,0.1);
  padding: 5px 12px; border-radius: var(--radius); margin: -5px -12px;
}
.nav-link.active::after { display: none; }

/* Sign In wrapper & dropdown */
.nav-signin-wrapper { position: relative; }
.btn-signin {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0; border-radius: 0; background: none; border: none;
  font-size: 13px; font-weight: 500; font-family: var(--font);
  color: var(--highlight); cursor: pointer;
  transition: var(--transition); position: relative; letter-spacing: 0.2px;
}
.btn-signin::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--highlight); border-radius: 1px;
  transform: scaleX(0); transition: transform 0.25s ease;
}
.btn-signin:hover { color: var(--white); }
.btn-signin:hover::after { transform: scaleX(1); background: var(--white); }
.btn-signin svg { transition: var(--transition); color: currentColor; }
.btn-signin.active svg { transform: rotate(180deg); }

.signin-dropdown {
  position: absolute; top: calc(100% + 12px); right: 0;
  min-width: 160px; background: var(--white);
  border: 1px solid var(--gray-100); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: var(--transition-fast);
  z-index: 100; padding: 6px 0;
}
.signin-dropdown.active {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.signin-dropdown-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; font-size: 13px; font-weight: 500; color: var(--gray-600);
  transition: var(--transition-fast);
}
.signin-dropdown-item:hover { background: var(--off-white); color: var(--primary); }
.signin-role-icon { display: none; }
.signin-role-name { display: block; font-weight: 500; color: inherit; font-size: 13px; }
.signin-role-desc { display: none; }
.signin-dropdown-divider { height: 1px; background: var(--gray-100); margin: 4px 0; }
.signin-dropdown-login {
  font-weight: 600; color: var(--gray-500);
}
.signin-dropdown-login:hover { color: var(--primary); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--white); border-radius: 1px; transition: var(--transition); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  border-radius: var(--radius); font-size: 14px; font-weight: 600; font-family: var(--font);
  cursor: pointer; transition: var(--transition); border: 1.5px solid transparent;
  text-align: center; justify-content: center; letter-spacing: -0.01em;
}
.btn:focus-visible { outline: 2px solid var(--highlight); outline-offset: 2px; }
.btn-primary {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-mid); border-color: var(--primary-mid); }
.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--gray-200);
}
.btn-outline:hover { border-color: var(--primary); }
.btn-outline-light {
  background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.2);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.14); }
.btn-accent {
  background: var(--highlight); color: var(--primary); border-color: var(--highlight);
  font-weight: 700;
}
.btn-accent:hover { background: var(--highlight-light); }
.btn-ghost {
  background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.18);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-full { width: 100%; }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 100px; background: var(--primary); overflow: hidden;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(110,185,100,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 3; max-width: 720px; margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; background: rgba(110,185,100,0.1); color: var(--highlight);
  border-radius: 2px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  margin-bottom: 28px; text-transform: uppercase;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--highlight);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(42px, 5vw, 64px); font-weight: 800; line-height: 1.05;
  color: var(--white); margin-bottom: 24px; letter-spacing: -2.5px;
}
.text-highlight { color: var(--highlight); }
.hero-subtitle {
  font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.5);
  margin-bottom: 40px; max-width: 580px; font-weight: 400; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; justify-content: center; }
.hero-trust { display: flex; align-items: center; gap: 12px; justify-content: center; }
.trust-avatars { display: flex; }
.trust-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(110,185,100,0.12);
  border: 1.5px solid rgba(110,185,100,0.3); color: var(--highlight); font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-right: -6px;
}
.trust-text { font-size: 13px; color: rgba(255,255,255,0.35); margin-left: 8px; }

/* ===================== SECTION HEADER ===================== */
.section-header { text-align: center; margin-bottom: 56px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--highlight); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--primary);
  margin-bottom: 14px; letter-spacing: -1px; line-height: 1.15;
}
.section-subtitle { font-size: 16px; color: var(--gray-500); line-height: 1.7; }

/* ===================== ABOUT (compact) ===================== */
.about { padding: 100px 0; background: var(--off-white); position: relative; }
.about-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.about-header .section-tag { margin-bottom: 14px; }
.about-title {
  font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--primary);
  line-height: 1.15; margin-bottom: 14px; letter-spacing: -1px;
}
.about-title strong { color: var(--highlight); }
.about-desc {
  font-size: 16px; color: var(--gray-500); line-height: 1.7;
}
.about-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-highlight-item {
  text-align: center; padding: 32px 24px;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); transition: var(--transition);
}
.about-highlight-item:hover { border-color: var(--gray-200); }
.about-highlight-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  color: var(--highlight); margin: 0 auto 16px;
  background: var(--highlight-bg); border-radius: 50%;
}
.about-highlight-icon svg { width: 28px; height: 28px; }

/* Animated icon keyframes */
@keyframes iconDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes iconFadeIn {
  to { opacity: 1; }
}
@keyframes iconPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
@keyframes iconCircleIn {
  from { stroke-dashoffset: 120; }
  to { stroke-dashoffset: 0; }
}
.about-highlight-item .anim-draw {
  animation: iconDraw 0.8s ease-out 0.3s forwards;
}
.about-highlight-item .anim-dot {
  animation: iconFadeIn 0.4s ease-out 0.8s forwards;
}
.about-highlight-item .anim-pulse {
  animation: iconPulse 2s ease-in-out infinite;
}
.about-highlight-item .anim-circle {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: iconCircleIn 0.8s ease-out forwards;
}
.about-highlight-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.about-highlight-item span { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ===================== THE OPPORTUNITY ===================== */
.opportunity { padding: 100px 0; background: var(--primary); position: relative; overflow: hidden; }
.opportunity::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(110,185,100,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.opp-inner {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.opp-tag {
  display: inline-block; padding: 6px 14px; background: rgba(110,185,100,0.12);
  color: var(--highlight); border-radius: 2px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 20px;
}
.opp-title {
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--white);
  letter-spacing: -1px; line-height: 1.15; margin-bottom: 24px;
}
.opp-body p {
  font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 16px;
}
.opp-body strong { color: rgba(255,255,255,0.75); font-weight: 600; }
.opp-highlight {
  font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-top: 24px;
}
.opp-highlight em {
  color: var(--highlight); font-style: normal; font-weight: 600;
}
.opp-stat-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 44px 36px; text-align: center;
}
.opp-stat-number {
  font-size: 60px; font-weight: 900; color: var(--highlight);
  letter-spacing: -2px; line-height: 1; margin-bottom: 14px;
}
.opp-stat-text {
  font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 280px;
  margin: 0 auto 28px;
}
.opp-stat-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--highlight);
  transition: var(--transition);
}
.opp-stat-cta:hover { color: var(--white); }
.opp-stat-cta svg { width: 14px; height: 14px; }

/* ===================== WHAT MAKES US DIFFERENT ===================== */
.positioning { padding: 100px 0; background: var(--white); position: relative; }

/* ===================== COMPARISON TABLE ===================== */
.ct-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1.25fr 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: visible;
}

/* ── Left-hand labels ── */
.ct-labels {
  display: flex; flex-direction: column;
  padding-right: 8px;
}
.ct-label-header {
  height: 72px;
}
.ct-label {
  display: flex; align-items: center; gap: 12px;
  padding: 0 8px 0 0; height: 64px;
  font-size: 13px; font-weight: 600; color: var(--gray-500);
  letter-spacing: 0.01em;
  border: none; background: transparent;
}
.ct-label:last-child { border-bottom: none; }
.ct-label svg {
  flex-shrink: 0; color: var(--highlight);
  width: 18px; height: 18px;
  opacity: 0.7;
}

/* ── Provider columns ── */
.ct-column {
  display: flex; flex-direction: column;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 4px;
  background: var(--white);
}
.ct-col-header {
  display: flex; align-items: center; justify-content: center;
  height: 72px; padding: 0 20px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
}
.ct-col-name {
  font-size: 11px; font-weight: 700; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.ct-col-cell {
  display: flex; align-items: center; justify-content: flex-start;
  padding: 0 24px; height: 64px; text-align: left;
  border-bottom: 1px solid var(--gray-50);
  transition: background 0.2s ease;
}
.ct-col-cell:last-child { border-bottom: none; }
.ct-col-cell:hover { background: var(--off-white); }
.ct-text {
  font-size: 13px; color: var(--gray-400); line-height: 1.5;
}

/* ── Featured column — Partner Experts ── */
.ct-column-featured {
  position: relative; z-index: 1;
  transform: scale(1.03);
  box-shadow:
    0 8px 32px rgba(5, 39, 2, 0.10),
    0 2px 8px rgba(0,0,0,0.04);
  border-color: rgba(110, 185, 100, 0.2);
  border-radius: 10px;
}
.ct-column-featured .ct-col-header {
  background: var(--primary);
  border-bottom-color: rgba(110, 185, 100, 0.12);
  height: 72px;
}
.ct-column-featured .ct-col-name {
  color: var(--highlight); font-weight: 700; font-size: 12px;
  letter-spacing: 0.06em;
}
.ct-column-featured .ct-col-cell {
  background: rgba(110, 185, 100, 0.03);
  border-bottom-color: rgba(110, 185, 100, 0.06);
}
.ct-column-featured .ct-col-cell:hover {
  background: rgba(110, 185, 100, 0.06);
}
.ct-column-featured .ct-col-cell:last-child {
  border-bottom: none;
}
.ct-column-featured .ct-text {
  color: var(--primary); font-weight: 600; font-size: 13.5px;
}

/* ── Cell icon indicators ── */
.ct-cell-inner { display: inline-flex; align-items: center; gap: 8px; }
.ct-icon { width: 16px; height: 16px; flex-shrink: 0; }
.ct-icon circle { stroke-width: 1; }
.ct-icon path { fill: none; stroke-linecap: round; stroke-linejoin: round; }

.ct-icon-check circle { fill: rgba(110,185,100,0.12); stroke: rgba(110,185,100,0.4); }
.ct-icon-check path { stroke: #6EB964; stroke-width: 1.6; }

.ct-icon-cross circle { fill: rgba(180,60,60,0.06); stroke: rgba(180,60,60,0.2); }
.ct-icon-cross path { stroke: rgba(180,60,60,0.45); stroke-width: 1.4; }

.ct-icon-partial circle { fill: rgba(200,160,50,0.08); stroke: rgba(200,160,50,0.25); }
.ct-icon-partial path { stroke: rgba(200,160,50,0.55); stroke-width: 1.6; }

/* Featured column: solid green check with white mark */
.ct-column-featured .ct-icon-check circle { fill: var(--highlight); stroke: var(--highlight); }
.ct-column-featured .ct-icon-check path { stroke: #fff; stroke-width: 2; }

/* ── Column reveal animation ── */
.ct-column {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ct-column.ct-visible {
  opacity: 1; transform: translateY(0);
}
.ct-column-featured.ct-visible {
  transform: translateY(0) scale(1.03);
}

/* ===================== ICON ANIMATIONS (Global) ===================== */
.icon-animated .icon-stroke {
  stroke-dasharray: 80; stroke-dashoffset: 80;
  animation: iconDraw 0.8s ease-out forwards;
}
.icon-animated .icon-stroke-delay {
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: iconDraw 0.6s ease-out 0.3s forwards;
}

/* ===================== CAROUSEL ===================== */
.carousel-wrapper { position: relative; }
.carousel-track { overflow: hidden; }
.carousel-page {
  display: none; opacity: 0;
  transition: opacity 0.35s ease;
}
.carousel-page.active { display: block; opacity: 1; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gray-500); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.carousel-arrow:hover { border-color: var(--primary); color: var(--primary); background: var(--off-white); }
.carousel-arrow:disabled { opacity: 0.3; cursor: default; }
.carousel-prev { left: -52px; }
.carousel-next { right: -52px; }
.carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 24px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: var(--gray-200); cursor: pointer; transition: var(--transition);
  padding: 0;
}
.carousel-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ===================== HIRE EXPERTS ===================== */
.hire-experts { padding: 100px 0; background: var(--white); position: relative; }
.hire-sectors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px;
}
.hire-sector-card {
  background: var(--off-white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 24px 20px; transition: var(--transition);
}
.hire-sector-card:hover { border-color: var(--gray-200); }
.hire-sector-icon {
  width: 40px; height: 40px; background: var(--highlight-bg); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
  margin-bottom: 12px;
}
.hire-sector-icon svg { width: 20px; height: 20px; }
.hire-sector-card h3 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.hire-sector-card p { font-size: 12px; color: var(--gray-500); line-height: 1.5; }
.hire-cta-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 32px; background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: var(--radius);
}
.hire-cta-text h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.hire-cta-text p { font-size: 13px; color: var(--gray-500); }

/* ===================== ENGAGE ===================== */
.engage { padding: 100px 0; background: var(--off-white); position: relative; }
.engage-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.engage-panel {
  position: relative; border-radius: var(--radius); padding: 40px 36px;
  transition: var(--transition); overflow: hidden;
}
.engage-clients { background: var(--primary); color: var(--white); }
.engage-experts {
  background: var(--white); color: var(--gray-800); border: 1px solid var(--gray-100);
}
.engage-panel-icon {
  width: 44px; height: 44px; border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.engage-clients .engage-panel-icon { background: rgba(110,185,100,0.1); color: var(--highlight); }
.engage-experts .engage-panel-icon { background: var(--highlight-bg); color: var(--primary); }
.engage-panel-icon svg { width: 22px; height: 22px; }
.engage-panel h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.engage-panel > p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.engage-clients > p { color: rgba(255,255,255,0.5); }
.engage-experts > p { color: var(--gray-500); }
.engage-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.engage-features li {
  display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500;
}
.engage-clients .engage-features li { color: rgba(255,255,255,0.7); }
.engage-clients .engage-features svg { color: var(--highlight); }
.engage-experts .engage-features li { color: var(--gray-600); }
.engage-experts .engage-features svg { color: var(--highlight); }
.engage-clients .btn-primary {
  background: var(--highlight); color: var(--primary); border-color: var(--highlight);
}
.engage-clients .btn-primary:hover { background: var(--highlight-light); }

/* ===================== EXPERT OVERVIEW ===================== */
.expert-overview { padding: 100px 0; background: var(--off-white); position: relative; }
.expert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 48px; }
.expert-card {
  display: flex; gap: 20px; padding: 28px 24px;
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  transition: var(--transition);
}
.expert-card:hover { border-color: var(--gray-200); }
.expert-avatar {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--primary); color: var(--highlight);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; letter-spacing: 1px; flex-shrink: 0;
}
.expert-info h4 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.expert-role { display: block; font-size: 12px; font-weight: 600; color: var(--highlight); margin-bottom: 8px; }
.expert-info p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 10px; }
.expert-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.expert-tags span {
  padding: 3px 10px; border-radius: 2px; font-size: 11px; font-weight: 600;
  background: var(--highlight-bg); color: var(--primary);
}

.expert-stats-bar {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  padding: 24px 0; margin-top: 48px; margin-bottom: 32px;
  background: var(--primary); border-radius: var(--radius);
}
.expert-stat { text-align: center; }
.expert-stat-value {
  display: block; font-size: 28px; font-weight: 900; color: var(--highlight);
  letter-spacing: -1px; line-height: 1.1;
}
.expert-stat-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; }
.expert-stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }
.expert-trailing {
  text-align: center; font-size: 15px; color: var(--gray-500); margin-bottom: 24px;
  font-weight: 500; letter-spacing: -0.1px;
}
.expert-trailing a {
  color: var(--highlight); font-weight: 700; text-decoration: none;
  border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.expert-trailing a:hover { border-bottom-color: var(--highlight); }
.expert-cta { text-align: center; display: flex; gap: 12px; justify-content: center; }

/* ===================== CTA EXPERTISE ===================== */
.cta-expertise { padding: 100px 0; background: var(--primary); position: relative; overflow: hidden; }
.cta-exp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 3; }
.cta-exp-content h2 {
  font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--white);
  margin-bottom: 14px; letter-spacing: -0.5px; line-height: 1.15;
}
.cta-exp-content p { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 32px; }
.cta-exp-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-exp-visual { display: flex; align-items: center; justify-content: center; }
.cta-stat-block {
  display: flex; align-items: center; gap: 32px;
  padding: 32px 40px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(110,185,100,0.15); border-radius: var(--radius-lg);
}
.cta-stat-item { text-align: center; }
.cta-stat-num {
  display: block; font-size: 32px; font-weight: 900; color: var(--highlight);
  letter-spacing: -1px; line-height: 1.1; margin-bottom: 4px;
}
.cta-stat-desc { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; }
.cta-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===================== CASE STUDIES ===================== */
.case-studies { padding: 100px 0; background: var(--white); position: relative; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card {
  background: var(--off-white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 32px 28px; transition: var(--transition);
  display: flex; flex-direction: column;
}
.case-card:hover { border-color: var(--gray-200); }
.case-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.case-industry {
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--highlight); background: var(--highlight-bg); padding: 4px 10px; border-radius: 2px;
}
.case-duration {
  font-size: 11px; font-weight: 600; color: var(--gray-400);
}
.case-card h4 {
  font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 10px;
  line-height: 1.35;
}
.case-card > p {
  font-size: 13px; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; flex: 1;
}
.case-results {
  display: flex; gap: 16px; margin-bottom: 16px;
  padding: 14px 16px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
}
.case-result { flex: 1; }
.case-result-value {
  display: block; font-size: 18px; font-weight: 800; color: var(--primary);
  letter-spacing: -0.5px; margin-bottom: 2px;
}
.case-result-label { font-size: 11px; color: var(--gray-400); font-weight: 500; }
.case-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.case-tags span {
  padding: 3px 10px; border-radius: 2px; font-size: 11px; font-weight: 600;
  background: var(--gray-50); color: var(--gray-500); border: 1px solid var(--gray-100);
}

/* ===================== JOIN NETWORK ===================== */
.join-network { padding: 100px 0; background: var(--off-white); position: relative; }
.join-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.join-content h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--primary); margin-bottom: 14px; letter-spacing: -0.5px; }
.join-content > p { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 28px; }
.join-content .section-tag { margin-bottom: 14px; }
.join-benefits { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.join-benefits li { display: flex; gap: 14px; }
.join-benefit-icon {
  width: 32px; height: 32px; border-radius: var(--radius); background: var(--highlight-bg);
  display: flex; align-items: center; justify-content: center; color: var(--highlight);
  flex-shrink: 0; margin-top: 2px;
}
.join-benefit-icon svg { width: 14px; height: 14px; }
.join-benefits li strong { display: block; font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.join-benefits li span { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

.join-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.join-stat-card {
  position: absolute; background: var(--white); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
  text-align: center;
}
.jsc-number { display: block; font-size: 28px; font-weight: 900; color: var(--primary); letter-spacing: -1px; }
.jsc-label { font-size: 11px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; }
.jsc-1 { top: 10%; left: 5%; animation: float 8s ease-in-out infinite; }
.jsc-2 { top: 30%; right: 10%; animation: float 8s ease-in-out 2s infinite; }
.jsc-3 { bottom: 10%; left: 25%; animation: float 8s ease-in-out 4s infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===================== CONTACT ===================== */
.contact { padding: 100px 0; background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
.contact-form {
  background: var(--off-white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 36px; display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius);
  font-size: 14px; font-family: var(--font); color: var(--gray-800);
  background: var(--white); transition: var(--transition); outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236EB964' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-group select option {
  background: var(--white); color: var(--gray-600);
  padding: 10px 14px; font-size: 14px;
}
.form-group select option:hover,
.form-group select option:checked {
  background: var(--off-white); color: var(--primary); font-weight: 600;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--gray-300);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--highlight); box-shadow: 0 0 0 3px rgba(110,185,100,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 4px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--off-white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 24px; transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--gray-200); }
.ci-icon {
  width: 36px; height: 36px; background: var(--highlight-bg); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
  margin-bottom: 10px;
}
.ci-icon svg { width: 18px; height: 18px; }
.contact-info-card h3, .contact-info-card h4 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.contact-info-card a, .contact-info-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.contact-info-card a:hover { color: var(--highlight); }
.cta-card h3 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.cta-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.contact-info-card .btn { color: var(--white); }
.contact-info-card .btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.contact-info-card .btn-primary:hover { background: var(--primary-mid); border-color: var(--primary-mid); color: var(--white); }
.contact-info-card .btn-primary:active { background: #031a01; border-color: #031a01; }
.btn-secondary { background: transparent; color: var(--primary); border-color: var(--gray-200); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); background: var(--highlight-bg); }
.btn-secondary:active { background: var(--gray-100); border-color: var(--primary); }
.contact-info-card .btn-secondary { color: var(--primary); }
.contact-info-card .btn-secondary:hover { color: var(--primary); border-color: var(--primary); background: var(--highlight-bg); }
.cta-mini { background: var(--primary); border-color: var(--primary); }
.cta-mini h4 { color: var(--white); }
.cta-mini p { color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.cta-mini-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.cta-mini .btn-primary { background: var(--highlight); color: var(--primary); border-color: var(--highlight); font-size: 13px; }
.cta-mini .btn-primary:hover { background: var(--highlight-light); color: var(--primary); border-color: var(--highlight-light); }
.cta-mini .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.2); font-size: 13px; }
.cta-mini .btn-outline:hover { border-color: rgba(255,255,255,0.4); color: var(--white); background: rgba(255,255,255,0.06); }

/* ===================== FOOTER ===================== */
.footer { background: var(--primary); padding: 56px 0 28px; border-top: 1px solid rgba(110,185,100,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .logo-img { height: 32px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social-link {
  width: 32px; height: 32px; border-radius: var(--radius);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: var(--transition);
}
.footer-social-link:hover { background: rgba(110,185,100,0.15); color: var(--highlight); border-color: rgba(110,185,100,0.3); }
.footer-links-group h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--highlight); margin-bottom: 14px;
}
.footer-links-group a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.55); padding: 4px 0;
  transition: var(--transition);
}
.footer-links-group a:hover { color: rgba(255,255,255,0.8); }
.footer-links-group a:focus-visible { outline: 1px solid var(--highlight); outline-offset: 2px; color: rgba(255,255,255,0.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ===================== SCROLL ANIMATIONS ===================== */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }


/* ===================== DARK SECTION BACKGROUND PATTERNS ===================== */

/* Ensure dark sections can hold absolutely-positioned patterns */
.hero, .opportunity, .cta-expertise, .join-network, .footer {
  position: relative;
  overflow: hidden;
}

/* Ensure content sits above patterns */
.hero > .container,
.opportunity > .container,
.cta-expertise > .container,
.join-network > .container,
.footer > .container {
  position: relative;
  z-index: 2;
}

/* Hero — dot grid + soft radial glow */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 15%, rgba(110,185,100,0.08) 0%, transparent 50%),
    radial-gradient(circle at 22% 85%, rgba(110,185,100,0.05) 0%, transparent 40%),
    radial-gradient(circle, rgba(110,185,100,0.12) 1px, transparent 1px);
  background-size: 100%, 100%, 30px 30px;
  pointer-events: none;
  z-index: 1;
}

/* Opportunity — concentric rings emanating from right */
.opportunity::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 50%, transparent 80px, rgba(110,185,100,0.035) 80px, rgba(110,185,100,0.035) 82px, transparent 82px),
    radial-gradient(circle at 90% 50%, transparent 160px, rgba(110,185,100,0.028) 160px, rgba(110,185,100,0.028) 162px, transparent 162px),
    radial-gradient(circle at 90% 50%, transparent 240px, rgba(110,185,100,0.02) 240px, rgba(110,185,100,0.02) 242px, transparent 242px),
    radial-gradient(circle at 90% 50%, transparent 320px, rgba(110,185,100,0.015) 320px, rgba(110,185,100,0.015) 322px, transparent 322px),
    radial-gradient(circle at 8% 20%, rgba(110,185,100,0.04) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}

/* CTA Expertise — diamond crosshatch + glow */
.cta-expertise::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(110,185,100,0.06) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(110,185,100,0.025) 40px,
      rgba(110,185,100,0.025) 41px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(110,185,100,0.02) 40px,
      rgba(110,185,100,0.02) 41px
    );
  pointer-events: none;
  z-index: 1;
}

/* Join Network — soft elliptical glows */
.join-network::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(110,185,100,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 12% 75%, rgba(110,185,100,0.04) 0%, transparent 35%);
  pointer-events: none;
  z-index: 1;
}

/* Footer — diagonal lines + corner glow */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 5% 0%, rgba(110,185,100,0.04) 0%, transparent 40%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      rgba(110,185,100,0.02) 80px,
      rgba(110,185,100,0.02) 81px
    );
  pointer-events: none;
  z-index: 1;
}


/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-inner { max-width: 600px; }
  .about-highlights { grid-template-columns: 1fr; gap: 16px; }
  .opp-inner { grid-template-columns: 1fr; gap: 40px; }
  .opp-stat-card { max-width: 360px; margin: 0 auto; }
  .opp-stat-number { font-size: 48px; }
  .ct-grid { grid-template-columns: 160px 1fr 1.15fr 1fr; }
  .ct-label { font-size: 11px; padding: 0 4px 0 0; }
  .ct-label svg { display: none; }
  .ct-col-cell { padding: 0 16px; height: 56px; }
  .ct-col-header { height: 60px; }
  .ct-label-header { height: 60px; }
  .ct-column-featured { transform: scale(1.02); }
  .ct-column-featured.ct-visible { transform: translateY(0) scale(1.02); }
  .engage-split { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hire-sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .expert-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .cta-exp-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-exp-actions { justify-content: center; }
  .cta-stat-block { justify-content: center; }
  .join-inner { grid-template-columns: 1fr; }
  .join-visual { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .carousel-prev { left: -20px; }
  .carousel-next { right: -20px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; background: rgba(5,39,2,0.98);
    flex-direction: column; padding: 20px; gap: 12px;
    border-bottom: 1px solid rgba(110,185,100,0.1); box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transform: translateY(-120%); transition: var(--transition); z-index: 999;
  }
  .nav-links.active { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav-signin-wrapper { width: 100%; }
  .btn-signin { width: 100%; justify-content: center; }
  .signin-dropdown { width: 100%; right: 0; left: 0; position: relative; top: 8px; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-title { font-size: 34px; letter-spacing: -1.5px; }
  .hero-subtitle { font-size: 15px; }

  .ct-grid { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .ct-labels { display: none; }
  .ct-column { margin: 0; }
  .ct-col-cell { flex-direction: column; align-items: flex-start; gap: 4px; height: auto; padding: 16px 18px; }
  .ct-col-cell::before {
    content: attr(data-label);
    font-size: 9px; font-weight: 700; color: var(--gray-300);
    text-transform: uppercase; letter-spacing: 0.5px;
  }
  .ct-text { font-size: 12px; white-space: normal; }
  .ct-col-header { height: auto; padding: 18px 16px; }
  .ct-col-name { font-size: 10px; }
  .ct-column-featured { transform: scale(1.01); }
  .ct-column-featured.ct-visible { transform: translateY(0) scale(1.01); }
  .engage-split { grid-template-columns: 1fr; }
  .engage-panel { padding: 28px 24px; }
  .hire-sectors-grid { grid-template-columns: 1fr; }
  .hire-cta-bar { flex-direction: column; text-align: center; }
  .expert-grid { grid-template-columns: 1fr; }
  .expert-stats-bar { flex-wrap: wrap; gap: 20px; padding: 20px; }
  .expert-stat-divider { display: none; }
  .cases-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-mini-btns { flex-direction: column; }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
  .carousel-arrow { width: 32px; height: 32px; }

  .about, .positioning, .engage, .hire-experts, .expert-overview, .cta-expertise, .case-studies, .join-network, .contact {
    padding: 72px 0;
  }
  .section-header { margin-bottom: 36px; }
}

/* ---------- iPad Mini / Landscape Phone (640px) ---------- */
@media (max-width: 640px) {
  .fade-in-left { transform: translateX(-12px); }
  .fade-in-right { transform: translateX(12px); }
  .container { padding: 0 16px; }
  .nav-container { padding: 0 16px; }
  .hero { padding: 100px 0 64px; }
  .hero-title { font-size: 28px; letter-spacing: -1px; }
  .hero-subtitle { font-size: 14px; }
  .section-header { margin-bottom: 28px; }
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 14px; }
  .about, .positioning, .engage, .hire-experts, .expert-overview, .cta-expertise, .case-studies, .join-network, .contact {
    padding: 56px 0;
  }
  .contact-form { padding: 24px 16px; }
  .form-group input, .form-group select, .form-group textarea { padding: 10px 12px; font-size: 14px; }
  .expert-card { padding: 20px 16px; }
  .expert-stats-bar { gap: 16px; padding: 16px; }
  .engage-panel { padding: 24px 16px; }
  .ct-grid { grid-template-columns: 1fr; gap: 12px; }
  .ct-column { border-radius: var(--radius-lg); }
  .ct-labels { display: none; }
  .ct-col-cell { padding: 14px 16px; }
  .ct-text { font-size: 12px; }
  .hire-sector-card { padding: 20px 16px; }
  .case-card { padding: 24px 16px; }
  .cta-exp-inner { padding: 0; }
  .cta-exp-content { max-width: 100%; overflow: hidden; }
  .cta-exp-content h2 { font-size: 24px; }
  .cta-exp-content p { font-size: 14px; margin-bottom: 20px; }
  .cta-stat-block { padding: 20px 16px; gap: 16px; flex-wrap: wrap; justify-content: center; }
  .cta-stat-num { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding: 40px 0 20px; }
  .footer-brand p { font-size: 12px; }
  .carousel-arrow { width: 28px; height: 28px; }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; }
  .cta-exp-actions { flex-direction: column; align-items: center; }
  .expert-cta { flex-direction: column; align-items: center; }
  .cta-mini-btns .btn { width: 100%; }
  .opp-stat-card { padding: 24px 16px; }
  .opp-stat-number { font-size: 40px; }
  .hire-cta-bar { padding: 20px 16px; }
}

/* ---------- Large Phone (480px) ---------- */
@media (max-width: 480px) {
  .hero { padding: 88px 0 56px; }
  .hero-title { font-size: 24px; letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 13px; line-height: 1.6; }
  .section-title { font-size: 22px; }
  .section-subtitle { font-size: 13px; }
  .about, .positioning, .engage, .hire-experts, .expert-overview, .cta-expertise, .case-studies, .join-network, .contact {
    padding: 44px 0;
  }
  .section-header { margin-bottom: 24px; }
  .btn { padding: 10px 22px; font-size: 13px; }
  .btn-lg { padding: 12px 24px; font-size: 14px; }
  .expert-stats-bar { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .expert-card { padding: 16px 14px; }
  .expert-card h3 { font-size: 15px; }
  .engage-panel { padding: 20px 14px; }
  .contact-form { padding: 20px 14px; }
  .hire-sector-card { padding: 16px 12px; }
  .case-card { padding: 20px 14px; }
  .back-to-top { bottom: 20px; right: 16px; width: 38px; height: 38px; }
  .trust-block { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .opp-inner { gap: 28px; }
  .opp-stat-number { font-size: 36px; }
  .hire-cta-bar { padding: 16px 14px; gap: 16px; }
}

/* ---------- iPhone / Standard Phone (375px) ---------- */
@media (max-width: 375px) {
  .container { padding: 0 12px; }
  .nav-container { padding: 0 12px; }
  .hero { padding: 80px 0 48px; }
  .hero-title { font-size: 22px; }
  .hero-subtitle { font-size: 13px; }
  .section-title { font-size: 20px; }
  .section-subtitle { font-size: 12px; }
  .about, .positioning, .engage, .hire-experts, .expert-overview, .cta-expertise, .case-studies, .join-network, .contact {
    padding: 36px 0;
  }
  .section-header { margin-bottom: 20px; }
  .btn { padding: 9px 18px; font-size: 12px; }
  .btn-lg { padding: 10px 20px; font-size: 13px; }
  .btn-sm { padding: 7px 14px; font-size: 12px; }
  .ct-col-cell { padding: 12px 12px; }
  .ct-text { font-size: 11px; }
  .ct-col-header { padding: 14px 12px; }
  .ct-col-name { font-size: 9px; }
  .expert-card { padding: 14px 12px; }
  .expert-card h3 { font-size: 14px; }
  .engage-panel { padding: 18px 12px; }
  .contact-form { padding: 16px 12px; }
  .hire-sector-card { padding: 14px 10px; }
  .case-card { padding: 16px 12px; }
  .cta-exp-content h2 { font-size: 20px; }
  .cta-exp-content p { font-size: 13px; margin-bottom: 16px; }
  .cta-stat-block { padding: 16px 12px; gap: 12px; }
  .cta-stat-num { font-size: 20px; }
  .cta-stat-desc { font-size: 10px; }
  .opp-stat-number { font-size: 32px; }
  .hire-cta-bar { padding: 14px 12px; gap: 12px; }
  .footer { padding: 32px 0 16px; }
  .footer-grid { gap: 20px; }
  .footer-brand p { font-size: 11px; }
  .footer-links-group a { font-size: 12px; }
  .footer-bottom p { font-size: 11px; }
  .carousel-dots { gap: 6px; }
  .carousel-dot { width: 6px; height: 6px; }
}

/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(5, 39, 2, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(110, 185, 100, 0.2);
  color: var(--highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: rgba(5, 39, 2, 0.9);
  border-color: rgba(110, 185, 100, 0.4);
}
@media (max-width: 768px) {
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}
