/* ============================================
   JAMES SCHRAMKO — Static Site Stylesheet
   Cloned from live jamesschramko.com design
   ============================================ */

/* --- CSS Reset & Variables --- */
:root {
  --white: #FFFFFF;
  --light-bg: #F5FAFE;
  --text: #212529;
  --nav-text: #FFFFFF;
  --cta-orange: #f25812;
  --cta-subscribe: #FF6B35;
  --nav-dark: #1a1a2e;
  --hero-bg: #0d0d1a;
  --blue: #2578bc;
  --dark-navy: #05203e;
  --max-width: 1200px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::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);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  background: var(--white);
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.85;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.2em; }

ul, ol {
  margin-bottom: 1.2em;
  padding-left: 1.5em;
}

li { margin-bottom: 0.4em; }

strong { font-weight: 600; }

/* --- Subscribe Top Bar --- */
.subscribe-bar {
  background: var(--dark-navy);
  color: var(--white);
  padding: 10px 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.subscribe-bar span {
  color: var(--white);
}

.subscribe-bar .btn-subscribe {
  background: var(--cta-subscribe);
  color: var(--white);
  padding: 6px 20px;
  border: none;
  border-radius: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-block;
}

.subscribe-bar .btn-subscribe:hover {
  opacity: 0.9;
}

/* --- Navigation --- */
.site-nav {
  background: var(--dark-navy);
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 22px;
  width: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--nav-text);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  text-transform: capitalize;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* --- Hero Section --- */
.hero {
  background: var(--hero-bg) url('/assets/images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 80px 30px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 26, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero .hero-stats .stat {
  text-align: center;
}

.hero .hero-stats .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
}

.hero .hero-stats .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 35px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

.btn-white {
  background: var(--white);
  color: var(--dark-navy);
}

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

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* --- Sections --- */
.section {
  padding: 70px 30px;
}

.section-alt {
  background: var(--light-bg);
}

.section-dark {
  background: var(--dark-navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-weight: 900;
  font-size: 2.2rem;
}

.section-header p {
  max-width: 700px;
  margin: 0.5rem auto 0;
  color: #666;
  font-size: 1.1rem;
}

/* --- Two-column layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-text h2 {
  font-weight: 900;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  padding: 30px;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.card h3 a {
  color: var(--text);
}

.card h3 a:hover {
  color: var(--blue);
}

.card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Process Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.step {
  text-align: center;
  padding: 20px;
}

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

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: #666;
}

/* --- Testimonials --- */
.testimonial {
  background: var(--white);
  padding: 30px;
  border-left: 4px solid var(--cta-orange);
  margin-bottom: 25px;
}

.testimonial blockquote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.testimonial .attribution {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial .attribution span {
  font-weight: 400;
  color: #666;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  padding: 25px;
  display: flex;
  gap: 20px;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.testimonial-card .attribution {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
}

/* --- Trustpilot Screenshots --- */
.trustpilot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.trustpilot-grid img {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

/* --- For/Not-For Lists --- */
.for-not-for {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 2rem 0;
}

.for-list h3,
.not-for-list h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.for-list ul,
.not-for-list ul {
  list-style: none;
  padding: 0;
}

.for-list li,
.not-for-list li {
  padding: 8px 0 8px 28px;
  position: relative;
}

.for-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 700;
}

.not-for-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: 700;
}

/* --- FAQ / Accordion --- */
.faq-item {
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0;
}

.faq-question {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding-top: 12px;
  color: #555;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- Pricing Box --- */
.pricing-box {
  background: var(--white);
  border: 2px solid var(--cta-orange);
  padding: 40px;
  text-align: center;
  max-width: 500px;
  margin: 2rem auto;
}

.pricing-box .price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.pricing-box .price-period {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* --- Episode Page --- */
.episode-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 2rem;
  background: #000;
}

.episode-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.episode-platforms {
  display: flex;
  gap: 15px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.episode-platforms a {
  display: inline-block;
  padding: 8px 20px;
  background: var(--dark-navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  border-radius: 0;
}

.episode-shownotes {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.episode-shownotes h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.episode-shownotes h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

/* --- Show Hub --- */
.show-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.platform-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.platform-links a {
  display: inline-block;
  padding: 12px 25px;
  background: var(--dark-navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
}

.topic-section {
  margin-bottom: 2.5rem;
}

.topic-section h3 {
  font-size: 1.2rem;
  color: var(--cta-orange);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.topic-section ul {
  list-style: none;
  padding: 0;
}

.topic-section li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.topic-section a {
  color: var(--text);
  font-weight: 500;
}

.topic-section a:hover {
  color: var(--blue);
}

/* --- Products Page --- */
.product-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  padding: 30px;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 1.3rem;
}

.product-card .product-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cta-orange);
  font-size: 1.1rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.partner-card {
  padding: 20px;
  border: 1px solid #e8e8e8;
  background: var(--white);
}

.partner-card h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.partner-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* --- Framework Page --- */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 2rem;
}

.framework-item {
  background: var(--white);
  border: 1px solid #e8e8e8;
  padding: 25px;
}

.framework-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--cta-orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.framework-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.framework-item .outcome {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* --- Book Page --- */
.book-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
}

.book-cover img {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.book-quotes {
  margin-top: 2rem;
}

.book-quote {
  border-left: 3px solid var(--cta-orange);
  padding-left: 20px;
  margin-bottom: 1.5rem;
}

.book-quote p {
  font-style: italic;
}

.book-quote .quote-author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  font-size: 0.9rem;
}

/* --- Internal Links Block --- */
.internal-links {
  background: var(--light-bg);
  padding: 40px 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.internal-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--blue);
}

/* --- Footer --- */
.site-footer {
  background: var(--dark-navy);
  color: rgba(255,255,255,0.7);
  padding: 40px 30px;
  text-align: center;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: var(--white);
  font-size: 20px;
  opacity: 0.8;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin: 0 10px;
}

.footer-links a:hover {
  color: var(--white);
}

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

/* --- Contact Page --- */
.contact-info {
  max-width: 700px;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.contact-notice {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 15px 20px;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

/* --- Calls Page (Standalone) --- */
.calls-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: var(--font-body);
}

.calls-page h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.call-schedule {
  margin: 2rem 0;
}

.call-item {
  background: var(--light-bg);
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid var(--blue);
}

.call-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.call-item p {
  margin-bottom: 0;
  color: #555;
}

/* --- Privacy/Terms --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 2rem;
}

/* --- Timeline (About Page) --- */
.timeline {
  position: relative;
  padding-left: 30px;
  margin: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cta-orange);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
  padding-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cta-orange);
}

.timeline-year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cta-orange);
  font-size: 1rem;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* --- Responsive --- */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 50px 20px; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .for-not-for {
    grid-template-columns: 1fr;
  }

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

  .book-cover {
    text-align: center;
  }

  .book-cover img {
    max-width: 250px;
    margin: 0 auto;
  }

  .section { padding: 40px 20px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-navy);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: relative;
  }

  .hero .hero-stats {
    gap: 20px;
  }

  .hero .hero-stats .stat-number {
    font-size: 1.5rem;
  }

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

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

  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-card img {
    margin: 0 auto;
  }

  .internal-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  h1 { font-size: 1.7rem; }
  .hero h1 { font-size: 1.8rem; }
  .btn { padding: 12px 25px; font-size: 14px; }
  .subscribe-bar { font-size: 12px; gap: 10px; }
}
