/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#003366;
  --navy-light:#004a99;
  --navy-dark:#002244;
  --black:#000;
  --white:#fff;
  --gray-50:#f8f9fa;
  --gray-100:#f1f3f5;
  --gray-200:#e9ecef;
  --gray-300:#dee2e6;
  --gray-400:#ced4da;
  --gray-500:#868e96;
  --gray-600:#495057;
  --gray-700:#343a40;
  --gray-800:#212529;
  --radius:8px;
  --radius-lg:12px;
  --shadow-sm:0 1px 3px rgba(0,0,0,.08);
  --shadow:0 4px 12px rgba(0,0,0,.1);
  --shadow-lg:0 8px 30px rgba(0,0,0,.12);
  --transition:0.25s ease;
}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  color:var(--gray-800);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:var(--navy);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--navy-light)}
img{max-width:100%;display:block}
ul{list-style:none}

/* ===== UTILITIES ===== */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 24px}
.section{padding:80px 0}
.section--gray{background:var(--gray-50)}
.section--navy{background:var(--navy);color:var(--white)}
.section--navy a{color:var(--gray-200)}
.section--navy a:hover{color:var(--white)}
.text-center{text-align:center}
.text-navy{color:var(--navy)}
.text-white{color:var(--white)}
.text-gray{color:var(--gray-500)}
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-48{margin-top:48px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}.mb-48{margin-bottom:48px}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.2;color:var(--gray-800)}
.section--navy h1,.section--navy h2,.section--navy h3{color:var(--white)}
h1{font-size:clamp(2rem,5vw,3.25rem);letter-spacing:-0.02em}
h2{font-size:clamp(1.5rem,3.5vw,2.25rem);letter-spacing:-0.01em}
h3{font-size:1.25rem}
.section-subtitle{
  font-size:1.125rem;
  color:var(--gray-500);
  max-width:640px;
  margin:12px auto 0;
}
.section--navy .section-subtitle{color:rgba(255,255,255,0.7)}
.label{
  display:inline-block;
  font-size:0.75rem;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--navy);
  margin-bottom:8px;
}
.section--navy .label{color:rgba(255,255,255,0.5)}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 28px;
  font-size:0.9375rem;font-weight:600;
  border-radius:var(--radius);
  border:2px solid transparent;
  cursor:pointer;
  transition:all var(--transition);
  text-align:center;
}
.btn--primary{background:var(--navy);color:var(--white);border-color:var(--navy)}
.btn--primary:hover{background:var(--navy-light);border-color:var(--navy-light);color:var(--white)}
.btn--outline{background:transparent;color:var(--navy);border-color:var(--navy)}
.btn--outline:hover{background:var(--navy);color:var(--white)}
.btn--white{background:var(--white);color:var(--navy);border-color:var(--white)}
.btn--white:hover{background:var(--gray-100);border-color:var(--gray-100);color:var(--navy)}
.btn--ghost{background:transparent;color:var(--white);border-color:rgba(255,255,255,0.3)}
.btn--ghost:hover{background:rgba(255,255,255,0.1);border-color:rgba(255,255,255,0.5)}
.btn--sm{padding:8px 20px;font-size:0.875rem}
.btn--lg{padding:16px 36px;font-size:1.0625rem}

/* ===== HEADER / NAV ===== */
.header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--gray-200);
  transition:box-shadow var(--transition);
}
.header.scrolled{box-shadow:var(--shadow)}
.header__inner{
  display:flex;align-items:center;justify-content:space-between;
  height:72px;
}
.logo{
  font-size:1.5rem;font-weight:800;
  color:var(--navy);letter-spacing:-0.03em;
}
.logo span{color:var(--gray-800)}
.nav{display:flex;align-items:center;gap:32px}
.nav__link{
  font-size:0.9375rem;font-weight:500;
  color:var(--gray-600);
  transition:color var(--transition);
  position:relative;
}
.nav__link:hover,.nav__link--active{color:var(--navy)}
.nav__link--active::after{
  content:'';position:absolute;bottom:-4px;left:0;right:0;
  height:2px;background:var(--navy);border-radius:1px;
}
.nav__cta{margin-left:8px}

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

