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

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #142B72;
  --navy-dark: #0D1F5C;
  --navy-deep: #091540;
  --red: #D91F26;
  --red-light: #F03A40;
  --off-white: #F8F8F8;
  --white: #FFFFFF;
  --text: #333;
  --text-mid: #555;
  --text-light: #888;
  --border: rgba(20,43,114,0.1);
  --shadow: 0 18px 45px rgba(0,0,0,0.07);
  --shadow-lg: 0 30px 70px rgba(20,43,114,0.13);
  --radius: 20px;
  --radius-sm: 10px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

/* ── TOP BAR ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-inner {
  max-width: 1400px;
  margin: auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 90px;
}

.logo-img {
  height: 84px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

.logo-fallback {
  display: none;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo-fallback em {
  font-style: normal;
  color: var(--red-light);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-home {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.topbar-home:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.topbar-cta {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.topbar-cta:hover { transform: translateY(-1px); }

/* ── SIDEBAR BACK BUTTON ── */
.sidebar-back {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition: background 0.18s ease, color 0.18s ease;
  letter-spacing: 0.02em;
}
.sidebar-back:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

/* ── SCREENS ── */
.screen { display: none; }
.screen.active { display: block; }

/* ── WELCOME SCREEN ── */
.welcome-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(50px, 6vw, 90px) 24px;
}

.welcome-eyebrow {
  display: inline-block;
  background: rgba(217,31,38,0.1);
  border: 1px solid rgba(217,31,38,0.3);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.welcome-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.12;
  margin-bottom: 20px;
}
.welcome-title em {
  font-style: normal;
  color: var(--red);
}

.welcome-sub {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* ── INDUSTRY GRID ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.industry-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-align: left;
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.industry-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.industry-card-body {}

.industry-card-name {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}

.industry-card-tagline {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.industry-card-arrow {
  margin-left: auto;
  font-size: 1.1rem;
  color: var(--red);
  align-self: center;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.industry-card:hover .industry-card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ── WEEK SCREEN LAYOUT ── */
.week-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 120px);
}

/* ── SIDEBAR ── */
.week-sidebar {
  background: var(--navy-dark);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 120px;
  height: calc(100vh - 120px);
  overflow-y: auto;
}

.sidebar-industry {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.week-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.week-nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s ease;
  width: 100%;
}
.week-nav-btn:hover { background: rgba(255,255,255,0.07); }
.week-nav-btn.active { background: rgba(217,31,38,0.18); }

.week-nav-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  transition: background 0.18s ease, color 0.18s ease;
}
.week-nav-btn.active .week-nav-num {
  background: var(--red);
  color: #fff;
}

.week-nav-info {}
.week-nav-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
}
.week-nav-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-top: 1px;
}
.week-nav-btn.active .week-nav-title { color: #fff; }

/* Sidebar summary CTA */
.sidebar-cta {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.sidebar-cta p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ── WEEK MAIN ── */
.week-main {
  padding: clamp(32px, 4vw, 56px);
  max-width: 860px;
}

.week-header {
  margin-bottom: 40px;
}

.week-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,31,38,0.08);
  border: 1px solid rgba(217,31,38,0.25);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.week-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 10px;
}

.week-focus {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 600px;
}

/* ── CONTENT BLOCKS ── */
.week-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.content-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow);
}

.block-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.block-icon { font-size: 1.3rem; }

.block-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
}

.block-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  width: 100%;
  line-height: 1.5;
}

/* Questions */
.questions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.question-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
  cursor: pointer;
  transition: background 0.18s ease;
}
.question-item:hover { background: #f0f0f0; }
.question-item.checked { background: rgba(20,43,114,0.04); border-left-color: var(--navy); }

.question-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(217,31,38,0.4);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: transparent;
  transition: all 0.18s ease;
  background: white;
}
.question-item.checked .question-check {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.question-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
}
.question-item.checked .question-text { color: var(--text-light); }

/* Workshops */
.workshops-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.workshop-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(20,43,114,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.workshop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
  margin-top: 6px;
}

.workshop-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
}

.workshop-title {
  font-weight: 700;
  color: var(--navy);
}

/* Training */
.training-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.training-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  background: rgba(217,31,38,0.03);
  border-radius: var(--radius-sm);
}

.training-arrow {
  color: var(--red);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 4px;
  font-weight: 700;
}

.training-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

/* Deliverable */
.deliverable-block {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.deliverable-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
  margin-top: 3px;
  white-space: nowrap;
}

.deliverable-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  font-weight: 500;
}

/* ── WEEK FOOTER ── */
.week-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  gap: 16px;
}

.progress-dots {
  display: flex;
  gap: 8px;
}

.progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.progress-dot.active {
  background: var(--red);
  transform: scale(1.3);
}
.progress-dot.done { background: var(--navy); }

/* ── BUTTONS ── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,31,38,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(20,43,114,0.04);
}

/* ── SUMMARY SCREEN ── */
.summary-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 70px) 24px;
}

.summary-header {
  margin-bottom: 48px;
}

.summary-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-dark);
  margin: 14px 0 10px;
}

.summary-sub {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.7;
}

.summary-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.summary-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.summary-week-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.summary-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.summary-card-focus {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1px;
}

.summary-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 14px 0 8px;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.summary-item {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}
.summary-item::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.75rem;
}

.summary-deliverable {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(20,43,114,0.05);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--navy);
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}

.summary-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}
.summary-footer a { color: var(--navy); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .week-layout {
    grid-template-columns: 1fr;
  }
  .week-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }
  .sidebar-industry { display: none; }
  .week-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .week-nav-btn {
    padding: 8px 14px;
    gap: 8px;
  }
  .week-nav-label { display: none; }
  .sidebar-cta { display: none; }
  .summary-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .welcome-title { font-size: 1.9rem; }
  .industry-grid { grid-template-columns: 1fr; }
  .week-footer { flex-wrap: wrap; justify-content: center; }
  .summary-actions { flex-direction: column; }
}

/* ── PRINT STYLES ── */
@media print {
  .topbar, .week-sidebar, .week-footer, .summary-actions { display: none !important; }
  .week-layout { grid-template-columns: 1fr; }
  .week-main { max-width: 100%; padding: 0; }
  .screen { display: block !important; }
  #screen-welcome, #screen-week { display: none !important; }
  #screen-summary { display: block !important; }
  .summary-grid { grid-template-columns: 1fr 1fr; }
  .summary-card { break-inside: avoid; box-shadow: none; border: 1px solid #ddd; }
  body { background: white; }
}

/* ══ SITE FOOTER ══ */

.site-footer {
  background: var(--navy-deep);
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  align-items: start;
}

/* Brand column */
.footer-brand {}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 16px;
  display: block;
}

.footer-logo-fallback {
  display: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-logo-fallback em {
  font-style: normal;
  color: var(--red-light);
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 4px;
}

/* Links columns */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.18s ease;
  line-height: 1.4;
}
.footer-col a:hover { color: #fff; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 32px;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

.footer-legal {
  font-style: italic;
}

/* Responsive footer */
@media (max-width: 768px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 20px 28px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
}

/* Print — hide footer */
@media print {
  .site-footer { display: none !important; }
}

/* ── FOOTER SOCIAL ICONS ── */
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
  line-height: 1;
}

.footer-col a {
  display: flex !important;
  align-items: center;
}

/* 4-column footer grid */
.footer-links {
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 900px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr !important;
  }
}
