﻿:root {
  --blue: #0c64b7;
  --blue-dark: #073b73;
  --blue-soft: #eaf4ff;
  --ink: #14202b;
  --muted: #5a6876;
  --line: #dbe4ee;
  --bg: #f7fafc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(10, 31, 55, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--blue-dark);
  color: var(--white);
  padding: 10px 14px;
  z-index: 10;
}
.skip-link:focus { left: 12px; }

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

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 172px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 15px;
  color: var(--muted);
}

.main-nav a,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--blue);
}

.nav-phone {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  background:
    linear-gradient(115deg, rgba(7, 59, 115, .95), rgba(12, 100, 183, .9)),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.18), transparent 34%);
  color: var(--white);
  padding: 86px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow { color: #cfe6ff; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 72px;
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
  line-height: 1.25;
}

.lead {
  max-width: 660px;
  color: #e7f3ff;
  font-size: 21px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

.button-primary:hover { background: #095ca9; }

.button-secondary {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.trust-row div {
  border-top: 1px solid rgba(255,255,255,.28);
  padding-top: 14px;
}

.trust-row dt {
  color: #b8d9fb;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}

.trust-row dd {
  margin: 2px 0 0;
  font-weight: 700;
}

.hero-panel,
.download-box,
.contact-card {
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.96);
}

.hero-panel h2 {
  margin-bottom: 0;
  font-size: 30px;
  line-height: 1.05;
}

.hero-panel p {
  margin: 0;
  padding: 0 28px 24px;
  color: var(--muted);
}

.hero-panel-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--line);
}

.mini-team {
  display: flex;
  padding-top: 2px;
}

.mini-team img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: 0 8px 18px rgba(10, 31, 55, .18);
}

.mini-team img + img {
  margin-left: -14px;
}

.status-dot {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #28a745;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.hero-contact-lines {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-contact-lines a {
  padding: 16px 28px;
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

.hero-contact-lines a + a {
  border-top: 1px solid var(--line);
}

.hero-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 28px;
  background: var(--blue-soft);
}

.hero-panel-foot span {
  color: var(--muted);
  font-weight: 800;
}

.hero-panel-foot strong {
  color: var(--blue-dark);
}

.proofbar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proofbar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proofbar-grid div {
  min-height: 106px;
  padding: 24px 22px;
  border-left: 1px solid var(--line);
}

.proofbar-grid div:last-child {
  border-right: 1px solid var(--line);
}

.proofbar-grid strong,
.proofbar-grid span {
  display: block;
}

.proofbar-grid strong {
  color: var(--blue-dark);
  font-size: 15px;
  text-transform: uppercase;
}

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

.section {
  padding: 86px 0;
}

.intro,
.team,
.contact,
.advantages,
.faq {
  background: var(--bg);
}

.two-col,
.promise-grid,
.remote-grid,
.contact-grid,
.process-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 60px;
}

.copy-block {
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 244px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card p,
.promise-list p,
.advantage-grid p,
.process-list span,
.muted-copy,
.faq-grid p,
.contact-card,
.download-box small,
.legal-layout p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}

.promise {
  background: #10283f;
  color: var(--white);
}

.promise .eyebrow { color: #9ed0ff; }
.promise-list {
  display: grid;
  gap: 22px;
}

.promise-list div {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.promise-list p { color: #d8e6f4; }

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.advantage-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(10, 31, 55, .07);
}

.advantage-grid article::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 28px;
  background: var(--blue);
}

.process {
  background: var(--white);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 5px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--white), #f5faff);
}

.process-list strong {
  color: var(--blue-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.person-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.person-card img {
  width: 210px;
  height: 260px;
  object-fit: cover;
  background: var(--blue-soft);
}

.person-card div {
  padding: 24px;
}

.person-card p { color: var(--blue); font-weight: 800; }

.remote {
  background: linear-gradient(90deg, var(--white), var(--blue-soft));
}

.download-box {
  align-self: center;
  padding: 28px;
  display: grid;
  gap: 14px;
}

.download-box span {
  font-size: 22px;
  font-weight: 900;
}

.contact-card {
  display: grid;
  gap: 7px;
  padding: 30px;
  font-style: normal;
}

.contact-card strong {
  color: var(--ink);
  font-size: 22px;
}

.contact-card a {
  color: var(--blue);
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px 22px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--blue-dark);
  font-weight: 900;
}

.faq-grid p {
  margin: 12px 0 0;
}

.sticky-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 6;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}

.sticky-contact a {
  padding: 12px 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.sticky-contact a + a {
  border-left: 1px solid rgba(255,255,255,.24);
}

.site-footer {
  background: #071b2d;
  color: #d7e6f5;
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid img { width: 132px; }
.footer-grid nav {
  display: flex;
  gap: 18px;
}

.legal-page {
  padding: 72px 0;
  background: var(--bg);
}

.legal-layout {
  max-width: 860px;
}

.legal-layout h1 {
  color: var(--ink);
  font-size: 56px;
}

.legal-layout section {
  margin-top: 26px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-layout h2 {
  font-size: 24px;
}

.legal-layout a { color: var(--blue); }

@media (max-width: 980px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 12px 0;
    gap: 14px;
  }
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .hero-grid,
  .two-col,
  .promise-grid,
  .remote-grid,
  .contact-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 56px; }
  h2 { font-size: 38px; }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .proofbar-grid,
  .advantage-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero { padding: 56px 0; }
  .section { padding: 58px 0; }
  .nav-phone { display: none; }
  .brand img { width: 148px; }
  .trust-row,
  .service-grid,
  .team-grid,
  .proofbar-grid,
  .advantage-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .person-card {
    grid-template-columns: 128px 1fr;
  }
  .person-card img {
    width: 128px;
    height: 176px;
  }
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
  .sticky-contact {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .sticky-contact a {
    flex: 1;
    text-align: center;
  }
  .hero-panel-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .main-nav { font-size: 14px; }
  .hero-actions .button { width: 100%; }
  .person-card {
    grid-template-columns: 1fr;
  }
  .person-card img {
    width: 100%;
    height: 300px;
  }
}
