/* ============================================================
   Pro ASIC Miner Repair LLC — global.css
   ============================================================ */

/* ============================================================
   Pro ASIC Miner Repair LLC — style.css
   Industrial service company — Deep navy / gray / white / industrial blue
   ============================================================ */

/* ============================================================
   0. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Color palette — industrial blue scheme */
  --navy:         #0b1f3a;
  --navy-2:       #102844;
  --navy-3:       #163557;
  --blue:         #1565c0;
  --blue-dk:      #0d47a1;
  --blue-lt:      #1976d2;
  --blue-bright:  #2196f3;
  --blue-wash:    #e3f2fd;
  --blue-wash-2:  #bbdefb;
  --white:        #ffffff;
  --gray-bg:      #f5f7fa;
  --gray-2:       #e9edf3;
  --gray-3:       #cdd3dc;
  --gray-4:       #94a3b8;
  --text-dark:    #1a2332;
  --text-body:    #374151;
  --text-muted:   #6b7280;
  --orange:       #f59e0b;
  --orange-lt:    #fef3c7;
  --green:        #16a34a;
  --green-lt:     #dcfce7;
  --red:          #dc2626;
  --red-lt:       #fee2e2;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --nav-height:    68px;
  --section-pad:   64px;
  --container-max: 1160px;
  --container-pad: clamp(16px, 4vw, 40px);

  /* Shape */
  --radius-sm:  3px;
  --radius-md:  6px;
  --radius-lg:  16px;
  --radius-xl:  16px;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.08);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.1);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.15);
  --shadow-blue: 0 4px 20px rgba(21,101,192,0.3);

  /* Glow */
  --glow-blue:    0 0 0 1px rgba(33,150,243,0.22), 0 0 28px rgba(33,150,243,0.14);
  --glow-blue-sm: 0 0 0 1px rgba(33,150,243,0.2),  0 0 14px rgba(33,150,243,0.18);
  --glow-green-sm: 0 0 8px rgba(22,163,74,0.5);

  --transition: 0.22s ease;
}


/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: #07101f;
  color: var(--text-body);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dk); }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 700; }
p { line-height: 1.7; }
strong { color: inherit; font-weight: 700; }


/* ============================================================
   DARK SECTION TYPOGRAPHY SYSTEM
   Use .section-dark or .dark-section on any navy/dark section
   to get correct white heading/body text automatically.
   ============================================================ */
