/* Kingdom Ventures LLC — Local Service Business Site */
/* Vibe: dark slate, sharp orange-red accent, serious B2B */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Cabinet+Grotesk:wght@400;500;600;700;800&display=swap');

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

:root {
  --ink:      #0e0f11;
  --ink-2:    #1a1c1f;
  --ink-3:    #252830;
  --slate:    #3b3f4a;
  --mid:      #6b717e;
  --mist:     #9da3ae;
  --light:    #e8eaed;
  --paper:    #f5f5f3;
  --orange:   #e84c1e;
  --orange-2: #ff6b42;
  --white:    #ffffff;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'Cabinet Grotesk', 'Helvetica Neue', sans-serif;

  --radius: 2px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 1rem;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ─── LAYOUT ─────────────────────────────────────────── */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

section.dark {
  background: var(--ink);
  color: var(--light);
}

section.ink-2 {
  background: var(--ink-2);
  color: var(--light);
}

section.paper {
  background: var(--paper);
}

/* ─── NAV ────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(14, 15, 17, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav__logo span {
  color: var(--orange);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
  font-size: 0.85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav__cta:hover {
  background: var(--orange-2) !important;
  transform: translateY(-1px);
}

/* ─── HERO ───────────────────────────────────────────── */

.hero {
  background: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(232, 76, 30, 0.06) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,76,30,0.4), transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.75rem;
}

.hero__kicker::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  color: var(--white);
  max-width: 780px;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero__h1 em {
  font-style: italic;
  color: var(--orange-2);
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}

.hero__proof {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
}

.hero__proof {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__proof-num {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.hero__proof-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.4;
}

/* ─── BUTTONS ────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.75rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 76, 30, 0.25);
}

.btn--primary:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 76, 30, 0.35);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn--ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
}

.btn--outline-orange {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}

.btn--outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--full { width: 100%; justify-content: center; }

/* ─── SECTION HEADERS ────────────────────────────────── */

.section-header {
  margin-bottom: 3.5rem;
}

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--ink);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.7;
}

.dark .section-header h2 { color: var(--white); }
.dark .section-header p { color: rgba(255,255,255,0.5); }
.ink-2 .section-header h2 { color: var(--white); }
.ink-2 .section-header p { color: rgba(255,255,255,0.5); }

/* ─── BANNER / TICKER ────────────────────────────────── */

.ticker {
  background: var(--orange);
  padding: 0.65rem 0;
  overflow: hidden;
}

.ticker__text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

/* ─── PROBLEM STRIP ──────────────────────────────────── */

.problem-strip {
  background: var(--ink-2);
  padding: 4rem 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
}

.problem-item {
  background: var(--ink-2);
  padding: 2rem 1.75rem;
  transition: background var(--transition);
}

.problem-item:hover {
  background: var(--ink-3);
}

.problem-item__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.problem-item h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.problem-item p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ─── SERVICE CARDS ──────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--light);
}

.service-card {
  background: var(--paper);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
  position: relative;
}

.service-card:hover {
  background: var(--white);
}

.service-card__icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.65;
}

.service-card__accent {
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .service-card__accent { opacity: 1; }

/* ─── INDUSTRIES ─────────────────────────────────────── */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.08);
}

.industry-card {
  background: var(--ink-2);
  padding: 2rem 1.75rem;
  cursor: default;
  transition: background var(--transition);
}

.industry-card:hover {
  background: var(--ink-3);
}

.industry-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.industry-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.industry-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* ─── PROCESS STEPS ──────────────────────────────────── */

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--light);
  padding: 2rem 0;
  align-items: start;
}

.process-step:last-child { border-bottom: none; }

.process-step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
  opacity: 0.35;
  padding-top: 0.1rem;
}

.process-step__content h4 {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.process-step__content p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.65;
  max-width: 520px;
}

/* ─── TESTIMONIALS / SOCIAL PROOF ────────────────────── */

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.quote-card {
  background: var(--ink-2);
  padding: 2.25rem 2rem;
}

.quote-card__stars {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.quote-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.quote-card__author {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

/* ─── TRUST SECTION ─────────────────────────────────── */

.trust-section {
  background: var(--ink);
  padding: 5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
  margin-top: 0;
}

.trust-item {
  background: var(--ink);
  padding: 2.25rem 1.75rem;
  transition: background var(--transition);
}

.trust-item:hover {
  background: var(--ink-2);
}

.trust-item__icon {
  font-size: 1.25rem;
  color: var(--orange);
  display: block;
  margin-bottom: 1rem;
}

.trust-item h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.55;
}

/* ─── HOW IT WORKS ───────────────────────────────────── */

.hiw-section {
  background: var(--paper);
  padding: 5rem 0;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--light);
}

