/* ================================================
   STAFFPRO INC. — MAIN STYLESHEET
   Brand: Navy Blue #2540C8 / Gray #7C7C92
   Font: Inter (Google Fonts)
   ================================================ */

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

/* ------------------------------------------------
   CSS VARIABLES
   ------------------------------------------------ */
:root {
  /* Brand Blues */
  --blue-950: #0B1550;
  --blue-900: #111D6B;
  --blue-800: #162490;
  --blue-700: #1A2FA8;
  --blue-600: #1E36C0;
  --blue-500: #2540C8;
  --blue-400: #3D5ADA;
  --blue-300: #6B83F0;
  --blue-200: #A5B4FF;
  --blue-100: #DCE3FF;
  --blue-50:  #EEF1FF;

  /* Neutrals */
  --gray-900: #1C1C2E;
  --gray-800: #2D2D42;
  --gray-700: #424258;
  --gray-600: #5C5C72;
  --gray-500: #7C7C92;
  --gray-400: #9C9CB0;
  --gray-300: #BCBCCC;
  --gray-200: #D8D8E6;
  --gray-100: #EEEEF6;
  --gray-50:  #F7F7FB;
  --white:    #FFFFFF;

  /* Semantic */
  --color-primary:        var(--blue-500);
  --color-primary-dark:   var(--blue-700);
  --color-primary-darker: var(--blue-900);
  --color-primary-light:  var(--blue-50);
  --color-text:           var(--gray-900);
  --color-text-secondary: var(--gray-600);
  --color-text-muted:     var(--gray-400);
  --color-border:         var(--gray-200);
  --color-bg:             var(--white);
  --color-bg-light:       var(--gray-50);

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --container:        1200px;
  --container-narrow: 820px;
  --nav-height:       76px;

  /* Radius */
  --radius-sm:   6px;
  --radius:      10px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0, 0, 20, 0.06);
  --shadow:      0 2px 12px rgba(0, 0, 20, 0.08);
  --shadow-md:   0 4px 20px rgba(0, 0, 20, 0.10);
  --shadow-lg:   0 8px 40px rgba(0, 0, 20, 0.14);
  --shadow-blue: 0 4px 24px rgba(37, 64, 200, 0.35);

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --trans:      0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ------------------------------------------------
   LAYOUT
   ------------------------------------------------ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section        { padding-block: var(--sp-24); }
.section-sm     { padding-block: var(--sp-16); }
.section-light  { background: var(--color-bg-light); }

/* ------------------------------------------------
   TYPOGRAPHY HELPERS
   ------------------------------------------------ */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--sp-3);
}

.eyebrow-light { color: var(--blue-200); }

.section-title {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
}

.section-title-light { color: var(--white); }

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-top: var(--sp-4);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-12);
}

/* ------------------------------------------------
   BUTTONS
   ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.875rem 1.75rem;
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--trans);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 6px 28px rgba(37, 64, 200, 0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--blue-700);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn-sm  { padding: 0.625rem 1.25rem; font-size: var(--text-sm); }
.btn-lg  { padding: 1.125rem 2.25rem; font-size: var(--text-lg); }

/* ------------------------------------------------
   NAVIGATION
   ------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: all var(--trans-slow);
}

.nav.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-svg     { height: 44px; width: auto; display: block; }
.footer-logo-svg  { height: 34px; width: auto; display: block; }
.nav-logo-img     { height: 44px; width: auto; display: block; }
.footer-logo-img  { height: 34px; width: auto; display: block; }
/* Text fallback shown only when logo image fails to load */
.nav-logo-fallback,
.footer-logo-fallback {
  display: none;
  align-items: center;
  font-family: var(--font);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.nav-logo-fallback    { font-size: 1.65rem; }
.footer-logo-fallback { font-size: 1.3rem; }
.nav-logo-fallback .lf-staff,
.footer-logo-fallback .lf-staff { color: var(--color-primary); }
.nav-logo-fallback .lf-pro      { color: var(--gray-500); }
.footer-logo-fallback .lf-pro   { color: rgba(255,255,255,0.45); }
.footer-logo-fallback .lf-staff { color: rgba(255,255,255,0.88); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--trans);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--trans);
}
.nav-link:hover         { color: var(--color-primary); }
.nav-link:hover::after  { transform: scaleX(1); }
.nav-link.active        { color: var(--color-primary); }
.nav-link.active::after { transform: scaleX(1); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: var(--sp-2); }

/* Resources Page */
.resource-section-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.resource-section-title svg { width: 22px; height: 22px; color: var(--color-primary); }

