/* =====================================================
   cr-industrias.css — styles for /industrias/ sub-landings
   Additive to cr-sprint4.css + cr-sprint5.css (no resets).
   Loaded on: /industrias/ + /industrias/<sector>/ pages.
   ===================================================== */

/* --- tokens used ------------------------------------ */
.cr-section.cr-section-light { --cr-ink: #0a0a10; --cr-ink-soft: rgba(10,10,16,0.64); --cr-accent: #e91e63; }
.cr-section.cr-section-dark  { --cr-ink: #ffffff; --cr-ink-soft: rgba(255,255,255,0.70); --cr-accent: #ff7c8f; }

/* --- section base ----------------------------------- */
.cr-section {
  padding: clamp(72px, 9vw, 140px) 0;
  position: relative;
}
.cr-section-light { background: #fff; color: #0a0a10; }
.cr-section-dark  { background: #0a0a10; color: #fff; }

.cr-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.cr-container--narrow { max-width: 880px; }

/* --- hero ------------------------------------------- */
.cr-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(80px, 10vw, 140px); position: relative; }
.cr-hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.cr-hero-eyebrow {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff7c8f;
  margin-bottom: 28px;
  border: 1px solid rgba(255,124,143,0.35);
  padding: 8px 18px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.cr-hero-title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 8vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 32px 0;
  text-transform: none;
}
.cr-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #ff7c8f 0%, #e91e63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cr-hero-lede {
  max-width: 740px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0 0 40px 0;
}
.cr-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cr-hero-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
.cr-hero-trust span + span { /* separator styling already inline */ }

/* --- eyebrow & H2 ---------------------------------- */
.cr-eyebrow {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cr-accent, #e91e63);
  margin-bottom: 20px;
}
.cr-h2 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 56px 0;
  color: #0a0a10;
  max-width: 920px;
}
.cr-h2--light { color: #fff; }
.cr-h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #e91e63 0%, #ff7c8f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cr-h2--light em {
  background: linear-gradient(135deg, #ff7c8f 0%, #ffb88c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- pain grid (light section) --------------------- */
.cr-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .cr-pain-grid { grid-template-columns: 1fr; }
}
.cr-pain-card {
  background: #f6f6f8;
  border-radius: 18px;
  padding: 36px 32px;
  border: 1px solid rgba(10,10,16,0.06);
  transition: transform 0.25s cubic-bezier(0.2,0.6,0.2,1), box-shadow 0.25s;
}
.cr-pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10,10,16,0.08);
}
.cr-pain-num {
  font-family: "Anton", sans-serif;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #e91e63;
  margin-bottom: 20px;
}
.cr-pain-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  color: #0a0a10;
  margin: 0 0 12px 0;
}
.cr-pain-body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(10,10,16,0.65);
  margin: 0;
}

/* --- impl grid (dark section) ---------------------- */
.cr-impl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .cr-impl-grid { grid-template-columns: 1fr; }
}
.cr-impl-card {
  background: #16161e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px 32px;
  transition: transform 0.25s cubic-bezier(0.2,0.6,0.2,1), border-color 0.25s, background 0.25s;
}
.cr-impl-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,124,143,0.4);
  background: #1a1a24;
}
.cr-impl-num {
  font-family: "Anton", sans-serif;
  font-size: 42px;
  line-height: 1;
  color: #ff7c8f;
  margin-bottom: 20px;
}
.cr-impl-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 12px 0;
}
.cr-impl-body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.70);
  margin: 0;
}
.cr-impl-body strong { color: #fff; font-weight: 600; }

/* --- callout band ----------------------------------- */
.cr-callout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 48px 0;
  border-top: 1px solid rgba(10,10,16,0.08);
  border-bottom: 1px solid rgba(10,10,16,0.08);
}
.cr-callout-body {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: #0a0a10;
  margin: 0;
  max-width: 820px;
}
.cr-callout-body strong { color: #e91e63; }

/* --- related services grid (dark) ------------------ */
.cr-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .cr-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cr-related-grid { grid-template-columns: 1fr; } }
.cr-related-card {
  position: relative;
  display: block;
  background: #16161e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px 28px 56px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s cubic-bezier(0.2,0.6,0.2,1), border-color 0.25s, background 0.25s;
}
.cr-related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,124,143,0.4);
  background: #1a1a24;
}
.cr-related-card h3 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 12px 0;
  color: #fff;
}
.cr-related-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.cr-related-arrow {
  position: absolute;
  bottom: 22px;
  right: 24px;
  font-family: "Anton", sans-serif;
  font-size: 22px;
  color: #ff7c8f;
  transition: transform 0.25s;
}
.cr-related-card:hover .cr-related-arrow { transform: translateX(4px); }

