/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Inter:wght@300;400;500&display=swap');

:root {
  /* Colors */
  --bg-body: #fafafa;
  --bg-surface: #ffffff;
  --text-main: #1f1f1f;
  --text-muted: #6c6c6c;
  --accent: #2dbe60;
  --accent-hover: #26a653;

  /* Fonts */
  --font-header: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Misc */
  --radius: 10px;
  --shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 600;
  line-height: 1.3;
}
h1 {
  font-size: clamp(2rem, 2.5vw, 3rem);
}
h2 {
  font-size: clamp(1.5rem, 2vw, 2.25rem);
}
h3 {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
}
p {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: var(--text-muted);
}

/* Layout Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}

/* 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-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.main-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: color .2s;
}
.main-nav a:hover {
  color: var(--accent);
}
#menu-toggle {
  display: none;
}
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
}

/* Hero Split */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}
.hero-text h1 {
  margin-bottom: 1rem;
}
.hero-text p {
  margin-bottom: 2rem;
}
.hero-visual {
  background: var(--accent);
  border-radius: var(--radius);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-surface);
  font-family: var(--font-header);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  background: var(--accent);
  color: var(--bg-surface);
  transition: background .2s;
}
.btn:hover {
  background: var(--accent-hover);
}

/* Cards Grid */
.offers-grid,
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.job-card,
.partner-link {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.job-card:hover,
.partner-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}
.job-card h3 {
  margin-bottom: .5rem;
}
.partner-link {
  text-align: center;
}
.partner-link::before {
  content: "🏢"; /* Placeholder SVG inline */
  font-size: 2rem;
  display: block;
  margin-bottom: .5rem;
}

/* FAQ Accordion */
details {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
summary {
  cursor: pointer;
  font-family: var(--font-header);
  font-weight: 600;
  color: var(--text-main);
}
details[open] summary {
  margin-bottom: .75rem;
}

/* Footer */
.site-footer {
  background: var(--text-main);
  color: var(--bg-surface);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-section h4 {
  margin-bottom: .75rem;
}
.footer-section a {
  color: var(--bg-surface);
  text-decoration: none;
  opacity: .8;
  transition: opacity .2s;
}
.footer-section a:hover {
  opacity: 1;
}

/* 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;
}
.show-more-checkbox {
  display: none;
}
.show-more-container {
  text-align: center;
  margin-top: 2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .main-nav ul {
    position: fixed;
    inset: 0 0 0 auto;
    flex-direction: column;
    background: var(--bg-surface);
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform .3s;
  }
  #menu-toggle:checked ~ .main-nav ul {
    transform: translateX(0);
  }
  .hamburger {
    display: flex;
  }
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .offers-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }
}