/* ============================================
   FreelanceWorkNow.com - Complete Stylesheet
   ============================================ */

/* ---------- CSS Variables & Design Tokens ---------- */
:root {
  --navy: #0F172A;
  --navy-light: #1E293B;
  --navy-mid: #334155;
  --electric: #2563EB;
  --electric-light: #3B82F6;
  --electric-dark: #1D4ED8;
  --emerald: #10B981;
  --emerald-light: #34D399;
  --emerald-dark: #059669;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --gradient-primary: linear-gradient(135deg, #2563EB, #10B981);
  --gradient-dark: linear-gradient(135deg, #0F172A, #1E293B);
  --gradient-card: linear-gradient(145deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.05));
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1280px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--electric);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label {
  text-align: center;
  margin-bottom: 16px;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--electric);
  color: var(--electric);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--electric);
  padding: 8px 16px;
}
.btn-ghost:hover {
  background: rgba(37, 99, 235, 0.08);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.125rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

/* ---------- Feature Card ---------- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--electric);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 0.938rem;
  line-height: 1.6;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.navbar.scrolled {
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
}
.navbar .logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
}

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

.nav-links a {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--electric);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.875rem !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: url('https://images.unsplash.com/photo-1762341118883-13bbd9d79927?w=1920&auto=format&fit=crop&q=85&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDI1fHx8ZW58MHx8fHx8') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent 70%);
  pointer-events: none;
}

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

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content h1 .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat h3 {
  color: var(--white);
  font-size: 1.75rem;
}
.hero-stat p {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 0;
}

/* Hero Dashboard Mockup */
.hero-visual {
  position: relative;
}

.hero-dashboard {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 24px;
  animation: float 6s ease-in-out infinite;
}

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

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}
.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.dashboard-dots span:nth-child(1) { background: #EF4444; }
.dashboard-dots span:nth-child(2) { background: #F59E0B; }
.dashboard-dots span:nth-child(3) { background: #10B981; }

.dashboard-header h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
}
.dashboard-card .label {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.dashboard-card .value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.dashboard-card .value.green { color: var(--emerald); }
.dashboard-card .value.blue { color: var(--electric-light); }
.dashboard-card .trend {
  font-size: 0.75rem;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.dashboard-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dashboard-list-item:hover {
  background: rgba(255, 255, 255, 0.08);
}
.dashboard-list-item .job-title {
  font-size: 0.813rem;
  color: var(--white);
  font-weight: 500;
}
.dashboard-list-item .job-budget {
  font-size: 0.75rem;
  color: var(--emerald);
  font-weight: 600;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.floating-card .fc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.floating-card .fc-icon.green { background: rgba(16, 185, 129, 0.2); color: var(--emerald); }
.floating-card .fc-icon.blue { background: rgba(37, 99, 235, 0.2); color: var(--electric-light); }
.floating-card .fc-icon.purple { background: rgba(139, 92, 246, 0.2); color: #8B5CF6; }

.floating-card .fc-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
}
.floating-card .fc-text strong {
  font-size: 0.813rem;
  color: var(--white);
}

.floating-card:nth-child(1) { top: 10%; right: -15%; --delay: 0s; }
.floating-card:nth-child(2) { bottom: 20%; left: -20%; --delay: 2s; }
.floating-card:nth-child(3) { top: 50%; right: -20%; --delay: 4s; }

/* ---------- Categories Section ---------- */
.categories {
  padding: 100px 0;
  background: var(--gray-50);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--electric);
}
.category-card .cat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 12px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--electric);
  transition: var(--transition);
}
.category-card:hover .cat-icon {
  background: var(--electric);
  color: var(--white);
}
.category-card h4 {
  font-size: 0.938rem;
  margin-bottom: 4px;
}
.category-card p {
  font-size: 0.813rem;
  color: var(--gray-400);
}

/* ---------- Job Board Section ---------- */
.jobs-section {
  padding: 100px 0;
  background: var(--white);
}

.job-filters {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.job-filters select,
.job-filters input {
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  background: var(--white);
  color: var(--gray-700);
  transition: var(--transition);
  min-width: 160px;
  flex: 1;
}
.job-filters select:focus,
.job-filters input:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.job-filters .filter-btn {
  padding: 12px 24px;
  background: var(--electric);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.job-filters .filter-btn:hover {
  background: var(--electric-dark);
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
}
.job-card:hover {
  border-color: var(--electric);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.job-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.job-card .job-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.job-card .job-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.job-card .job-info .job-meta {
  display: flex;
  gap: 12px;
  font-size: 0.813rem;
  color: var(--gray-500);
  flex-wrap: wrap;
}
.job-card .job-info .job-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.job-card .job-info .job-meta .badge {
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-entry { background: rgba(16, 185, 129, 0.1); color: var(--emerald-dark); }
.badge-intermediate { background: rgba(37, 99, 235, 0.1); color: var(--electric); }
.badge-expert { background: rgba(139, 92, 246, 0.1); color: #7C3AED; }
.badge-remote { background: rgba(245, 158, 11, 0.1); color: #D97706; }

.job-card .job-budget {
  text-align: right;
  flex-shrink: 0;
  margin-right: 20px;
}
.job-card .job-budget .amount {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}
.job-card .job-budget .type {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ---------- Readiness Score ---------- */
.readiness {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
}

.readiness .section-title { color: var(--white); }
.readiness .section-subtitle { color: var(--gray-400); }

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

.readiness-questions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.readiness-question {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition);
}
.readiness-question:hover {
  background: rgba(255, 255, 255, 0.08);
}

.readiness-question .q-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.readiness-question .q-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.q-option {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--gray-300);
  font-family: var(--font-sans);
  font-size: 0.813rem;
  cursor: pointer;
  transition: var(--transition);
}
.q-option:hover {
  border-color: var(--electric-light);
  color: var(--white);
}
.q-option.active {
  background: var(--electric);
  border-color: var(--electric);
  color: var(--white);
}

/* Readiness Score Display */
.readiness-result {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  position: sticky;
  top: 100px;
}

.score-ring {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  position: relative;
}

.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-ring .bg-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 8;
}

.score-ring .progress-ring {
  fill: none;
  stroke: url(#scoreGradient);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
}

.score-ring .score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.score-ring .score-text .number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}
.score-ring .score-text .label {
  font-size: 0.813rem;
  color: var(--gray-400);
}

.readiness-result .score-label {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.readiness-result .score-desc {
  color: var(--gray-400);
  font-size: 0.938rem;
  margin-bottom: 24px;
}

.readiness-recs {
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 20px;
}
.readiness-recs h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 0.938rem;
}
.readiness-recs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-300);
  padding: 6px 0;
}
.readiness-recs li::before {
  content: '→';
  color: var(--emerald);
}

/* ---------- Rate Calculator ---------- */
.rate-calc {
  padding: 100px 0;
  background: var(--gray-50);
}

.rate-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.rate-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.rate-form .form-group {
  margin-bottom: 24px;
}
.rate-form .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.rate-form .form-group .input-wrap {
  position: relative;
}
.rate-form .form-group .input-wrap .prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-weight: 600;
  font-size: 0.938rem;
}
.rate-form .form-group input {
  width: 100%;
  padding: 12px 16px;
  padding-left: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--gray-800);
  transition: var(--transition);
}
.rate-form .form-group input:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.rate-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rate-result-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.rate-result-card:hover {
  box-shadow: var(--shadow-md);
}
.rate-result-card .result-label {
  font-size: 0.813rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.rate-result-card .result-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}
.rate-result-card .result-value .currency {
  font-size: 1.25rem;
  color: var(--gray-400);
}
.rate-result-card .result-value.green { color: var(--emerald-dark); }
.rate-result-card .result-value.blue { color: var(--electric); }

/* ---------- Proposal Builder ---------- */
.proposal {
  padding: 100px 0;
  background: var(--white);
}

.proposal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.proposal-form-side {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.proposal-form-side .form-group {
  margin-bottom: 20px;
}
.proposal-form-side .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.proposal-form-side .form-group textarea,
.proposal-form-side .form-group input,
.proposal-form-side .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.938rem;
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--white);
}
.proposal-form-side .form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.proposal-form-side .form-group textarea:focus,
.proposal-form-side .form-group input:focus,
.proposal-form-side .form-group select:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.skill-tag {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 0.813rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.skill-tag:hover {
  border-color: var(--electric);
  color: var(--electric);
}
.skill-tag.active {
  background: var(--electric);
  border-color: var(--electric);
  color: var(--white);
}

/* Proposal Output */
.proposal-output {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  min-height: 400px;
}

.proposal-output .placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  text-align: center;
  color: var(--gray-400);
}
.proposal-output .placeholder .ph-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}
.proposal-output .placeholder h4 {
  color: var(--gray-600);
  margin-bottom: 8px;
}
.proposal-output .placeholder p {
  font-size: 0.875rem;
}

