/* ============================================
   AI Roadmap Workshop — Landing Page Styles
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-cobalt: #004AAD;
  --color-cobalt-dark: #003A8A;
  --color-black: #14080E;
  --color-green: #058C42;
  --color-green-light: #E8F5EE;
  --color-orange: #F2542D;
  --color-orange-dark: #D9401F;
  --color-yellow: #FFD972;
  --color-platinum: #EFF2F1;
  --color-white: #FFFFFF;

  --font-heading: "League Spartan", "Arial Black", sans-serif;
  --font-sub: "Century Gothic", "Futura", sans-serif;
  --font-body: "Libre Baskerville", Georgia, serif;

  --max-width: 1200px;
  --section-padding: 100px;
  --radius: 6px;
  --shadow-sm: 0 2px 8px rgba(20, 8, 14, 0.08);
  --shadow-md: 0 4px 12px rgba(20, 8, 14, 0.1);
  --shadow-cta: 0 4px 16px rgba(242, 84, 45, 0.35);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-cobalt);
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid var(--color-cobalt);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-cobalt);
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

strong {
  font-weight: 700;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

.section-alt {
  background-color: var(--color-platinum);
}

.section-blue {
  background: var(--color-cobalt);
}

.section-blue h2 {
  color: var(--color-white);
}

.section-blue .section-intro {
  color: rgba(255, 255, 255, 0.85);
}

.section-blue p {
  color: var(--color-white);
}

.section-parallax {
  background-image: url('https://www.dropbox.com/scl/fi/9bji90x5ukejhrzi2xug7/ai-roadmap-workshop-background-min.png?rlkey=z36b1y3pr8ec5mj42ig5xn8zx&raw=1');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: relative;
  background-color: #1C1018;
}

.section-parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 16, 24, 0.3);
  z-index: 0;
}

.section-parallax .container {
  position: relative;
  z-index: 1;
}

.section-parallax h2 {
  color: #1C1018;
}

.section-parallax .step-number {
  background-color: #1C1018;
}

.section-parallax .step-card {
  border-top-color: #1C1018;
}

.section-blue .step-card,
.section-blue .pricing-card,
.section-blue .value-anchor {
  /* Keep white cards on blue background */
}

.section-blue .step-card h3,
.section-blue .step-card p {
  color: var(--color-black);
}

.section-blue .pricing-card p,
.section-blue .pricing-card .price,
.section-blue .pricing-card .price-detail,
.section-blue .pricing-card .price-includes {
  color: var(--color-black);
}

.section-blue .value-anchor p {
  color: var(--color-black);
}

.section-intro {
  font-size: 1.2rem;
  max-width: 720px;
  margin-bottom: 2.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sub);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn:focus-visible {
  outline: 3px solid var(--color-cobalt);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--color-orange);
  color: var(--color-white);
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background-color: var(--color-orange-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242, 84, 45, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-cobalt);
  border: 2px solid var(--color-cobalt);
}

.btn-secondary:hover {
  background-color: var(--color-cobalt);
  color: var(--color-white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ---------- CTA Microcopy ---------- */
.cta-microcopy {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: var(--color-black);
  opacity: 0.6;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.cta-microcopy a {
  color: var(--color-cobalt);
  text-decoration: underline;
}

/* ---------- Sticky Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-platinum);
  padding: 12px 0;
  transition: box-shadow 0.2s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-cobalt);
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--color-cobalt-dark);
}

/* ---------- Hero ---------- */
.hero {
  padding: 100px 0 72px;
  text-align: center;
  background-image: url('https://www.dropbox.com/scl/fi/9bji90x5ukejhrzi2xug7/ai-roadmap-workshop-background-min.png?rlkey=z36b1y3pr8ec5mj42ig5xn8zx&raw=1');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #1C1018;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 16, 24, 0.3);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto 1.25rem;
  color: var(--color-white);
}

.hero-sub {
  font-family: var(--font-sub);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-white);
  max-width: 660px;
  margin: 0 auto 2rem;
  line-height: 1.55;
}

.hero-cta-group {
  margin-bottom: 2rem;
}

.hero-cta-group .cta-microcopy {
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Trust Strip */
.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white);
  opacity: 0.9;
}

.trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-white);
  opacity: 0.5;
}

.check-icon--sm {
  width: 22px;
  height: 22px;
  font-size: 0.7rem;
}

/* ---------- Social Proof Strip ---------- */
.proof-strip {
  background-color: var(--color-cobalt);
  padding: 24px 0;
}

.inline-testimonial {
  text-align: center;
}

.inline-testimonial p {
  color: var(--color-white);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  line-height: 1.6;
}

.inline-testimonial footer {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-sub);
  font-size: 0.9rem;
}

.inline-testimonial footer strong {
  color: var(--color-white);
}

/* ---------- Problem Section ---------- */
#problem h2 {
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 2rem;
}

.problem-card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FDEBE7;
  color: var(--color-orange);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-right: 0;
}

.problem-card p {
  margin-bottom: 0;
  text-align: left;
}

/* ---------- Solution / Check List ---------- */
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.solution-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.check-list {
  max-width: 720px;
}

.check-list-two-column {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 3rem;
}

.check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.check-list-two-column .check-item {
  margin-bottom: 0;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-green-light);
  color: var(--color-green);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 4px;
}

.check-item p {
  margin-bottom: 0;
}

/* ---------- Steps (How It Works) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 2rem;
}

.step-card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 3px solid var(--color-cobalt);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-cobalt);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.35rem;
}

.step-card p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* ---------- Deliverables ---------- */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 2rem;
}

