:root {
  --navy: #102337;
  --navy-2: #183a59;
  --gold: #c49a4a;
  --gold-light: #f0d59a;
  --cream: #f7f1e7;
  --white: #ffffff;
  --ink: #1c2632;
  --muted: #657282;
  --line: rgba(16, 35, 55, 0.12);
  --shadow: 0 24px 70px rgba(16, 35, 55, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}


.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  background: var(--white);
  padding: 5px;
  box-shadow: 0 12px 28px rgba(16, 35, 55, 0.14);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold-light);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(16, 35, 55, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #344457;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 1.2rem;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(16, 35, 55, 0.96), rgba(16, 35, 55, 0.74)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -160px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(196, 154, 74, 0.34), transparent 66%);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 390px;
  gap: 56px;
  align-items: center;
  padding: 112px 0 96px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(16, 35, 55, 0.95) 0%, rgba(16, 35, 55, 0.86) 44%, rgba(16, 35, 55, 0.38) 100%),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -160px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(196, 154, 74, 0.38), transparent 65%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 56px;
  align-items: center;
  padding: 110px 0;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow.light {
  color: var(--gold-light);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  color: var(--navy);
}

.hero h1,
.feature-band h2 {
  color: var(--white);
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(196, 154, 74, 0.26);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.hero-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-topline {
  width: 70px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  margin-bottom: 22px;
}

.hero-card h2 {
  font-family: "Inter", sans-serif;
  letter-spacing: -0.03em;
  font-size: 1.65rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 18px;
}

.hero-card li {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.hero-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  color: var(--navy);
  margin-bottom: 4px;
}

.hero-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 44px;
}

.section-heading p:last-child,
.split-copy p,
.about-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

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

.career-card {
  min-height: 100%;
}

.compact-list {
  margin-bottom: 0;
}

.service-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(16, 35, 55, 0.06);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--cream);
  font-size: 1.45rem;
  margin-bottom: 22px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.feature-band {
  padding: 84px 0;
  background: linear-gradient(135deg, var(--navy), #081522);
  color: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 62px;
  align-items: center;
}

.image-panel {
  min-height: 560px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(16, 35, 55, 0.1), rgba(16, 35, 55, 0.72)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1200&q=80") center/cover;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stat-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  color: var(--navy);
  font-size: 1.35rem;
}

.stat-card span {
  margin-top: 5px;
  color: var(--muted);
}

.check-list {
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 650;
  color: #344457;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(196, 154, 74, 0.18);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.muted {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.contact-section {
  background: linear-gradient(180deg, var(--white), #f8fafc);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 54px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form {
  padding: 32px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: #344457;
  font-weight: 750;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(101, 114, 130, 0.24);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: #fbfcfd;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(196, 154, 74, 0.22);
  border-color: var(--gold);
}

.site-footer {
  padding: 48px 0 28px;
  background: #07111d;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-logo {
  width: 52px;
  height: 52px;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.copyright {
  padding-top: 22px;
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 12px;
  }

  .hero-grid,
  .page-hero-grid,
  .service-grid,
  .career-grid,
  .feature-grid,
  .split-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 78px 0;
  }

  .service-grid,
  .career-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 70px;
  }

  .brand span:last-child {
    font-size: 0.95rem;
  }

  .hero-grid {
    padding: 58px 0;
  }

  .page-hero-grid {
    padding: 62px 0;
  }

  .hero-card,
  .contact-form,
  .service-card {
    border-radius: 22px;
    padding: 22px;
  }

  .section {
    padding: 72px 0;
  }

  .service-grid,
  .career-grid {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 420px;
  }

  .footer-grid,
  .footer-links {
    flex-direction: column;
  }
}
