/* ════════════════════════════════════════════════
   TPW SOCIAL — MASTER STYLESHEET
   Brand: Signal Red · Ink Black · Warm Paper
   Fonts: Syne (display) · Instrument Serif (accent) · DM Sans (body)
════════════════════════════════════════════════ */

:root {
  --black:  #0c0c0c;
  --white:  #f8f4ee;
  --red:    #e03d1e;
  --red-d:  #c8351a;
  --orange: #f5a623;
  --sand:   #e8e0d0;
  --stone:  #9e9488;
  --deep:   #1a1410;
  --pure:   #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, .display {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

em, .serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.mono { font-family: 'DM Mono', monospace; }

/* ── CONTAINER ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ── EYEBROW LABEL ── */
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-red { background: var(--red); color: var(--pure); }
.btn-red:hover { background: var(--red-d); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--white); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--deep); transform: translateY(-2px); }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.nav-logo .w { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.nav-logo .dot { color: var(--red); }
.nav-logo .social {
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--stone);
  margin-left: 6px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--red); }

.nav-cta {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700;
  font-size: 13px !important;
  background: var(--red);
  color: var(--pure) !important;
  padding: 10px 22px;
  border-radius: 4px;
  letter-spacing: 0.3px !important;
  text-transform: none !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-d); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ════════════════════════════════════════
   HERO (HOME)
════════════════════════════════════════ */
.hero {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero::after {
  content: 'TPW';
  position: absolute;
  right: -60px;
  bottom: -80px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 340px;
  color: rgba(255,255,255,0.025);
  letter-spacing: -16px;
  pointer-events: none;
  line-height: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 em { color: var(--orange); }

.hero-sub {
  font-size: 17px;
  color: var(--stone);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--stone);
}

.hero-trust span { display: flex; align-items: center; gap: 6px; }

.hero-visual {
  background: var(--deep);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual video, .hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-visual .placeholder {
  text-align: center;
  padding: 40px;
}

.hero-visual .placeholder .icon { font-size: 48px; margin-bottom: 16px; }

.hero-visual .placeholder p {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--stone);
  text-transform: uppercase;
  line-height: 2;
}

.hero-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--red);
  color: var(--pure);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════
   MARQUEE / LOGO BAR
════════════════════════════════════════ */
.marquee-strip {
  background: var(--sand);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.marquee-label {
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}

.marquee-track {
  display: inline-flex;
  gap: 64px;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: rgba(12,12,12,0.35);
  letter-spacing: -0.5px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   SECTIONS
════════════════════════════════════════ */
.section { padding: 96px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-deep { background: var(--deep); color: var(--white); }
.section-sand { background: var(--sand); }
.section-red  { background: var(--red); color: var(--pure); }

.section-head { max-width: 640px; margin-bottom: 56px; }

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 16px;
}

.section-dark .section-head h2 em,
.section-deep .section-head h2 em { color: var(--orange); }
.section .section-head h2 em { color: var(--red); }
.section-dark .section-head h2 em { color: var(--orange); }

.section-head p { color: var(--stone); font-size: 16px; line-height: 1.8; }

/* ════════════════════════════════════════
   SERVICE CARDS
════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--sand);
  border: 1px solid var(--sand);
}

.service-card {
  background: var(--pure);
  padding: 36px 30px;
  transition: all 0.25s ease;
  position: relative;
}

.service-card:hover { background: var(--black); }
.service-card:hover h3,
.service-card:hover .service-price { color: var(--white); }
.service-card:hover p { color: var(--stone); }

.service-icon { font-size: 28px; margin-bottom: 18px; }

.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  transition: color 0.25s;
}

.service-card p {
  font-size: 13.5px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 18px;
  transition: color 0.25s;
}

.service-price {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.5px;
  transition: color 0.25s;
}

/* ════════════════════════════════════════
   USP STRIP
════════════════════════════════════════ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.usp-item {}

.usp-item .icon { font-size: 30px; margin-bottom: 16px; }

.usp-item h3 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 10px;
}

.usp-item p { font-size: 13px; color: var(--stone); line-height: 1.75; }

/* ════════════════════════════════════════
   STATS
════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: rgba(255,255,255,0.06);
}

.stat-box {
  background: var(--deep);
  padding: 40px 32px;
}

.stat-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 52px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 6px;
}

.stat-sub { font-size: 12px; color: var(--stone); line-height: 1.6; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--pure);
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 32px 28px;
}

.testi-stars { color: var(--orange); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }

.testi-quote {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 22px;
}

.testi-author { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--stone); margin-top: 2px; }

/* ════════════════════════════════════════
   CTA STRIP
════════════════════════════════════════ */
.cta-strip { text-align: center; }

.cta-strip h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--pure);
  margin-bottom: 16px;
}