.proposal-content {
  display: none;
}
.proposal-content.active {
  display: block;
}

.proposal-content .proposal-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--electric);
}
.proposal-content .proposal-header h3 {
  color: var(--navy);
  margin-bottom: 4px;
}
.proposal-content .proposal-header p {
  font-size: 0.813rem;
  color: var(--gray-500);
}

.proposal-content .proposal-body h4 {
  font-size: 1rem;
  color: var(--navy);
  margin: 16px 0 8px;
}
.proposal-content .proposal-body p {
  font-size: 0.938rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}
.proposal-content .proposal-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.proposal-content .proposal-body ul li {
  font-size: 0.938rem;
  color: var(--gray-600);
  margin-bottom: 6px;
  list-style: disc;
}

/* ---------- Roadmaps Section ---------- */
.roadmaps {
  padding: 100px 0;
  background: var(--navy);
}

.roadmaps .section-title { color: var(--white); }
.roadmaps .section-subtitle { color: var(--gray-400); }

.roadmap-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.roadmap-tab {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--gray-300);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.roadmap-tab:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.roadmap-tab.active {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 36px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item .tl-dot {
  position: absolute;
  left: 16px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 2px var(--electric);
}

.timeline-item .tl-content {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition);
}
.timeline-item .tl-content:hover {
  background: rgba(255, 255, 255, 0.08);
}