/* ===== HERO ===== */
.hero{
  padding:140px 0 100px;
  background:linear-gradient(160deg,var(--navy-dark) 0%,var(--navy) 50%,var(--navy-light) 100%);
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';position:absolute;top:-50%;right:-20%;
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(255,255,255,0.04) 0%,transparent 70%);
  border-radius:50%;
}
.hero::after{
  content:'';position:absolute;bottom:-30%;left:-10%;
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(255,255,255,0.03) 0%,transparent 70%);
  border-radius:50%;
}
.hero__content{position:relative;z-index:1;max-width:720px}
.hero h1{color:var(--white);margin-bottom:20px}
.hero__tagline{
  font-size:clamp(1.125rem,2.5vw,1.375rem);
  color:rgba(255,255,255,0.8);
  line-height:1.5;
  margin-bottom:36px;
}
.hero__actions{display:flex;gap:16px;flex-wrap:wrap}
.hero__stats{
  display:flex;gap:48px;margin-top:56px;
  padding-top:32px;border-top:1px solid rgba(255,255,255,0.15);
}
.hero__stat-number{font-size:1.75rem;font-weight:700;color:var(--white)}
.hero__stat-label{font-size:0.875rem;color:rgba(255,255,255,0.6);margin-top:4px}

/* ===== HERO SPLIT LAYOUT ===== */
.hero--split{padding:140px 0 60px}
.hero__grid{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:60px;
  align-items:center;
}

/* ===== WORKFLOW VISUAL ===== */
.hero__visual{position:relative;z-index:1}
.workflow{display:flex;flex-direction:column;align-items:center;gap:0}

/* Staggered fade-in */
.wf-step{opacity:0;animation:wfFadeUp 0.6s ease forwards}
.wf-step:nth-child(1){animation-delay:0.3s}
.wf-step:nth-child(2){animation-delay:0.8s}
.wf-step:nth-child(3){animation-delay:1.3s}
.wf-step:nth-child(4){animation-delay:1.8s}
.wf-step:nth-child(5){animation-delay:2.3s}
@keyframes wfFadeUp{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}