.cta-strip h2 em { color: var(--black); }

.cta-strip p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.cta-strip .btn-dark { background: var(--black); }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  background: var(--black);
  padding: 88px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 18px;
}

.page-hero h1 em { color: var(--orange); }

.page-hero p {
  font-size: 16px;
  color: var(--stone);
  max-width: 560px;
  line-height: 1.8;
}

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.story-block { max-width: 720px; }

.story-block p {
  font-size: 17px;
  line-height: 1.95;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.story-block p strong { color: var(--orange); font-weight: 600; }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.brand-card {
  background: var(--pure);
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 36px 30px;
  border-top: 4px solid var(--red);
}

.brand-card h3 { font-size: 20px; margin-bottom: 12px; }

.brand-card .brand-year {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}

.brand-card p { font-size: 13.5px; color: var(--stone); line-height: 1.75; margin-bottom: 16px; }

.brand-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--black);
}

.brand-stats span {
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 5px 10px;
  border-radius: 3px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-item h3 { font-size: 18px; margin-bottom: 12px; color: var(--black); }
.value-item h3 em { color: var(--red); }
.value-item p { font-size: 14px; color: var(--stone); line-height: 1.8; }

.team-note {
  background: var(--deep);
  border-left: 4px solid var(--red);
  border-radius: 0 6px 6px 0;
  padding: 32px 36px;
  margin-top: 48px;
}

.team-note h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.team-note p { color: var(--stone); font-size: 14px; line-height: 1.8; }

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--sand);
  margin-left: 8px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 24px 0 24px 32px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 30px;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.timeline-year {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--red);
  padding-top: 2px;
}

.timeline-body h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--black);
}

.timeline-body p {
  font-size: 13.5px;
  color: var(--stone);
  line-height: 1.7;
}

@media (max-width: 700px) {
  .timeline-item { grid-template-columns: 1fr; gap: 6px; padding-left: 24px; }
}

/* ════════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════════ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--sand);
}

.service-detail:last-of-type { border-bottom: none; }

.sd-left .service-icon-lg { font-size: 40px; margin-bottom: 18px; }

.sd-left h2 { font-size: 28px; margin-bottom: 12px; }
.sd-left h2 em { color: var(--red); }

.sd-price {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--red);
  display: block;
  margin-bottom: 16px;
}

.sd-left p { font-size: 14.5px; color: var(--stone); line-height: 1.8; }

.sd-right h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 18px;
}

.sd-list { list-style: none; }

.sd-list li {
  font-size: 14.5px;
  padding: 11px 0 11px 26px;
  position: relative;
  border-bottom: 1px solid var(--sand);
  color: var(--black);
}

.sd-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: var(--pure);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--black);
  border-color: var(--black);
  transform: scale(1.03);
}

.price-tier {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.price-card.featured .price-tier { color: var(--orange); }

.price-name { font-size: 26px; margin-bottom: 18px; }
.price-card.featured .price-name { color: var(--white); }

.price-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
}

.price-card.featured .price-amount { color: var(--white); }

.price-period { font-size: 12px; color: var(--stone); margin: 6px 0 28px; }

.price-features { list-style: none; flex: 1; margin-bottom: 28px; }

.price-features li {
  font-size: 13.5px;
  color: var(--stone);
  padding: 8px 0 8px 22px;
  position: relative;
  line-height: 1.5;
}

.price-features li::before { content: '—'; position: absolute; left: 0; color: var(--red); }

.price-card .btn { width: 100%; text-align: center; }

/* ════════════════════════════════════════
   FULL SERVICES GRID (numbered list style)
════════════════════════════════════════ */
.full-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--sand);
}

