:root {
  --navy-900: #0a1830;
  --navy-800: #0d1f3c;
  --navy-700: #102747;
  --ink: #1f2937;
  --muted: #5b6678;
  --light-blue: #e8f1f6;
  --teal: #2bb3a3;
  --teal-dark: #1f9c8e;
  --card-border: #e7eaf0;
  --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, #0a1830 0%, #0c1d39 100%);
  color: #fff;
  padding: 46px 0 64px;
}

.breadcrumb {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: #8da2c0; text-decoration: none; }
.breadcrumb a:hover { color: #aebbd0; }
.breadcrumb .sep { color: #45597a; }
.breadcrumb .current { color: #8da2c0; }

.hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
}

.hero__lead {
  max-width: 620px;
  font-size: 14.5px;
  color: #aebbd0;
  line-height: 1.75;
}

/* ===== INDUSTRY CARDS ===== */
.industries {
  background: #fff;
  padding: 56px 0 64px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  box-shadow: 0 12px 30px rgba(16, 39, 71, 0.10);
  transform: translateY(-3px);
  border-color: #d7dce6;
}

.card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 12px;
}

.card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-800);
  text-decoration: none;
  align-self: flex-start;
}
.card__link .arrow { transition: transform 0.2s ease; display: inline-block; }
.card__link:hover .arrow { transform: translateX(4px); }

/* ===== CTA ===== */
.cta-wrap {
  background: var(--light-blue);
  padding: 56px 0 72px;
}

.cta {
  background: linear-gradient(135deg, #0c1d39 0%, #0f2748 60%, #143157 100%);
  border-radius: 14px;
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(12, 29, 57, 0.25);
}

.cta__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta__text p {
  font-size: 13.5px;
  color: #b7c4d8;
  max-width: 560px;
  line-height: 1.7;
}

.cta__btn {
  flex-shrink: 0;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cta__btn:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 30px; }
  .cta { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
}
