/* ====================================================================
 * industries.css — Shared styles for /roofing, /pool-services,
 * /auto-detailing, /pet-services, /towing, /window-cleaning
 *
 * v3 EDITORIAL+CRAFTSMAN — uses ink/paper/orange tokens from style.css.
 * Pairs with: <link rel="stylesheet" href="/style.css">
 *             <link rel="stylesheet" href="/industries.css">
 * ==================================================================== */

/* ---------- BREADCRUMB ---------- */
.ind-breadcrumb {
  background: var(--paper-2);
  border-bottom: 1px solid var(--hairline);
  padding: 14px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.ind-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ind-breadcrumb a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.ind-breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep {
  color: var(--muted-2);
  font-weight: 600;
}
.breadcrumb-current {
  color: var(--muted);
  font-weight: 500;
}

/* ---------- HERO ---------- */
.ind-hero {
  padding: 80px 0 100px;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
}
.ind-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.ind-hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  margin-bottom: 22px;
}
.ind-hero-copy .eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--ink);
  opacity: 0.5;
}
.ind-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.0;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: balance;
}
.ind-hero-title .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.ind-hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 560px;
}
.ind-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.ind-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ind-hero-meta .meta-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ind-hero-meta .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 4px rgba(22,163,74,.15);
  animation: pulse 1.6s infinite;
}

/* ---------- HERO BROWSER MOCK (per-industry color) — wrapped in polaroid frame ---------- */
.ind-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ind-hero-visual .browser-frame { transform: rotate(-1.6deg); transition: transform .35s ease; }
.ind-hero-visual .browser-frame:hover { transform: rotate(0); }

