/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Lato:wght@300;400&display=swap');

:root {
  --bg-body: #f7f7f8;
  --bg-surface: #ffffff;
  --text-main: #222222;
  --text-muted: #6c6c6c;
  --accent: #8c1b43;
  --accent-hover: #6e1433;
  --border-radius: 6px;
  --shadow: 0 2px 4px rgba(0,0,0,.06);
  --font-header: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  --max-width: 1200px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, .95rem + .25vw, 1.125rem);
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-main);
}

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 + .75vw, 1.75rem); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

.site-header {
  background: var(--bg-surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  font-weight: 400;
  color: var(--text-main);
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}

.main-nav a:hover,
.main-nav a:focus {
  border-bottom-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: transform .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: translateX(-100%);
    transition: transform .3s ease;
  }
  #menu-toggle:checked ~ .main-nav {
    transform: translateX(0);
  }
  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem;
  }
}

/* Button */
.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: background .2s;
}
.btn:hover {
  background: var(--accent-hover);
}

/* Split-Stage Header */
.split-stage {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding: 0 1.25rem;
}
.split-stage .left {
  flex: 1;
}
.split-stage .right {
  flex: 0 0 320px;
  text-align: right;
}
.split-stage h1 {
  margin-bottom: .5rem;
}
.split-stage p {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .split-stage { flex-direction: column; text-align: center; }
  .split-stage .right { flex: 1; text-align: center; }
}

/* Step-Card Ribbon */
.ribbon {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1.5rem 0;
}
.step-card {
  flex: 0 0 280px;
  background: var(--bg-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transform: translateY(0);
  transition: transform .2s;
}
.step-card:nth-child(even) { transform: translateY(8px); }
.step-card:hover { transform: translateY(-4px); }
.step-card h3 {
  margin-bottom: .5rem;
}
.step-card p {
  color: var(--text-muted);
}

/* Offers */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 2rem auto;
  padding: 0 1.25rem;
}
.job-card {
  background: var(--bg-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.job-card h3 {
  margin-bottom: .25rem;
}
.job-card .meta {
  font-size: .875rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .offers-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .offers-grid { grid-template-columns: 1fr; }
}

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 2rem auto;
  padding: 0 1.25rem;
}
.partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: var(--bg-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--text-main);
  transition: box-shadow .2s;
}
.partner-link:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,.08);
}
@media (max-width: 900px) {
  .partners-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .partners-grid { grid-template-columns: 1fr; }
}

/* Show-more partners (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; }

/* FAQ Accordion */
details {
  background: var(--bg-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
}
summary {
  font-family: var(--font-header);
  font-weight: 600;
  cursor: pointer;
  outline: none;
}
details[open] summary {
  margin-bottom: .5rem;
}
details p {
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: #2b2b2b;
  color: #e0e0e0;
  margin-top: 4rem;
  padding: 2.5rem 1.25rem 2rem;
}
.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: .75rem;
  color: #fff;
}
.footer-section ul {
  list-style: none;
  font-size: .9375rem;
}
.footer-section a {
  color: #ccc;
}
.footer-section a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr; text-align: center; }
}