/* ===========================
   Variables & Reset
=========================== */
:root {
  --navy:        #124559;
  --navy-dark:   #0c3647;
  --navy-darker: #0a2d3c;
  --orange:      #F15A24;
  --orange-dark: #e14610;
  --teal:        #54BCAB;
  --teal-dark:   #1B998B;
  --yellow:      #F9B348;
  --cream:       #F1F0EB;
  --text:        #124559;
  --text-body:   #124559;
  --text-muted:  #5a6b75;
  --border-muted: #B3C0C3;
  --white:       #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--cream);
  background-image:
    url('https://go1.marketing-automation.ca/rs/251-PAM-072/images/orange-circ.svg'),
    url('https://go1.marketing-automation.ca/rs/251-PAM-072/images/green-circ.svg'),
    url('https://go1.marketing-automation.ca/rs/251-PAM-072/images/yellow-circ.svg');
  background-repeat: no-repeat;
  background-position:
    right -80px top 120px,
    right -110px top 760px,
    right 40px top 1540px;
  background-size: 380px 380px, 380px 380px, 380px 380px;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.mktoForm .mktoOffset {
  display: none;
  float: left;
  height: 1.2em;
}

.mktoButtonRow {
  position: relative;
  display: flex!important;
  justify-content: center;
  margin-top: 20px !important;
}

p { margin-bottom: 0; }

a { color: var(--orange); }
a:hover { color: var(--orange-dark); }

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

/* ===========================
   Header
=========================== */
.site-header {
  background: transparent;
  padding: 28px 0 12px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .logo-img {
  height: 52px;
  width: auto;
}

/* ===========================
   Page Layout (two-column, full height)
=========================== */
.page-layout {
  padding: 20px 0 60px;
}

.hero-overline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

/* Event Details card (cream + orange border, inside hero) */
.event-details-card {
  background: var(--cream);
  border: 1px solid var(--orange);
  border-radius: 12px;
  padding: 40px;
  color: var(--text-body);
  margin-top: 6px;
}

.event-details-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-body);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.event-details-list li:last-child { border-bottom: none; padding-bottom: 0; }
.event-details-list li:first-child { padding-top: 0; }

.event-details-list .det-icon {
  color: var(--orange);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 14px;
}

/* Sticky form column */
.mkto-form-wrap {
  position: sticky;
  top: 32px;
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0px 8px 48px 0px rgba(57, 60, 61, 0.15);
  text-align: center;
}

.form-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-date-badge {
  display: inline-block;
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 8px;
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Mobile "View Details" button */
.mobile-view-details {
  margin-bottom: 24px;
}

.btn-outline-navy {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}

/* Stack cards in the left content column */
.content-col > * + * {
  margin-top: 20px;
}

/* ===========================
   Section Cards
=========================== */
.section-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid transparent;
}

/* Accent border variants (matching original per-section colors) */
.section-card--yellow  { border-color: var(--yellow); }
.section-card--teal    { border-color: var(--teal-dark); }
.section-card--orange  { border-color: var(--orange); }
.section-card--navy    { border-color: var(--navy); }

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

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 18px;
}

.section-text:last-child { margin-bottom: 0; }

/* ===========================
   Checklist (Who is this for)
=========================== */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-body);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.check-list li:last-child { border-bottom: none; padding-bottom: 0; }
.check-list li:first-child { padding-top: 0; }

.check-list .check-icon {
  color: var(--orange);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
}

/* ===========================
   What You'll Learn Grid
=========================== */
.learn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px 40px;
  margin-top: 28px;
}

.learn-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.learn-item img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

.learn-item-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.learn-item-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   Presenter Bio
=========================== */
.bio-content {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin-top: 24px;
}

.bio-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.bio-name {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.bio-role {
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 16px;
}

.bio-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

/* ===========================
   FAQ Accordion
=========================== */
.faq-list {
  margin-top: 8px;
}

.faq-item {
  border-bottom: 1px solid var(--border-muted);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-muted);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .faq-toggle-icon {
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  font-size: 14px;
}

.faq-item[open] summary .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

/* ===========================
   CTA Banner (dark navy)
=========================== */
.cta-section {
  background: var(--navy-dark);
  padding: 38px 0 40px;
  text-align: center;
  color: var(--white);
}

.cta-label {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.cta-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.btn-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 44px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
  background: var(--orange-dark);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

/* ===========================
   Footer
=========================== */
.site-footer {
  background: var(--navy-darker);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  opacity: 0.85;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   Marketo Form Overrides
=========================== */
.mktoForm {
  width: 100% !important;
  font-family: 'Work Sans', sans-serif !important;
}

.mktoForm .mktoFieldWrap input[type="text"],
.mktoForm .mktoFieldWrap input[type="email"],
.mktoForm .mktoFieldWrap input[type="tel"],
.mktoForm .mktoFieldWrap select {
  width: 100% !important;
  border-radius: 6px !important;
  font-family: 'Work Sans', sans-serif !important;
  font-size: 15px !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
}

.mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
  font-size: 16px !important;
  font-weight: 600 !important;
  background: var(--navy) !important;
  background-image: none !important;
  border-radius: 8px !important;
  padding: 14px 32px !important;
  width: 100% !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2) !important;
  transition: background 0.2s ease !important;
  border: none !important;
}

.mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover {
  background: var(--navy-dark) !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25) !important;
}

/* ===========================
   Container width override
=========================== */
@media (min-width: 1200px) {
  .container { max-width: 1240px; }
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 991px) {
  .hero-title { font-size: 40px; }
  .section-title { font-size: 28px; }
  .learn-grid { grid-template-columns: 1fr; gap: 28px; }
  .bio-content { gap: 24px; }
  .bio-photo { width: 120px; height: 120px; }
}

@media (max-width: 767px) {
  body { background-image: none; }
  .page-layout { padding: 28px 0 40px; }
  .hero-title { font-size: 32px; letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 16px; }
  .event-details-card { padding: 24px 20px; }
  .mkto-form-wrap { position: static; margin-top: 28px; padding: 24px 20px; }
  .section-card { padding: 24px 20px; }
  .content-col > * + * { margin-top: 14px; }
  .section-title { font-size: 26px; }
  .cta-section { padding: 40px 0; }
  .cta-label { font-size: 26px; }
  .bio-content { flex-direction: column; align-items: center; text-align: center; }
  .bio-photo { margin-bottom: 8px; }
  .section-card--navy .section-eyebrow,
  .section-card--navy .section-title { text-align: center; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-left { justify-content: center; }
}