/* Screen mockups */
.wf-screen{
  width:100%;max-width:360px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:10px;
  overflow:hidden;
}
.wf-screen--small{max-width:240px}
.wf-screen__bar{
  display:flex;gap:5px;
  padding:8px 12px;
  background:rgba(255,255,255,0.04);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.wf-screen__bar span{
  width:8px;height:8px;border-radius:50%;
  background:rgba(255,255,255,0.15);
}
.wf-screen__body{padding:16px}

/* Waveform animation */
.wf-waveform{
  display:flex;align-items:flex-end;gap:3px;
  height:48px;margin-bottom:12px;
}
.wf-waveform span{
  flex:1;
  background:linear-gradient(180deg,rgba(100,180,255,0.7),rgba(100,180,255,0.3));
  border-radius:2px;
  animation:wfPulse 1.5s ease-in-out infinite alternate;
}
.wf-waveform span:nth-child(odd){animation-delay:0.2s}
.wf-waveform span:nth-child(3n){animation-delay:0.5s}
.wf-waveform span:nth-child(4n){animation-delay:0.8s}
@keyframes wfPulse{
  0%{transform:scaleY(1)}
  100%{transform:scaleY(0.6)}
}

/* Timeline with moving playhead */
.wf-timeline{
  height:6px;
  background:rgba(255,255,255,0.1);
  border-radius:3px;
  position:relative;
  overflow:hidden;
}
.wf-timeline__track{
  position:absolute;left:0;top:0;bottom:0;width:0;
  background:linear-gradient(90deg,rgba(100,180,255,0.6),rgba(100,180,255,0.9));
  border-radius:3px;
  animation:wfScrub 4s ease-in-out infinite;
}
.wf-timeline__playhead{
  position:absolute;top:-3px;left:0;
  width:12px;height:12px;
  background:var(--white);
  border-radius:50%;
  box-shadow:0 0 8px rgba(100,180,255,0.6);
  animation:wfScrubHead 4s ease-in-out infinite;
}
@keyframes wfScrub{
  0%,100%{width:0}
  50%{width:100%}
}
@keyframes wfScrubHead{
  0%,100%{left:0}
  50%{left:calc(100% - 12px)}
}

/* Arrow connectors */
.wf-arrow{
  display:flex;flex-direction:column;align-items:center;
  padding:8px 0;
}
.wf-arrow__label{
  font-size:0.75rem;
  color:rgba(255,255,255,0.4);
  margin-top:4px;
  letter-spacing:0.02em;
}

/* Caption preview animation */
.wf-caption-preview{
  text-align:center;
  padding:12px 8px;
}
.wf-caption-line{
  font-weight:700;
  font-size:0.9375rem;
  color:var(--white);
  padding:4px 10px;
  border-radius:4px;
  display:inline-block;
}
.wf-caption-line--1{
  background:rgba(255,200,0,0.85);
  color:#1a1a1a;
  animation:wfCaption1 3s ease-in-out infinite;
}
.wf-caption-line--2{
  background:rgba(255,200,0,0.85);
  color:#1a1a1a;
  margin-top:4px;
  animation:wfCaption2 3s ease-in-out infinite;
}
@keyframes wfCaption1{
  0%,100%{opacity:0;transform:translateY(8px)}
  20%,80%{opacity:1;transform:translateY(0)}
}
@keyframes wfCaption2{
  0%,15%,100%{opacity:0;transform:translateY(8px)}
  30%,80%{opacity:1;transform:translateY(0)}
}

/* Phone mockups */
.wf-platforms{display:flex;gap:12px;justify-content:center}
.wf-phone{
  width:90px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:12px;
  overflow:hidden;
  position:relative;
  transition:transform 0.3s ease, border-color 0.3s ease;
}
.wf-phone:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,0.3);
}
.wf-phone__notch{
  width:36px;height:4px;
  background:rgba(255,255,255,0.15);
  border-radius:2px;
  margin:6px auto 0;
}
.wf-phone__content{
  padding:16px 8px 14px;
  text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:4px;
}
.wf-phone__icon{
  font-size:1.25rem;
  opacity:0.6;
}
.wf-phone__name{
  font-size:0.6875rem;
  font-weight:600;
  color:rgba(255,255,255,0.8);
  letter-spacing:0.02em;
}
.wf-phone__views{
  font-size:0.625rem;
  font-weight:700;
  padding:2px 6px;
  border-radius:8px;
  animation:wfCount 2s ease forwards;
  animation-delay:2.8s;
  opacity:0;
}
@keyframes wfCount{
  from{opacity:0;transform:scale(0.8)}
  to{opacity:1;transform:scale(1)}
}
.wf-phone--tiktok .wf-phone__views{background:rgba(255,0,80,0.3);color:#ff9ebb}
.wf-phone--reels .wf-phone__views{background:rgba(193,53,132,0.3);color:#e899c8}
.wf-phone--shorts .wf-phone__views{background:rgba(255,0,0,0.25);color:#ff9999}

/* Workflow labels */
.wf-label{
  font-size:0.75rem;
  font-weight:600;
  color:rgba(255,255,255,0.5);
  text-align:center;
  margin-top:8px;
  letter-spacing:0.03em;
  text-transform:uppercase;
}

/* Respect reduced motion */
@media(prefers-reduced-motion:reduce){
  .wf-step{opacity:1;animation:none}
  .wf-waveform span{animation:none}
  .wf-timeline__track,.wf-timeline__playhead{animation:none}
  .wf-caption-line--1,.wf-caption-line--2{animation:none;opacity:1;transform:none}
  .wf-phone__views{animation:none;opacity:1;transform:none}
}

/* ===== SEARCH BAR ===== */
.search-bar{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:6px;
  display:flex;
  box-shadow:var(--shadow-lg);
  max-width:680px;
}
.search-bar input{
  flex:1;padding:14px 20px;
  border:none;outline:none;
  font-size:1rem;
  background:transparent;
  color:var(--gray-800);
}
.search-bar input::placeholder{color:var(--gray-400)}
.search-bar .btn{border-radius:var(--radius);white-space:nowrap}
.page-header .search-bar{background:var(--white);border:1px solid var(--gray-200);box-shadow:var(--shadow-sm)}

/* ===== CATEGORY CARDS ===== */
.categories-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:24px;
}
.category-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:32px 28px;
  transition:all var(--transition);
  cursor:pointer;
  position:relative;
  overflow:hidden;
}
.category-card:hover{
  border-color:var(--navy);
  box-shadow:var(--shadow);
  transform:translateY(-2px);
}
.category-card__icon{
  width:52px;height:52px;
  border-radius:var(--radius);
  background:var(--gray-50);
  display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;
  margin-bottom:20px;
  transition:background var(--transition);
}
.category-card:hover .category-card__icon{background:rgba(0,51,102,0.08)}
.category-card h3{margin-bottom:8px}
.category-card p{color:var(--gray-500);font-size:0.9375rem;line-height:1.5}
.category-card__count{
  display:inline-block;
  margin-top:16px;
  font-size:0.8125rem;
  font-weight:600;
  color:var(--navy);
  padding:4px 12px;
  background:rgba(0,51,102,0.06);
  border-radius:20px;
}
.category-card__arrow{
  position:absolute;top:28px;right:28px;
  color:var(--gray-300);font-size:1.25rem;
  transition:all var(--transition);
}
.category-card:hover .category-card__arrow{color:var(--navy);transform:translateX(4px)}

/* ===== LISTING CARDS ===== */
.listings-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(340px,1fr));
  gap:24px;
}
.listing-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:28px;
  transition:all var(--transition);
}
.listing-card:hover{box-shadow:var(--shadow);border-color:var(--gray-300)}
.listing-card__header{display:flex;align-items:center;gap:16px;margin-bottom:16px}
.listing-card__avatar{
  width:48px;height:48px;border-radius:50%;
  background:var(--navy);color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:1.125rem;
  flex-shrink:0;
}
.listing-card__name{font-weight:600;font-size:1.0625rem}
.listing-card__role{font-size:0.8125rem;color:var(--gray-500)}
.listing-card__tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:16px}
.tag{
  display:inline-block;
  padding:4px 10px;
  font-size:0.75rem;font-weight:500;
  border-radius:20px;
  background:var(--gray-100);
  color:var(--gray-600);
}
.tag--navy{background:rgba(0,51,102,0.08);color:var(--navy)}
.listing-card__stats{
  display:flex;gap:24px;
  padding-top:16px;border-top:1px solid var(--gray-100);
  font-size:0.8125rem;color:var(--gray-500);
}
.listing-card__stats strong{color:var(--gray-700)}
.listing-card__meta{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:16px;
}
.badge{
  display:inline-flex;align-items:center;gap:4px;
  padding:4px 10px;
  font-size:0.75rem;font-weight:600;
  border-radius:20px;
}
.badge--green{background:#e6f9ee;color:#0d7a3e}
.badge--blue{background:rgba(0,51,102,0.08);color:var(--navy)}
.badge--gray{background:var(--gray-100);color:var(--gray-600)}

/* ===== FEATURED SECTION ===== */
.featured-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:20px;
}
.featured-item{
  padding:24px;
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  transition:all var(--transition);
}
.featured-item:hover{background:rgba(255,255,255,0.1);border-color:rgba(255,255,255,0.2)}
.featured-item__name{font-weight:600;font-size:1rem;color:var(--white)}
.featured-item__desc{font-size:0.875rem;color:rgba(255,255,255,0.6);margin-top:6px}
.featured-item__link{
  display:inline-block;margin-top:12px;
  font-size:0.8125rem;font-weight:600;
  color:rgba(255,255,255,0.8);
}
.featured-item__link:hover{color:var(--white)}