.fs-item {
  background: var(--pure);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  transition: background 0.2s;
}

.fs-item:hover { background: #f7f2e9; }

.fs-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--red);
  line-height: 1.3;
}

.fs-item h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 5px;
  color: var(--black);
}

.fs-item p {
  font-size: 12.5px;
  color: var(--stone);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   INDUSTRY GRID
════════════════════════════════════════ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.industry-item {
  background: var(--pure);
  border: 1px solid var(--sand);
  border-left: 3px solid var(--red);
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  border-radius: 0 4px 4px 0;
}

.callout-box {
  background: var(--black);
  border-radius: 6px;
  padding: 28px 32px;
}

.callout-box p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.8;
}

/* ════════════════════════════════════════
   REASONS GRID (why choose us)
════════════════════════════════════════ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reason-card {
  background: var(--pure);
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 30px 26px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -16px rgba(0,0,0,0.18);
  border-color: var(--red);
}

.reason-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--red);
  display: block;
  margin-bottom: 14px;
}

.reason-card h3 {
  font-size: 16.5px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.reason-card p {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   TERMS GRID (contact page)
════════════════════════════════════════ */
.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.terms-item {
  background: var(--pure);
  border: 1px solid var(--sand);
  padding: 14px 18px;
  font-size: 12.5px;
  color: var(--black);
  line-height: 1.6;
  border-radius: 4px;
}
.case-card {
  background: var(--pure);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 44px 40px;
  margin-bottom: 24px;
}

.case-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(224,61,30,0.08);
  color: var(--red);
  padding: 5px 12px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 18px;
}

.case-card h3 { font-size: 26px; margin-bottom: 18px; }

.case-section { margin-bottom: 22px; }

.case-section h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.case-section p { font-size: 14.5px; color: var(--black); line-height: 1.8; }

.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.case-result {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
}

.case-result .num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.case-result .label { font-size: 11px; color: var(--stone); line-height: 1.5; }

/* ════════════════════════════════════════
   WHY US PAGE
════════════════════════════════════════ */
.compare-table { width: 100%; border-collapse: collapse; }

.compare-table th {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 16px 20px;
  text-align: left;
}

.compare-table th:last-child { background: var(--red); }

.compare-table td {
  padding: 15px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--sand);
  background: var(--pure);
}

.compare-table td:first-child { font-weight: 600; font-family: 'Syne', sans-serif; font-size: 13px; }
.compare-table td:nth-child(2) { color: var(--stone); }
.compare-table td:last-child { color: var(--black); font-weight: 500; }

.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.equip-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 30px 26px;
}

.equip-card .icon { font-size: 28px; margin-bottom: 14px; }
.equip-card h3 { color: var(--white); font-size: 16px; margin-bottom: 8px; }
.equip-card p { color: var(--stone); font-size: 13px; line-height: 1.7; }

.process-steps { display: grid; gap: 3px; }

.process-step {
  background: var(--pure);
  border: 1px solid var(--sand);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 32px 36px;
  align-items: start;
}

.process-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--sand);
  line-height: 1;
}

.process-step h3 { font-size: 19px; margin-bottom: 8px; }
.process-step h3 em { color: var(--red); }
.process-step p { font-size: 14px; color: var(--stone); line-height: 1.75; }

/* FAQ */
.faq-item {
  background: var(--pure);
  border: 1px solid var(--sand);
  margin-bottom: 3px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 26px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--black);
}

.faq-q::after { content: '+'; font-size: 22px; color: var(--red); flex-shrink: 0; transition: transform 0.25s; }

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p { padding: 0 26px 24px; font-size: 14px; color: var(--stone); line-height: 1.85; }

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background: var(--pure);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 44px 40px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  background: var(--white);
  color: var(--black);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.contact-info h3 { font-size: 22px; margin-bottom: 24px; }
.contact-info h3 em { color: var(--red); }