.hiw-step {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
}

.hiw-step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.45;
}

.hiw-step__body h4 {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.hiw-step__body p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ─── FEATURE / BENEFIT ROWS ─────────────────────────── */

.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--light);
}

.benefit-row:last-child { border-bottom: none; }

.benefit-row--flip .benefit-row__visual { order: -1; }

.benefit-row__visual {
  background: var(--ink-2);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.benefit-row__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,76,30,0.06) 0%, transparent 60%);
}

.benefit-row__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.benefit-row h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 1rem;
}

.benefit-row p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.check-list li {
  font-size: 0.88rem;
  color: var(--slate);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.check-list li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ─── CTA BAND ───────────────────────────────────────── */

.cta-band {
  background: var(--orange);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.btn--white {
  background: var(--white);
  color: var(--orange);
  font-weight: 800;
}

.btn--white:hover {
  background: var(--light);
  transform: translateY(-2px);
}

/* ─── FOOTER ─────────────────────────────────────────── */

.footer {
  background: var(--ink);
  padding: 3.5rem 0 2rem;
  color: rgba(255,255,255,0.4);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer__brand-name span { color: var(--orange); }

.footer__tagline {
  font-size: 0.83rem;
  line-height: 1.6;
  max-width: 240px;
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p { font-size: 0.78rem; }

/* ─── CONSULTATION FORM ──────────────────────────────── */

.consult-layout {
  min-height: calc(100vh - 64px);
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.consult-sidebar {
  background: var(--ink);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.consult-sidebar h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.consult-sidebar p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.consult-perks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.consult-perk {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.consult-perk__dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.consult-perk__text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.consult-perk__text strong {
  color: var(--white);
  font-weight: 600;
}

.consult-form-area {
  background: var(--paper);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.consult-form-area h2 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.consult-form-area .form-sub {
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 2rem;
}

/* ─── FORMS ──────────────────────────────────────────── */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--light);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

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

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

.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-error {
  background: rgba(232, 76, 30, 0.08);
  border-left: 3px solid var(--orange);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.form-success {
  background: rgba(16, 185, 129, 0.08);
  border-left: 3px solid #10b981;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: #065f46;
  margin-bottom: 1.25rem;
}

/* ─── CONFIRMATION ───────────────────────────────────── */

.confirm-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  padding-top: 64px;
}

.confirm-card {
  max-width: 520px;
  width: 100%;
  margin: 2rem;
  text-align: center;
}

.confirm-card__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.confirm-card h1 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.confirm-card p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ─── PAGE HEADERS (inner pages) ─────────────────────── */

.page-hero {
  background: var(--ink);
  padding: 7rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero .eyebrow { margin-bottom: 1rem; }

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.page-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7;
}

/* ─── DETAIL CARDS (services/industries) ─────────────── */

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--light);
}

.detail-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.detail-card:hover::before { transform: scaleX(1); }

.detail-card__num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--mist);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.detail-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.detail-card p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.detail-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.detail-card__list li {
  font-size: 0.82rem;
  color: var(--slate);
  padding-left: 1rem;
  position: relative;
}

.detail-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.75rem;
}

/* ─── INDUSTRY PAGE ──────────────────────────────────── */

.industry-detail {
  background: var(--ink-2);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.industry-detail__header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.industry-detail__icon-wrap {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  background: rgba(232, 76, 30, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-detail__title h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.industry-detail__title p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.industry-detail__body {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.industry-detail__pains {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.industry-detail__pains li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  padding-left: 1.1rem;
  position: relative;
}

.industry-detail__pains li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  opacity: 0.7;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { display: flex !important; }

  .benefit-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefit-row--flip .benefit-row__visual { order: 0; }

  .benefit-row__visual { aspect-ratio: 16/7; }

  .consult-layout {
    grid-template-columns: 1fr;
  }

  .consult-sidebar {
    padding: 3rem 2rem;
  }

  .consult-form-area {
    padding: 2.5rem 2rem;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .form-2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 0; }

  .hero__inner { padding: 3.5rem 1.5rem; }

  .hero__actions { flex-direction: column; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
  }

  .consult-sidebar p { max-width: 100%; }
}