/* ===== HOW IT WORKS ===== */
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:40px}
.step{text-align:center;position:relative}
.step__number{
  width:56px;height:56px;
  border-radius:50%;
  background:var(--navy);color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-size:1.25rem;font-weight:700;
  margin:0 auto 20px;
}
.step h3{margin-bottom:8px}
.step p{color:var(--gray-500);font-size:0.9375rem}

/* ===== CTA BANNER ===== */
.cta-banner{
  background:linear-gradient(135deg,var(--navy-dark),var(--navy));
  border-radius:var(--radius-lg);
  padding:64px 48px;
  text-align:center;
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.cta-banner::before{
  content:'';position:absolute;top:-40%;right:-20%;
  width:400px;height:400px;
  background:radial-gradient(circle,rgba(255,255,255,0.05) 0%,transparent 70%);
  border-radius:50%;
}
.cta-banner h2{color:var(--white);margin-bottom:12px}
.cta-banner p{color:rgba(255,255,255,0.7);margin-bottom:32px;font-size:1.0625rem}
.cta-banner .btn{position:relative;z-index:1}

/* ===== STATS ROW ===== */
.stats-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:32px;
  text-align:center;
}
.stat__number{font-size:2.25rem;font-weight:800;color:var(--navy)}
.stat__label{font-size:0.9375rem;color:var(--gray-500);margin-top:4px}

