/* =====================================================
   Automations page — /automations/
   Follows Ops Intel brand guidelines: #0a1628 navy,
   #f59e0b amber, Inter font, 0px border-radius.
   ===================================================== */

/* ── Hero ─────────────────────────────────────────── */
.auto-hero {
  background: #0a1628;
  padding: 100px 24px 80px;
}
.auto-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.auto-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 20px;
}
.auto-hero-title {
  font-size: clamp(30px, 6vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 20px;
}
.auto-hero-title em {
  font-style: normal;
  color: #f59e0b;
}
.auto-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
}
.auto-btn {
  display: inline-block;
  background: #f59e0b;
  color: #0a1628;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.auto-btn:hover {
  background: #d97706;
}
.auto-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  margin-left: 12px;
}
.auto-btn-outline:hover {
  background: rgba(255,255,255,0.08);
}
.auto-hero-trust {
  margin-top: 24px;
  font-size: 13px;
  color: #64748b;
}

/* ── Stats strip ──────────────────────────────────── */
.auto-stats {
  background: #f59e0b;
  padding: 20px 24px;
}
.auto-stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.auto-stat {
  text-align: center;
}
.auto-stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #0a1628;
  letter-spacing: -1px;
  line-height: 1;
}
.auto-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #92400e;
  margin-top: 4px;
}

/* ── Generic section wrappers ─────────────────────── */
.auto-section {
  padding: 80px 24px;
}
.auto-section-white {
  background: #ffffff;
}
.auto-section-grey {
  background: #f8fafc;
}
.auto-section-navy {
  background: #0a1628;
}
.auto-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.auto-narrow {
  max-width: 760px;
}
.auto-section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.15;
}
.auto-section-title.dark {
  color: #0f172a;
}
.auto-section-sub {
  font-size: 17px;
  font-weight: 300;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0 0 48px;
  max-width: 580px;
}
.auto-section-sub.dark {
  color: #64748b;
}
.auto-label-dark {
  color: #f59e0b;
}

/* ── "What we automate" cards ─────────────────────── */
.auto-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 900px) {
  .auto-types {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .auto-types {
    grid-template-columns: 1fr;
  }
}
.auto-type-card {
  background: #f8fafc;
  padding: 32px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.auto-type-card:hover {
  border-left-color: #f59e0b;
  background: #ffffff;
}
.auto-type-icon {
  width: 44px;
  height: 44px;
  background: #0a1628;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}
.auto-type-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}
.auto-type-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
.auto-type-examples {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.auto-type-tag {
  font-size: 11px;
  font-weight: 600;
  color: #f59e0b;
  background: #0a1628;
  padding: 3px 8px;
  letter-spacing: 0.3px;
}

/* ── Industries grid ──────────────────────────────── */
.auto-industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 1000px) {
  .auto-industries {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .auto-industries {
    grid-template-columns: repeat(2, 1fr);
  }
}
.auto-industry {
  background: #ffffff;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.15s;
}
.auto-industry:hover {
  background: #f0f9ff;
}
.auto-industry-icon {
  font-size: 22px;
  line-height: 1;
}
.auto-industry h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.auto-industry-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f59e0b;
}

/* ── How it works ─────────────────────────────────── */
.auto-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 700px) {
  .auto-steps {
    grid-template-columns: 1fr;
  }
  .auto-step-arrow {
    display: none;
  }
}
.auto-step-num {
  font-size: 48px;
  font-weight: 800;
  color: #f59e0b;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.auto-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}
.auto-step p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}
.auto-step-arrow {
  font-size: 24px;
  color: #334155;
  padding-top: 16px;
  text-align: center;
}

/* ── Booking form ─────────────────────────────────── */
.auto-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 800px) {
  .auto-form-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.auto-form-left h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.15;
}
.auto-form-left p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 28px;
}
.auto-form-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.auto-form-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.5;
}
.auto-form-bullets li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: #f59e0b;
  margin-top: 1px;
}
.auto-form {
  background: #f8fafc;
  padding: 36px;
}
.auto-form-group {
  margin-bottom: 20px;
}
.auto-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 6px;
}
.auto-form-group input,
.auto-form-group select,
.auto-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.auto-form-group input:focus,
.auto-form-group select:focus,
.auto-form-group textarea:focus {
  border-color: #f59e0b;
}
.auto-form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.auto-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.auto-form-submit {
  width: 100%;
  padding: 16px;
  background: #f59e0b;
  color: #0a1628;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.auto-form-submit:hover {
  background: #d97706;
}
.auto-form-note {
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
  margin-top: 12px;
}

/* ── FAQ ──────────────────────────────────────────── */
.auto-faq-item {
  border-bottom: 1px solid #e2e8f0;
}
.auto-faq-item summary {
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.auto-faq-item summary::-webkit-details-marker { display: none; }
.auto-faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: #f59e0b;
  flex-shrink: 0;
}
.auto-faq-item[open] summary::after {
  content: '−';
}
.auto-faq-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  padding-bottom: 18px;
  margin: 0;
}
.auto-faq-item a {
  color: #f59e0b;
  text-decoration: none;
}

/* ── Final CTA ────────────────────────────────────── */
.auto-final-cta {
  background: #0a1628;
  padding: 80px 24px;
  text-align: center;
}
.auto-final-cta .auto-section-title {
  margin-bottom: 16px;
}
.auto-final-cta .auto-section-sub {
  margin-bottom: 36px;
}
.auto-reassurance {
  margin-top: 20px;
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.auto-reassurance span {
  display: flex;
  align-items: center;
  gap: 6px;
}
