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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #0f172a;
  background: #f8fafc;
  line-height: 1.6;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

/* Header */

.site-header {
  background: rgba(248, 250, 252, 0.96);
  border-bottom: 1px solid #cbd5e1;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 46px;
}

nav {
  display: flex;
  gap: 26px;
}

nav a {
  color: #0f172a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: #b91c1c;
}

/* Hero */

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: url("assets/hero.jpg") center/cover no-repeat;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.94),
    rgba(30, 41, 59, 0.78),
    rgba(15, 23, 42, 0.28)
  );
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}

.hero p {
  font-size: 20px;
  max-width: 720px;
  margin-bottom: 36px;
  color: #e2e8f0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 14px 26px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 4px;
  transition: 0.2s ease;
}

.btn.primary {
  background: #b91c1c;
  color: #ffffff;
}

.btn.primary:hover {
  background: #991b1b;
}

.btn.secondary {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn.secondary:hover {
  background: #ffffff;
  color: #0f172a;
}

/* Sections */

.section {
  padding: 104px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -1px;
  color: #0f172a;
}

.intro {
  background: #ffffff;
}

.intro p {
  font-size: 18px;
  margin-bottom: 22px;
  color: #475569;
}

/* Dark Section */

.dark {
  background: #1e293b;
  color: #ffffff;
}

.dark h2 {
  color: #ffffff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 56px;
}

.section-heading span,
.eyebrow {
  display: block;
  color: #3b82f6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Cards */

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

.card {
  background: #334155;
  padding: 34px;
  border: 1px solid rgba(226, 232, 240, 0.12);
  min-height: 245px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #ffffff;
}

.card p {
  color: #cbd5e1;
}

/* Industries */

.industries {
  background: #f8fafc;
}

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


.industry-card {
  min-height: 220px;
  background: #e2e8f0;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 28px;

  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;

  border-left: 5px solid #b91c1c;

  color: #0f172a;

  transition: 0.25s ease;
}

/* Proof */

.proof {
  background: #ffffff;
}

.proof-list p {
  margin-bottom: 30px;
  font-size: 17px;
  color: #475569;
  border-left: 3px solid #3b82f6;
  padding-left: 20px;
}

.proof-list strong {
  color: #0f172a;
  font-size: 20px;
}

/* CTA */

.cta {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #ffffff;
  text-align: center;
}

.cta h2 {
  color: #ffffff;
}

.cta p {
  max-width: 760px;
  margin: 24px auto 34px;
  font-size: 18px;
  color: #d1d5db;
}

/* Footer */

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 48px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-content h3 {
  color: #ffffff;
  margin-bottom: 8px;
}

/* Responsive */

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .two-column,
  .card-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .footer-content {
    flex-direction: column;
  }
}
.page-hero {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #ffffff;
  padding: 130px 0 110px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}

.page-hero p {
  max-width: 760px;
  font-size: 20px;
  color: #cbd5e1;
}

.service-list {
  display: grid;
  gap: 28px;
}

.service-row {
  background: #ffffff;
  border-left: 5px solid #b91c1c;
  padding: 42px;
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr;
  gap: 42px;
  align-items: start;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.service-row h2 {
  font-size: 30px;
}

.service-row p {
  color: #475569;
  font-size: 17px;
}

.service-row ul {
  padding-left: 20px;
  color: #475569;
}

.service-row li {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 1fr;
  }
}
.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.industry-detail-card {
  background: #ffffff;
  padding: 46px;
  border-top: 5px solid #b91c1c;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  min-height: 260px;
}

.industry-detail-card h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

.industry-detail-card p {
  color: #475569;
  font-size: 18px;
}

.large-light-text {
  color: #cbd5e1;
  font-size: 20px;
  line-height: 1.7;
}
.focus-section {
  max-width: 950px;
}

.focus-section h2 {
  color: #ffffff;
  margin-bottom: 28px;
}

.focus-section .large-light-text {
  max-width: 820px;
}
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.case-study-card {
  background: #ffffff;
  padding: 44px;
  border-left: 5px solid #b91c1c;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  min-height: 340px;
}

.case-study-card span {
  display: block;
  color: #3b82f6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.case-study-card h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

.case-study-card p {
  color: #475569;
  font-size: 17px;
  margin-bottom: 22px;
}

.case-study-card ul {
  padding-left: 20px;
  color: #475569;
}

.case-study-card li {
  margin-bottom: 8px;
}

.case-study-grid {
  grid-template-columns: 1fr;
}
.leadership {
  background: #f8fafc;
}

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

.leader-card {
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  border-bottom: 5px solid #b91c1c;
}

.leader-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.leader-content {
  padding: 32px;
}

.leader-content h3 {
  font-size: 26px;
  margin-bottom: 6px;
  color: #0f172a;
}

.leader-title {
  color: #3b82f6;
  font-weight: 800;
  margin-bottom: 18px;
}

.leader-content p {
  color: #475569;
  font-size: 16px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-block {
  background: #ffffff;
  padding: 36px;
  border-left: 5px solid #b91c1c;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.contact-block span {
  display: block;
  color: #3b82f6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-block h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-block p {
  color: #475569;
  font-size: 17px;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 44px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 10px;
  font-weight: 700;
  color: #0f172a;
}

.form-group input,
.form-group textarea {
  padding: 16px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-size: 16px;
  color: #0f172a;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.contact-form button {
  width: fit-content;

  .featured-insight {
  background: #ffffff;
  padding: 52px;
  border-left: 6px solid #b91c1c;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  margin-bottom: 42px;
}

.featured-insight span,
.insight-card span {
  display: block;
  color: #3b82f6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.featured-insight h2 {
  margin-bottom: 18px;
}

.featured-insight p {
  max-width: 850px;
  color: #475569;
  font-size: 18px;
  margin-bottom: 24px;
}

.text-link {
  color: #b91c1c;
  text-decoration: none;
  font-weight: 900;
}

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

.insight-card {
  background: #ffffff;
  padding: 34px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  border-top: 5px solid #b91c1c;
  min-height: 310px;
}

.insight-card h3 {
  font-size: 24px;
  line-height: 1.18;
  margin-bottom: 16px;
  color: #0f172a;
}

.insight-card p {
  color: #475569;
  font-size: 16px;
}

}
@media (max-width: 900px) {
  .industry-detail-grid {
    grid-template-columns: 1fr;

  .leadership-grid {
  grid-template-columns: 1fr;
}
  }
  .contact-layout {
  grid-template-columns: 1fr;
}
.insight-grid {
  grid-template-columns: 1fr;
}
.card,
.industry-card,
.industry-detail-card,
.case-study-card,
.approach-card,
.value-card,
.leader-card,
.insight-card,
.contact-block {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card.is-hovered,
.industry-card.is-hovered,
.industry-detail-card.is-hovered,
.case-study-card.is-hovered,
.approach-card.is-hovered,
.value-card.is-hovered,
.leader-card.is-hovered,
.insight-card.is-hovered,
.contact-block.is-hovered {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}
}