/* ===== FILTER BAR ===== */
.filter-bar{
  display:flex;flex-wrap:wrap;gap:12px;
  padding:20px 0;
  border-bottom:1px solid var(--gray-200);
  margin-bottom:32px;
}
.filter-btn{
  padding:8px 20px;
  font-size:0.875rem;font-weight:500;
  border-radius:20px;
  border:1px solid var(--gray-300);
  background:var(--white);
  color:var(--gray-600);
  cursor:pointer;
  transition:all var(--transition);
}
.filter-btn:hover,.filter-btn.active{
  background:var(--navy);color:var(--white);border-color:var(--navy);
}

/* ===== PAGE HEADER ===== */
.page-header{
  padding:120px 0 60px;
  background:var(--gray-50);
  border-bottom:1px solid var(--gray-200);
}
.page-header h1{margin-bottom:8px}
.page-header p{color:var(--gray-500);font-size:1.125rem}
.breadcrumb{
  display:flex;gap:8px;align-items:center;
  font-size:0.8125rem;color:var(--gray-400);
  margin-bottom:16px;
}
.breadcrumb a{color:var(--gray-400)}
.breadcrumb a:hover{color:var(--navy)}

/* ===== FOOTER ===== */
.footer{
  background:var(--gray-800);
  color:var(--gray-400);
  padding:64px 0 32px;
}
.footer__grid{
  display:grid;
  grid-template-columns:2fr repeat(3,1fr);
  gap:48px;
  margin-bottom:48px;
}
.footer__brand{max-width:280px}
.footer__brand .logo{color:var(--white);font-size:1.375rem;display:inline-block;margin-bottom:12px}
.footer__brand p{font-size:0.875rem;line-height:1.6;color:var(--gray-500)}
.footer h4{
  color:var(--gray-200);font-size:0.8125rem;font-weight:600;
  text-transform:uppercase;letter-spacing:0.06em;
  margin-bottom:16px;
}
.footer ul li{margin-bottom:10px}
.footer ul li a{color:var(--gray-400);font-size:0.9375rem;transition:color var(--transition)}
.footer ul li a:hover{color:var(--white)}
.footer__bottom{
  padding-top:24px;
  border-top:1px solid var(--gray-700);
  display:flex;align-items:center;justify-content:space-between;
  font-size:0.8125rem;
  color:var(--gray-500);
}
.footer__social{display:flex;gap:16px}
.footer__social a{color:var(--gray-500);font-size:1.125rem;transition:color var(--transition)}
.footer__social a:hover{color:var(--white)}

/* ===== JOB CARD ===== */
.job-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:24px 28px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  transition:all var(--transition);
}
.job-card:hover{box-shadow:var(--shadow);border-color:var(--gray-300)}
.job-card__info h3{font-size:1.0625rem;margin-bottom:4px}
.job-card__company{font-size:0.875rem;color:var(--gray-500)}
.job-card__details{
  display:flex;gap:16px;margin-top:10px;
  font-size:0.8125rem;color:var(--gray-500);
}
.job-card__details span{display:flex;align-items:center;gap:4px}
.job-card__pay{
  text-align:right;white-space:nowrap;
}
.job-card__pay .amount{font-size:1.125rem;font-weight:700;color:var(--navy)}
.job-card__pay .period{font-size:0.75rem;color:var(--gray-500)}
.jobs-list{display:flex;flex-direction:column;gap:16px}

/* ===== TOOL CARD ===== */
.tool-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:28px;
  transition:all var(--transition);
}
.tool-card:hover{box-shadow:var(--shadow);border-color:var(--gray-300)}
.tool-card__header{display:flex;align-items:center;gap:14px;margin-bottom:14px}
.tool-card__icon{
  width:44px;height:44px;border-radius:var(--radius);
  background:var(--gray-100);
  display:flex;align-items:center;justify-content:center;
  font-size:1.25rem;
}
.tool-card__name{font-weight:600;font-size:1rem}
.tool-card__cat{font-size:0.75rem;color:var(--gray-500)}
.tool-card p{font-size:0.9375rem;color:var(--gray-500);margin-bottom:14px}
.tool-card__pricing{font-size:0.8125rem;font-weight:600;color:var(--navy)}

/* ===== COMMUNITY CARD ===== */
.community-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:24px 28px;
  display:flex;align-items:center;gap:20px;
  transition:all var(--transition);
}
.community-card:hover{box-shadow:var(--shadow);border-color:var(--gray-300)}
.community-card__platform{
  width:48px;height:48px;border-radius:var(--radius);
  background:var(--gray-100);
  display:flex;align-items:center;justify-content:center;
  font-size:1.25rem;flex-shrink:0;
}
.community-card__info{flex:1}
.community-card__info h3{font-size:1rem;margin-bottom:2px}
.community-card__info p{font-size:0.8125rem;color:var(--gray-500)}
.community-card__members{
  text-align:right;white-space:nowrap;
  font-size:0.875rem;font-weight:600;color:var(--navy);
}

