/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Inter:wght@300;400&display=swap');

:root {
  --bg-body: #f5fbfd;
  --bg-surface: #ffffff;
  --text-main: #222222;
  --text-muted: #6b7280;
  --accent: #3ba9d0;
  --accent-hover: #2e8bb3;
  --radius: 12px;
  --shadow: 0 2px 6px rgba(0, 0, 0, .06);
  --font-header: 'Poppins', 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: 16px;
  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: 600;
  line-height: 1.3;
  margin: 0 0 .5em;
}

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); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; display: block; }

/* Layout Containers */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 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-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

/* Desktop Nav */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-weight: 400;
  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;
  padding: .5rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: background .2s;
}

@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;
  }
  #menu-toggle:checked ~ .main-nav { transform: translateY(0); }
  .main-nav ul {
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
  }
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  text-align: center;
}

.hero h1 { margin-bottom: 1rem; }
.hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  transition: background .2s;
}

.btn:hover { background: var(--accent-hover); color: #fff; }

/* Sections */
section { padding: 3rem 0; }

/* Cards Grid */
.offers-grid,
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .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: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card h3 { margin-bottom: .5rem; }
.job-card .meta {
  font-size: .875rem;
  color: var(--text-muted);
}

/* Partner Link */
.partner-link {
  display: block;
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--text-main);
  transition: box-shadow .2s;
}

.partner-link:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  color: var(--accent);
}

/* 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: 2rem;
}

/* FAQ Accordion */
details {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
}

summary {
  font-family: var(--font-header);
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

details[open] summary { margin-bottom: .75rem; }

/* Footer */
.site-footer {
  background: var(--text-main);
  color: #fff;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: .75rem;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section a { color: #cbd5e1; }
.footer-section a:hover { color: #fff; }

.footer-bottom {
  text-align: center;
  font-size: .875rem;
  color: #9ca3af;
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  margin-top: 2rem;
}