.section-dark,
.dark-section,
[data-theme="dark"] {
  color: #ffffff;
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4,
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4,
[data-theme="dark"] h1, [data-theme="dark"] h2,
[data-theme="dark"] h3, [data-theme="dark"] h4 {
  color: #ffffff;
}

.section-dark strong, .dark-section strong, [data-theme="dark"] strong {
  color: #ffffff;
}

.section-dark .section-sub,
.dark-section .section-sub,
[data-theme="dark"] .section-sub {
  color: rgba(255,255,255,0.72);
}

.section-dark .section-eyebrow,
.dark-section .section-eyebrow,
[data-theme="dark"] .section-eyebrow {
  color: var(--blue-bright);
}


/* ============================================================
   2. LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.section-eyebrow--light { color: var(--blue-wash-2); }
.section-header--light h2 { color: var(--white); }
.section-sub {
  color: var(--text-muted);
  max-width: 660px;
  margin-inline: auto;
  margin-top: 0.75rem;
  font-size: 1.05rem;
}
.section-sub--light { color: rgba(255,255,255,0.75); }


/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.72rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  box-shadow: var(--shadow-blue);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(15,23,42,0.55);
}
.btn-outline-dark:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}
.btn-outline-dark:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
}


/* ============================================================
   4. CTA BAR
   ============================================================ */
.cta-bar {
  background: var(--navy);
  padding: 1.75rem 0;
}
.cta-bar--light {
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
}
.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-bar p { color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 500; }
.cta-bar--light p { color: var(--text-dark); }

@media (max-width: 580px) {
  .cta-bar-inner { flex-direction: column; text-align: center; }
}


/* ============================================================
   7. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-2);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.1rem; flex-shrink: 0; }

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,0.08); border-right: none; padding: 0.75rem 0; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .trust-item:last-child, .trust-item:nth-last-child(2) { border-bottom: none; }
}
@media (max-width: 400px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-item:last-child { border-bottom: none; }
}


/* ============================================================
   9. SERVICES
   ============================================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--gray-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.svc-card:hover {
  border-color: var(--blue-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.svc-card--featured {
  border-color: var(--blue);
  background: var(--navy);
  grid-column: span 2;
}
.svc-card--featured h3 { color: var(--white); }
.svc-card--featured .svc-models,
.svc-card--featured .svc-faults li { color: rgba(255,255,255,0.72); }
.svc-card--featured:hover { border-color: var(--blue-bright); }

@media (max-width: 680px) {
  .svc-card--featured { grid-column: span 1; }
}

.svc-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--orange);
  color: #0b1f3a;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.svc-icon { font-size: 2rem; line-height: 1; }
.svc-card h3 { font-size: 1.1rem; margin: 0; }
.svc-models {
  font-size: 0.78rem;
  color: var(--gray-4);
  font-weight: 500;
  padding-top: 0.25rem;
  border-top: 1px solid var(--gray-2);
}
.svc-card--featured .svc-models { border-color: rgba(255,255,255,0.12); }

.svc-faults {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.svc-faults li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.svc-faults li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.2;
}
.svc-card--featured .svc-faults li::before { color: var(--blue-wash-2); }


/* ============================================================
   10. PROBLEM CENTER
   ============================================================ */
.problems {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.prob-card {
  background: var(--gray-bg);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.prob-card:hover {
  border-color: var(--blue-bright);
  box-shadow: var(--shadow-sm);
}

.prob-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.prob-icon { font-size: 1.5rem; flex-shrink: 0; }
.prob-head h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin: 0; }

.prob-detail { flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.prob-detail dt {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 0.1rem;
}
.prob-detail dd {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}


/* ============================================================
   11. ESTIMATOR
   ============================================================ */
.estimator {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
}
.estimator::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(21,101,192,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.estimator .container { position: relative; z-index: 1; }

.estimator-inner {
  max-width: 800px;
  margin-inline: auto;
}

.est-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.est-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.est-field--full { grid-column: span 2; }

.est-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.est-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.est-field label span { color: var(--orange); margin-left: 2px; }

.est-field input,
.est-field select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--transition), background var(--transition);
}
.est-field input::placeholder { color: rgba(255,255,255,0.3); }
.est-field select option { background: var(--navy-2); color: var(--white); }
.est-field input:focus,
.est-field select:focus {
  border-color: var(--blue-bright);
  background: rgba(255,255,255,0.1);
}
.est-field input.is-error,
.est-field select.is-error { border-color: #f87171; }

.est-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.25rem;
}

.est-submit { width: 100%; }

/* Result panel */
.est-result {
  display: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(33,150,243,0.35);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-top: 1.5rem;
}
.est-result.show { display: block; }

.est-rec-block {
  background: rgba(21,101,192,0.25);
  border: 1px solid rgba(33,150,243,0.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.est-rec-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-wash-2);
  margin-bottom: 0.35rem;
}
.est-rec-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.est-urgency {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #fbbf24;
  font-weight: 500;
}

.est-prep-block { margin-bottom: 1.5rem; }
.est-prep-block h4 {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.est-prep-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.est-prep-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.6;
}
.est-prep-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 640px) {
  .est-form-grid { grid-template-columns: 1fr; }
  .est-field--full { grid-column: span 1; }
  .est-form { padding: 1.5rem; }
}




/* ============================================================
   16. CONTACT
   ============================================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

.contact-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}

/* Contact info */
.contact-info h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.75rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.ci-icon { font-size: 1.1rem; padding-top: 2px; flex-shrink: 0; }
.contact-list strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-wash-2);
  margin-bottom: 0.2rem;
}
.contact-list a, .contact-list span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.contact-list a:hover { color: var(--white); }

.emergency-note {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
}
.en-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}
.emergency-note p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0.85rem;
}

/* Emergency note CTA button — white text, blue hover, visible on dark bg */
.emergency-note .btn-outline-dark {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  background: transparent;
}
.emergency-note .btn-outline-dark:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

/* Contact list description line (e.g. under Email) */
.ci-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.48);
  margin-top: 0.2rem;
  line-height: 1.5;
}

/* Contact form */
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.form-field label span[aria-hidden] { color: var(--orange); margin-left: 2px; }
.field-optional { color: var(--gray-4) !important; font-weight: 400; font-size: 0.78rem; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.28); }
input:focus, select:focus, textarea:focus {
  border-color: var(--blue-bright);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(33,150,243,0.2);
}
select option { background: var(--navy-2); color: var(--white); }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.25rem;
  cursor: pointer;
}
textarea { resize: vertical; min-height: 120px; }

