/* =============================================================
   SECTIONS — index.html specific section styles
   Hero · Proof strip · Services · Work preview · Process
   About snippet · Closing CTA
   ============================================================= */

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dot-grid background overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--text-3) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  padding: var(--s12) var(--s4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
}

.hero__h1 {
  font-size: var(--text-hero);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-1);
  margin: 0;
}

.hero__h1 .accent-word {
  color: var(--accent-light);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.hero__sub {
  font-size: var(--text-lg);
  color: var(--text-2);
  max-width: 500px;
  line-height: 1.65;
}

.hero__buttons {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--s1);
}

.hero__disclaimer {
  font-size: var(--text-xs);
  color: var(--text-3);
  margin-top: 0;
}

/* ─────────────────────────────────────────────────────────────
   PROOF STRIP
   ───────────────────────────────────────────────────────────── */
.proof-strip {
  padding: var(--s4) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s1) var(--s2);
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s4);
}

.proof-strip__item {
  font-size: var(--text-xs);
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.proof-strip__sep {
  color: var(--text-3);
  font-size: var(--text-xs);
  user-select: none;
}

@media (max-width: 480px) {
  .proof-strip__sep { display: none; }
  .proof-strip__item { width: 100%; text-align: center; }
}

/* ─────────────────────────────────────────────────────────────
   SERVICES
   ───────────────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: start;
}

.services__left .label {
  display: block;
}

.services__left h2 {
  font-size: var(--text-h2);
  letter-spacing: -0.02em;
  margin-bottom: var(--s3);
  line-height: 1.2;
}

.services__left p {
  font-size: var(--text-base);
  color: var(--text-2);
  line-height: 1.75;
}

/* Offer card */
.offer-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--s4);
}

.offer-card__title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--s1);
}

.offer-card__price {
  font-size: var(--text-base);
  color: var(--text-2);
  margin-bottom: var(--s3);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
}

.offer-card__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-card__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-base);
  color: var(--text-2);
  line-height: 1.5;
}

.offer-card__check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: var(--text-sm);
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }
}

/* ─────────────────────────────────────────────────────────────
   WORK PREVIEW
   ───────────────────────────────────────────────────────────── */
.work-preview .view-all {
  text-align: center;
  margin-top: var(--s6);
}

.work-preview .view-all a {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--accent-light);
  text-decoration: none;
  transition: opacity 200ms ease;
}

.work-preview .view-all a:hover {
  opacity: 0.7;
}

/* ─────────────────────────────────────────────────────────────
   PROCESS
   ───────────────────────────────────────────────────────────── */
.process {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  position: relative;
}

/* Horizontal connecting line */
.process__steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process__step {
  position: relative;
  z-index: 1;
}

.process__step-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: var(--s2);
  font-variant-numeric: tabular-nums;
  display: block;
}

.process__step-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--s1);
}

.process__step-desc {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .process__steps {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  .process__steps::before {
    display: none;
  }

  .process__step {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: var(--s2);
    align-items: start;
  }

  .process__step-num {
    font-size: 28px;
    margin-bottom: 0;
    padding-top: 3px;
    grid-row: 1 / 3;
  }

  .process__step-title {
    grid-column: 2;
  }

  .process__step-desc {
    grid-column: 2;
  }
}

/* ─────────────────────────────────────────────────────────────
   ABOUT SNIPPET
   ───────────────────────────────────────────────────────────── */
.about-snippet__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s8);
  align-items: center;
}

.about-snippet__image {
  width: 280px;
  aspect-ratio: 1;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.about-snippet__text .label {
  display: block;
}

.about-snippet__text h2 {
  font-size: var(--text-h2);
  letter-spacing: -0.02em;
  margin-bottom: var(--s3);
  line-height: 1.2;
}

.about-snippet__text p {
  font-size: var(--text-base);
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: var(--s4);
}

@media (max-width: 768px) {
  .about-snippet__grid {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  .about-snippet__image {
    width: 200px;
    font-size: 24px;
  }
}

/* ─────────────────────────────────────────────────────────────
   CLOSING CTA
   ───────────────────────────────────────────────────────────── */
.closing-cta {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
}

.closing-cta h2 {
  font-size: var(--text-h2);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.closing-cta p {
  font-size: var(--text-lg);
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.65;
}

.closing-cta__email {
  font-size: var(--text-sm);
  color: var(--text-3);
  margin-top: var(--s1);
}

.closing-cta__email a {
  color: var(--accent-light);
}