.deliverable-group {
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 36px;
  border-top: 3px solid var(--color-green);
}

.deliverable-group h3 {
  margin-bottom: 1.25rem;
}

.deliverable-list {
  list-style: none;
}

.deliverable-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.deliverable-list li .check-icon {
  width: 26px;
  height: 26px;
  font-size: 0.85rem;
  margin-top: 2px;
}

/* ---------- Who Should Attend ---------- */
#who h2 {
  text-align: center;
}

#who .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 2rem;
}

.audience-card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.audience-card h3 {
  color: var(--color-cobalt);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.audience-card p {
  margin-bottom: 0;
  font-size: 1rem;
}

.note {
  font-family: var(--font-sub);
  font-size: 1rem;
  color: var(--color-green);
  font-weight: 500;
  text-align: center;
}

/* ---------- Example Outcomes ---------- */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.outcome-card {
  text-align: center;
  background-color: var(--color-platinum);
  border-radius: var(--radius);
  padding: 36px 24px;
  border-bottom: 3px solid var(--color-green);
}

.outcome-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--color-green);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.outcome-card p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* ---------- Investment / Pricing ---------- */
.pricing-card {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-orange);
}

.price {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--color-cobalt);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.price-detail {
  display: block;
  font-family: var(--font-sub);
  font-size: 1rem;
  color: var(--color-black);
  opacity: 0.65;
  margin-bottom: 0.25rem;
}

.price-includes {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.pricing-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.pricing-features li .check-icon {
  width: 24px;
  height: 24px;
  font-size: 0.8rem;
  margin-top: 3px;
}

/* Value Anchor */
.value-anchor {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 24px 32px;
  border-left: 4px solid var(--color-yellow);
}

.value-anchor p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* ---------- Paths Forward ---------- */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.path-card {
  position: relative;
  background-color: var(--color-platinum);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.path-card:hover {
  border-color: var(--color-cobalt);
}

.path-card--highlight {
  background-color: var(--color-white);
  border-color: var(--color-cobalt);
  box-shadow: var(--shadow-md);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.path-label {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-cobalt);
  margin-bottom: 0.75rem;
}

.path-card p:last-child {
  margin-bottom: 0;
  font-size: 1rem;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 2rem;
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 36px;
  border-left: 3px solid var(--color-yellow);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-yellow);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
  position: relative;
}

.testimonial-author {
  font-family: var(--font-sub);
  font-weight: 500;
  color: var(--color-cobalt);
  font-size: 1rem;
}

/* ---------- About ---------- */
.about-layout {
  display: flex;
  gap: 48px;
  align-items: center;
}

.about-photo {
  flex-shrink: 0;
}

.about-headshot {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 1rem;
}

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

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid #DDE1E0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-cobalt);
  cursor: pointer;
  list-style: none;
}

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

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-cobalt);
  color: var(--color-white);
  font-size: 1.2rem;
  font-family: var(--font-sub);
  margin-left: 16px;
  transition: background-color 0.2s;
}

.faq-item[open] .faq-question::after {
  content: "\2212";
  background-color: var(--color-green);
}

.faq-question:focus-visible {
  outline: 3px solid var(--color-cobalt);
  outline-offset: 2px;
  border-radius: 2px;
}

.faq-answer {
  padding: 0 0 20px;
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* ---------- Final CTA ---------- */
.cta-section {
  text-align: center;
  background: var(--color-cobalt);
}

.cta-section h2 {
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.cta-section .section-intro {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.85);
}

.cta-section .cta-microcopy {
  color: rgba(255, 255, 255, 0.6);
}

.cta-section .cta-microcopy a {
  color: var(--color-yellow);
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--color-black);
  color: var(--color-platinum);
  padding: 48px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(239, 242, 241, 0.15);
}

.footer-brand .logo {
  color: var(--color-white);
  font-size: 1.15rem;
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-sub);
}

.footer-contact strong {
  color: var(--color-white);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.5;
  margin-bottom: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px) */
@media (max-width: 1024px) {
  :root {
    --section-padding: 72px;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.5rem; }

  .hero { padding: 80px 0 60px; }
  .hero-sub { font-size: 1.1rem; }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-layout {
    gap: 32px;
  }
}

/* Small tablet / large phone */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  body { font-size: 1rem; }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.3rem; }

  .hero { padding: 64px 0 48px; }
  .hero-sub { font-size: 1.05rem; }

  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }

  .trust-divider { display: none; }

  .problem-grid,
  .audience-grid,
  .outcomes-grid,
  .paths-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .solution-layout {
    grid-template-columns: 1fr;
  }

  .about-layout {
    flex-direction: column;
    text-align: center;
  }

  .about-headshot {
    width: 180px;
    height: 180px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .pricing-card {
    padding: 36px 24px;
  }

  .price { font-size: 2.75rem; }

  .btn-lg {
    padding: 16px 28px;
    font-size: 1rem;
  }

  .badge {
    top: -12px;
    font-size: 0.8rem;
  }

  .faq-question {
    font-size: 1.05rem;
  }

  .testimonial-card::before {
    font-size: 3rem;
    top: 8px;
    left: 14px;
  }
}

/* Phone (375px) */
@media (max-width: 480px) {
  :root {
    --section-padding: 48px;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }

  .hero { padding: 52px 0 40px; }

  .container { padding: 0 16px; }

  .outcome-number { font-size: 1.75rem; }

  .about-headshot {
    width: 150px;
    height: 150px;
  }

  .proof-strip { padding: 16px 0; }
  .inline-testimonial p { font-size: 0.95rem; }
}