.is-error {
  border-color: #f87171 !important;
  background: rgba(239,68,68,0.07) !important;
}
.field-error {
  font-size: 0.78rem;
  color: #f87171;
  min-height: 1em;
}

.field-hint {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.35rem;
}

/* Submit */
#form-submit {
  font-size: 1rem;
  margin-top: 0.5rem;
}
#form-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* Success */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
}
.form-success.show { display: block; }
.fs-icon { font-size: 2.5rem; color: var(--green); margin-bottom: 1rem; }
.form-success h3 { color: var(--white); margin-bottom: 0.75rem; }
.form-success p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 580px) {
  .form-row-2 { grid-template-columns: 1fr; }
}


/* ============================================================
   20. TECHNICAL REPAIR CAPABILITY
   ============================================================ */
.capabilities {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.capabilities::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(21,101,192,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.capabilities .section-header { position: relative; z-index: 1; }

.caps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.caps-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: background var(--transition), border-color var(--transition);
}
.caps-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(33,150,243,0.4);
}
.caps-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.75rem;
}
.caps-card h3 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.caps-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}




/* ============================================================
   34. EMERGENCY BANNER
   ============================================================ */
.emergency-banner {
  background: #7f1d1d;
  padding: 1.5rem 0;
}

.emergency-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.eb-text p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin: 0;
}

.eb-label {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.eb-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  flex-shrink: 0;
}

.eb-call-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.5rem;
  background: #fff;
  color: #7f1d1d;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
}
.eb-call-btn:hover {
  background: #fee2e2;
  transform: translateY(-1px);
  color: #7f1d1d;
}

.eb-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 640px) {
  .emergency-banner-inner { flex-direction: column; align-items: flex-start; }
  .eb-action { align-items: flex-start; }
}


/* ============================================================
   35. CASE OUTCOME (Before / After in case cards)
   ============================================================ */
.case-outcome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-md);
}

.case-before,
.case-after {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.co-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.co-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.co-val--good {
  color: var(--green);
}

.case-arrow {
  font-size: 1.1rem;
  color: var(--gray-4);
  flex-shrink: 0;
}


/* ============================================================
   36. CONTACT INTRO & FLEET NOTE
   ============================================================ */
.contact-intro {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.contact-fleet-note {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
}
.contact-fleet-note strong {
  display: block;
  color: var(--blue-wash-2);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.4rem;
}
.contact-fleet-note p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin: 0;
}


/* ============================================================
   38. INDUSTRIAL CTA BANNER
   ============================================================ */
.cta-banner-industrial {
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 55%, #0d2a47 100%);
  border-top: 1px solid rgba(33,150,243,0.28);
  border-bottom: 1px solid rgba(33,150,243,0.18);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  /* no margin-top: flush against preceding dark section */
}

.cta-banner-industrial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 78% 50%, rgba(33,150,243,0.13) 0%, transparent 62%);
  pointer-events: none;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-banner-text {
  flex: 1;
  min-width: 0;
}

.cta-banner-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.cta-banner-sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.68;
  max-width: 560px;
  margin: 0;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
  }
  .cta-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .cta-banner-industrial { padding: 2.25rem 0; }
  .cta-banner-actions { grid-template-columns: 1fr; }
  .cta-banner-actions .btn { text-align: center; justify-content: center; }
}

/* ============================================================
   41. COMMON ASIC FAILURES SECTION
   ============================================================ */
.asic-failures {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.asic-failures::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 600px; height: 380px;
  background: radial-gradient(ellipse at 15% 0%, rgba(33,150,243,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.failures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.failure-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 1.4rem;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}
.failure-card:hover {
  border-color: var(--blue-bright);
  background: rgba(33,150,243,0.07);
  transform: translateY(-2px);
}

.failure-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.failure-badge {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  flex-shrink: 0;
}

.failure-row { margin-bottom: 0.7rem; }
.failure-row:last-child { margin-bottom: 0; }

.failure-label {
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--blue-bright);
  margin-bottom: 0.22rem;
}

.failure-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.58;
}

