/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

/* PPSupply font - custom font for headings */
@font-face {
  font-family: 'PPSupply';
  src: url('../fonts/PPSupplySans-Regular.woff2') format('woff2'),
       url('../fonts/PPSupplySans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  line-height: 1.5;
  color: #373C44;
  background: #ffffff;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

/* Alternating section backgrounds for visual rhythm */
.section--problem {
  background: #fafafa;
}

.section--solution {
  background: #ffffff;
}

.section--results {
  background: #1a1a1a;
  color: #ffffff;
}

.section--results .section__heading,
.section--results .section__subheading {
  color: #ffffff;
  text-align: center;
}

.section--comparison {
  background: #ffffff;
}

.section--use-cases {
  background: #fafafa;
}

.section--methodology {
  background: #ffffff;
}

.section--advantages {
  background: #fafafa;
}

.section--trust {
  background: #1a1a1a;
  color: #ffffff;
  text-align: center;
}

.section--trust .section__heading {
  color: #ffffff;
}

.trust-story {
  margin-bottom: 2rem;
}

.trust-story h3 {
  color: #ffffff;
}

.trust-story p {
  color: #ffffff;
  font-size: 1.3125rem;
  line-height: 1.6;
}

.credentials-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.credentials-list li {
  color: #ffffff;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.credentials-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.trust__subheadline {
  font-size: 1.3125rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.trust__description {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.differentiators-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.differentiators-list li {
  color: #ffffff;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.differentiators-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.trust__closing {
  font-size: 1.125rem;
  color: #ffffff;
  margin-top: 2rem;
  font-style: italic;
}

.trust__trust-line {
  font-size: 1.3125rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-top: 1rem;
}

.section--benefits-rhythm {
  background: #1a1a1a;
  padding: 2rem 0;
}

.benefit-rhythm-item {
  color: #ffffff;
}

/* Typography - matching myke.blog exactly */
h1, h2, h3 {
  font-family: 'PPSupply', sans-serif;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

h1 {
  font-size: 5rem;  /* 80px */
  line-height: 1.2;
  font-weight: 400;
}

h2 {
  font-size: 2.3625rem;  /* 37.8px */
  line-height: 1.0;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.575rem;   /* 25.2px */
  line-height: 1.5;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

/* Links - matching myke.blog */
a {
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.7;
}

/* Lists */
ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* CTA Buttons */
.cta {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.3125rem;  /* 21px */
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  border: 2px solid #1a1a1a;
  min-width: 44px;
  min-height: 44px;
  text-align: center;
}

.cta--primary {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

.cta--primary:hover {
  background: #373C44;
  border-color: #373C44;
  opacity: 1;
}

.cta--secondary {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

.cta--secondary:hover {
  background: #373C44;
  border-color: #373C44;
  opacity: 1;
}

/* Button variants */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.3125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  border: 2px solid #1a1a1a;
  min-width: 44px;
  min-height: 44px;
  text-align: center;
}

.btn--primary {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

.btn--primary:hover {
  background: #373C44;
  border-color: #373C44;
  opacity: 1;
}

.cta-inline {
  margin-top: 2rem;
  text-align: center;
}

/* Hero Section */
.section--hero {
  padding: 8rem 0 5rem;
}

.hero__headline {
  margin-bottom: 1.5rem;
}

.hero__subheadline {
  font-size: 1.5rem;  /* 24px */
  margin-bottom: 2rem;
  color: #373C44;
}

.hero__caption {
  margin-top: 1rem;
  font-size: 1rem;
  color: #666;
}

.hero__urgency {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #d97706;
  background: #fef3c7;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border-left: 4px solid #d97706;
}

/* Problem Section */
.section__subheading {
  font-size: 1.3125rem;
  color: #666;
  margin-bottom: 2rem;
}

.pain-points {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pain-points li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.125rem;
}

.pain-points li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
  font-size: 1.2rem;
}

.problem__closing {
  text-align: center;
  font-size: 1.3125rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Solution Section */
.solution__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.solution__delivery {
  text-align: center;
  font-size: 1.3125rem;
  margin-bottom: 0.5rem;
}

.solution__guarantee {
  text-align: center;
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Results Section */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.results__closing {
  text-align: center;
  font-size: 1.125rem;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Comparison Section Updates */
.comparison__summary {
  text-align: center;
  font-size: 1.3125rem;
  color: #1a1a1a;
  margin-top: 2rem;
}

/* Pricing Section */
.pricing__subheading {
  text-align: center;
  font-size: 1.3125rem;
  color: #666;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.pricing-step {
  background: #ffffff;
  padding: 2.5rem;
  border: 2px solid #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-step__title {
  font-size: 1.575rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.pricing-step__value {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-family: 'PPSupply', sans-serif;
}

.pricing-step__timeline {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.pricing-step__detail {
  font-size: 1rem;
  color: #373C44;
  line-height: 1.6;
}

.pricing__guarantee {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #22c55e;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

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

.service-item {
  text-align: center;
}

.service-item__title {
  font-size: 1.3125rem;
  margin-bottom: 0.5rem;
}

.service-item__value {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.service-item__detail {
  font-size: 1rem;
  color: #666;
}

/* Comparison Section */
.section--comparison .section__heading {
  text-align: center;
}

.section--comparison .section__subheading {
  text-align: center;
  color: #666;
}

.comparison-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.comparison-column {
  padding: 2rem;
  border-radius: 8px;
}

.comparison-column--traditional {
  background: rgba(239, 68, 68, 0.05);
  border: 2px solid rgba(239, 68, 68, 0.2);
}

.comparison-column--ours {
  background: rgba(34, 197, 94, 0.05);
  border: 2px solid rgba(34, 197, 94, 0.2);
}

.comparison-column h3 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: 1.575rem;
}

.comparison-column ul {
  list-style: none;
  padding-left: 0;
}

.comparison-column li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: #373C44;
}

.comparison-column--traditional li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
  font-size: 1.2rem;
}

.comparison-column--ours li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 1.2rem;
}

.how-it-works {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.how-it-works h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.how-it-works p {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.3125rem;
}

.capabilities-list {
  list-style: none;
  padding-left: 0;
}

.capabilities-list li {
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
  color: #ffffff;
}

.capabilities-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

@media (max-width: 768px) {
  .comparison-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Use Cases Section */
.use-cases__intro {
  font-size: 1.3125rem;
  margin-bottom: 2rem;
  text-align: center;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.use-case {
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.use-case__title {
  margin-bottom: 1rem;
}

.use-case__before-after {
  margin-bottom: 1rem;
}

.use-case__before,
.use-case__after {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.use-case__savings {
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.use-cases__outro {
  font-size: 1.3125rem;
  text-align: center;
  font-weight: 600;
  margin-top: 2rem;
}

/* Target Customers Section */
.customer-profile,
.pain-points,
.industries {
  margin-bottom: 2rem;
}

.profile-list,
.pain-points-list,
.industries-list {
  list-style-type: disc;
  margin-top: 1rem;
}

/* Methodology Section */
.methodology__subheading {
  font-size: 1.3125rem;
  color: #666;
  margin-bottom: 2rem;
}

.process-steps {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.process-step {
  margin-bottom: 2rem;
  padding-left: 3rem;
  position: relative;
}

.process-step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: #1a1a1a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.step__title {
  margin-bottom: 0.5rem;
}

.step__description {
  color: #666;
}

.methodology__timeline {
  margin-top: 2rem;
  padding: 1rem;
  background: #f5f5f5;
  border-radius: 4px;
  text-align: center;
}

/* Social Proof Section */
.section--social-proof {
  background: #1a1a1a;
  color: #ffffff;
}

.section--social-proof .section__heading {
  color: #ffffff;
  text-align: center;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.metric {
  text-align: center;
}

.metric__value {
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-family: 'PPSupply', sans-serif;
}

.metric__label {
  font-size: 1.3125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.metric__detail {
  font-size: 1rem;
  color: #999;
}

/* Advantages Section */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.advantage {
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.advantage__title {
  margin-bottom: 1rem;
}

.advantage__description {
  color: #666;
  font-size: 1rem;
}

/* Trust Section */
.credentials {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.credential {
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 4px;
}

.credential__title {
  margin-bottom: 0.5rem;
}

.credential__detail {
  color: #666;
  font-size: 1rem;
}

.results {
  text-align: center;
  padding: 2rem;
  background: #1a1a1a;
  color: white;
  border-radius: 4px;
}

.results__stat {
  font-size: 1.3125rem;
  font-weight: 600;
  margin: 0;
  color: white;
}

/* CTA Section */
.section--cta {
  text-align: center;
  padding: 5rem 0;
  background: #f5f5f5;
}

.cta-section__heading {
  margin-bottom: 1rem;
}

.cta-section__description {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__urgency {
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #d97706;
  background: #fef3c7;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border-left: 4px solid #d97706;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__assurance {
  margin-top: 1rem;
  font-size: 1rem;
  color: #666;
}

/* Footer */
.footer {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.footer__copyright {
  color: #666;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 2.5rem;  /* Scale down for mobile */
    line-height: 1.2;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section {
    padding: 2rem 0;
  }

  .section--hero {
    padding: 4rem 0 2rem;
  }

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

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .process-step {
    padding-left: 2.5rem;
  }

  .process-step::before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.875rem;
  }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .section {
    page-break-inside: avoid;
  }

  .cta {
    border: 2px solid #000;
  }
}
