/* ===== AccelerAIze — shared stylesheet ===== */

:root {
  --navy: #0B1F44;
  --navy-dark: #071630;
  --blue: #007BFF;
  --blue-dark: #0060CC;
  --cyan: #00D1FF;
  --gray: #5B6470;
  --gray-light: #8A93A0;
  --bg: #F8FAFC;
  --bg-alt: #E5E7EB;
  --border: #DCE1E7;
  --white: #FFFFFF;
  --text: #1B2432;
  --radius: 6px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
}

p { margin: 0 0 16px; color: var(--gray); }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

/* ---------- Header / Nav ---------- */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img { height: 58px; width: auto; flex-shrink: 0; display: block; }
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a.active { color: var(--blue); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 72px;
}
.hero-grid {
  display: flex;
  gap: 56px;
  align-items: center;
}
.hero-copy { flex: 1.1; }
.hero-visual {
  flex: 1;
  background: var(--bg-alt);
  border-radius: 10px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 13px;
}
.hero h1 { font-size: 44px; margin-bottom: 18px; }
.hero .lead { font-size: 16px; max-width: 500px; }
.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 14px;
}
.hero-tagline .accent { color: var(--blue); }
.hero-visual img,
.service-block-visual img,
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  box-sizing: border-box;
}
.hero-actions { display: flex; gap: 14px; align-items: center; margin-top: 26px; flex-wrap: wrap; }

/* ---------- Stat bar ---------- */
.stat-bar {
  background: var(--navy);
  padding: 40px 0;
}
.stat-grid {
  display: flex;
  gap: 24px;
  text-align: center;
}
.stat-grid > div { flex: 1; }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--cyan);
}
.stat-label { color: #C9D2D6; font-size: 13px; margin-top: 4px; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header h2 { font-size: 30px; }

/* ---------- Cards ---------- */
.card-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.card {
  flex: 1;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { font-size: 14px; margin-bottom: 14px; }

/* ---------- Service blocks (Services page) ---------- */
.service-block {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}
.service-block.reverse { flex-direction: row-reverse; }
.service-block-text { flex: 1; }
.service-block-visual {
  flex: 1;
  background: var(--bg-alt);
  border-radius: 8px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 13px;
}
.pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: #E3F0FF;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.checklist { list-style: none; margin: 0; padding: 0; font-size: 14px; color: var(--navy); }
.checklist li { padding-left: 24px; position: relative; margin-bottom: 10px; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ---------- Pricing ---------- */
.pricing-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.pricing-card {
  flex: 1;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}
.pricing-card.featured { background: var(--navy); border-color: var(--navy); }
.pricing-card.featured h3,
.pricing-card.featured .price { color: var(--white); }
.pricing-card.featured p { color: #C9D2D6; }
.pricing-card h3 { font-size: 16px; margin-bottom: 6px; }
.price { font-size: 13px; color: var(--gray); margin-bottom: 12px; display: block; }
.pricing-card p { font-size: 13.5px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--bg-alt);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { font-size: 26px; }

/* ---------- Founder / About ---------- */
.founder-row {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 24px 0 56px;
}
.founder-photo {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  background: var(--bg-alt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 12px;
  text-align: center;
}
.founder-name { font-weight: 700; font-size: 22px; color: var(--navy); margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
.founder-title { font-size: 13px; color: var(--blue); font-weight: 600; margin-bottom: 14px; }

.approach-steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.approach-step {
  flex: 1;
  min-width: 160px;
  background: var(--navy-dark);
  border-radius: 6px;
  padding: 20px;
}
.approach-step .num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; color: var(--cyan); margin-bottom: 6px; }
.approach-step h4 { color: var(--white); font-size: 14px; margin-bottom: 6px; }
.approach-step p { color: #C9D2D6; font-size: 12.5px; margin: 0; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.contact-form-card {
  flex: 1.3;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}
.form-row { display: flex; gap: 16px; margin-bottom: 16px; }
.form-row > div { flex: 1; }
label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
input, textarea, select {
  width: 100%;
  border: 1px solid #D8DEE2;
  border-radius: var(--radius);
  padding: 11px 12px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
}
textarea { resize: vertical; min-height: 90px; }
.form-status { font-size: 13.5px; margin-top: 12px; display: none; }
.form-status.success { color: var(--blue-dark); display: block; }
.form-status.error { color: #B3261E; display: block; }
.contact-side { flex: 1; }
.contact-side h4 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.contact-side .box {
  font-size: 13.5px;
  color: var(--gray);
  margin-bottom: 32px;
}
.next-steps { list-style: none; margin: 0; padding: 0; font-size: 13.5px; color: var(--gray); }
.next-steps li { margin-bottom: 6px; }
.note-box {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 20px;
  font-size: 13px;
  color: var(--gray);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-light);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-brand img.logo { height: 40px; width: auto; max-width: none; flex-shrink: 0; display: block; }
.footer-tagline {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { position: fixed; top: 62px; left: 0; right: 0; background: var(--bg); flex-direction: column; align-items: flex-start; padding: 20px 24px; border-bottom: 1px solid var(--border); gap: 18px; display: none; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-grid, .founder-row, .contact-grid { flex-direction: column; }
  .service-block, .service-block.reverse { flex-direction: column; }
  .stat-grid, .card-grid, .pricing-grid, .approach-steps { flex-direction: column; }
  .hero h1 { font-size: 32px; }
  .section-header h2 { font-size: 24px; }
  .form-row { flex-direction: column; }
}