/* ===== FORM ELEMENTS ===== */
.form-group{margin-bottom:20px}
.form-group label{display:block;font-size:0.875rem;font-weight:500;margin-bottom:6px;color:var(--gray-700)}
.form-input,.form-select,.form-textarea{
  width:100%;padding:12px 16px;
  border:1px solid var(--gray-300);
  border-radius:var(--radius);
  font-size:0.9375rem;
  color:var(--gray-800);
  background:var(--white);
  transition:border-color var(--transition);
}
.form-input:focus,.form-select:focus,.form-textarea:focus{
  outline:none;border-color:var(--navy);
  box-shadow:0 0 0 3px rgba(0,51,102,0.08);
}
.form-textarea{resize:vertical;min-height:120px}

/* ===== MODAL OVERLAY (for future submit forms) ===== */
.modal-overlay{
  display:none;position:fixed;inset:0;z-index:2000;
  background:rgba(0,0,0,0.5);
  align-items:center;justify-content:center;
}
.modal-overlay.active{display:flex}
.modal{
  background:var(--white);border-radius:var(--radius-lg);
  padding:40px;max-width:560px;width:90%;
  max-height:90vh;overflow-y:auto;
  box-shadow:var(--shadow-lg);
}
.modal__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px}
.modal__close{
  background:none;border:none;font-size:1.5rem;
  color:var(--gray-400);cursor:pointer;
  transition:color var(--transition);
}
.modal__close:hover{color:var(--gray-700)}

/* ===== TESTIMONIALS ===== */
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  gap:24px;
}
.testimonial{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:28px;
  position:relative;
  transition:all var(--transition);
}
.testimonial:hover{box-shadow:var(--shadow);border-color:var(--gray-300)}
.testimonial__quote{
  font-size:1rem;
  color:var(--gray-600);
  line-height:1.7;
  margin-bottom:20px;
  font-style:italic;
}
.testimonial__quote::before{
  content:'\201C';
  font-size:2.5rem;
  font-style:normal;
  color:var(--navy);
  opacity:0.2;
  line-height:0;
  position:relative;
  top:12px;
  margin-right:4px;
}
.testimonial__author{
  display:flex;align-items:center;gap:12px;
  padding-top:16px;border-top:1px solid var(--gray-100);
}
.testimonial__avatar{
  width:40px;height:40px;border-radius:50%;
  background:var(--navy);color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:0.875rem;flex-shrink:0;
}
.testimonial__name{font-weight:600;font-size:0.9375rem;color:var(--gray-800)}
.testimonial__role{font-size:0.8125rem;color:var(--gray-500)}

/* ===== NEWSLETTER SIGNUP ===== */
.newsletter{
  background:var(--navy);
  border-radius:var(--radius-lg);
  padding:48px;
  display:flex;align-items:center;justify-content:space-between;gap:32px;
  position:relative;overflow:hidden;
}
.newsletter::before{
  content:'';position:absolute;top:-50%;right:-10%;
  width:300px;height:300px;
  background:radial-gradient(circle,rgba(255,255,255,0.05) 0%,transparent 70%);
  border-radius:50%;
}
.newsletter__text{flex:1;min-width:0}
.newsletter__text h3{color:var(--white);font-size:1.375rem;margin-bottom:6px}
.newsletter__text p{color:rgba(255,255,255,0.6);font-size:0.9375rem}
.newsletter__form{display:flex;gap:8px;flex-shrink:0}
.newsletter__form input{
  padding:12px 18px;border:1px solid rgba(255,255,255,0.2);
  border-radius:var(--radius);background:rgba(255,255,255,0.08);
  color:var(--white);font-size:0.9375rem;width:260px;
}
.newsletter__form input::placeholder{color:rgba(255,255,255,0.4)}
.newsletter__form input:focus{outline:none;border-color:rgba(255,255,255,0.5)}
.newsletter__form .btn{white-space:nowrap}