.timeline-item .tl-content .tl-step {
  font-size: 0.75rem;
  color: var(--emerald);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.timeline-item .tl-content h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.timeline-item .tl-content p {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.timeline-item .tl-content .tl-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.timeline-item .tl-content .tl-tags span {
  padding: 3px 10px;
  background: rgba(37, 99, 235, 0.15);
  color: var(--electric-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

/* ---------- Portfolio Showcase ---------- */
.portfolio {
  padding: 100px 0;
  background: var(--gray-50);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.portfolio-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.portfolio-card .pf-header {
  padding: 24px 24px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.portfolio-card .pf-header .pf-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}
.portfolio-card .pf-header .pf-name {
  font-weight: 700;
  font-size: 1rem;
}
.portfolio-card .pf-header .pf-role {
  font-size: 0.813rem;
  color: var(--gray-500);
}

.portfolio-card .pf-preview {
  padding: 0 24px;
  margin-bottom: 16px;
}
.portfolio-card .pf-preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--gray-100);
}

.portfolio-card .pf-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.portfolio-card .pf-stats .pf-stat {
  padding: 12px;
  text-align: center;
}
.portfolio-card .pf-stats .pf-stat strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
}
.portfolio-card .pf-stats .pf-stat span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.portfolio-card .pf-footer {
  padding: 16px 24px;
  display: flex;
  gap: 8px;
}

/* ---------- Toolkit Section ---------- */
.toolkit {
  padding: 100px 0;
  background: var(--white);
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.toolkit-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.toolkit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.toolkit-card .tk-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--electric);
  transition: var(--transition);
}
.toolkit-card:hover .tk-icon {
  background: var(--electric);
  color: var(--white);
}
.toolkit-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.toolkit-card p {
  font-size: 0.813rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ---------- Learning Center ---------- */
.learning {
  padding: 100px 0;
  background: var(--gray-50);
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.learning-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.learning-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.learning-card .lc-thumb {
  height: 160px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}
.learning-card .lc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.learning-card .lc-body {
  padding: 20px 24px;
}
.learning-card .lc-body .lc-category {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--electric);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.learning-card .lc-body h4 {
  font-size: 1.063rem;
  margin-bottom: 8px;
}
.learning-card .lc-body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 12px;
}
.learning-card .lc-body .lc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.813rem;
  color: var(--gray-400);
}
.learning-card .lc-body .lc-meta .lc-length {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---------- Client Acquisition ---------- */
.client-acq {
  padding: 100px 0;
  background: var(--white);
}

.client-acq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.client-acq-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.client-acq-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.05);
  transform: translate(30%, 30%);
}
.client-acq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.client-acq-card .ca-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
}
.client-acq-card h4 {
  font-size: 1.063rem;
  margin-bottom: 8px;
}
.client-acq-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.client-acq-card .ca-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--electric);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Success Stories ---------- */
.success-stories {
  padding: 100px 0;
  background: var(--navy);
}

