*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --primary: #111111;
  --secondary: #1b1b1b;
  --text: #111111;
  --muted: #5f5f5f;
  --border: #e5e7eb;
  --surface: #ffffff;
  --background: #f8f9fb;
  --accent: #111111;
  --accent-contrast: #ffffff;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: "Manrope", "Inter", sans-serif;
  letter-spacing: -0.02em;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

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

.section {
  padding: 80px 0;
}

.section-light {
  background: var(--surface);
}

.section-dark {
  background: var(--secondary);
  color: #f8fafc;
}

.section-dark .tagline {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .card {
  background: #ffffff;
  color: var(--text);
}

.section-dark .card p,
.section-dark .card li {
  color: #4b5563;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
  line-height: 1.1;
}

.btn .material-icons-outlined {
  font-size: 1.1rem;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
  opacity: 1;
}

.btn-primary:hover {
  background: #000000;
  opacity: 0.92;
  color: #ffffff;
}

.btn-primary:active {
  opacity: 0.88;
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 249, 251, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0;
  opacity: 0.6;
  margin-left: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav .btn {
  padding: 12px 24px;
}

.nav .btn-primary {
  color: #ffffff;
}

.nav .btn-primary:hover {
  background: #ffffff;
  color: #111111;
  opacity: 0.88;
}

.nav .btn-primary:active {
  background: #ffffff;
  color: #111111;
  opacity: 0.82;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
}

.hero {
  padding: 120px 0 80px;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 4.6vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}

.sector-list {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.sector-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.sector-item h3 {
  margin-bottom: 6px;
}

.sector-item .icon {
  margin-top: 2px;
}

.case-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}

.case-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  color: #ffffff;
  display: grid;
  gap: 8px;
}

.case-overlay span {
  background: rgba(0, 0, 0, 0.8);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
  letter-spacing: 0.08em;
}

.case-overlay strong {
  font-size: 1.15rem;
}

.hero-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trusted-list,
.pillars,
.cards,
.footer-links {
  display: grid;
  gap: 20px;
}

.trusted-list {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  text-align: center;
  font-weight: 600;
  color: var(--muted);
}

.trusted-list div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cards-uniform {
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.cards-uniform .card {
  height: 100%;
}

.services-cards .card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card {
  background: var(--surface);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin-bottom: 10px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.card li {
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.icon {
  font-size: 1.4rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.card li .icon,
.contact-card li .icon {
  margin-top: 2px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: start;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.about-grid > div {
  text-align: left;
}

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

.quote {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}

.quote span {
  display: block;
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.tagline {
  color: var(--muted);
  max-width: 680px;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 24px;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.contact-card li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.contact-card a {
  color: var(--text);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--text);
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-status {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-weight: 600;
  margin: 12px 0 18px;
  background: #f8fafc;
  color: #1f2937;
}

.form-status.success {
  border-color: #22c55e;
  color: #166534;
  background: #dcfce7;
}

.form-status.error {
  border-color: #f97316;
  color: #9a3412;
  background: #ffedd5;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
textarea,
select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #e6e6e6;
  aspect-ratio: 16 / 9;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.content-prose {
  max-width: 760px;
  color: var(--muted);
}

.content-prose h2 {
  margin-top: 28px;
  font-size: 1.4rem;
  color: var(--text);
}

.content-prose ul {
  padding-left: 18px;
}

.content-prose li {
  margin-bottom: 8px;
}

.site-footer {
  background: var(--secondary);
  color: #e2e8f0;
  padding: 60px 0 30px;
}

.site-footer h4 {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #f1f5f9;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo {
  gap: 16px;
  margin-bottom: 14px;
}

.footer-links a {
  color: #cbd5f5;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
  padding-top: 20px;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: rgba(226, 232, 240, 0.7);
}

.page-hero {
  padding: 110px 0 50px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  line-height: 1.08;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumbs span {
  color: var(--text);
  font-weight: 600;
}

.breadcrumbs .separator {
  color: var(--muted);
  font-weight: 400;
}

.section-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 16px;
  justify-content: flex-start;
}

.section-title .material-icons-outlined {
  font-size: 1.5rem;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.credential-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.credential-card small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #64748b;
  font-size: 0.7rem;
  margin-bottom: 6px;
}

.credential-card strong {
  font-size: 1.2rem;
  font-family: "Manrope", "Inter", sans-serif;
}

.credential-card a {
  color: var(--text);
}

.leadership-card {
  text-align: center;
  padding: 28px;
}

.leadership-card img {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  margin: 18px auto;
}

.leadership-card .role {
  color: #64748b;
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 12px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    color: var(--text);
    background: #ffffff;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    flex-direction: column;
    gap: 16px;
    display: flex;
    box-shadow: var(--shadow);
    z-index: 20;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
  }

  .nav-links .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 90px;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .case-media {
    order: 2;
  }

  .case-overlay {
    inset: auto 14px 14px 14px;
  }

  .services-cards .card {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .header-inner {
    min-height: 64px;
  }
}
