/* ============================================================
   HOME -- landing page. Hero pattern (.home-hero / .home-hero-title)
   follows the CodeForge home hero; the ambient background comes from
   body's hero-background-1.png (see main.css). Below the hero:
   stat strip, problem split, capabilities, industries grid, CTA --
   all built from main.css + components.css tokens.
   ============================================================ */
.home-hero{
  position: relative; overflow: hidden;
  padding: 150px 24px 72px;
}
@media (max-width: 1024px){ .home-hero{ padding: 128px 24px 56px; } }
@media (max-width: 640px){ .home-hero{ padding: 108px 20px 44px; } }
.home-hero-inner{ position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }

.home-hero-grid{
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
}
@media (max-width: 940px){
  .home-hero-grid{ grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

.home-hero-copy .eyebrow{ justify-content: flex-start; }
@media (max-width: 940px){ .home-hero-copy .eyebrow{ justify-content: center; } }

/* .home-hero-title sizing / gradient em live in components.css. */
.home-hero-sub{
  color: var(--text-secondary); margin: 0; max-width: none;
}
@media (max-width: 940px){ .home-hero-sub{ margin-inline: auto; } }
.home-hero-sub strong{ color: var(--text-primary); font-weight: 700; }

.home-hero-copy{ min-width: 0; }
.home-hero-visual{
  position: relative;
  min-width: 0;
  background: linear-gradient(160deg, #06203f 0%, #01122b 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 24px 20px;
}
@media (max-width: 640px){ .home-hero-visual{ padding: 22px 16px 16px; } }
.home-hero-visual-caption{
  margin: 16px 0 0; text-align: center; font-size: 16px; color: rgba(255,255,255,0.72);
}
.home-hero-visual-caption a{ color: #6fd8ff; font-weight: 600; }

/* Stack the two hero buttons full-width on phones so the second one
   never runs off the edge. */
@media (max-width: 520px){
  .home-hero .hero-actions{ flex-direction: column; align-items: stretch; }
  .home-hero .hero-actions .btn{ width: 100%; justify-content: center; }
}

/* ---------- problem section ---------- */
.problem-section .section-head{ max-width: none; }

/* ---------- industries grid ---------- */
.verticals-grid-section .section-head p{ font-size: 18px; }
.vert-card{
  display: flex; flex-direction: column; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: 28px 26px; text-decoration: none !important; color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.vert-card:hover{ transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,40,120,0.15); border-color: var(--border-active); }
.vert-card .tag{
  align-self: flex-start;
  font-family: var(--font-main); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
}
.vert-card h3{ margin: 0; color: var(--text-primary); }
.vert-card p{ margin: 0; font-size: 18px; line-height: 1.6; flex: 1; }
.vert-card .more{
  display: inline-flex; align-items: center; gap: 6px; margin-top: 6px;
  font-family: var(--font-main); font-size: 16px; font-weight: 700; color: var(--btn-color);
}
.vert-card .more svg{ width: 15px; height: 15px; transition: transform var(--transition); }
.vert-card:hover .more svg{ transform: translateX(3px); }