.success-stories .section-title { color: var(--white); }
.success-stories .section-subtitle { color: var(--gray-400); }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.story-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.story-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}
.story-card .story-quote {
  font-size: 1.5rem;
  color: var(--emerald);
  margin-bottom: 12px;
}
.story-card p {
  color: var(--gray-300);
  font-size: 0.938rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.story-card .story-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.story-card .story-author .sa-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
}
.story-card .story-author .sa-info strong {
  display: block;
  color: var(--white);
  font-size: 0.938rem;
}
.story-card .story-author .sa-info span {
  font-size: 0.813rem;
  color: var(--gray-400);
}
.story-card .story-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.story-card .story-stats .ss-stat {
  text-align: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}
.story-card .story-stats .ss-stat strong {
  display: block;
  color: var(--emerald);
  font-size: 1.125rem;
}
.story-card .story-stats .ss-stat span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ---------- Statistics ---------- */
.stats-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
}
.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.stat-item .stat-label {
  font-size: 0.938rem;
  color: var(--gray-500);
  margin-top: 4px;
}
.stat-item .stat-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--electric);
}

/* ---------- Newsletter ---------- */
.newsletter {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
  pointer-events: none;
}

.newsletter .container {
  position: relative;
  z-index: 1;
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter p {
  color: var(--gray-400);
  font-size: 1.063rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--white);
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: var(--gray-500); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: var(--gray-300);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand .logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--electric);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.938rem;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.813rem;
  color: var(--gray-500);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: var(--gray-500);
}
.footer-bottom-links a:hover {
  color: var(--white);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- Page Header ---------- */
.page-header {
  padding: 160px 0 80px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 70%);
  pointer-events: none;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
}
.page-header p {
  color: var(--gray-400);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}
.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.page-header .breadcrumb a { color: var(--gray-400); }
.page-header .breadcrumb a:hover { color: var(--white); }
.page-header .breadcrumb span { color: var(--gray-500); }

/* ---------- Page Content ---------- */
.page-content {
  padding: 80px 0;
}

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

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--gray-300);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
}
.faq-question:hover {
  background: var(--gray-50);
}
.faq-question .faq-icon {
  font-size: 1.25rem;
  color: var(--electric);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.938rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---------- About Page ---------- */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}
