/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@700;800&display=swap');

:root {
  --bg-body: #f7faf7;
  --bg-surface: #ffffff;
  --text-main: #1e2d1e;
  --text-muted: #6b7c6b;
  --accent: #3e8b4e;
  --accent-hover: #326b3f;
  --radius: 10px;
  --shadow: 0 4px 12px rgba(30,45,30,.06);
  --font-header: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
}

/* Global Reset & Base */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  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);
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-header); font-weight: 700; line-height: 1.3; }
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.25rem, 1.1rem + 0.75vw, 1.75rem); }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* Layout Helpers */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-block: 2rem;
}

/* Header & Navigation */
.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(--accent);
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.main-nav a {
  font-weight: 500;
  color: var(--text-main);
  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: 2px;
  background: var(--text-main);
  transition: .3s;
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform .3s ease;
  }
  .main-nav ul {
    flex-direction: column;
    padding: 1.5rem 5%;
  }
  #menu-toggle:checked ~ .main-nav { transform: translateY(0); }
}

/* Hero Section */
.hero {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.hero h1 { margin-bottom: 1rem; }
.hero p {
  max-width: 60ch;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  transition: background .2s;
}
.btn:hover { background: var(--accent-hover); }

/* Cards Grid */
.offers-grid,
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .offers-grid,
  .partners-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .offers-grid,
  .partners-grid { grid-template-columns: 1fr; }
}

.job-card,
.partner-link {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.job-card:hover,
.partner-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(30,45,30,.08);
}

/* Footer */
.site-footer {
  background: var(--text-main);
  color: var(--bg-surface);
  margin-top: 4rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}
.footer-section h4 { margin-bottom: .75rem; }
.footer-section a {
  color: var(--bg-surface);
  opacity: .8;
}
.footer-section a:hover { opacity: 1; }

/* Accordion (FAQ) */
details {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  box-shadow: var(--shadow);
}
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;
  transition: transform .2s;
}
details[open] summary::after { transform: rotate(45deg); }

/* Partners Show-More (Checkbox Hack) */
.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-container { text-align: center; margin-top: 1.5rem; }

/* Subtle Dots Background */
.dots-bg {
  position: relative;
}
.dots-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--accent) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .01;
  pointer-events: none;
}