@media (max-width: 600px) {
  .failures-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   42. FLEET SUPPORT SECTION
   ============================================================ */
.fleet-support {
  padding: var(--section-pad) 0;
  background: var(--gray-bg);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
  gap: 1.5rem;
}

.fleet-card {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.fleet-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.fleet-card-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
}

.fleet-card h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.55rem;
}

.fleet-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.fleet-tag {
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-2);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

@media (max-width: 580px) {
  .fleet-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   44. BEFORE / AFTER REPAIR SHOWCASE
   ============================================================ */
.before-after {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.before-after::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 500px; height: 350px;
  background: radial-gradient(ellipse at 100% 100%, rgba(21,101,192,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.ba-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.ba-card:hover {
  border-color: var(--blue-bright);
  transform: translateY(-2px);
}

.ba-model {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-wash-2);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.35rem;
}

.ba-fault {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.ba-metrics {
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.ba-block {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
}
.ba-block--before {
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.22);
}
.ba-block--after {
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.25);
}

.ba-arrow-col {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  flex-shrink: 0;
}

.ba-val {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.2rem;
}
.ba-block--before .ba-val { color: #fca5a5; }
.ba-block--after .ba-val { color: #86efac; }

.ba-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}

.ba-result {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.58;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ba-result strong { color: #86efac; font-weight: 600; }

@media (max-width: 560px) {
  .ba-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   45. EMERGENCY DISPATCH CTA SECTION
   ============================================================ */
.emergency-dispatch {
  padding: 5rem 0;
  background: linear-gradient(140deg, #1a0505 0%, #3b0d0d 45%, #7f1d1d 100%);
  position: relative;
  overflow: hidden;
}

.emergency-dispatch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 50%, rgba(220,38,38,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.ed-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ed-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(220,38,38,0.25);
  border: 1px solid rgba(220,38,38,0.45);
  border-radius: 999px;
  padding: 0.28rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fca5a5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.ed-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.ed-title em {
  color: #fca5a5;
  font-style: normal;
}

.ed-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 1.75rem;
}

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

.ed-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.ed-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.ed-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
  flex-shrink: 0;
}

.ed-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  color: #7f1d1d;
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.ed-call-btn:hover {
  background: #fee2e2;
  color: #7f1d1d;
  transform: translateY(-2px);
}

.ed-sched-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  background: transparent;
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.ed-sched-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}


/* ============================================================
   46. SEO PROBLEM GUIDE
   ============================================================ */
.problem-guide {
  padding: var(--section-pad) 0;
  background: var(--gray-bg);
}

.pg-list {
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.pg-entry {
  border-bottom: 1px solid var(--gray-2);
  transition: background var(--transition);
}
.pg-entry:last-child { border-bottom: none; }
.pg-entry:hover { background: var(--gray-bg); }

.pg-entry-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 1.75rem;
}

.pg-entry-text { flex: 1; min-width: 0; }

.pg-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.pg-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 0.75rem;
  max-width: 640px;
}

.pg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pg-tag {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  background: var(--blue-wash);
  color: var(--blue-dk);
  font-size: 0.66rem;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pg-entry-action { flex-shrink: 0; }

@media (max-width: 640px) {
  .pg-entry-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}


/* ============================================================
   47. SERVICE COVERAGE
   ============================================================ */
/* Service Coverage — Compact Strip */
.service-coverage-strip {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
}
.svc-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.svc-strip-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
  flex: 1;
}
.svc-strip-link {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 0.38rem 0.8rem;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.svc-strip-link:hover {
  color: rgba(255,255,255,0.72);
  border-color: rgba(33,150,243,0.32);
}
@media (max-width: 640px) {
  .svc-strip-inner { flex-direction: column; gap: 0.65rem; }
}


/* ============================================================
   48. HOMEPAGE — Service Areas Compact Entry
   ============================================================ */
.sa-home-areas {
  background: var(--gray-bg);
  border-bottom: 1px solid rgba(15,23,42,0.07);
  padding: 1.8rem 0;
}
.sa-home-areas-eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--blue);
  display: block;
  margin-bottom: 0.38rem;
}
.sa-home-areas-title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.sa-home-areas-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.6;
  max-width: 640px;
}
.sa-home-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  margin-bottom: 0.85rem;
}
.sa-home-chip {
  display: inline-block;
  padding: 0.24rem 0.6rem;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 3px;
  font-size: 0.7rem;
  color: #374151;
  font-weight: 500;
}
.sa-home-areas-cta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(21,101,192,0.3);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.sa-home-areas-cta:hover { color: var(--blue-dk); border-color: var(--blue-dk); }
@media (max-width: 640px) {
  .sa-home-areas { padding: 1.4rem 0; }
  .sa-home-areas-title { font-size: 1rem; }
}

/* ============================================================
   49. CASE REPORTS — Engineering Field Style
   ============================================================ */
.case-reports {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
}

.cr-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cr-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--blue-bright);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.75rem;
}

