/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --accent: #6c7fd7;
  --accent-hover: #5b6fc4;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(30,41,59,.06);
  --font-header: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-header); font-weight: 600; color: var(--text-main); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 3vw, 1.5rem); }
p  { font-size: clamp(1rem, 2vw, 1.05rem); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

.container {
  width: 90%;
  max-width: var(--max-width);
  margin-inline: auto;
}

/* HEADER – Floating Pillow Bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.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: 700;
  color: var(--text-main);
}

/* NAV */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.main-nav a {
  font-weight: 500;
  color: var(--text-main);
  padding: .5rem .25rem;
  border-bottom: 2px solid transparent;
  transition: .25s;
}
.main-nav a:hover { border-color: var(--accent); }

/* Mobile Menu – Checkbox Hack */
#menu-toggle { display: none; }
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.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);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform .35s ease;
  }
  .main-nav ul { flex-direction: column; gap: 1rem; }
  #menu-toggle:checked ~ .main-nav { transform: translateY(0); }
}

/* HERO */
.hero {
  padding: clamp(3rem, 10vw, 6rem) 0;
  text-align: center;
}
.hero p {
  max-width: 680px;
  margin: 1rem auto 0;
  color: var(--text-muted);
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background .25s;
}
.btn:hover { background: var(--accent-hover); color: #fff; }

/* CARDS – Cloud-Card */
.job-card,
.partner-link {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: transform .25s, box-shadow .25s;
}
.job-card:hover,
.partner-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(30,41,59,.08);
}

/* GRIDS */
.offers-grid,
.partners-grid {
  display: grid;
  gap: 1.5rem;
  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 – Show More */
.partners-hidden { display: none; }
.show-more-checkbox { display: none; }
.show-more-checkbox:checked ~ .partners-hidden { display: grid; }
.show-more-checkbox:checked ~ .show-more-container { display: none; }

/* ACCORDION – FAQ */
details {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}
summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform .25s;
}
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 1rem; color: var(--text-muted); }

/* FOOTER */
.site-footer {
  background: var(--text-main);
  color: #fff;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}
.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.footer-section h4 {
  font-family: var(--font-header);
  margin-bottom: .75rem;
}
.footer-section a { color: #cbd5e1; }
.footer-section a:hover { color: #fff; }