:root {
  --bg: #f8fbf9;
  --soft: #eaf8f4;
  --text: #16211e;
  --muted: #1d1d1d;
  --accent: #00145b;
  --accent-dark: #0c2c57;
  --dark: #10231e;
  --white: #ffffff;
  --border: rgba(22, 33, 30, 0.1);
  --shadow: 0 24px 70px rgba(16, 35, 30, 0.12);
  --radius: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;

  height: 72px;
  padding: 0 6vw;

  background: rgba(248, 251, 249, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent-dark);
}

.nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
}

.nav a:hover {
  color: var(--accent);
}

.nav-button,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.nav-button,
.button.primary,
.contact-form button {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 12px 28px rgb(#0c2c57);
}

.nav-button:hover,
.button.primary:hover,
.contact-form button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--accent-dark);
  background: var(--white);
  border: 1px solid var(--border);
}

.button.secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 56px;
  padding: 78px 6vw 100px;
  background:
    radial-gradient(circle at 10% 10%, rgba(#0c2c57), transparent 30%),
    var(--soft);
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow.light {
  color: #ffffff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-content p {
  max-width: 590px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-image img {
  height: min(520px, 62vw);
  object-fit: cover;
  border-radius: 110px 0 110px 0;
  box-shadow: var(--shadow);
}

.section {
  padding: 100px 6vw;
}

.section-soft {
  background: white;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.content-card {
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.6;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 13px;
}

.image-frame img {
  height: 460px;
  object-fit: cover;
  border-radius: 0 100px 100px 0;
  box-shadow: var(--shadow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  padding: 34px;
    background:
    linear-gradient(135deg, rgba(0, 20, 91, 0.08), rgba(0, 20, 91, 0.02)),
    #ffffff;
  border: 1px solid var(--border);
  border-radius: 0 44px 44px 0;
  box-shadow: 0 18px 44px rgba(16, 35, 30, 0.08);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--accent);
  font-weight: 900;
  font-size: 14px;
}

.service-card p {
  font-size: 15.5px;
}

.dark-section {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(158, 232, 211, 0.18), transparent 30%),
    var(--dark);
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.72);
}

.stats-card {
  display: grid;
  gap: 18px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.stats-card div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-card div:last-child {
  border-bottom: 0;
}

.stats-card strong {
  font-size: 34px;
  line-height: 1;
}

.stats-card span {
  color: rgba(255, 255, 255, 0.65);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  padding: 100px 6vw;
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 143, 112, 0.1);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  margin-top: 8px;
}

```css
.footer {
  padding: 42px 6vw;
  background: #10231e;
  text-align: center;
}

.footer p {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none !important;
  opacity: 1 !important;
  padding: 0 18px;
}

.footer-links a:hover {
  color: #9ee6b8 !important;
  text-decoration: underline !important;
}

.footer-links a:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.45);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .split,
  .split.reverse,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image img,
  .image-frame img {
    height: auto;
    max-height: 520px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px 20px;
  }

  .nav-button {
    display: none;
  }

  .hero,
  .section,
  .contact-section {
    padding: 68px 20px;
  }

  .hero {
    gap: 38px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .contact-form button {
    width: 100%;
  }

  .section-heading {
    text-align: left;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .content-card,
  .service-card,
  .stats-card {
    padding: 26px;
  }

  .hero-image img {
    border-radius: 64px 0 64px 0;
  }

  .image-frame img {
    border-radius: 0 64px 64px 0;
  }

  .stats-card div {
    display: block;
  }

  .stats-card span {
    display: block;
    margin-top: 8px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    padding: 0;
  }

  .footer-links a:not(:last-child) {
    border-right: 0;
  }
}

.contact-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0 6vw 90px;
  background: var(--white);
}

.contact-block {
  min-height: 150px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(0, 20, 91, 0.08), rgba(0, 20, 91, 0.02)),
    #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(16, 35, 30, 0.08);
  transition: 0.25s ease;
}

.contact-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.contact-block span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-block strong {
  display: block;
  color: var(--text);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.04em;
  word-break: break-word;
}

.contact-socials {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.linkedin-only {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  margin: 0 auto;
  padding: 0 22px;
  color: #ffffff;
  background: #0a66c2;
  border-radius: 16px;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.06em;
  box-shadow: 0 14px 30px rgba(10, 102, 194, 0.28);
  transition: 0.25s ease;
}

.linkedin-link span {
  display: inline-block;
  margin: 0 0 0 3px;
  padding: 2px 5px;
  color: #0a66c2;
  background: #ffffff;
  border-radius: 4px;
  font-size: 18px;
  letter-spacing: -0.05em;
}

.linkedin-link:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 38px rgba(10, 102, 194, 0.36);
}

@media (max-width: 980px) {
  .contact-blocks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-blocks {
    padding: 0 20px 68px;
  }

  .contact-block {
    min-height: auto;
    padding: 24px;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: 170px;
  height: auto;
}

@media (max-width: 640px) {
  .logo img {
    width: 135px;
  }
}