.cr-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.cr-id {
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-bright);
  background: rgba(33,150,243,0.12);
  border: 1px solid rgba(33,150,243,0.28);
  padding: 0.18rem 0.65rem;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.cr-location {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.cr-period {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  font-family: 'Courier New', monospace;
  margin-left: auto;
}

.cr-equipment {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-wash-2);
  margin-bottom: 1.25rem;
}

.cr-rows {
  display: grid;
  grid-template-columns: 148px 1fr;
  row-gap: 0;
}

.cr-dt {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.38);
  padding: 0.38rem 0;
  font-family: 'Courier New', monospace;
  align-self: start;
  padding-right: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cr-dd {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.58;
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cr-dt:last-of-type,
.cr-dd:last-of-type { border-bottom: none; }

.cr-dt--result { color: var(--blue-bright); }
.cr-dd--result { color: #86efac; font-weight: 600; }

@media (max-width: 600px) {
  .cr-rows { grid-template-columns: 1fr; }
  .cr-dt { padding-bottom: 0.1rem; border-bottom: none; }
  .cr-dd { padding-top: 0; padding-bottom: 0.75rem; }
}

@media (max-width: 480px) {
  .cr-header { gap: 0.5rem; }
  .cr-period { margin-left: 0; }
}

@media (max-width: 860px) {
  .ed-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ed-actions {
    flex-direction: row;
    min-width: auto;
  }
  .ed-call-btn, .ed-sched-btn { flex: 1; }
}

@media (max-width: 480px) {
  .emergency-dispatch { padding: 3.5rem 0; }
  .ed-actions { flex-direction: column; }
  .ed-stats { gap: 1.75rem; }
}


/* ============================================================
   53. ENTERPRISE STATS PANEL
   ============================================================ */
.enterprise-stats {
  background: #080f1e;
  border-bottom: 1px solid rgba(33,150,243,0.12);
  padding: 0;
}

.es-header {
  display: flex;
  align-items: center;
  padding: 0.7rem 0 0;
}

.es-badge {
  font-family: 'Courier New', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(33,150,243,0.55);
  text-transform: uppercase;
  border-left: 2px solid rgba(33,150,243,0.3);
  padding-left: 0.65rem;
}

.es-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(33,150,243,0.14);
  margin-top: 0.5rem;
}

.es-stat {
  padding: 1.1rem 1rem;
  border-right: 1px solid rgba(33,150,243,0.07);
  position: relative;
  transition: background var(--transition);
}
.es-stat:last-child { border-right: none; }
.es-stat:hover { background: rgba(33,150,243,0.04); }
.es-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, rgba(33,150,243,0.45), transparent);
}

.es-val {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 800;
  color: #7ec8f8;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.es-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.005em;
  margin-bottom: 0.18rem;
}

.es-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.015em;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .es-grid { grid-template-columns: repeat(3, 1fr); }
  .es-stat:nth-child(3) { border-right: none; }
  .es-stat:nth-child(1),
  .es-stat:nth-child(2),
  .es-stat:nth-child(3) { border-bottom: 1px solid rgba(33,150,243,0.07); }
}

@media (max-width: 600px) {
  .es-grid { grid-template-columns: repeat(2, 1fr); }
  .es-stat { padding: 0.85rem 0.75rem; }
  .es-stat:nth-child(even) { border-right: none; }
  .es-stat:nth-child(1),
  .es-stat:nth-child(2),
  .es-stat:nth-child(3),
  .es-stat:nth-child(4) { border-bottom: 1px solid rgba(33,150,243,0.07); }
}


/* ============================================================
   54. MINING FARM OPERATIONS SUPPORT
   ============================================================ */
.farm-operations {
  padding: var(--section-pad) 0;
  background: #f8f9fb;
  border-top: 1px solid #e5e8ed;
  border-bottom: 1px solid #e5e8ed;
}

