/* EcomVA Hub - Shared Stylesheet */

:root {
  --primary: #1B3F6E;
  --accent: #FF6B35;
  --teal: #00B4D8;
  --light-bg: #F8FAFC;
  --text: #1A202C;
  --muted: #64748B;
  --white: #FFFFFF;
  --border: #E2E8F0;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
}

.nav-logo span { color: var(--accent); }

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover { background: #e85d2a; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

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

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2a4e 100%);
  color: var(--white);
  padding: 90px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,107,53,0.2);
  border: 1px solid rgba(255,107,53,0.4);
  color: #FFB59A;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  max-width: 760px;
  margin: 0 auto 20px;
}

.hero h1 span { color: var(--accent); }

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

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-hero {
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
}

.btn-hero:hover { background: #e85d2a; transform: translateY(-2px); }

.btn-hero-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
}

.btn-hero-ghost:hover { background: rgba(255,255,255,0.22); }

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 52px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--accent); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* SECTION SHARED */
section { padding: 80px 5%; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* HOW IT WORKS */
.how-it-works { background: var(--light-bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 52px;
}

.step-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.step-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }

.step-num {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.step-card p { font-size: 0.92rem; color: var(--muted); }

/* PRODUCTS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--white);
}

.product-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }

.product-badge {
  background: var(--primary);
  color: var(--white);
  padding: 28px 28px 24px;
}

.product-badge .tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-badge h3 { font-size: 1.2rem; font-weight: 800; color: var(--white); }

.product-body { padding: 24px 28px 28px; }

.product-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 16px;
}

.product-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }

.product-features { list-style: none; margin-bottom: 24px; }

.product-features li {
  font-size: 0.92rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.product-features li:last-child { border-bottom: none; }

/* WHY */
.why { background: var(--primary); color: var(--white); }
.why .section-title { color: var(--white); }
.why .section-label { color: var(--teal); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 28px 24px;
  transition: background 0.2s;
}

.why-card:hover { background: rgba(255,255,255,0.12); }

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

.why-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--teal), #0077b6);
  color: var(--white);
  text-align: center;
  padding: 70px 5%;
}

.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.cta-band p { font-size: 1.05rem; opacity: 0.85; max-width: 480px; margin: 0 auto 32px; }

/* LEGAL PAGES */
.legal-hero {
  background: var(--primary);
  color: var(--white);
  padding: 60px 5%;
  text-align: center;
}

.legal-hero h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; }

.legal-hero p {
  margin-top: 10px;
  opacity: 0.7;
  font-size: 0.95rem;
}

.legal-content {
  max-width: 780px;
  margin: 60px auto;
  padding: 0 5%;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 12px;
}

.legal-content p, .legal-content li {
  font-size: 0.97rem;
  color: #374151;
  margin-bottom: 12px;
  line-height: 1.75;
}

.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--teal); text-decoration: underline; }

/* FOOTER */
footer {
  background: #0d1f35;
  color: rgba(255,255,255,0.6);
  padding: 48px 5% 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo { color: var(--white); margin-bottom: 10px; }

.footer-brand p { font-size: 0.88rem; max-width: 260px; line-height: 1.65; }

.footer-links h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }

.footer-links ul { list-style: none; }

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

.footer-links a { font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.83rem;
}

/* MOBILE NAV TOGGLE */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
  padding: 4px 8px;
}

/* BREADCRUMB */
.breadcrumb {
  padding: 12px 5%;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--teal); }
.breadcrumb span { margin: 0 6px; }

/* BLOG INDEX */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }

.blog-card-img {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2a4e 100%);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.blog-tag {
  display: inline-block;
  background: rgba(0,180,216,0.1);
  color: var(--teal);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p { font-size: 0.9rem; color: var(--muted); flex: 1; margin-bottom: 16px; }

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: auto;
}

.read-more { color: var(--teal); font-weight: 600; font-size: 0.88rem; }
.read-more:hover { text-decoration: underline; }

/* BLOG ARTICLE */
.article-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2a4e 100%);
  color: var(--white);
  padding: 70px 5% 60px;
  text-align: center;
}

.article-hero .blog-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

.article-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.25;
  max-width: 780px;
  margin: 16px auto 20px;
}

.article-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.88rem;
  opacity: 0.75;
}

.article-content {
  max-width: 780px;
  margin: 56px auto;
  padding: 0 5%;
}