.ind-mock-roofing { background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%); }
.ind-mock-roofing .ind-mock-logo { font-family: var(--font-body); font-weight: 800; font-size: 1.3rem; color: #FFF; letter-spacing: .04em; margin-bottom: 14px; }
.ind-mock-roofing .ind-mock-logo span { color: #F97316; }
.ind-mock-roofing .ind-mock-h1 { font-family: var(--font-display); color: #FFF; font-size: 1.5rem; font-weight: 600; line-height: 1.18; margin-bottom: 18px; max-width: 90%; letter-spacing: -0.02em; }
.ind-mock-roofing .ind-mock-btn { display: inline-block; background: #F97316; color: #FFF; font-weight: 700; padding: 12px 22px; border-radius: 8px; font-size: .95rem; }
.ind-mock-hero { padding: 30px; }
.ind-mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.12); }
.ind-mock-stats > div { padding: 18px 14px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); color: #FFF; }
.ind-mock-stats > div:last-child { border-right: 0; }
.ind-mock-stats strong { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: #F97316; }
.ind-mock-stats span { display: block; font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .12em; margin-top: 4px; }

/* POOL */
.ind-mock-pool { background: linear-gradient(135deg, #0E7490 0%, #06B6D4 100%); }
.ind-mock-pool .ind-mock-logo { font-family: var(--font-body); font-weight: 800; font-size: 1.3rem; color: #FFF; letter-spacing: .04em; margin-bottom: 14px; }
.ind-mock-pool .ind-mock-logo span { color: #FDE68A; }
.ind-mock-pool .ind-mock-h1 { font-family: var(--font-display); color: #FFF; font-size: 1.5rem; font-weight: 600; line-height: 1.18; margin-bottom: 18px; max-width: 90%; letter-spacing: -0.02em; }
.ind-mock-pool .ind-mock-btn { display: inline-block; background: #FDE68A; color: #0E7490; font-weight: 700; padding: 12px 22px; border-radius: 8px; font-size: .95rem; }
.ind-mock-pool .ind-mock-stats strong { color: #FDE68A; }

/* AUTO DETAILING */
.ind-mock-detail { background: linear-gradient(135deg, #0F0F12 0%, #1F2937 100%); }
.ind-mock-detail .ind-mock-logo { font-family: var(--font-body); font-weight: 800; font-size: 1.3rem; color: #FFF; letter-spacing: .08em; margin-bottom: 14px; text-transform: uppercase; }
.ind-mock-detail .ind-mock-logo span { color: #38BDF8; }
.ind-mock-detail .ind-mock-h1 { font-family: var(--font-display); color: #FFF; font-size: 1.45rem; font-weight: 600; line-height: 1.18; margin-bottom: 18px; max-width: 90%; letter-spacing: -0.02em; }
.ind-mock-detail .ind-mock-btn { display: inline-block; background: #38BDF8; color: #0F0F12; font-weight: 700; padding: 12px 22px; border-radius: 8px; font-size: .95rem; }
.ind-mock-detail .ind-mock-stats strong { color: #38BDF8; }

/* PET */
.ind-mock-pet { background: linear-gradient(135deg, #7C2D12 0%, #B45309 100%); }
.ind-mock-pet .ind-mock-logo { font-family: var(--font-body); font-weight: 800; font-size: 1.3rem; color: #FFF; letter-spacing: .04em; margin-bottom: 14px; }
.ind-mock-pet .ind-mock-logo span { color: #FBCFE8; }
.ind-mock-pet .ind-mock-h1 { font-family: var(--font-display); color: #FFFBEB; font-size: 1.45rem; font-weight: 600; line-height: 1.18; margin-bottom: 18px; max-width: 90%; letter-spacing: -0.02em; }
.ind-mock-pet .ind-mock-btn { display: inline-block; background: #FBCFE8; color: #7C2D12; font-weight: 700; padding: 12px 22px; border-radius: 8px; font-size: .95rem; }
.ind-mock-pet .ind-mock-stats strong { color: #FBCFE8; }

/* TOWING */
.ind-mock-tow { background: linear-gradient(135deg, #7F1D1D 0%, #111827 100%); }
.ind-mock-tow .ind-mock-logo { font-family: var(--font-body); font-weight: 800; font-size: 1.4rem; color: #FFF; letter-spacing: .08em; margin-bottom: 14px; text-transform: uppercase; }
.ind-mock-tow .ind-mock-logo span { color: #FACC15; }
.ind-mock-tow .ind-mock-h1 { font-family: var(--font-display); color: #FFF; font-size: 1.5rem; font-weight: 600; line-height: 1.18; margin-bottom: 18px; max-width: 90%; letter-spacing: -0.02em; }
.ind-mock-tow .ind-mock-btn { display: inline-block; background: #FACC15; color: #7F1D1D; font-weight: 800; padding: 14px 24px; border-radius: 8px; font-size: 1rem; letter-spacing: .02em; }
.ind-mock-tow .ind-mock-stats strong { color: #FACC15; }

/* WINDOW / SHINEPRO */
.ind-mock-window { background: linear-gradient(135deg, #0EA5E9 0%, #0369A1 100%); }
.ind-mock-window .ind-mock-logo { font-family: var(--font-body); font-weight: 800; font-size: 1.3rem; color: #FFF; letter-spacing: .04em; margin-bottom: 14px; }
.ind-mock-window .ind-mock-logo span { color: #FCD34D; }
.ind-mock-window .ind-mock-h1 { font-family: var(--font-display); color: #FFF; font-size: 1.5rem; font-weight: 600; line-height: 1.18; margin-bottom: 18px; max-width: 90%; letter-spacing: -0.02em; }
.ind-mock-window .ind-mock-btn { display: inline-block; background: #FCD34D; color: #0369A1; font-weight: 700; padding: 12px 22px; border-radius: 8px; font-size: .95rem; }
.ind-mock-window .ind-mock-stats strong { color: #FCD34D; }

/* ---------- PAIN BAR (dark editorial) ---------- */
.ind-pain {
  padding: 100px 0;
  background: var(--ink);
  color: var(--paper);
}
.section-eyebrow-h {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  text-align: left;
  margin: 0 0 50px;
  color: var(--paper);
  letter-spacing: -0.025em;
  max-width: 720px;
  text-wrap: balance;
}
.ind-pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(244,240,232,.16);
  border-left: 1px solid rgba(244,240,232,.16);
}
.pain-card {
  background: transparent;
  border-right: 1px solid rgba(244,240,232,.16);
  border-bottom: 1px solid rgba(244,240,232,.16);
  padding: 32px 24px;
  transition: background .2s;
}
.pain-card:hover { background: rgba(244,240,232,.04); }
.pain-icon {
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 14px;
  opacity: 0.85;
}
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--paper);
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.pain-card p {
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(244,240,232,.7);
  margin: 0;
}

/* ---------- WHAT I BUILD (FEATURES) ---------- */
.ind-features {
  padding: 110px 0;
  background: var(--paper);
}
.ind-features .section-h {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 600;
  text-align: left;
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.0;
  max-width: 760px;
}
.ind-features .section-h .accent { color: var(--accent); font-style: italic; font-weight: 500; }
.ind-features .section-sub {
  text-align: left;
  color: var(--muted);
  max-width: 580px;
  margin: 0 0 56px;
  font-size: 1.08rem;
  line-height: 1.65;
}
.ind-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.feature-card {
  background: transparent;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 30px 26px;
  transition: background .2s;
}
.feature-card:hover { background: var(--paper-2); }
.feature-icon {
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 14px;
  opacity: 0.85;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.feature-card p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ---------- PROOF / CASE STUDY TEASER ---------- */
.ind-proof {
  padding: 110px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.ind-proof-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.ind-proof-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0;
  border: 0;
  border-radius: 0;
  margin-bottom: 18px;
}
.ind-proof-copy .eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--ink);
  opacity: 0.5;
}
.ind-proof-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.ind-proof-copy h2 .accent { color: var(--accent); font-style: italic; font-weight: 500; }
.ind-proof-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
  margin: 0 0 14px;
}
.proof-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.ind-proof-visual .testimonial {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 38px 32px;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-soft);
  margin: 0;
  position: relative;
}
.ind-proof-visual .testimonial::before {
  content: "\201C";
  position: absolute;
  top: -16px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  font-style: italic;
}
.ind-proof-visual .stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: .14em;
  margin-bottom: 16px;
}
.ind-proof-visual blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.ind-proof-visual figcaption strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}
.ind-proof-visual .testimonial-role {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- PRICING ---------- */
.ind-pricing {
  padding: 110px 0;
  background: var(--paper);
}
.ind-pricing .section-h {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 600;
  text-align: left;
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.0;
  max-width: 760px;
}
.ind-pricing .section-h .accent { color: var(--accent); font-style: italic; font-weight: 500; }
.ind-pricing .section-sub {
  text-align: left;
  color: var(--muted);
  max-width: 580px;
  margin: 0 0 56px;
  font-size: 1.04rem;
  line-height: 1.65;
}
.pricing-foot {
  text-align: left;
  margin: 40px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-family: var(--font-display);
  font-style: italic;
}
.pricing-foot .link-arrow {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  margin-left: 6px;
  border-bottom: 1px solid var(--accent);
}

/* ---------- FAQ ---------- */
.ind-faq {
  padding: 110px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
}
.ind-faq .section-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  text-align: left;
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.ind-faq .section-sub {
  text-align: left;
  color: var(--muted);
  max-width: 580px;
  margin: 0 0 40px;
  font-size: 1.04rem;
}

/* ---------- FINAL CTA ---------- */
.ind-final-cta {
  padding: 100px 0;
  background: var(--paper);
}
.final-cta-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 70px 48px;
  text-align: left;
  color: var(--paper);
  box-shadow: 0 30px 80px -20px rgba(14, 14, 16, .35);
  position: relative;
  overflow: hidden;
}
.final-cta-card::before {
  content: "";
  position: absolute;
  top: 0; right: -40px;
  width: 320px; height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><circle cx='100' cy='100' r='80' fill='none' stroke='%23FF6B35' stroke-width='1.5' opacity='0.3'/><circle cx='100' cy='100' r='60' fill='none' stroke='%23FF6B35' stroke-width='1.5' opacity='0.5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.25;
  pointer-events: none;
}
.final-cta-card .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,240,232,.7);
  padding: 0;
  border: 0;
  border-radius: 0;
  margin-bottom: 20px;
}
.final-cta-card .eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: rgba(244,240,232,.5);
}
.final-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 600;
  margin: 0 0 18px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--paper);
  max-width: 720px;
}
.final-cta-card p {
  color: rgba(244,240,232,.78);
  font-size: 1.06rem;
  line-height: 1.65;
  max-width: 580px;
  margin: 0 0 30px;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .ind-hero-inner            { grid-template-columns: 1fr; gap: 50px; }
  .ind-pain-grid             { grid-template-columns: repeat(2, 1fr); }
  .ind-feature-grid          { grid-template-columns: repeat(2, 1fr); }
  .ind-proof-inner           { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .ind-hero                  { padding: 60px 0 70px; }
  .ind-hero-title            { font-size: 2.2rem; }
  .ind-pain                  { padding: 70px 0; }
  .ind-pain-grid             { grid-template-columns: 1fr; border-left: 0; }
  .pain-card                 { border-right: 0; }
  .ind-features              { padding: 80px 0; }
  .ind-feature-grid          { grid-template-columns: 1fr; border-left: 0; }
  .feature-card              { border-right: 0; }
  .ind-proof, .ind-pricing,
  .ind-faq, .ind-final-cta   { padding: 80px 0; }
  .final-cta-card            { padding: 48px 28px; }
  .final-cta-actions         { flex-direction: column; }
  .final-cta-actions .btn    { width: 100%; }
}

/* ---------- DARK MODE OVERRIDES ---------- */
[data-theme="dark"] .ind-breadcrumb { background: var(--paper-2); }
[data-theme="dark"] .ind-breadcrumb a { color: var(--ink); }
[data-theme="dark"] .breadcrumb-current { color: var(--muted); }
[data-theme="dark"] .ind-hero { background: var(--paper); border-color: var(--hairline); }
[data-theme="dark"] .ind-hero-title { color: var(--ink); }
[data-theme="dark"] .ind-hero-sub { color: var(--muted); }
[data-theme="dark"] .ind-features { background: var(--paper); }
[data-theme="dark"] .ind-features .section-h { color: var(--ink); }
[data-theme="dark"] .ind-features .section-sub { color: var(--muted); }
[data-theme="dark"] .feature-card:hover { background: var(--paper-2); }
[data-theme="dark"] .feature-card h3 { color: var(--ink); }
[data-theme="dark"] .feature-card p { color: var(--muted); }
[data-theme="dark"] .ind-proof { background: var(--paper-2); border-color: var(--hairline); }
[data-theme="dark"] .ind-proof-copy h2 { color: var(--ink); }
[data-theme="dark"] .ind-proof-copy p { color: var(--muted); }
[data-theme="dark"] .ind-proof-visual .testimonial { background: var(--paper); border-color: var(--hairline); }
[data-theme="dark"] .ind-proof-visual blockquote { color: var(--ink); }
[data-theme="dark"] .ind-proof-visual figcaption strong { color: var(--ink); }
[data-theme="dark"] .ind-proof-visual .testimonial-role { color: var(--muted); }
[data-theme="dark"] .ind-pricing { background: var(--paper); }
[data-theme="dark"] .ind-pricing .section-h { color: var(--ink); }
[data-theme="dark"] .ind-pricing .section-sub { color: var(--muted); }
[data-theme="dark"] .pricing-foot { color: var(--muted); }
[data-theme="dark"] .pricing-foot .link-arrow { color: var(--accent); }
[data-theme="dark"] .ind-faq { background: var(--paper-2); border-color: var(--hairline); }
[data-theme="dark"] .ind-faq .section-h { color: var(--ink); }
[data-theme="dark"] .ind-faq .section-sub { color: var(--muted); }
[data-theme="dark"] .ind-final-cta { background: var(--paper); }
[data-theme="dark"] .final-cta-card { background: var(--accent); }
[data-theme="dark"] .final-cta-card h2 { color: #fff; }
[data-theme="dark"] .final-cta-card p { color: rgba(255,255,255,.85); }
[data-theme="dark"] .final-cta-card .eyebrow { color: rgba(255,255,255,.85); }
[data-theme="dark"] .final-cta-card .eyebrow::before { background: rgba(255,255,255,.6); }