.fo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.5rem;
  border: 1px solid #e2e6ec;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.fo-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.3rem 1.4rem;
  border-right: 1px solid #e2e6ec;
  border-bottom: 1px solid #e2e6ec;
  transition: background var(--transition);
}
.fo-item:nth-child(even) { border-right: none; }
/* Remove bottom border from last 2 items (even total) or last 1 (odd) */
.fo-item:nth-last-child(-n+2) { border-bottom: none; }
/* Last item (7th) spans full width if odd count */
.fo-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-right: none;
  border-bottom: none;
}
.fo-item:hover { background: rgba(21,101,192,0.025); }

.fo-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
  line-height: 1;
  opacity: 0.85;
}

.fo-content { flex: 1; }

.fo-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.fo-desc {
  font-size: 0.82rem;
  color: #5a6273;
  line-height: 1.55;
  margin: 0;
}

.fo-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e6ec;
}

@media (max-width: 768px) {
  .fo-grid { grid-template-columns: 1fr; }
  .fo-item { border-right: none !important; }
  .fo-item:nth-last-child(-n+2) { border-bottom: 1px solid #e2e6ec; }
  .fo-item:last-child { border-bottom: none !important; }
  .fo-item:last-child:nth-child(odd) { grid-column: auto; }
}


/* ============================================================
   55. HIDE REDUNDANT / LOW-VALUE SECTIONS
   ============================================================ */
#enterprise-stats,
#farm-operations,
#fleet-support,
#problem-guide,
#case-reports,
#before-after,
#problems,
#asic-failures,
#capabilities,
.cta-banner-industrial,
#estimator,
#emergency-dispatch,
.emergency-banner {
  display: none !important;
}


/* ============================================================
   55b. CONTACT GATEWAY — Homepage compact CTA replacing full form
   ============================================================ */
.contact-gateway {
  background: var(--navy);
  padding: 4rem 0;
  border-top: 1px solid rgba(33,150,243,0.12);
  border-bottom: 1px solid rgba(33,150,243,0.08);
}

.cgw-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cgw-body { flex: 1; min-width: 280px; }

.cgw-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(33,150,243,0.75);
  margin-bottom: 0.65rem;
  display: block;
}

.cgw-body h2 {
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.cgw-body p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.68;
  max-width: 500px;
  margin: 0;
}

.cgw-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
}

@media (max-width: 720px) {
  .contact-gateway { padding: 2.75rem 0; }
  .cgw-inner { flex-direction: column; align-items: flex-start; gap: 1.75rem; }
  .cgw-actions { width: 100%; flex-direction: column; }
  .cgw-actions .btn { width: 100%; text-align: center; justify-content: center; }
}


/* ============================================================
   56. WHY CHOOSE US — 6-CARD GRID
   ============================================================ */
.why-us {
  padding: calc(var(--section-pad) * 0.85) 0;
  background: #07101f;
  border-top: 1px solid rgba(33,150,243,0.1);
}
.why-us .section-header h2 { color: rgba(255,255,255,0.88); }
.why-us .section-eyebrow { color: rgba(33,150,243,0.7); }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.wu-card {
  background: rgba(11,31,58,0.75);
  border: 1px solid rgba(33,150,243,0.14);
  border-top: 2px solid rgba(33,150,243,0.38);
  border-radius: 3px;
  padding: 1.2rem 1rem;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.wu-card:hover {
  box-shadow: 0 0 0 1px rgba(33,150,243,0.22), 0 6px 20px rgba(33,150,243,0.08);
  transform: translateY(-2px);
  border-color: rgba(33,150,243,0.28);
}

.wu-icon {
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
  display: block;
  line-height: 1;
}

.wu-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.wu-desc {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .why-us { padding: 2.5rem 0; }
  .why-us .section-header { margin-bottom: 1.25rem; }
  .why-us .section-header h2 { font-size: clamp(1.45rem, 7vw, 2rem); line-height: 1.12; }
  .why-us-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1.1rem;
  }
  .wu-card { padding: 0.85rem; min-height: auto; }
  .wu-icon { font-size: 1.1rem; margin-bottom: 0.45rem; }
  .wu-title { font-size: 0.8rem; line-height: 1.2; margin-bottom: 0.32rem; }
  .wu-desc { font-size: 0.7rem; line-height: 1.4; color: rgba(255,255,255,0.66); }
}
@media (max-width: 340px) {
  .why-us-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   60. CONTACT FORM — NEW FIELDS
   ============================================================ */
.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .form-row-3 { grid-template-columns: 1fr; }
}

