/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@700&display=swap');

:root {
  --bg-body: #ffffff;
  --bg-surface: #f7f9f9;
  --text-main: #1e1e1e;
  --text-muted: #7b7f83;
  --accent: #00a86b;
  --accent-hover: #008f5b;
  --radius: 6px;
  --shadow: 0 2px 6px rgba(0,0,0,.05);
  --font-header: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --gap: 24px;
}

* {
  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);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

h1 {
  font-size: clamp(2rem, 1.6rem + 2vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 1.75rem);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  display: block;
}

/* Layout Containers */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

/* Header */
.site-header {
  background: var(--bg-body);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-weight: 500;
  color: var(--text-main);
}

.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: 0.3s;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-body);
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  #menu-toggle:checked ~ .main-nav {
    transform: translateY(0);
  }
}

/* Hero / Zen-Quote Split Header */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0 60px;
  background: var(--bg-surface);
}

.hero h1 {
  margin-bottom: 16px;
}

.hero p {
  max-width: 680px;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* Cards */
.job-card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s ease;
}

.job-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.job-card h3 {
  margin-bottom: 8px;
}

.job-card .meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Grids */
.offers-grid,
.partners-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .offers-grid,
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .offers-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

/* Partners */
.partner-link {
  display: block;
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  text-align: center;
  font-weight: 500;
  color: var(--text-main);
  transition: box-shadow 0.2s ease;
}

.partner-link:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* Show More Partners (Checkbox Hack) */
.partners-wrapper .partners-hidden {
  display: none;
}

.partners-wrapper .show-more-checkbox {
  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: 24px;
}

/* FAQ Accordion */
details {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 16px;
}

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 0.2s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details > *:not(summary) {
  margin-top: 12px;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--text-main);
  color: #fff;
  padding: 48px 0 24px;
}

.footer-content {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-section h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.footer-section a,
.footer-section p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
}

.footer-section a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.75rem;
  color: rgba(255,255,255,.6);
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}