/* -------- Hero -------- */
.hero {
  border-bottom: 2px solid var(--ink);
  padding: 72px 40px 96px;
  position: relative; overflow: hidden;
}
.hero-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 56px; }
.hero .chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--paper); padding: 7px 16px;
  border-radius: 999px; font-family: 'JetBrains Mono', monospace;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500;
  margin-bottom: 32px;
}
.hero .chip .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent); animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,90,31,0.7); } 50% { box-shadow: 0 0 0 10px rgba(255,90,31,0); } }
.hero h1 {
  font-weight: 700;
  font-size: clamp(56px, 10vw, 148px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0 0 32px;
  max-width: 14ch;
}
.hero h1 .hl {
  background: var(--accent); color: var(--paper);
  padding: 0 16px; display: inline-block;
  transform: rotate(-1deg); margin: 0 -4px;
  border-radius: 14px;
}
.hero h1 .hl-alt {
  background: var(--ink); color: var(--paper);
  padding: 0 16px; display: inline-block;
  transform: rotate(1deg); margin: 0 -4px;
  border-radius: 14px;
}
.hero .lede {
  font-size: 22px; line-height: 1.4; max-width: 52ch;
  margin: 0 0 36px; font-weight: 400;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges span::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 14px; }

/* -------- Week compare -------- */
.week-compare {
  margin-top: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 2px solid var(--ink); border-radius: 20px;
  overflow: hidden; box-shadow: 10px 10px 0 var(--ink);
}
@media (max-width: 900px) { .week-compare { grid-template-columns: 1fr; } }
.week { padding: 28px; }
.week.now { background: var(--paper-2); }
.week.with { background: var(--accent); color: var(--paper); }
.week .label {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.week.with .label { border-bottom-color: var(--paper); }
.week .label .badge {
  padding: 3px 10px; border: 2px solid var(--ink); border-radius: 999px;
  font-size: 11px; background: var(--paper);
}
.week.with .label .badge { border-color: var(--paper); background: var(--ink); color: var(--paper); }
.day {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 12px;
  padding: 10px 0; align-items: center;
  border-bottom: 1.5px dashed var(--ink);
  font-size: 14px; font-weight: 500;
}
.day:last-child { border-bottom: 0; }
.week.with .day { border-bottom-color: rgba(255,255,255,0.45); }
.day .d {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
  opacity: 0.7;
}
.day .task { line-height: 1.3; }
.day .tag {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px; border: 1.5px solid var(--ink);
  background: var(--paper); color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap;
}
.tag.red { background: #ff6868; color: var(--paper); border-color: var(--ink); }
.tag.amber { background: var(--yellow); }
.tag.done { background: var(--green); color: var(--paper); border-color: var(--ink); }
.week.with .tag { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.week .bottom {
  margin-top: 18px; padding-top: 16px; border-top: 2px solid var(--ink);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.week.with .bottom { border-top-color: var(--paper); }
.week .bottom .n {
  font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 700;
  letter-spacing: -0.04em;
}

/* -------- Marquee strip -------- */
.strip {
  background: var(--ink); color: var(--paper);
  border-bottom: 2px solid var(--ink);
  padding: 14px 0; overflow: hidden;
}
.strip-inner {
  display: flex; gap: 48px; white-space: nowrap;
  animation: scroll 36s linear infinite;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em;
}
.strip-inner span { display: inline-flex; align-items: center; gap: 48px; }
.strip-inner span::after { content: '★'; color: var(--accent); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* -------- Section shell -------- */
section.blk { padding: 100px 40px; border-bottom: 2px solid var(--ink); }
section.blk .wrap { max-width: 1280px; margin: 0 auto; }
.section-head {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: end;
  margin-bottom: 56px; padding-bottom: 24px; border-bottom: 2px solid var(--ink);
}
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; } }
.section-head .num {
  font-family: 'JetBrains Mono', monospace; font-size: 14px;
  background: var(--ink); color: var(--paper);
  padding: 8px 14px; border-radius: 8px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  align-self: start;
}
.section-head h2 {
  font-weight: 700; font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95; letter-spacing: -0.035em; margin: 0; max-width: 18ch;
}
.section-head h2 .hl { background: var(--accent); color: var(--paper); padding: 0 12px; border-radius: 10px; display: inline-block; transform: rotate(-0.5deg); }
.section-head h2 .hl-k { background: var(--ink); color: var(--paper); padding: 0 12px; border-radius: 10px; display: inline-block; }
.section-head p { font-size: 18px; margin: 0; max-width: 42ch; }

/* -------- Steps -------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  border: 2px solid var(--ink); border-radius: 18px;
  padding: 32px; min-height: 300px; display: flex; flex-direction: column;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .2s, box-shadow .2s;
  background: var(--paper);
}
.step:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }
.step.a { background: var(--accent-2); }
.step.b { background: var(--yellow); }
.step.c { background: var(--paper-2); }
.step .n {
  font-weight: 700; font-size: 92px; line-height: 1;
  letter-spacing: -0.06em; margin-bottom: 16px;
  color: var(--ink);
}
.step h3 { font-weight: 700; font-size: 26px; letter-spacing: -0.02em; margin: 0 0 12px; }
.step p { margin: 0; font-size: 16px; }
.step .tag {
  margin-top: auto; padding-top: 24px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
}

/* -------- Service cards (homepage grid) -------- */
.services { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.svc {
  border: 2px solid var(--ink); border-radius: 18px;
  padding: 28px; background: var(--paper);
  display: flex; flex-direction: column;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none; color: var(--ink);
}
.svc:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.svc.w6 { grid-column: span 6; }
.svc.w4 { grid-column: span 4; }
@media (max-width: 900px) { .svc { grid-column: span 12 !important; } }
.svc .top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 2px dashed var(--ink);
}
.svc .industry {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}
.svc .hours {
  background: var(--green); color: var(--paper);
  padding: 4px 10px; border: 2px solid var(--ink); border-radius: 999px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
}
.svc h3 { font-weight: 700; font-size: 26px; letter-spacing: -0.02em; margin: 0 0 12px; }
.svc > p { font-size: 16px; margin: 0 0 20px; }
.svc ul { list-style: none; padding: 0; margin: 0 0 20px; font-size: 14px; font-weight: 500; }
.svc li {
  padding: 10px 0; border-top: 1.5px dashed var(--ink);
  display: flex; gap: 10px; align-items: center;
}
.svc li::before {
  content: ''; width: 10px; height: 10px; background: var(--accent);
  border: 2px solid var(--ink); border-radius: 50%;
}
.svc .more {
  margin-top: auto; font-family: 'JetBrains Mono', monospace; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  padding-top: 8px;
}
.svc .more::after { content: '→'; transition: transform .2s; }
.svc:hover .more::after { transform: translateX(4px); }
.svc.feature { background: var(--accent); color: var(--paper); }
.svc.feature .industry, .svc.feature h3, .svc.feature p, .svc.feature li, .svc.feature .more { color: var(--paper); }
.svc.feature .top { border-bottom-color: var(--paper); }
.svc.feature li { border-top-color: var(--paper); }
.svc.feature li::before { background: var(--paper); border-color: var(--paper); }
.svc.feature .hours { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* -------- Calculator -------- */
.calc {
  border: 2px solid var(--ink); border-radius: 22px; background: var(--paper-2);
  box-shadow: 8px 8px 0 var(--ink);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
@media (max-width: 800px) { .calc { grid-template-columns: 1fr; } }
.calc-left { padding: 40px; border-right: 2px solid var(--ink); }
@media (max-width: 800px) { .calc-left { border-right: 0; border-bottom: 2px solid var(--ink); } }
.calc h3 { font-weight: 700; font-size: 28px; letter-spacing: -0.02em; margin: 0 0 24px; }
.calc label { display: block; font-family: 'JetBrains Mono', monospace; font-size: 12px; margin: 22px 0 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.calc .slider-row { display: flex; align-items: center; gap: 16px; }
.calc input[type=range] { flex: 1; accent-color: var(--accent); height: 6px; }
.calc .val {
  font-size: 22px; min-width: 90px; text-align: center; font-weight: 700;
  background: var(--yellow); border: 2px solid var(--ink); border-radius: 8px;
  padding: 4px 10px;
}
.calc-right {
  background: var(--ink); color: var(--paper);
  padding: 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.calc-right .lbl { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent-2); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.calc-right .big {
  font-weight: 700; font-size: 84px; letter-spacing: -0.045em; line-height: 1;
  color: var(--accent); margin: 12px 0 6px;
}
.calc-right .big span { color: var(--paper); font-size: 28px; }
.calc-right .small { color: var(--accent-2); margin-top: 8px; font-size: 14px; max-width: 36ch; }
.calc-right .split { display: flex; gap: 20px; margin-top: 28px; }
.calc-right .split div {
  flex: 1; padding: 14px; background: var(--paper); color: var(--ink);
  border-radius: 10px; border: 2px solid var(--paper);
}
.calc-right .split .n { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.calc-right .split .l { font-size: 12px; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* -------- Pricing -------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; } }
.price {
  border: 2px solid var(--ink); border-radius: 22px; background: var(--paper);
  padding: 34px 30px; display: flex; flex-direction: column;
  box-shadow: 6px 6px 0 var(--ink);
}
.price.featured { background: var(--accent); color: var(--paper); position: relative; }
.price.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -14px; left: 24px;
  background: var(--yellow); color: var(--ink); padding: 5px 12px;
  border: 2px solid var(--ink); border-radius: 999px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
}
.price .band { font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 14px; }
.price h3 { font-weight: 700; font-size: 28px; letter-spacing: -0.02em; margin: 0 0 8px; }
.price .desc { font-size: 15px; margin-bottom: 24px; line-height: 1.45; }
.price .amount { font-weight: 700; font-size: 56px; letter-spacing: -0.04em; line-height: 1; }
.price .amount .from { display: block; font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 8px; opacity: 0.8; }
.price .amount .per { font-size: 16px; font-weight: 500; opacity: 0.8; }
.price ul { list-style: none; padding: 0; margin: 28px 0; font-size: 15px; }
.price li { padding: 10px 0; display: flex; gap: 10px; align-items: center; border-top: 1.5px dashed var(--ink); font-weight: 500; }
.price li:first-child { border-top: 0; }
.price.featured li { border-top-color: var(--paper); }
.price li::before {
  content: '✓'; width: 20px; height: 20px;
  background: var(--green); color: var(--paper);
  border: 2px solid var(--ink); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex: 0 0 20px;
}
.price.featured li::before { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.price .cta {
  margin-top: auto; text-align: center;
  background: var(--ink); color: var(--paper); padding: 14px;
  border: 2px solid var(--ink); border-radius: 999px;
  text-decoration: none; font-size: 15px; font-weight: 600;
}
.price.featured .cta { background: var(--paper); color: var(--ink); }
.price .cta:hover { opacity: 0.85; }

/* -------- Testimonials -------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  padding: 32px; border: 2px solid var(--ink); border-radius: 22px;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex; flex-direction: column;
}
.quote.a { background: var(--yellow); }
.quote.b { background: var(--pink); }
.quote.c { background: var(--accent-2); }
.quote .mark { font-size: 64px; font-weight: 700; line-height: 0.5; height: 20px; letter-spacing: -0.1em; }
.quote p { font-size: 19px; font-weight: 500; line-height: 1.4; margin: 24px 0 24px; letter-spacing: -0.01em; }
.quote .who {
  margin-top: auto; padding-top: 18px; border-top: 2px dashed var(--ink);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  display: flex; justify-content: space-between; text-transform: uppercase; letter-spacing: 0.08em;
}

/* -------- About -------- */
.about { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }
.about p { font-size: 18px; line-height: 1.55; }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.val {
  padding: 22px; border: 2px solid var(--ink); border-radius: 16px;
  box-shadow: 4px 4px 0 var(--ink);
}
.val:nth-child(1) { background: var(--yellow); }
.val:nth-child(2) { background: var(--pink); }
.val:nth-child(3) { background: var(--accent-2); }
.val:nth-child(4) { background: var(--green); color: var(--paper); }
.val .k { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.val .v { font-size: 14px; }

/* -------- FAQ -------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  border: 2px solid var(--ink); border-radius: 16px;
  padding: 22px 28px; margin-bottom: 16px;
  background: var(--paper); box-shadow: 4px 4px 0 var(--ink);
  transition: background .2s;
}
.faq details[open] { background: var(--yellow); }
.faq summary {
  font-weight: 600; font-size: 19px; letter-spacing: -0.01em;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 24px; font-weight: 700;
  width: 32px; height: 32px; border: 2px solid var(--ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s; flex: 0 0 32px;
}
.faq details[open] summary::after { content: '–'; background: var(--ink); color: var(--paper); }
.faq details p { font-size: 15px; margin: 14px 0 0; max-width: 58ch; }

/* -------- Contact -------- */
.contact {
  border: 2px solid var(--ink); border-radius: 24px;
  display: grid; grid-template-columns: 1fr 1.1fr;
  overflow: hidden; box-shadow: 8px 8px 0 var(--ink);
}
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
.contact-left { background: var(--ink); color: var(--paper); padding: 48px; }
.contact-left h2 { font-weight: 700; font-size: 48px; line-height: 0.95; letter-spacing: -0.035em; margin: 0 0 18px; }
.contact-left h2 .hl { background: var(--accent); padding: 0 10px; display: inline-block; transform: rotate(-1deg); border-radius: 10px; }
.contact-left p { font-size: 17px; margin: 0 0 32px; max-width: 38ch; color: var(--accent-2); }
.contact-left .detail {
  padding: 12px 0; display: flex; justify-content: space-between;
  border-top: 1.5px dashed var(--accent-2); font-size: 14px; font-weight: 500;
}
.contact-left .detail:first-of-type { border-top: 0; }
.contact-left .detail .k { font-family: 'JetBrains Mono', monospace; text-transform: uppercase; font-size: 11px; letter-spacing: 0.08em; color: var(--accent-2); font-weight: 600; }
.contact-left .email-link { color: var(--paper); text-decoration: none; border-bottom: 1.5px solid var(--accent); transition: color .15s, border-color .15s; }
.contact-left .email-link:hover { color: var(--accent); border-bottom-color: transparent; }
.contact-right { padding: 48px; background: var(--paper); }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block; font-family: 'JetBrains Mono', monospace;
  font-size: 11px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: var(--paper); border: 2px solid var(--ink); border-radius: 10px;
  padding: 14px; color: var(--ink); font-family: inherit; font-size: 15px; font-weight: 500;
  outline: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { background: var(--yellow); }
.form-field.error input, .form-field.error textarea, .form-field.error select { background: #ffd7cc; }
.form-field .err { font-size: 12px; color: #c1381c; margin-top: 6px; display: none; font-weight: 600; }
.form-field.error .err { display: block; }
.submit {
  background: var(--accent); color: var(--paper); border: 2px solid var(--ink);
  padding: 16px 24px; border-radius: 999px; font-weight: 700; cursor: pointer;
  font-size: 16px; width: 100%; box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s, box-shadow .15s;
  font-family: inherit;
}
.submit:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.submit.success { background: var(--green); }
