@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --black: #111111;
  --orange: #F5A623;
  --yellow: #FFC107;
  --grey: #5A5A5A;
  --light-grey: #EDEDED;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

.site-header {
  width: 100%;
  padding: 24px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  letter-spacing: 1px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 800;
}

.logo span {
  color: var(--orange);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.nav-cta {
  text-decoration: none;
  background: var(--orange);
  color: var(--black);
  padding: 14px 24px;
  font-weight: 700;
  border-radius: 4px;
}

.hero {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 80px;
  background:
  linear-gradient(90deg, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.72)),
  url("assets/images/hero.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 700px;
}

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.95;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero-text {
  color: #D1D1D1;
  font-size: 20px;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.trust-strip {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-strip div {
  border: 1px solid #333;
  background: rgba(255,255,255,0.04);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #D8D8D8;
}

.primary-btn {
  background: var(--orange);
  color: var(--black);
  text-decoration: none;
  padding: 18px 30px;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.25s ease;  
}

.secondary-btn {
  background: transparent;
  border: 1px solid #444;
  color: #D0D0D0;
  text-decoration: none;
  padding: 18px 30px;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.2s ease;
}

.hero-card {
  width: 420px;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.card-label {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  padding: 18px 0;
  border-bottom: 1px solid #2A2A2A;
  font-size: 18px;
  font-weight: 600;
}

.hero-card li:last-child {
  border-bottom: none;
}

@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-card {
    width: 100%;
  }
}

.section {
  padding: 140px 80px;
  position: relative;
  border-top: 1px solid #1F1F1F;
}

.section-label {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  text-transform: uppercase;
  margin-bottom: 60px;
  max-width: 700px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  padding: 36px;
  transition: 0.25s ease;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.product-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.product-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.product-card p {
  color: #CFCFCF;
  line-height: 1.7;
  font-size: 16px;
}

.section-alt {
  background: #151515;
  position: relative;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.pathway-card {
  background: #1D1D1D;
  border: 1px solid #2B2B2B;
  padding: 36px;
  transition: 0.25s ease;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.pathway-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pathway-card p {
  color: #D0D0D0;
  line-height: 1.7;
  margin-bottom: 28px;
}

.pathway-card span {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.pathway-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.wage-table {
  border: 1px solid #2A2A2A;
}

.wage-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 24px 32px;
  border-bottom: 1px solid #2A2A2A;
  background: #1A1A1A;
}

.wage-row:last-child {
  border-bottom: none;
}

.wage-header {
  background: var(--orange);
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
}

.wage-row div {
  font-size: 18px;
  font-weight: 600;
}

.wage-note {
  margin-top: 24px;
  color: #BDBDBD;
  font-size: 14px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.step-card {
  background: #1D1D1D;
  border: 1px solid #2A2A2A;
  padding: 40px;
  transition: 0.25s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.step-card span {
  display: inline-block;
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.step-card p {
  color: #D0D0D0;
  line-height: 1.7;
}

.step-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.faq-item {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.faq-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.faq-item p {
  color: #D0D0D0;
  line-height: 1.7;
}

.final-cta {
  padding: 120px 80px;
  background: var(--orange);
  color: var(--black);
  border-top: 1px solid rgba(0,0,0,0.15);  
}

.final-cta-content {
  max-width: 820px;
}

.final-cta .section-label {
  color: var(--black);
}

.final-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.final-cta p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.final-cta .primary-btn {
  background: var(--black);
  color: var(--white);
}

.final-cta .secondary-btn {
  border-color: var(--black);
  color: var(--black);
}

.footer {
  padding: 60px 80px;
  background: #0D0D0D;
  border-top: 1px solid #1F1F1F;
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 28px;
}

.footer-logo span {
  color: var(--orange);
}

.footer-links {
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
}

.footer-links a {
  color: #D0D0D0;
  text-decoration: none;
  font-weight: 500;
}

.footer-copy {
  color: #7A7A7A;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }

  .final-cta {
  padding: 80px 24px;
  }

  .final-cta h2 {
  font-size: 44px;
  }
  .wage-row {
  grid-template-columns: 1fr;
  gap: 10px;
  }

  .section {
    padding: 80px 24px;
  }

  .section h2 {
    font-size: 42px;
  }

  .site-header {
    padding: 24px;
    flex-direction: column;
    gap: 24px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 40px 24px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }
  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 14px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }  

  .calculator-page .primary-btn,
  .toolkit-page .primary-btn {
  margin-left: 24px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-delay-1 {
  animation-delay: 0.15s;
}

.fade-delay-2 {
  animation-delay: 0.3s;
}

.fade-delay-3 {
  animation-delay: 0.45s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.starter-pack-section {
  background: #121212;
}

.starter-pack-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-top: 50px;
}

.starter-pack-left,
.starter-pack-right {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  padding: 42px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.starter-pack-left h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.starter-pack-left ul {
  list-style: none;
}

.starter-pack-left li {
  padding: 18px 0;
  border-bottom: 1px solid #2A2A2A;
  font-size: 18px;
  font-weight: 600;
}

.starter-pack-left li:last-child {
  border-bottom: none;
}

.starter-price {
  font-family: 'Oswald', sans-serif;
  font-size: 72px;
  color: var(--orange);
  margin-bottom: 24px;
}

.starter-description {
  color: #D0D0D0;
  line-height: 1.7;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .starter-pack-card {
    grid-template-columns: 1fr;
  }

  .starter-price {
    font-size: 56px;
  }
}

.calculator-placeholder {
  margin-top: 50px;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  padding: 42px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.calculator-placeholder h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.calculator-placeholder p {
  color: #D0D0D0;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 32px;
}

.header-scrolled {
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.primary-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.secondary-btn:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
}

section {
  scroll-margin-top: 120px;
}

.disclaimer-section {
  padding: 36px 80px;
  background: #111111;
  border-top: 1px solid #1F1F1F;
}

.disclaimer-section p {
  color: #8A8A8A;
  font-size: 13px;
  line-height: 1.7;
  max-width: 1100px;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 32px 24px;
  }
}

::selection {
  background: var(--orange);
  color: var(--black);
}

img {
  max-width: 100%;
  display: block;
}

a {
  -webkit-tap-highlight-color: transparent;
}

.primary-btn,
.secondary-btn,
.product-card,
.pathway-card,
.step-card {
  will-change: transform;
}

.jobs-page {
  padding: 140px 80px;
  min-height: 100vh;
}

.jobs-hero {
  margin-bottom: 48px;
}

.jobs-hero h1 {
  font-size: 56px;
  margin-bottom: 16px;
}

.jobs-hero p {
  max-width: 720px;
  line-height: 1.7;
  color: #BDBDBD;
}

.jobs-controls {
  display: grid;
  grid-template-columns: 1fr 220px 220px 180px;
  gap: 16px;
  margin-bottom: 40px;
}

.jobs-controls input,
.jobs-controls select {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #2A2A2A;
  background: #111111;
  color: white;
  font-size: 16px;
}

.jobs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.job-card {
  background: #121212;
  border: 1px solid #242424;
  border-radius: 24px;
  padding: 28px;
  transition: 0.2s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  border-color: #3A3A3A;
}

.job-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.job-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  color: #C8C8C8;
}

.entry-tag {
  display: inline-block;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1E3A2F;
  color: #7DFFB0;
  font-size: 14px;
}

.job-card a {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #F5A623;
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.job-card a:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

@media (max-width: 900px) {

  .jobs-page {
    padding: 120px 24px;
  }

  .jobs-controls {
    grid-template-columns: 1fr;
  }

  .jobs-hero h1 {
    font-size: 40px;
  }
}

.jobs-note {
  margin-bottom: 28px;
  padding: 18px 22px;
  border: 1px solid #2A2A2A;
  border-radius: 18px;
  background: #111111;
}

.jobs-note p {
  margin: 0;
  color: #C8C8C8;
  line-height: 1.6;
}

.jobs-hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.job-top-row {
  margin-bottom: 14px;
}

.job-category-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1B1B1B;
  border: 1px solid #2F2F2F;
  color: #D8D8D8;
  font-size: 13px;
  text-transform: capitalize;
}

.jobs-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.job-tags-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.new-job-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #F5A623;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
}

.role-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.role-card {
  min-height: 96px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #121212;
  border: 1px solid #262626;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  transition: 0.2s ease;
}

.role-card:hover {
  border-color: #3A3A3A;
  transform: translateY(-2px);
}

.role-card h3 {
  margin: 0;
  color: #F5A623;
  font-size: 16px;
  line-height: 1.3;
}

.role-job-count {
  color: #F5A623;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.role-job-count:hover {
  text-decoration: underline;
}

.role-guide-link {
  color: #C8C8C8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.role-guide-link:hover {
  color: #F5A623;
}

.role-links a:hover {
  transform: translateY(-2px);
  border-color: #3A3A3A;
}

.role-page {
  padding: 140px 80px;
  min-height: 100vh;
}

.role-hero {
  max-width: 900px;
  margin-bottom: 60px;
}

.role-hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-top: 32px;
  margin-bottom: 24px;
}

.role-hero p {
  font-size: 20px;
  line-height: 1.8;
  color: #C8C8C8;
  max-width: 760px;
}

.role-content {
  max-width: 900px;
}

.role-content h2 {
  font-size: 32px;
  margin-top: 56px;
  margin-bottom: 18px;
}

.role-content p {
  line-height: 1.9;
  color: #D0D0D0;
  margin-bottom: 20px;
}

.role-content ul {
  padding-left: 24px;
  margin-bottom: 24px;
}

.role-content li {
  margin-bottom: 14px;
  line-height: 1.8;
  color: #D0D0D0;
}

.role-content .primary-btn {
  margin-top: 36px;
}

@media (max-width: 900px) {

  .role-page {
    padding: 120px 24px;
  }

  .role-hero h1 {
    font-size: 40px;
  }

  .role-content h2 {
    font-size: 28px;
  }

  .role-hero p {
    font-size: 18px;
  }
}

.load-more-btn {
  background: #F5A623;
  color: #000000;
  border: none;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

.load-more-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.calculator-page {
  padding: 140px 80px;
  min-height: 100vh;
}

.calculator-hero {
  text-align: center;
  margin-bottom: 60px;
}

.calculator-hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.calculator-hero p {
  color: #CFCFCF;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.wage-calculator {
  max-width: 900px;
  margin: 0 auto;
  background: #121212;
  border: 1px solid #2A2A2A;
  border-radius: 20px;
  padding: 40px;
}

.calculator-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.calculator-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
  font-weight: 600;
}

.calculator-form input,
.calculator-form select {
  background: #1B1B1B;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 16px;
  color: white;
  font-size: 16px;
}

.calculator-form button {
  grid-column: span 2;
}

.calculator-results {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.result-card {
  background: #1B1B1B;
  border: 1px solid #2D2D2D;
  border-radius: 14px;
  padding: 24px;
}

.result-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.result-card p {
  font-size: 28px;
  font-weight: 700;
}

.calculator-cta {
  margin-top: 30px;
  text-align: center;
  grid-column: span 2;
}

.calculator-cta p {
  margin-bottom: 20px;
  color: #D0D0D0;
}

@media (max-width: 768px) {

  .calculator-form {
    grid-template-columns: 1fr;
  }

  .calculator-form button {
    grid-column: span 1;
  }

  .calculator-hero h1 {
    font-size: 38px;
  }

  .wage-calculator {
    padding: 24px;
  }
  .calculator-results {
    grid-template-columns: 1fr;
  }

  .calculator-cta {
    grid-column: span 1;
  }
  .calculator-page,
  .toolkit-page {
    padding: 120px 24px;
  }

}

.calculator-note {
  margin-top: 40px;
  background: #171717;
  border: 1px solid #2A2A2A;
  border-radius: 14px;
  padding: 20px;
}

.calculator-note p {
  color: #CFCFCF;
  line-height: 1.7;
}

.roster-calendar-section {
  margin-top: 60px;
}

.roster-calendar-section h2 {
  margin-bottom: 12px;
}

.roster-calendar-section p {
  color: #CFCFCF;
  margin-bottom: 30px;
}

.roster-calendar {
  background: #171717;
  border: 1px solid #2A2A2A;
  border-radius: 20px;
  padding: 30px;
}

.roster-calendar h3 {
  margin-bottom: 24px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.calendar-weekdays {
  margin-bottom: 12px;
}

.calendar-weekdays div {
  text-align: center;
  color: #A0A0A0;
  font-weight: 700;
}

.calendar-day {
  min-height: 90px;
  background: #1E1E1E;
  border: 1px solid #2F2F2F;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.calendar-day span {
  font-weight: 700;
}

.calendar-day.today {
  border: 2px solid white;
}

.calendar-day.empty {
  background: transparent;
  border: none;
}

@media (max-width: 768px) {

  .calendar-weekdays,
  #calendarDays {
    min-width: 520px;
  }

  .calendar-day {
    min-height: 54px;
    padding: 4px;
    border-radius: 8px;
  }

  .calendar-day span {
    font-size: 12px;
  }

  .calendar-day small {
    font-size: 9px;
    line-height: 1.2;
  }

  .roster-calendar {
    padding: 14px;
  }

  .roster-calendar {
  overflow-x: auto;
  }

  .calendar-grid {
    min-width: 520px;
  }
}

.calendar-day {
  flex-direction: column;
  gap: 8px;
}

.calendar-day small {
  color: #CFCFCF;
  font-size: 12px;
  font-weight: 700;
}

.calendar-day.work-day {
  background: #2A1A1A;
  border-color: #5A2A2A;
}

.calendar-day.home-day {
  background: #1A241A;
  border-color: #2D5A2D;
}

.calendar-legend {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.legend-item {
  font-size: 14px;
  font-weight: 700;
}

.work-legend {
  color: #F2B8B8;
}

.home-legend {
  color: #B8F2B8;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.calendar-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #1E1E1E;
  color: white;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}
.calculator-form small {
  color: #9F9F9F;
  font-size: 13px;
  line-height: 1.5;
}

.toolkit-page {
  padding: 140px 80px;
  min-height: 100vh;
}

.toolkit-grid {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.toolkit-card {
  background: #171717;
  border: 1px solid #2A2A2A;
  border-radius: 20px;
  padding: 40px;
}

.toolkit-card h2 {
  margin-bottom: 16px;
}

.toolkit-card p {
  color: #CFCFCF;
  line-height: 1.7;
  margin-bottom: 30px;
}

@media (max-width: 768px) {

  .toolkit-grid {
    grid-template-columns: 1fr;
  }
}
.tool-switcher {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.back-link {
  display: inline-block;
  margin: 0 0 40px 0;
  color: #CFCFCF;
  text-decoration: none;
  font-weight: 700;
}

.back-link:hover {
  color: white;
}
.calculator-page .primary-btn,
.toolkit-page .primary-btn {
  margin-left: 80px;
}

.calendar-day.public-holiday {
  border-color: #C9A227;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.35);
}

.calendar-day.public-holiday small:last-child {
  color: #F2D16B;
}

.holiday-legend {
  color: #F2D16B;
}

.calendar-day.school-holiday {
  box-shadow: 0 0 0 1px rgba(93, 156, 236, 0.35);
}

.calendar-day.school-holiday small:last-child {
  color: #9CC7FF;
}

.school-legend {
  color: #9CC7FF;
}

.calendar-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.calendar-export-gate {
  margin: 30px 0;
  background: #171717;
  border: 1px solid #2A2A2A;
  border-radius: 16px;
  padding: 24px;
}

.calendar-export-gate h3 {
  margin-bottom: 12px;
}

.calendar-export-gate p {
  color: #CFCFCF;
  margin-bottom: 20px;
}

.export-form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.export-form input {
  background: #1B1B1B;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 16px;
  color: white;
  font-size: 16px;
  min-width: 260px;
}

.hidden {
  display: none !important;
}

.email-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.email-modal-card {
  width: 100%;
  max-width: 500px;
  background: #171717;
  border: 1px solid #2A2A2A;
  border-radius: 20px;
  padding: 32px;
}

.email-modal-card h3 {
  margin-bottom: 12px;
}

.email-modal-card p {
  color: #CFCFCF;
  margin-bottom: 24px;
  line-height: 1.7;
}

.email-modal-card input {
  width: 100%;
  background: #1B1B1B;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 16px;
  color: white;
  font-size: 16px;
  margin-bottom: 24px;
}

.email-modal-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media print {
  body * {
    visibility: hidden;
  }

  #printCalendar,
  #printCalendar * {
    visibility: visible;
  }

  #printCalendar {
    display: block !important;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 24px;
    background: white;
    color: black;
  }

  .print-month {
    page-break-after: always;
  }

  .print-month h2 {
    color: black;
    margin-bottom: 20px;
  }

  .print-weekdays,
  .print-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
  }

  .print-weekdays {
    margin-bottom: 8px;
    font-weight: 700;
    text-align: center;
  }

  .print-day {
    min-height: 80px;
    border: 1px solid #999;
    padding: 8px;
    font-size: 12px;
  }

  .print-day.empty {
    border: none;
  }

  .print-day {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .print-day span {
    font-size: 11px;
    font-weight: 700;
  }

  .print-work-day {
    background-color: #F8DADA !important;
  }

  .print-home-day {
    background-color: #DFF3DF !important;
  }
  
  .print-public-holiday {
    border: 2px solid #B38B00;
  }

  .print-school-holiday {
    box-shadow: inset 0 0 0 2px #5D9CEC;
  }

  .print-public-holiday span:last-child,
  .print-school-holiday span:last-child {
    font-size: 10px;
  }

  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
@media (max-width: 900px) {

  .role-links {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-bottom: 28px;
    padding-bottom: 8px;
  }

  .role-card {
    min-width: 170px;
    min-height: auto;
    padding: 12px 14px;
    flex-shrink: 0;
  }

  .role-card h3 {
    font-size: 14px;
  }

  .role-filter-btn {
    padding: 9px 10px;
    font-size: 13px;
  }

  .role-links a {
    min-width: 170px;
    min-height: auto;
    padding: 12px 14px;
    border-radius: 999px;
    font-size: 13px;
    white-space: nowrap;
  }

  .role-job-count {
    font-size: 11px;
    margin-top: 4px;
  }
}

.jobs-signup {
  padding: 28px;
  margin-bottom: 36px;
  border-radius: 18px;
  background: #121212;
  border: 1px solid #262626;
}

.jobs-signup h2 {
  margin-bottom: 10px;
}

.jobs-signup p {
  color: #C8C8C8;
  margin-bottom: 20px;
}

.jobs-signup-form {
  display: flex;
  gap: 12px;
}

.jobs-signup-form input {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #333;
  background: #111;
  color: white;
}

.jobs-signup-form button {
  border: none;
  border-radius: 12px;
  background: #F5A623;
  color: #000;
  font-weight: 700;
  padding: 14px 22px;
  cursor: pointer;
}

@media (max-width: 900px) {

  .jobs-signup-form {
    flex-direction: column;
  }

  .legal-hero {
    padding: 120px 24px 48px;
  }

  .legal-hero h1 {
    font-size: 3rem;
  }

  .legal-hero p {
    font-size: 1rem;
  }

  .legal-content {
    padding: 0 16px 80px;
  }

  .legal-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .legal-card h2 {
    font-size: 1.1rem;
    margin-top: 34px;
  }

  .contact-section {
    padding-top: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .contact-card h2 {
    font-size: 1.45rem;
  }

  .contact-email {
    font-size: 1.05rem;
    word-break: break-word;
  }
}

.jobs-signup-message {
  margin-top: 12px;
  color: #C8C8C8;
  font-size: 14px;
}

.legal-hero {
  padding: 160px 80px 70px;
  text-align: center;
  background: #111111;
}

.legal-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  margin: 18px 0;
  text-transform: uppercase;
}

.legal-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #D0D0D0;
  font-size: 1.15rem;
  line-height: 1.7;
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px 120px;
}

.legal-updated {
  color: #F5A623;
  font-weight: 700;
  margin-bottom: 24px;
}

.legal-card {
  background: #181818;
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 24px;
  padding: 56px;
}

.legal-card h2 {
  color: #F5A623;
  font-size: 1.5rem;
  margin: 44px 0 14px;
  text-transform: uppercase;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: #D0D0D0;
  line-height: 1.8;
  margin-bottom: 0;
}

.legal-card a {
  color: #F5A623;
  font-weight: 700;
}

.contact-section {
  padding-top: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  background: #171717;
  border: 1px solid rgba(245, 166, 35, 0.22);
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.contact-card h2 {
  font-size: 2rem;
  margin: 18px 0 18px;
  text-transform: uppercase;
}

.contact-card p {
  color: #D0D0D0;
  line-height: 1.7;
}

.contact-email {
  display: inline-block;
  margin-top: 24px;
  color: #F5A623;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-note {
  margin-top: 28px;
  color: #FFC107;
  font-weight: 700;
}

.contact-list {
  margin-top: 24px;
  padding-left: 20px;
}

.contact-list li {
  color: #D0D0D0;
  margin-bottom: 14px;
  line-height: 1.6;
}