/* ========================
   SHIFTKIT — THEME CSS
   ======================== */

/* --- Variables --- */
:root {
  --rust: #C8602A;
  --rust-light: #E07A42;
  --rust-dark: #A04E20;
  --charcoal: #1A1A1A;
  --warm-black: #0F0F0F;
  --off-white: #F5F2ED;
  --warm-cream: #EDE8E0;
  --muted-gold: #D4A853;
  --text-secondary: #6B6460;
  --border-light: #E2DDD8;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --container: 1100px;
  --radius: 6px;
  --radius-lg: 12px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

/* ========================
   NAV
   ======================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 242, 237, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 80px;
  background: var(--off-white);
}
.hero-bg-texture {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A1A0E 50%, #1A1A1A 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-bg-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(200, 96, 42, 0.04) 60px,
      rgba(200, 96, 42, 0.04) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(200, 96, 42, 0.04) 60px,
      rgba(200, 96, 42, 0.04) 61px
    );
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-content {
  max-width: 540px;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  background: rgba(200, 96, 42, 0.1);
  border: 1px solid rgba(200, 96, 42, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--charcoal);
  margin-bottom: 24px;
  font-weight: 800;
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  width: fit-content;
}
.stat {
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--rust);
  line-height: 1;
}
.stat-unit {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}
.stat-label {
  font-size: 0.6875rem;
  color: var(--text-secondary);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* Kit Preview */
.hero-illustration {
  position: relative;
  z-index: 1;
}
.kit-preview {
  background: #0F0F0F;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.25), 0 8px 24px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.06);
}
.kit-header {
  background: #1A1A1A;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.kit-dots {
  display: flex;
  gap: 6px;
}
.kit-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.kit-dots span:first-child { background: #FF5F57; }
.kit-dots span:nth-child(2) { background: #FFBD2E; }
.kit-dots span:nth-child(3) { background: #28CA41; }
.kit-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}
.kit-items {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
.kit-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(200, 96, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kit-badge {
  margin: 0 20px 20px;
  background: var(--rust);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ========================
   PROOF
   ======================== */
.proof {
  background: var(--warm-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 56px 0;
}
.proof-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.proof-number { }
.proof-big {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--charcoal);
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.proof-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.gap-headline {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.gap-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.gap-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gap-item--highlight {
  background: var(--rust);
  padding: 16px 20px;
  border-radius: var(--radius);
}
.gap-cost {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}
.gap-item--highlight .gap-cost { color: white; }
.gap-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.gap-item--highlight .gap-label { color: rgba(255,255,255,0.75); }
.gap-vs {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========================
   OFFER
   ======================== */
.offer {
  padding: 80px 0;
  background: var(--off-white);
}
.offer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.offer-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.offer-icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 96, 42, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.offer-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.offer-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================
   HOW
   ======================== */
.how {
  padding: 80px 0;
  background: var(--warm-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.how-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 56px;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 40px 0 0;
}
.step-connector {
  width: 48px;
  height: 2px;
  background: var(--border-light);
  flex-shrink: 0;
  margin-top: 28px;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rust);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(200, 96, 42, 0.15);
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.step p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ========================
   PACKAGES
   ======================== */
.packages {
  padding: 80px 0;
  background: var(--off-white);
}
.packages-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  border-color: var(--rust);
  box-shadow: 0 0 0 1px var(--rust), 0 8px 32px rgba(200, 96, 42, 0.12);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rust);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1;
}
.pricing-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li {
  font-size: 0.9375rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: rgba(200, 96, 42, 0.12);
  border-radius: 3px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23C8602A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-tag {
  display: inline-block;
  background: var(--warm-cream);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.pricing-card--featured .pricing-tag {
  background: rgba(200, 96, 42, 0.08);
  border-color: rgba(200, 96, 42, 0.2);
  color: var(--rust-dark);
}
.packages-note {
  text-align: center;
  padding: 24px 32px;
  background: var(--warm-cream);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}
.packages-note p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ========================
   TESTIMONIAL
   ======================== */
.testimonial-section {
  padding: 80px 0;
  background: var(--charcoal);
}
.testimonial-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.testimonial-quote p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-gold);
}
.testimonial-context {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}
.testimonial-divider {
  margin: 40px 0;
}
.divider-mark {
  font-size: 2rem;
  color: rgba(255,255,255,0.1);
  letter-spacing: 0.5em;
}
.testimonial-note p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

/* ========================
   CLOSING
   ======================== */
.closing {
  padding: 96px 0;
  background: var(--off-white);
}
.closing-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--charcoal);
  margin-bottom: 24px;
  max-width: 600px;
}
.closing-body {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  background: white;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.875rem;
  padding: 8px 18px;
  border-radius: 100px;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--warm-black);
  color: rgba(255,255,255,0.5);
  padding: 56px 0 32px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  display: block;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-bg-texture { display: none; }
  .hero-headline { color: var(--charcoal); }
  .hero-illustration { order: -1; }
  .kit-preview { max-width: 360px; }
  .proof-inner { grid-template-columns: 1fr; gap: 40px; }
  .offer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { width: 2px; height: 32px; margin: 12px 0; }
  .step-connector::after { right: auto; top: auto; bottom: 0; left: -4px; }
  .step { padding: 0; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 0; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat { width: 100%; border-bottom: 1px solid var(--border-light); }
  .stat:last-child { border-bottom: none; }
  .stat-divider { width: 100%; height: 1px; }
  .proof-big { font-size: 3rem; }
  .pricing-price { font-size: 2.5rem; }
}