/* --- faq ------------------------------------------- */
.cr-faq-list { display: flex; flex-direction: column; gap: 12px; }
.cr-faq-item {
  background: #fff;
  border: 1px solid rgba(10,10,16,0.08);
  border-radius: 14px;
  padding: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cr-faq-item[open] {
  border-color: rgba(233,30,99,0.35);
  box-shadow: 0 8px 20px rgba(10,10,16,0.05);
}
.cr-faq-q {
  cursor: pointer;
  padding: 22px 26px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #0a0a10;
  list-style: none;
  position: relative;
  padding-right: 58px;
}
.cr-faq-q::-webkit-details-marker { display: none; }
.cr-faq-q::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Anton", sans-serif;
  font-size: 24px;
  color: #e91e63;
  transition: transform 0.2s;
}
.cr-faq-item[open] .cr-faq-q::after { content: "–"; }
.cr-faq-a {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(10,10,16,0.7);
}
.cr-faq-a p { margin: 0; }

/* --- cta final ------------------------------------- */
.cr-cta-final { text-align: left; }
.cr-cta-lede {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0 0 28px 0;
  max-width: 760px;
}
.cr-cta-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cr-cta-checklist li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}
.cr-cta-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e91e63, #ff7c8f);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}
.cr-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- buttons (in case sprint4 doesn't style them in dark sections) --- */
.cr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e91e63 0%, #ff7c8f 100%);
  color: #fff !important;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(233,30,99,0.45);
  transition: transform 0.25s cubic-bezier(0.2,0.6,0.2,1), box-shadow 0.25s;
}
.cr-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(233,30,99,0.55);
}
.cr-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: inherit !important;
  padding: 16px 24px;
  border-radius: 100px;
  border: 1.5px solid currentColor;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.25s, transform 0.25s;
}
.cr-btn-ghost:hover { opacity: 1; transform: translateY(-2px); }

/* --- hub: sectors grid ----------------------------- */
.cr-sectors-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .cr-sectors-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cr-sectors-hub-grid { grid-template-columns: 1fr; } }
.cr-sector-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(10,10,16,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s cubic-bezier(0.2,0.6,0.2,1), box-shadow 0.25s, border-color 0.25s;
}
.cr-sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(10,10,16,0.08);
  border-color: rgba(233,30,99,0.28);
}
.cr-sector-card__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,10,16,0.5);
  margin-bottom: 14px;
}
.cr-sector-card__title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 14px 0;
  color: #0a0a10;
}
.cr-sector-card__lede {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(10,10,16,0.65);
  margin: 0 0 22px 0;
  flex: 1;
}
.cr-sector-card__arrow {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e91e63;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- mobile --------------------------------------- */
@media (max-width: 720px) {
  .cr-hero { padding: 110px 0 72px; }
  .cr-section { padding: 72px 0; }
  .cr-h2 { margin-bottom: 40px; }
  .cr-cta-actions, .cr-hero-ctas { flex-direction: column; align-items: stretch; }
  .cr-btn-primary, .cr-btn-ghost { justify-content: center; }
}