.form-qualify-note {
  padding: 0.9rem 1rem;
  background: rgba(33,150,243,0.06);
  border: 1px solid rgba(33,150,243,0.18);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1rem;
}
.fqn-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #90caf9;
  margin-bottom: 0.35rem;
}
.form-qualify-note p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}
.form-qualify-note strong { color: rgba(255,255,255,0.85); }


/* ============================================================
   61. CONTACT FORM — CONSENT CHECKBOXES
   ============================================================ */
.form-consent {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.consent-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  transition: border-color var(--transition), background var(--transition);
}
.consent-card:has(input:checked) {
  border-color: rgba(33,150,243,0.32);
  background: rgba(33,150,243,0.05);
}
.consent-card:has(#fterms.is-error) {
  border-color: rgba(248,113,113,0.38);
}
.consent-card:has(#fterms.is-error) .consent-check {
  border-color: #f87171;
}

.consent-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.consent-card label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
  min-height: 44px;
}

.consent-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 3px;
  background: rgba(255,255,255,0.05);
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}
.consent-card input[type="checkbox"]:focus-visible + label .consent-check {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}
.consent-card input[type="checkbox"]:checked + label .consent-check {
  background: var(--blue);
  border-color: var(--blue);
}
.consent-card input[type="checkbox"]:checked + label .consent-check::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 4px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.consent-text { flex: 1; }

.consent-link {
  color: rgba(144,202,249,0.75);
  text-decoration: none;
  font-size: 0.78rem;
  margin-left: 0.25rem;
  white-space: nowrap;
}
.consent-link:hover { color: #90caf9; text-decoration: underline; }

.consent-note {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
  margin: 0.45rem 0 0;
  padding-left: calc(16px + 0.65rem);
}

#fterms-err {
  display: block;
  padding-left: calc(16px + 0.65rem);
}


/* ============================================================
   68. FAULT TYPES — INDUSTRIAL DIAGNOSTIC PANEL
   ============================================================ */
.fault-types {
  padding: calc(var(--section-pad) * 0.75) 0;
  background: #060e20;
  border-bottom: 1px solid rgba(33,150,243,0.08);
}

.ft-header {
  margin-bottom: 1.75rem;
  text-align: center;
}
.ft-eyebrow {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(33,150,243,0.55);
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.ft-header h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.ft-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
  margin: 0;
}

.ft-panel {
  background: rgba(9,20,44,0.96);
  border: 1px solid rgba(33,150,243,0.13);
  border-radius: 3px;
  overflow: hidden;
}
.ft-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.ft-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.72rem 0.9rem;
  border-right: 1px solid rgba(33,150,243,0.08);
  border-bottom: 1px solid rgba(33,150,243,0.08);
  transition: background 0.18s ease;
}
.ft-item:nth-child(5n) { border-right: none; }
.ft-item:nth-last-child(-n+5) { border-bottom: none; }
.ft-item:hover { background: rgba(33,150,243,0.04); }

.ft-code {
  font-family: 'Courier New', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(33,150,243,0.5);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.ft-name {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.68);
  font-weight: 500;
  line-height: 1.3;
}
.ft-footer-note {
  padding: 0.55rem 0.9rem;
  font-size: 0.66rem;
  color: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(33,150,243,0.08);
  letter-spacing: 0.01em;
  font-family: 'Courier New', monospace;
}

