/*! ORCA HOW IT WORKS CSS BUILD 2026-03-03 v1 */
/* ============================================================
   orca-how-it-works.css
   How It Works page — /how-it-works
   Inherits: style.css (Gilroy, CSS vars), landing.css, bootstrap-grid.css
   ============================================================ */

/* ── Page wrapper ─────────────────────────────────────────── */
.hiw-page {
  font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: #262b31;
  /* Pin amber so --orca-primary (#f36600) from style.css cannot bleed in */
  --primary: #ffba60;
  --primary-hover: #f7aa38;
}

/* ── Shared Buttons (scoped to avoid global cascade) ────────── */
.hiw-page .btn-orca-primary {
  display: inline-block;
  padding: 11px 22px;
  background: #ffba60 !important;
  color: #1a1f25 !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  border: none !important;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.18s, transform 0.12s;
  line-height: 1;
  white-space: nowrap;
}
.hiw-page .btn-orca-primary:hover {
  background: #e8a847 !important;
  color: #1a1f25 !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

.hiw-page .btn-orca-outline {
  display: inline-block;
  padding: 10px 22px;
  background: transparent;
  color: #262b31;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  border: 1.5px solid #d0d0d0;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
  line-height: 1;
  white-space: nowrap;
}
.hiw-page .btn-orca-outline:hover {
  border-color: #262b31;
  color: #262b31;
  text-decoration: none;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hiw-hero {
  background: #1a1f25;
  color: #fff;
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hiw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,186,96,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hiw-hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.hiw-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffba60;
  margin-bottom: 12px;
}

.hiw-hero-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 auto 18px;
}

.hiw-hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hiw-hero-chips {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hiw-hero-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.01em;
}
.hiw-hero-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffba60;
  flex-shrink: 0;
}

.hiw-hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Outline inverted for dark hero background */
.hiw-hero .btn-orca-outline {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.hiw-hero .btn-orca-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.07);
}

/* ── Section chrome ───────────────────────────────────────── */
.hiw-section {
  padding: 72px 0;
}
.hiw-section--alt {
  background: #f7f8fa;
}
.hiw-section--dark {
  background: #1a1f25;
}

.hiw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.hiw-section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffba60;
  margin-bottom: 12px;
}

.hiw-section-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: #262b31;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hiw-section-subtitle {
  font-size: 16px;
  color: #777;
  max-width: 480px;
  line-height: 1.6;
}

.hiw-section-header {
  margin-bottom: 48px;
  text-align: center;
}
.hiw-section-header .hiw-section-subtitle {
  margin: 0 auto;
}

/* ── 3-Step Cards ─────────────────────────────────────────── */
.hiw-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hiw-step-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.15s;
  display: flex;
  flex-direction: column;
}
.hiw-step-card:hover {
  border-color: #d0d0d0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

/* Outline-style step number — subtle, not loud */
.hiw-step-number {
  width: 28px;
  height: 28px;
  background: transparent;
  color: #ffba60;
  border: 1.5px solid #ffba60;
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  letter-spacing: 0;
}

.hiw-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #262b31;
  margin-bottom: 8px;
  line-height: 1.3;
}

.hiw-step-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Mini mock UI inside step cards */
.hiw-mock {
  background: #f7f8fa;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  padding: 12px;
  margin-top: auto;
}

.hiw-mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #eee;
}
.hiw-mock-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hiw-mock-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ddd 0%, #ccc 100%);
  flex-shrink: 0;
}
.hiw-mock-avatar--amber {
  background: linear-gradient(135deg, #ffba60 0%, #e8a847 100%);
}
.hiw-mock-avatar--teal {
  background: linear-gradient(135deg, #6ec6b5 0%, #3a9e8a 100%);
}

.hiw-mock-name {
  font-size: 13px;
  font-weight: 600;
  color: #262b31;
}
.hiw-mock-role {
  font-size: 11px;
  color: #999;
}

.hiw-bubble {
  font-size: 12px;
  line-height: 1.45;
  padding: 7px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
}
.hiw-bubble:last-child {
  margin-bottom: 0;
}
.hiw-bubble--me {
  background: #262b31;
  color: #fff;
  border-radius: 8px 8px 2px 8px;
  align-self: flex-end;
}
.hiw-bubble--va {
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #444;
  border-radius: 8px 8px 8px 2px;
}
.hiw-bubble--success {
  background: #eef6f1;
  border: 1px solid #c5e0d0;
  color: #2e6b4e;
  border-radius: 8px;
}

.hiw-deliverable {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #555;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  padding: 6px 10px;
  margin-top: 6px;
}
.hiw-file-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #ffba60;
  flex-shrink: 0;
}

/* ── Capability List ──────────────────────────────────────── */
.hiw-cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}

.hiw-cap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hiw-cap-list li {
  font-size: 15px;
  color: #444;
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.hiw-cap-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff8ee;
  border: 1.5px solid #ffba60;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='10' height='10'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23ffba60' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Post-booking workflow ────────────────────────────────── */
.hiw-workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.hiw-workflow-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 28px 24px;
}

.hiw-workflow-title {
  font-size: 15px;
  font-weight: 700;
  color: #262b31;
  margin-bottom: 14px;
}

.hiw-workflow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hiw-workflow-list li {
  font-size: 14px;
  color: #666;
  padding: 6px 0;
  border-bottom: 1px solid #f3f3f3;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.hiw-workflow-list li:last-child {
  border-bottom: none;
}
.hiw-workflow-list li::before {
  content: '→';
  color: #ffba60;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.hiw-workflow-flow {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  font-style: italic;
}

/* ── Trust strip ──────────────────────────────────────────── */
.hiw-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hiw-trust-card {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.hiw-trust-card:hover {
  border-color: #ddd;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.hiw-trust-icon {
  width: 44px;
  height: 44px;
  background: #fff8ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.hiw-trust-title {
  font-size: 15px;
  font-weight: 700;
  color: #262b31;
  margin-bottom: 6px;
}

.hiw-trust-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.55;
}

/* ── Bottom CTA ───────────────────────────────────────────── */
.hiw-bottom-cta {
  padding: 72px 0;
  text-align: center;
}

.hiw-bottom-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px;
  background: #1a1f25;
  border-radius: 12px;
}

.hiw-bottom-cta-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.hiw-bottom-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  line-height: 1.5;
}

.hiw-bottom-cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hiw-bottom-cta .hiw-page .btn-orca-outline,
.hiw-bottom-cta .btn-orca-outline {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.hiw-bottom-cta .hiw-page .btn-orca-outline:hover,
.hiw-bottom-cta .btn-orca-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hiw-steps-grid {
    grid-template-columns: 1fr;
  }
  .hiw-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hiw-workflow-grid {
    grid-template-columns: 1fr;
  }
  .hiw-cap-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hiw-hero {
    padding: 52px 20px 44px;
  }
  .hiw-hero-title {
    font-size: 28px;
  }
  .hiw-hero-chips {
    gap: 16px;
  }
  .hiw-section {
    padding: 48px 0;
  }
  .hiw-container {
    padding: 0 16px;
  }
  .hiw-trust-grid {
    grid-template-columns: 1fr;
  }
  .hiw-bottom-cta {
    padding: 40px 0;
  }
  .hiw-bottom-cta-inner {
    padding: 36px 20px;
    border-radius: 8px;
  }
}
