/* ==========================================================
   Pitchkali — industrial/Factory-style theme
   Raleway · red accent · square edges · uppercase headings
   ========================================================== */

:root {
  --red: #ee0000;
  --red-dark: #c50000;
  --ink: #1d1d1d;
  --black: #111111;
  --grey: #e9e9e9;
  --grey-soft: #f5f5f5;
  --muted: #666666;
  --line: #dcdcdc;
  --white: #ffffff;
  --wrap: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--muted);
  font-family: 'Raleway', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }

h1, h2, h3, h4 {
  margin: 0 0 .6rem;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

p { margin: 0 0 1rem; }

.wrap { width: min(var(--wrap), 90vw); margin: 0 auto; }
.wrap.narrow { width: min(820px, 90vw); }

/* Split heading: light line over heavy line */
.thin, .bold { display: block; }
.thin { font-weight: 400; }
.bold { font-weight: 800; }

/* ---------- Buttons (square, uppercase, tracked) ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border: 2px solid transparent;
  border-radius: 0;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-red { background: var(--red); border-color: var(--red); color: #fff; }
.btn-red:hover { background: var(--ink); border-color: var(--ink); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.65); color: #fff; }
.btn-outline:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn-dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-dark:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn-sm { padding: 11px 22px; font-size: .74rem; }
.btn-block { width: 100%; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .9rem;
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--red); }
.eyebrow-light { color: #fff; }
.eyebrow-light::before { background: var(--red); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--black);
  color: rgba(255,255,255,.66);
  font-size: .8rem;
  letter-spacing: .4px;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .6rem 0; }
.topbar-right { display: flex; align-items: center; gap: .9rem; }
.topbar a:hover { color: #fff; }
.sep { width: 1px; height: 12px; background: rgba(255,255,255,.25); }

/* ---------- Header ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.nav.scrolled { box-shadow: 0 6px 26px rgba(0,0,0,.09); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem 0; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  background: var(--red);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}
.brand-name {
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.5px;
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links > a:not(.btn) {
  position: relative;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: .3rem 0;
}
.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .22s ease;
}
.nav-links > a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 8rem 0 8.5rem;
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(238,0,0,.5) 0%, rgba(238,0,0,0) 42%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 2px, transparent 2px 11px),
    radial-gradient(circle at 78% 18%, #2b2b2b 0%, #111 62%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  right: -120px; bottom: -160px;
  width: 520px; height: 520px;
  border: 60px solid rgba(255,255,255,.035);
  transform: rotate(45deg);
}
.hero-inner { position: relative; max-width: 830px; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: #fff;
  margin-bottom: 1.4rem;
}
.hero .thin { color: rgba(255,255,255,.82); }
.hero .lead {
  max-width: 60ch;
  margin-bottom: 2.4rem;
  color: rgba(255,255,255,.72);
  font-size: 1.06rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Stats ---------- */
.stats { background: var(--red); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 2.6rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,.2); }
.stat:last-child { border-right: 0; }
.stat-value { color: #fff; font-size: 2.9rem; font-weight: 800; line-height: 1; }
.stat-value span { font-size: 1.3rem; margin-left: 2px; }
.stat-label {
  margin-top: .5rem;
  color: rgba(255,255,255,.88);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ---------- Sections ---------- */
.section { padding: 6.5rem 0; }
.section-grey { background: var(--grey); }
.section-head { max-width: 62ch; margin: 0 auto 3.4rem; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.section-head p { margin: 0; }

/* ---------- Service cards ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 0; }
.card {
  position: relative;
  padding: 2.6rem 2.1rem;
  background: #fff;
  border: 1px solid var(--line);
  margin: -1px 0 0 -1px;
  transition: background .25s ease, transform .25s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.card:hover { background: var(--ink); transform: translateY(-4px); z-index: 2; }
.card:hover::before { transform: scaleX(1); }

.card-icon { width: 52px; height: 52px; margin-bottom: 1.3rem; color: var(--red); }
.card-icon svg { width: 100%; height: 100%; }
.card h3 { font-size: 1.42rem; margin-bottom: .9rem; }
.card .thin { color: var(--muted); font-weight: 500; }
.card-summary { font-size: .95rem; }

.ticks { list-style: none; margin: 0 0 1.4rem; padding: 0; font-size: .9rem; }
.ticks li { position: relative; padding-left: 1.5rem; margin-bottom: .35rem; line-height: 1.6; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 8px; height: 8px;
  background: var(--red);
}
.card-link {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink);
}
.card-link span { display: inline-block; transition: transform .2s ease; }
.card-link:hover span { transform: translateX(5px); }

/* dark-on-hover text */
.card:hover h3, .card:hover .bold { color: #fff; }
.card:hover .thin, .card:hover .card-summary, .card:hover .ticks li { color: rgba(255,255,255,.68); }
.card:hover .card-link { color: var(--red); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: var(--ink); padding: 1.1rem 0; }
.marquee-track { display: flex; width: max-content; animation: slide 34s linear infinite; }
.marquee span {
  padding-right: 2.2rem;
  color: rgba(255,255,255,.16);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.step {
  position: relative;
  padding: 2.4rem 1.8rem;
  background: #fff;
  border-bottom: 3px solid transparent;
  transition: border-color .25s ease, transform .25s ease;
}
.step:hover { border-bottom-color: var(--red); transform: translateY(-5px); }
.step-num {
  display: block;
  margin-bottom: .5rem;
  color: var(--grey);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}
.step:hover .step-num { color: var(--red); }
.step h3 { font-size: 1.15rem; letter-spacing: 1px; }
.step p { margin: 0; font-size: .93rem; }

/* ---------- FAQ ---------- */
.faqs details {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--line);
  padding: 1.15rem 1.4rem;
  margin-bottom: .7rem;
  transition: border-color .2s ease;
}
.faqs details[open] { border-left-color: var(--red); }
.faqs summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 700;
  font-size: .98rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding-right: 2rem;
  position: relative;
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after {
  content: "+";
  position: absolute;
  right: 0; top: -2px;
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.faqs details[open] summary::after { content: "\2013"; }
.faqs p { margin: .9rem 0 0; font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red); padding: 3.4rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { margin: 0; color: #fff; font-size: clamp(1.4rem, 3vw, 2.1rem); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3.5rem; align-items: start; }
.contact-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 1rem; }

.contact-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.3rem; }
.ci {
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  background: var(--red);
  color: #fff;
}
.ci svg { width: 21px; height: 21px; }
.contact-list strong {
  display: block;
  color: var(--ink);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.contact-list a { color: var(--muted); }
.contact-list a:hover { color: var(--red); }

.form { background: #fff; border: 1px solid var(--line); padding: 2.4rem; }
.form-title { font-size: 1.3rem; margin-bottom: 1.5rem; letter-spacing: 1px; }
.form label {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--ink);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.form input, .form select, .form textarea {
  width: 100%;
  margin-top: .5rem;
  padding: .85rem 1rem;
  background: var(--grey-soft);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  resize: vertical;
}
.form input::placeholder, .form textarea::placeholder { color: #a2a2a2; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}
.form-status { margin: 1rem 0 0; font-size: .9rem; min-height: 1.3em; }
.form-status.ok { color: #128a4d; }
.form-status.err { color: var(--red); }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: rgba(255,255,255,.6); padding: 4.5rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer .brand-name { color: #fff; }
.footer-brand p { margin-top: 1rem; font-size: .92rem; }
.footer-col h4 {
  color: #fff;
  font-size: .8rem;
  letter-spacing: 1.8px;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; font-size: .92rem; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a:hover { color: var(--red); }
.copyright {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .84rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 780px) {
  .topbar-item { display: none; }
  .topbar-inner { justify-content: center; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.4rem 5vw 1.8rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(0,0,0,.1);
  }
  .nav-links.open { display: flex; }
  .hero { padding: 4.5rem 0 5rem; }
  .section { padding: 4.2rem 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .marquee span { font-size: 1.25rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .btn { padding: 13px 24px; }
}