@media (max-width: 900px) {
  .ft-grid { grid-template-columns: repeat(2, 1fr); }
  .ft-item:nth-child(5n) { border-right: 1px solid rgba(33,150,243,0.08); }
  .ft-item:nth-child(2n) { border-right: none; }
  .ft-item:nth-last-child(-n+5) { border-bottom: 1px solid rgba(33,150,243,0.08); }
  .ft-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 768px) {
  .ft-panel { padding: 0; }
  .ft-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .ft-item {
    min-width: 0;
    padding: 0.55rem 0.65rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
  .ft-code {
    font-size: 0.6rem;
    line-height: 1.1;
  }
  .ft-name {
    font-size: 0.72rem;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .ft-footer-note {
    margin-top: 0;
    font-size: 0.64rem;
    line-height: 1.45;
    padding: 0.5rem 0.65rem;
  }
}


/* ============================================================
   70. CONTACT — BUSINESS-ONLY NOTE + FORM UPDATES
   ============================================================ */
.form-biz-only {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  margin-bottom: 1.25rem;
  background: rgba(33,150,243,0.06);
  border: 1px solid rgba(33,150,243,0.18);
  border-radius: 3px;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.4;
}
.fbo-icon {
  font-size: 1rem;
  flex-shrink: 0;
}


/* ============================================================
   72. OPERATIONAL STANDARDS — Compact Strip
   ============================================================ */
.ops-standards-strip {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.1rem 0;
}
.ops-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.ops-strip-content {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex: 1;
  flex-wrap: wrap;
}
.ops-strip-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8a020;
  font-family: 'Courier New', monospace;
  white-space: nowrap;
  flex-shrink: 0;
}
.ops-strip-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
}
.ops-strip-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex-shrink: 0;
}
.ops-strip-checks span {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(33,150,243,0.22);
  background: rgba(33,150,243,0.08);
  color: rgba(255,255,255,0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .ops-strip-inner { align-items: flex-start; }
  .ops-strip-checks { width: 100%; }
  .ops-strip-checks span { font-size: 0.65rem; padding: 0.28rem 0.5rem; }
}
@media (max-width: 640px) {
  .ops-strip-inner { flex-direction: column; gap: 0.75rem; }
  .ops-strip-content { flex-direction: column; gap: 0.25rem; }
}
@media (max-width: 480px) {
  .ops-strip-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
    width: 100%;
  }
  .ops-strip-checks span {
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
  }
}


/* ============================================================
   MOBILE SPACING & LAYOUT OVERRIDES
   ============================================================ */

/* Reduce section-header margin on tablet and below */
@media (max-width: 768px) {
  .section-header { margin-bottom: 2rem; }
  .trust-bar { padding: 1rem 0; }
}

/* Reduce global section padding on mobile */
@media (max-width: 640px) {
  :root { --section-pad: 44px; }
  .section-sub { font-size: 0.92rem; }
  .contact-inner { gap: 2rem; }
}


/* ============================================================
   INDUSTRIAL SECTION DIVIDER — trust-bar top rule
   ============================================================ */
.trust-bar {
  position: relative;
}
.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,140,255,0.35), transparent);
  z-index: 1;
}


/* ============================================================
   SCROLL REVEAL ANIMATION — enterprise entrance motion
   ============================================================ */
.reveal-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}
.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   BREADCRUMB NAV — secondary pages (faq, contact, book-a-call, etc.)
   Structure: .breadcrumb-nav > .container > ol.breadcrumb-list
   ============================================================ */
.breadcrumb-nav {
  margin-top: var(--nav-height);
  background: #07101f;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0.7rem 0;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: normal;
  overflow-x: visible;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.55);
}

.breadcrumb-list li + li::before {
  content: "›";
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
}

.breadcrumb-list a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb-list a:hover {
  color: #64b5f6;
}

.breadcrumb-list [aria-current="page"] {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

@media (max-width: 768px) {
  .breadcrumb-list {
    font-size: 0.73rem;
    gap: 0.35rem;
    padding: 0.55rem 0;
  }
}


/* ============================================================
   SPACING UTILITIES — reusable section rhythm
   ============================================================ */
.section-spacing-sm  { padding-top: 2rem;   padding-bottom: 2rem;   }
.section-spacing-md  { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.section-spacing-lg  { padding-top: 5rem;   padding-bottom: 5rem;   }

@media (max-width: 768px) {
  .section-spacing-sm  { padding-top: 1.5rem;  padding-bottom: 1.5rem;  }
  .section-spacing-md  { padding-top: 2.5rem;  padding-bottom: 2.5rem;  }
  .section-spacing-lg  { padding-top: 3rem;    padding-bottom: 3rem;    }
}

/* Breadcrumb rules consolidated above in section "BREADCRUMB NAV" */


/* ============================================================
   PAGE INTRO — reusable dark-hero intro block for secondary pages
   Usage: <div class="page-intro"> <div class="page-intro-inner container"> … </div> </div>
   ============================================================ */
.page-intro {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-intro-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.page-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 0.25rem;
}

.page-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0;
}

.page-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0.35rem 0 0;
}

.page-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.page-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
}

@media (max-width: 768px) {
  .page-intro {
    padding: 2.25rem 0 2rem;
  }

  .page-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-actions .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    text-align: center;
  }
}
