:root {
  --bg: #ffffff;
  --bg-soft: #f4f6f8;
  --text: #17202a;
  --muted: #5d6b76;
  --line: #dce3e9;
  --brand: #0b4b5c;
  --brand-2: #0f6b75;
  --accent: #c09246;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(15, 40, 55, 0.12);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { max-width: 850px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 25px rgba(11,75,92,.18);
}
.brand-text { white-space: nowrap; }
.main-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}
.main-nav a:hover { color: var(--brand); }
.hero {
  padding: 82px 0 70px;
  background:
    radial-gradient(circle at 10% 0%, rgba(15,107,117,.12), transparent 32%),
    linear-gradient(135deg, #f7fafc 0%, #ffffff 55%, #f4f8f9 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .95;
  letter-spacing: -0.06em;
  max-width: 850px;
}
h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 750;
  border: 1px solid transparent;
}
.button.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(11,75,92,.18);
}
.button.secondary {
  background: #fff;
  color: var(--brand);
  border-color: var(--line);
}
.hero-card,
.card,
.details-card,
.statement-box,
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hero-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.hero-card h2 { font-size: 28px; }
.hero-card p { color: var(--muted); }
dl { margin: 0; }
.hero-card dl div,
.details-list div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
dt {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}
dd {
  margin: 4px 0 0;
  font-weight: 750;
}
.section { padding: 78px 0; }
.section.soft { background: var(--bg-soft); }
.intro p { color: var(--muted); font-size: 18px; }
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.cards {
  display: grid;
  gap: 18px;
}
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  padding: 28px;
  box-shadow: none;
}
.card p { color: var(--muted); margin-bottom: 0; }
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.sector-item {
  min-height: 245px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.sector-item:nth-child(3n) { border-right: 0; }
.sector-item:nth-child(n+4) { border-bottom: 0; }
.sector-item span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #edf5f6;
  color: var(--brand);
  font-weight: 800;
}
.sector-item p { color: var(--muted); margin-bottom: 0; }
.statement {
  background: linear-gradient(135deg, var(--brand), #08343f);
  color: #fff;
}
.statement .eyebrow { color: #e8c27f; }
.statement-box {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 32px;
  padding: 34px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
}
.statement-box p:last-child { margin-bottom: 0; color: rgba(255,255,255,.82); font-size: 17px; }
.company-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}
.company-grid p { color: var(--muted); font-size: 17px; }
.note {
  padding: 16px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 12px;
}
.details-card { padding: 10px 28px; box-shadow: none; }
.details-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
}
.licensed { background: #fff; }
.activity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.activity-list li {
  padding: 16px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 700;
}
.contact { padding-top: 0; }
.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(135deg, #fff, #f7fafb);
}
.contact-card p { color: var(--muted); margin-bottom: 0; }
.contact-actions {
  display: grid;
  gap: 8px;
  text-align: right;
  font-weight: 750;
}
.contact-link { color: var(--brand); }
.site-footer {
  border-top: 1px solid var(--line);
  background: #0c1b22;
  color: rgba(255,255,255,.75);
  padding: 24px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-grid p { margin: 0; }
@media (max-width: 920px) {
  .hero-grid,
  .company-grid,
  .statement-box,
  .contact-card { grid-template-columns: 1fr; }
  .cards.three,
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .sector-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .sector-item:nth-child(2n) { border-right: 0; }
  .sector-item:nth-child(n+4) { border-bottom: 1px solid var(--line); }
  .sector-item:nth-child(n+5) { border-bottom: 0; }
  .contact-actions { text-align: left; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .main-nav { display: none; }
  .brand-text { white-space: normal; }
  .hero { padding: 54px 0; }
  .lead { font-size: 18px; }
  .section { padding: 56px 0; }
  .cards.three,
  .sector-grid,
  .activity-list { grid-template-columns: 1fr; }
  .sector-item,
  .sector-item:nth-child(n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .sector-item:last-child { border-bottom: 0; }
  .details-list div { grid-template-columns: 1fr; gap: 4px; }
  .hero-card, .card, .details-card, .statement-box, .contact-card { border-radius: 18px; }
}

@media (max-width: 680px) { .nav-wrap { flex-wrap: wrap; } .main-nav { display: flex; flex-wrap: wrap; gap: 14px; } }

@media (min-width: 681px) and (max-width: 1100px) { .nav-wrap { flex-wrap: wrap; } .main-nav { flex-wrap: wrap; } }