.about-content h2 {
  margin-bottom: 16px;
  margin-top: 40px;
}
.about-content h2:first-child { margin-top: 0; }
.about-content p {
  font-size: 1.063rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-card .team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
}
.team-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.team-card p {
  font-size: 0.813rem;
  color: var(--gray-500);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.938rem;
  color: var(--gray-800);
  transition: var(--transition);
}
.contact-form .form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.contact-info-card:hover {
  box-shadow: var(--shadow-md);
}
.contact-info-card .ci-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--electric);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.contact-info-card .ci-text h4 {
  font-size: 0.938rem;
  margin-bottom: 2px;
}
.contact-info-card .ci-text p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ---------- Privacy/Terms ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.legal-content p {
  font-size: 0.938rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 0.938rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 6px;
  list-style: disc;
}

/* ---------- Jobs Page ---------- */
.jobs-page-content .container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

.jobs-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.jobs-sidebar .filter-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.jobs-sidebar .filter-section h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.filter-group {
  margin-bottom: 16px;
}
.filter-group label {
  display: block;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.filter-group select,
.filter-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--gray-700);
}
.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--electric);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
  width: auto;
  accent-color: var(--electric);
}

/* ---------- Career Paths Full Page ---------- */
.career-paths-full .paths-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.career-paths-full .path-btn {
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.career-paths-full .path-btn:hover {
  border-color: var(--electric);
  color: var(--electric);
}
.career-paths-full .path-btn.active {
  background: var(--electric);
  border-color: var(--electric);
  color: var(--white);
}

.path-detail {
  max-width: 800px;
  margin: 0 auto;
}
.path-detail .path-header {
  text-align: center;
  margin-bottom: 48px;
}
.path-detail .path-header h2 {
  margin-bottom: 8px;
}
.path-detail .path-header p {
  color: var(--gray-500);
}
.path-detail .path-income {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
}
.path-detail .path-income .pi-item {
  text-align: center;
}
.path-detail .path-income .pi-item .pi-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}
.path-detail .path-income .pi-item .pi-label {
  font-size: 0.813rem;
  color: var(--gray-500);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .readiness-grid { grid-template-columns: 1fr; }
  .rate-calc-grid { grid-template-columns: 1fr; }
  .proposal-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .jobs-page-content .container { grid-template-columns: 1fr; }
  .jobs-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--gray-200);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-links a:hover { background: var(--gray-50); }
  .mobile-toggle { display: flex; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }

  .job-card { flex-direction: column; align-items: stretch; gap: 12px; }
  .job-card .job-budget { text-align: left; margin-right: 0; }
  .job-filters { flex-direction: column; }
  .job-filters select, .job-filters input { min-width: auto; width: 100%; }

  .page-header { padding: 140px 0 60px; }
  .page-header h1 { font-size: 2rem; }

  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero h1 { font-size: 2.25rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stats .hero-stat { flex: 1; min-width: 100px; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .category-card { padding: 16px; }
  .category-card .cat-icon { width: 36px; height: 36px; font-size: 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item .stat-number { font-size: 1.75rem; }
  .hero h1 { font-size: 1.75rem; }
}

/* ---------- Loading Spinner ---------- */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Contact Form States ---------- */
.loading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--electric);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
}

.loading .spinner {
  width: 18px;
  height: 18px;
  border-width: 2px;
  border-color: rgba(37, 99, 235, 0.2);
  border-top-color: var(--electric);
  flex-shrink: 0;
}

.sent-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-dark);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}

.sent-message::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.error-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  background: rgba(239, 68, 68, 0.08);
  color: #DC2626;
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  white-space: pre-line;
}

.error-message::before {
  content: '!';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #DC2626;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.required {
  color: #DC2626;
}

input.error,
textarea.error,
select.error {
  border-color: #DC2626 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  font-size: 0.875rem;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast.success { border-left: 4px solid var(--emerald); }
.toast.error { border-left: 4px solid #EF4444; }

/* ---------- Chart Bars ---------- */
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 16px 0;
}
.chart-bar {
  flex: 1;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  min-height: 8px;
  transition: height 0.6s ease;
  position: relative;
}
.chart-bar .bar-label {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.688rem;
  color: var(--gray-400);
  white-space: nowrap;
}