.resource-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}
.resource-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--trans-slow);
}
.resource-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.resource-card-icon {
  width: 48px; height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.resource-card-icon svg { width: 22px; height: 22px; color: var(--color-primary); }
.resource-card-title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--sp-1);
}
.resource-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
}
.resource-card-arrow {
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
  color: var(--gray-300);
  transition: color var(--trans), transform var(--trans);
}
.resource-card:hover .resource-card-arrow { color: var(--color-primary); transform: translateX(3px); }

@media (max-width: 640px) {
  .resource-cards { grid-template-columns: 1fr; }
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
  z-index: 99;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: var(--sp-1);
}
.nav-mobile.open { display: flex; }

.nav-mobile-link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: all var(--trans);
}
.nav-mobile-link:hover { background: var(--blue-50); color: var(--color-primary); }
.nav-mobile-divider   { height: 1px; background: var(--color-border); margin: var(--sp-3) 0; }
.nav-mobile-cta       { margin-top: var(--sp-2); text-align: center; justify-content: center; }

/* ------------------------------------------------
   HERO — HOME PAGE
   ------------------------------------------------ */
.hero {
  padding-top: calc(var(--nav-height) + var(--sp-20));
  padding-bottom: var(--sp-24);
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-800) 45%, var(--blue-600) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(61, 90, 218, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(107, 131, 240, 0.2) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.035) 1px, transparent 0);
  background-size: 32px 32px;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--blue-200);
  margin-bottom: var(--sp-6);
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: #4ADE80;
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--sp-6);
}
.hero-title em {
  font-style: normal;
  color: var(--blue-200);
}

.hero-text {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--sp-10);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Hero Visual Card */
.hero-visual { display: flex; justify-content: center; }

.hero-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 400px;
}

.hero-card-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--sp-5);
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  margin-bottom: var(--sp-2);
  transition: background var(--trans);
}
.hero-service-item:last-of-type { margin-bottom: 0; }
.hero-service-item:hover        { background: rgba(255, 255, 255, 0.11); }

.hero-service-icon {
  width: 34px; height: 34px;
  background: var(--blue-500);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-service-icon svg { width: 17px; height: 17px; color: white; }

.hero-service-name { font-size: var(--text-sm); font-weight: 600; color: rgba(255,255,255,0.9); }
.hero-service-sub  { font-size: var(--text-xs); color: rgba(255,255,255,0.45); margin-top: 1px; }

.hero-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(37, 64, 200, 0.7);
  border: 1px solid rgba(165, 180, 255, 0.3);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--blue-100);
  transition: all var(--trans);
}
.hero-card-cta:hover { background: var(--blue-500); color: white; }
.hero-card-cta svg   { width: 15px; height: 15px; }

/* ------------------------------------------------
   STATS BAR
   ------------------------------------------------ */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--color-border);
}
.stat-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* ------------------------------------------------
   SERVICES GRID
   ------------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: all var(--trans-slow);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-slow);
}
.service-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
}
.service-icon svg { width: 26px; height: 26px; color: var(--color-primary); }

.service-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--color-text);
}

.service-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.service-list {
  margin-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}
.service-list-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* Services detail page — larger cards */
.service-card-lg {
  background: var(--white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-10);
  margin-bottom: var(--sp-6);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-8);
  align-items: start;
  transition: box-shadow var(--trans-slow);
}
.service-card-lg:hover { box-shadow: var(--shadow-md); }

.service-icon-lg {
  width: 64px; height: 64px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon-lg svg { width: 32px; height: 32px; color: var(--color-primary); }

.service-card-body {}
.service-card-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}
.service-card-text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}

.service-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2) var(--sp-8);
}
.service-bullet {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}
.service-bullet-dot {
  width: 8px; height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4em;
}

/* ------------------------------------------------
   FEATURES (WHY STAFFPRO)
   ------------------------------------------------ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

.feature-item {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--trans);
}
.feature-item:hover { box-shadow: var(--shadow); border-color: var(--blue-200); }

.feature-icon {
  width: 48px; height: 48px;
  background: var(--color-primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; color: white; }

.feature-title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.feature-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* ------------------------------------------------
   HOW IT WORKS
   ------------------------------------------------ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(16.66% + 32px); right: calc(16.66% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-300), var(--blue-200));
}

.step {
  text-align: center;
  padding: var(--sp-6);
  position: relative;
}
.step-number {
  width: 64px; height: 64px;
  background: var(--color-primary);
  color: var(--white);
  font-size: var(--text-xl);
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5);
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}
.step-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* ------------------------------------------------
   CTA BANNER
   ------------------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: var(--radius-xl);
  padding: var(--sp-16) var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 24px 24px;
}
.cta-banner-inner { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}
.cta-text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sp-8);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.75;
}
.cta-text + .cta-actions { margin-top: 0; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ------------------------------------------------
   PAGE HERO (inner pages)
   ------------------------------------------------ */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--sp-16));
  padding-bottom: var(--sp-16);
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-800) 50%, var(--blue-700) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 28px 28px;
}
.page-hero-inner { position: relative; z-index: 1; }

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}
.page-hero-text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ------------------------------------------------
   ABOUT PAGE
   ------------------------------------------------ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.value-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-5);
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--trans);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-200); }

