/* ============================================================
   about.css
   Styles specific to the About page: hero, company profile
   columns, and the "How We Deploy" deployment steps section.
   ============================================================ */

/* --- About hero --- */
.about-hero {
  background: var(--navy);
  padding: 80px 48px 68px;
}
.about-hero__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* --- Logo mark --- */
.about-logo-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

/* --- About hero text --- */
.about-hero h1 {
  color: var(--od);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1.1px;
  line-height: 1.08;
  margin-bottom: 18px;
}
.about-hero h1 strong { color: var(--blue); }
.about-hero .body {
  color: var(--od-m);
  font-size: 15px;
  line-height: 1.75;
}

/* --- Quote box --- */
.about-quote {
  background: rgba(0,174,255,0.09);
  border: 1px solid rgba(0,174,255,0.22);
  border-radius: 12px;
  padding: 32px;
}
.about-quote blockquote {
  color: var(--od);
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 14px;
}
.about-quote cite {
  color: var(--od-m);
  font-size: 13px;
  font-style: normal;
}

/* --- Company profile section --- */
.about-profile {
  padding: 72px 48px;
  max-width: 1300px;
  margin: 0 auto;
}
.about-profile > h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  color: var(--text);
}
.about-profile > .lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 720px;
}

/* --- Two-column profile columns --- */
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* --- Profile block --- */
.about-block { margin-bottom: 32px; }
.about-block h3 {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--blue);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.about-block p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.about-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-block ul li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.about-block ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 8px;
}

/* --- Deployment section --- */
.deployment-section {
  background: var(--light);
  padding: 60px 32px;
}
.deployment-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.deployment-inner > h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.deployment-inner > .sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 36px;
}

/* --- Three-column deployment steps grid --- */
.deployment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* --- Individual deployment card --- */
.deployment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}

/* --- Step number --- */
.deployment-step-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.45;
  margin-bottom: 10px;
  line-height: 1;
}
.deployment-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.deployment-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
