/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Manrope:wght@700;800&display=swap');

:root {
  --bg-body: #f5f7fa;
  --bg-surface: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --accent: #fbbf24;
  --accent-hover: #f59e0b;
  --radius: 4px;
  --shadow: 0 1px 3px rgba(0,0,0,.08);
  --font-header: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-body);
}

h1, h2, h3 {
  font-family: var(--font-header);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 1.7rem + 1.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 1.3rem + 1vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 1.05rem + 0.38vw, 1.375rem); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Layout helpers */
.container {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
  padding-block: 2rem;
}

/* ---------- 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: 800;
  font-size: 1.5rem;
  color: var(--text-main);
}

/* Desktop nav */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-weight: 600;
  color: var(--text-muted);
  transition: color .2s;
}
.main-nav a:hover { color: var(--accent-hover); }

/* Mobile nav (checkbox hack) */
#menu-toggle { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--text-main);
  border-radius: 2px;
  transition: .3s;
}

@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 5%;
  }
  #menu-toggle:checked ~ .main-nav { transform: translateY(0); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--text-main);
  transition: background .2s;
}
.btn:hover { background: var(--accent-hover); }

.btn--outline {
  background: transparent;
  border: 2px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: var(--bg-surface);
}

/* ---------- CARDS ---------- */
.job-card,
.partner-link {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: box-shadow .2s;
}
.job-card:hover,
.partner-link:hover { box-shadow: 0 4px 12px rgba(0,0,0,.1); }

/* ---------- GRIDS ---------- */
.offers-grid,
.partners-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .offers-grid,
  .partners-grid { grid-template-columns: 1fr; }
}

/* ---------- PARTNERS "SHOW MORE" ---------- */
.partners-wrapper .partners-hidden { display: none; }
.partners-wrapper .show-more-checkbox:checked ~ .partners-hidden { display: grid; }
.partners-wrapper .show-more-checkbox:checked ~ .show-more-container { display: none; }

/* ---------- ACCORDION (FAQ) ---------- */
details {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.5rem;
  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);
  transition: transform .2s;
}
details[open] summary::after { transform: rotate(45deg); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--text-main);
  color: var(--bg-body);
  padding: 2.5rem 0 2rem;
  margin-top: 4rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-section h4 {
  font-family: var(--font-header);
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--accent);
}
.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-section a { color: var(--text-muted); }
.footer-section a:hover { color: var(--accent-hover); }

/* ---------- UTILS ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mb-1 { margin-bottom: 1rem; }