.article-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin: 40px 0 16px; }
.article-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 28px 0 12px; }
.article-content p { font-size: 1rem; color: #374151; line-height: 1.8; margin-bottom: 18px; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 18px; }
.article-content li { font-size: 1rem; color: #374151; line-height: 1.8; margin-bottom: 8px; }
.article-content a { color: var(--teal); text-decoration: underline; }

.article-content .callout {
  background: rgba(0,180,216,0.08);
  border-left: 4px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.article-content .callout p { margin-bottom: 0; color: var(--primary); font-weight: 500; }

.article-cta {
  background: linear-gradient(135deg, var(--primary), #0d2a4e);
  color: var(--white);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  margin: 48px 0;
}
.article-cta h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }

/* RESOURCES PAGE */
.resource-section { margin-bottom: 56px; }
.resource-section h2 { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }

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

.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.resource-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.resource-icon { font-size: 1.8rem; flex-shrink: 0; }
.resource-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.resource-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.5; margin-bottom: 8px; }
.resource-card a { font-size: 0.84rem; color: var(--teal); font-weight: 600; }
.resource-card a:hover { text-decoration: underline; }
.resource-badge { display: inline-block; background: #dcfce7; color: #15803d; padding: 2px 8px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }

/* SUCCESS STORIES */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.story-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
}

.story-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--teal);
  opacity: 0.15;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

.story-quote { font-size: 1rem; color: #374151; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.story-person { display: flex; align-items: center; gap: 14px; }

.story-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.story-name { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.story-role { font-size: 0.82rem; color: var(--muted); }
.story-income { font-size: 0.82rem; color: #15803d; font-weight: 600; margin-top: 2px; }

.story-stats { display: flex; gap: 16px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.story-stat { text-align: center; flex: 1; }
.story-stat-num { font-size: 1.2rem; font-weight: 900; color: var(--accent); }
.story-stat-label { font-size: 0.75rem; color: var(--muted); }

/* FAQ PAGE */
.faq-list { margin-top: 40px; max-width: 780px; margin-left: auto; margin-right: auto; }

.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--light-bg); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--teal);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: var(--light-bg); }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.97rem; color: #374151; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 500px; }

/* JOB BOARD */
.jobs-header {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2a4e 100%);
  color: var(--white);
  padding: 60px 5% 50px;
  text-align: center;
}
.jobs-header h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; margin-bottom: 14px; }
.jobs-header p { font-size: 1.1rem; opacity: 0.8; max-width: 520px; margin: 0 auto 28px; }

.jobs-container { max-width: 900px; margin: 0 auto; padding: 40px 5%; }

.jobs-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--teal); color: var(--teal); background: rgba(0,180,216,0.06); }

.jobs-count { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }

.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.job-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.09); border-color: var(--teal); }

.job-logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #0d5c99);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.job-info { flex: 1; }
.job-title { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.job-company { font-size: 0.9rem; color: var(--muted); margin-bottom: 10px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }

.job-tag {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.tag-amazon { background: #fff7ed; color: #c2410c; }
.tag-shopify { background: #f0fdf4; color: #15803d; }
.tag-general { background: #eff6ff; color: #1d4ed8; }
.tag-customer { background: #fdf4ff; color: #7e22ce; }
.tag-remote { background: #f0fdf4; color: #15803d; }
.tag-fulltime { background: #eff6ff; color: #1d4ed8; }
.tag-parttime { background: #fefce8; color: #854d0e; }

.job-rate { font-size: 1rem; font-weight: 800; color: var(--accent); }
.job-posted { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.job-apply { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.btn-apply { background: var(--teal); color: var(--white); padding: 10px 20px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; white-space: nowrap; transition: background 0.2s; }
.btn-apply:hover { background: #0090ad; }

/* POST A JOB FORM */
.post-job-hero {
  background: linear-gradient(135deg, var(--teal) 0%, #0077b6 100%);
  color: var(--white);
  padding: 60px 5% 50px;
  text-align: center;
}
.post-job-hero h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
.post-job-hero p { font-size: 1.05rem; opacity: 0.85; max-width: 500px; margin: 0 auto; }

.form-container { max-width: 680px; margin: 48px auto; padding: 0 5%; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 600; color: var(--primary); margin-bottom: 8px; font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.97rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.83rem; color: var(--muted); margin-top: 6px; }
.form-submit { width: 100%; padding: 14px; background: var(--accent); color: var(--white); border: none; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: #e85d2a; }

/* RESPONSIVE */
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 5%; gap: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); z-index: 99; }
  nav.nav-open .nav-links { display: flex; }
  .nav-mobile-toggle { display: block; }
  .hero-stats { gap: 24px; }
  .footer-top { flex-direction: column; }
  .job-card { flex-direction: column; }
  .job-apply { align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
}