.value-icon {
  width: 56px; height: 56px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-4);
}
.value-icon svg { width: 26px; height: 26px; color: var(--color-primary); }

.value-title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.value-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.split-visual {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.split-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-6);
}
.split-stat-num {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.split-stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}

/* ------------------------------------------------
   CONTACT PAGE
   ------------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: var(--sp-10);
  align-items: start;
}

.contact-info-card {
  background: var(--blue-900);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-6));
}
.contact-info-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}
.contact-info-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}

.contact-detail {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--blue-200); }
.contact-detail-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-1);
}
.contact-detail-value {
  font-size: var(--text-base);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.contact-detail-value a:hover { color: var(--blue-200); }

.contact-divider { height: 1px; background: rgba(255,255,255,0.1); margin: var(--sp-6) 0; }

.contact-portal-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--trans);
  margin-top: var(--sp-6);
}
.contact-portal-btn:hover { background: var(--blue-500); border-color: var(--blue-400); }
.contact-portal-btn svg { width: 18px; height: 18px; color: var(--blue-200); }

.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
}
.contact-form-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.contact-form-sub {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--sp-8);
}

/* Form */
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-group  { margin-bottom: var(--sp-5); }
.form-group:last-child { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--sp-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.8125rem 1rem;
  font-size: var(--text-base);
  font-family: var(--font);
  color: var(--color-text);
  background: var(--white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 64, 200, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-400); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-select   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237C7C92' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 2.5rem; }

.form-submit { width: 100%; justify-content: center; margin-top: var(--sp-2); padding: 1rem; font-size: var(--text-base); }

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-8);
}
.form-success.show { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-4);
}
.form-success-icon svg { width: 30px; height: 30px; color: #16A34A; }
.form-success-title   { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--sp-2); }
.form-success-text    { font-size: var(--text-sm); color: var(--color-text-secondary); }

/* ------------------------------------------------
   FOOTER
   ------------------------------------------------ */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.65);
  padding-top: var(--sp-16);
}

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

.footer-logo { margin-bottom: var(--sp-4); }
.footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: 0.88; }
.footer-logo-text {
  display: flex;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}
.footer-logo-text .f-staff { color: var(--blue-300); }
.footer-logo-text .f-pro   { color: var(--gray-400); }

.footer-tagline {
  font-size: var(--text-sm);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
  color: rgba(255,255,255,0.5);
  max-width: 260px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-3);
  color: rgba(255,255,255,0.55);
  transition: color var(--trans);
}
.footer-contact-item:hover { color: rgba(255,255,255,0.9); }
.footer-contact-icon { width: 16px; height: 16px; color: var(--blue-300); flex-shrink: 0; margin-top: 2px; }

.footer-col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--sp-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--trans);
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-5);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

/* ------------------------------------------------
   ANIMATIONS
   ------------------------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-delay-1 { transition-delay: 0.08s; }
.fade-in-delay-2 { transition-delay: 0.16s; }
.fade-in-delay-3 { transition-delay: 0.24s; }
.fade-in-delay-4 { transition-delay: 0.32s; }
.fade-in-delay-5 { transition-delay: 0.40s; }
.fade-in-delay-6 { transition-delay: 0.48s; }

/* ------------------------------------------------
   RESPONSIVE
   ------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; text-align: center; }
  .hero-text         { margin-inline: auto; }
  .hero-actions      { justify-content: center; }
  .hero-visual       { display: none; }

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

  .footer-grid       { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }

  .stats-inner       { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(odd)::before { display: none; }

  .split-section     { grid-template-columns: 1fr; }
  .contact-layout    { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .nav-links, .nav-actions { display: none; }
  .nav-toggle               { display: flex; }

  .section    { padding-block: var(--sp-16); }
  .section-sm { padding-block: var(--sp-10); }

  .services-grid   { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr; }
  .steps-grid      { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .values-grid     { grid-template-columns: 1fr 1fr; }
  .service-bullets { grid-template-columns: 1fr; }

  .service-card-lg {
    grid-template-columns: 1fr;
    padding: var(--sp-6);
  }

  .cta-banner { padding: var(--sp-10) var(--sp-6); border-radius: var(--radius-lg); }

  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--sp-2); text-align: center; }

  .form-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}
