/* 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: #f8fbfd;
  --bg-surface: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --accent: #0891b2;
  --accent-hover: #0e7490;
  --border-light: #e2e8f0;

  /* Fonts */
  --font-header: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Radius */
  --radius: 6px;
  --shadow: 0 1px 3px rgba(8, 145, 178, .08);
  --max-width: 1180px;
}

/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-header);
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem);
}

h2 {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 1.875rem);
}

/* Container */
.container {
  width: 90%;
  max-width: var(--max-width);
  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);
}

/* Navigation Desktop */
.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: background .2s;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    transform: translateX(-100%);
    transition: transform .3s;
    box-shadow: var(--shadow);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  #menu-toggle:checked ~ .main-nav {
    transform: translateX(0);
  }
}

/* Hero Section */
.hero {
  background: var(--bg-surface);
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.hero p {
  margin-top: 1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-inline: auto;
}

/* Section Decor */
.section {
  padding: 3rem 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 47px,
    var(--border-light) 47px,
    var(--border-light) 48px
  );
  pointer-events: none;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

/* Offers Grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

/* Job Card */
.job-card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow .2s;
}

.job-card:hover {
  box-shadow: 0 2px 6px rgba(8, 145, 178, .12);
}

.job-title {
  font-family: var(--font-header);
  font-size: 1.125rem;
  color: var(--accent);
}

.job-meta {
  font-size: .875rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background .2s;
}

.btn:hover {
  background: var(--accent-hover);
}

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.partner-link {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  transition: border-color .2s, color .2s;
}

.partner-link:hover {
  border-color: var(--accent);
  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 {
  margin-top: 1.5rem;
  text-align: center;
}

.show-more-label {
  cursor: pointer;
  color: var(--accent);
  font-weight: 500;
}

/* FAQ Accordion */
details {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
}

summary {
  cursor: pointer;
  font-weight: 500;
  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);
}

details > *:not(summary) {
  margin-top: .75rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--text-main);
  color: #fff;
  padding: 2.5rem 0 2rem;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  margin-bottom: .75rem;
  font-size: 1rem;
  color: var(--accent);
}

.footer-section ul {
  list-style: none;
  font-size: .875rem;
  line-height: 1.8;
}

.footer-section a {
  color: #cbd5e1;
  transition: color .2s;
}

.footer-section a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  font-size: .75rem;
  color: #94a3b8;
  text-align: center;
}