/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Barlow:wght@600;700&display=swap');

:root {
  /* Colors */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --accent: #0052d5;
  --accent-hover: #0040b0;

  /* Typography */
  --font-header: 'Barlow', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Sizing */
  --radius: 4px;
  --shadow: 0 1px 3px rgba(0,0,0,.08);
  --max-width: 1200px;
  --gap: 1.5rem;
}

/* Global Reset & Base */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Container */
.container {
  width: min(90%, var(--max-width));
  margin-inline: auto;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-header); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p  { font-size: 1rem; }

/* Header */
.site-header {
  background: var(--bg-surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.main-nav a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.main-nav a:hover { color: var(--accent); }

/* Mobile Menu (Checkbox Hack) */
#menu-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--text-main);
  border-radius: var(--radius);
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: transform .3s ease;
  }
  .main-nav ul {
    flex-direction: column;
    padding: 1.5rem;
  }
  #menu-toggle:checked ~ .main-nav { transform: translateY(0); }
}

/* Hero Track-Bar */
.hero {
  padding: 4rem 0 3rem;
  text-align: center;
}
.track-bar {
  margin-top: 2rem;
  display: flex;
  gap: .75rem;
  max-width: 600px;
  margin-inline: auto;
}
.track-bar input {
  flex: 1;
  padding: .875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  font-size: 1rem;
}
.track-bar .btn {
  padding: .875rem 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background .2s;
}
.btn:hover { background: var(--accent-hover); }

/* Sections */
section { padding: 3rem 0; }
.bg-surface { background: var(--bg-surface); }

/* Grid Layouts */
.offers-grid,
.partners-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .offers-grid,
  .partners-grid { grid-template-columns: 1fr; }
}

/* Job Card */
.job-card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.job-card h3 { font-size: 1.125rem; }
.job-card .meta {
  font-size: .875rem;
  color: var(--text-muted);
}

/* Partner Link */
.partner-link {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .2s, box-shadow .2s;
}
.partner-link:hover {
  color: var(--accent);
  box-shadow: 0 3px 8px rgba(0,0,0,.1);
}

/* Show More Partners (Checkbox Hack) */
.partners-hidden { display: none; }
.show-more-checkbox { display: none; }
.show-more-checkbox:checked ~ .partners-hidden { display: grid; }
.show-more-checkbox:checked ~ .show-more-container { display: none; }

/* FAQ Accordion */
details {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
}
details[open] summary::after { content: "−"; }
details p {
  margin-top: .75rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--text-main);
  color: #e5e7eb;
  padding: 2.5rem 0 2rem;
  margin-top: 3rem;
}
.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.footer-section h4 {
  font-size: 1rem;
  margin-bottom: .5rem;
  color: #fff;
}
.footer-section a {
  font-size: .875rem;
  color: #9ca3af;
  transition: color .2s;
}
.footer-section a:hover { color: #fff; }