.info-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--sand);
  align-items: flex-start;
}

.info-item .icon { font-size: 20px; flex-shrink: 0; }

.info-item h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.info-item p, .info-item a { font-size: 14px; color: var(--stone); }
.info-item a:hover { color: var(--red); }

.response-promise {
  background: var(--black);
  border-radius: 6px;
  padding: 24px 28px;
  margin-top: 28px;
}

.response-promise h4 { color: var(--orange); font-family: 'Syne', sans-serif; font-size: 15px; margin-bottom: 6px; }
.response-promise p { color: var(--stone); font-size: 13px; line-height: 1.7; }

.wa-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px;
  border-radius: 6px;
  margin-top: 20px;
  transition: all 0.2s;
}

.wa-button:hover { background: #1eb855; transform: translateY(-2px); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 72px 0 0;
  border-top: 4px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .nav-logo { font-size: 26px; }

.footer-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--orange);
  margin: 14px 0 10px;
}

.footer-brand p { font-size: 13px; color: var(--stone); line-height: 1.8; max-width: 260px; }

.footer h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer ul { list-style: none; }

.footer ul li { margin-bottom: 12px; }

.footer ul a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer ul a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s;
}

.wa-float:hover { transform: scale(1.08); }

.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.stat-box.reveal.visible .stat-num {
  animation: numPunch 0.5s ease-out;
}
@keyframes numPunch {
  0% { transform: scale(0.85); }
  60% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════
   MANIFESTO STRIP
════════════════════════════════════════ */
.manifesto {
  background: var(--black);
  padding: 64px 0 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.manifesto-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.35;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,0.55);
  max-width: 880px;
}

.manifesto-text em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

.manifesto-text .strike {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  color: rgba(255,255,255,0.35);
}

.manifesto-text .hl {
  color: var(--white);
  background: linear-gradient(180deg, transparent 65%, rgba(224,61,30,0.35) 65%);
}

/* ════════════════════════════════════════
   PAIN POINTS GRID
════════════════════════════════════════ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: rgba(255,255,255,0.06);
}

.pain-item {
  background: var(--deep);
  padding: 22px 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: background 0.2s;
}

.pain-item:hover { background: #241c16; }

.pain-icon { font-size: 18px; flex-shrink: 0; }

/* ════════════════════════════════════════
   CLOSING QUOTE STRIP
════════════════════════════════════════ */
.quote-strip {
  background: var(--deep);
  padding: 80px 0;
  text-align: center;
}

.quote-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.5px;
  max-width: 760px;
  margin: 0 auto;
}

.quote-text em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

/* ════════════════════════════════════════
   POWER-UP: buttons, cards, glow
════════════════════════════════════════ */
.btn-red {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgba(224,61,30,0.5);
}
.btn-red:hover {
  box-shadow: 0 8px 28px -4px rgba(224,61,30,0.55);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.06);
}

.hero h1 {
  text-shadow: 0 0 40px rgba(245,166,35,0.08);
}

.service-card {
  border-top: 2px solid transparent;
}
.service-card:hover {
  border-top-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.35);
}

.usp-item .icon {
  display: inline-block;
  transition: transform 0.3s ease;
}
.usp-item:hover .icon {
  transform: scale(1.15) rotate(-4deg);
}

.stat-box {
  position: relative;
  transition: background 0.25s;
}
.stat-box:hover {
  background: #241c16;
}
.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--red);
  transition: width 0.4s ease;
}
.stat-box:hover::before { width: 100%; }

.testi-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -16px rgba(0,0,0,0.2);
}

.price-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.18);
}
.price-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

/* Sharper hero badge with pulse */
.hero-badge {
  animation: pulseBadge 2.4s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,61,30,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(224,61,30,0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge { animation: none; }
}

@media (max-width: 700px) {
  .manifesto { padding: 44px 0 56px; }
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 980px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .full-services-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 16/10; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid, .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { gap: 3px; }
  .testi-grid, .brands-grid, .values-grid, .equip-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .case-results { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .pain-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .usp-grid, .stats-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .terms-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}