/* Footer newsletter (compact) */
.footer__newsletter{margin-top:16px}
.footer__newsletter form{display:flex;gap:6px}
.footer__newsletter input{
  flex:1;padding:10px 14px;
  border:1px solid var(--gray-600);border-radius:var(--radius);
  background:var(--gray-700);color:var(--white);font-size:0.875rem;
}
.footer__newsletter input::placeholder{color:var(--gray-500)}
.footer__newsletter input:focus{outline:none;border-color:var(--gray-400)}
.footer__newsletter .btn{padding:10px 18px;font-size:0.8125rem}

/* ===== CAMPAIGN FORM (MULTI-STEP) ===== */
.campaign-form{max-width:720px;margin:0 auto}
.campaign-steps{
  display:flex;gap:0;margin-bottom:40px;
  border-bottom:2px solid var(--gray-200);
}
.campaign-step-tab{
  flex:1;padding:16px;text-align:center;
  font-size:0.875rem;font-weight:600;
  color:var(--gray-400);
  border-bottom:2px solid transparent;
  margin-bottom:-2px;cursor:default;
  transition:all var(--transition);
}
.campaign-step-tab.active{color:var(--navy);border-bottom-color:var(--navy)}
.campaign-step-tab.completed{color:var(--gray-600)}
.campaign-step-tab .step-num{
  display:inline-flex;align-items:center;justify-content:center;
  width:28px;height:28px;border-radius:50%;
  background:var(--gray-200);color:var(--gray-500);
  font-size:0.8125rem;font-weight:700;margin-right:8px;
}
.campaign-step-tab.active .step-num{background:var(--navy);color:var(--white)}
.campaign-step-tab.completed .step-num{background:#0d7a3e;color:var(--white)}
.campaign-panel{display:none}
.campaign-panel.active{display:block}
.campaign-nav{display:flex;justify-content:space-between;margin-top:32px;padding-top:24px;border-top:1px solid var(--gray-200)}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.checkbox-group{display:flex;flex-wrap:wrap;gap:12px;margin-top:8px}
.checkbox-label{
  display:flex;align-items:center;gap:8px;
  padding:10px 16px;border:1px solid var(--gray-300);
  border-radius:var(--radius);cursor:pointer;
  font-size:0.9375rem;color:var(--gray-600);
  transition:all var(--transition);
}
.checkbox-label:hover{border-color:var(--navy)}
.checkbox-label input{accent-color:var(--navy)}
.checkbox-label input:checked + span{color:var(--navy);font-weight:500}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .footer__grid{grid-template-columns:repeat(2,1fr)}
  .hero__grid{grid-template-columns:1fr;gap:40px}
  .hero__visual{max-width:360px;margin:0 auto}
}
@media(max-width:768px){
  .newsletter{flex-direction:column;padding:32px 24px;text-align:center}
  .newsletter__form{flex-direction:column;width:100%}
  .newsletter__form input{width:100%}
  .newsletter__form .btn{width:100%;justify-content:center}
  .field-row{grid-template-columns:1fr}
  .nav{
    display:none;
    position:absolute;top:72px;left:0;right:0;
    background:var(--white);
    flex-direction:column;
    padding:24px;gap:0;
    border-bottom:1px solid var(--gray-200);
    box-shadow:var(--shadow);
  }
  .nav.open{display:flex}
  .nav__link{padding:12px 0;width:100%;border-bottom:1px solid var(--gray-100)}
  .nav__cta{margin-left:0;margin-top:12px}
  .hamburger{display:flex}
  .hero{padding:120px 0 80px}
  .hero--split{padding:120px 0 60px}
  .hero__grid{grid-template-columns:1fr;gap:32px}
  .hero__visual{max-width:300px;margin:0 auto}
  .wf-phone{width:76px}
  .hero__stats{gap:24px;flex-wrap:wrap}
  .hero__actions{flex-direction:column}
  .hero__actions .btn{width:100%;justify-content:center}
  .search-bar{flex-direction:column}
  .search-bar .btn{width:100%;justify-content:center}
  .footer__grid{grid-template-columns:1fr;gap:32px}
  .footer__bottom{flex-direction:column;gap:16px;text-align:center}
  .listings-grid{grid-template-columns:1fr}
  .job-card{flex-direction:column;align-items:flex-start}
  .job-card__pay{text-align:left}
  .community-card{flex-direction:column;align-items:flex-start}
  .community-card__members{text-align:left}
}
@media(max-width:480px){
  .categories-grid{grid-template-columns:1fr}
  .featured-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .cta-banner{padding:40px 24px}
}
