:root {
  --navy: #071521;
  --navy-2: #0b2131;
  --teal: #20d0c2;
  --teal-dark: #12aa9f;
  --cream: #f4f5f2;
  --white: #ffffff;
  --text: #15212b;
  --muted: #61707c;
  --border: #dbe2e5;
  --shadow: 0 18px 50px rgba(7, 21, 33, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
img, svg { display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 21, 33, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.brand-mark { width: 46px; height: 46px; flex: 0 0 auto; }
.brand span { display: grid; line-height: 1.2; }
.brand strong { font-size: 1rem; letter-spacing: .01em; }
.brand small { color: #b7c5cd; margin-top: 3px; font-size: .76rem; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { color: #dce5e9; text-decoration: none; font-weight: 650; font-size: .94rem; }
.site-nav a:hover { color: var(--teal); }
.nav-cta {
  border: 1px solid var(--teal);
  padding: 10px 15px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.6rem;
}

.hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(32,208,194,.18), transparent 31%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 96px 0 88px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}
.hero .eyebrow { color: var(--teal); }
h1, h2, h3 { line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(2.55rem, 5vw, 4.8rem); max-width: 900px; margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 3.8vw, 3.15rem); margin-bottom: 22px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
.hero-text { max-width: 760px; color: #c8d4da; font-size: 1.15rem; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}
.button.primary { background: var(--teal); color: var(--navy); }
.button.primary:hover { background: #35e3d5; }
.button.secondary { border-color: rgba(255,255,255,.35); color: var(--white); }
.button.secondary:hover { border-color: var(--teal); color: var(--teal); }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px 24px; color: #aebdc4; font-size: .9rem; }
.trust-row span::before { content: "•"; color: var(--teal); margin-right: 8px; }

.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.hero-card-icon {
  width: 58px; height: 58px; display: grid; place-items: center;
  background: var(--teal); color: var(--navy);
  font-size: 2.4rem; font-weight: 800; border-radius: 15px; margin-bottom: 20px;
}
.hero-card h2 { font-size: 1.55rem; }
.hero-card ul { margin: 0; padding-left: 20px; color: #c8d4da; }

.section { padding: 88px 0; }
.section-alt { background: var(--cream); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.prose { color: var(--muted); font-size: 1.05rem; }
.prose p:first-child { margin-top: 4px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(7,21,33,.05);
}
.service-card span {
  display: inline-block;
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.service-card p { color: var(--muted); margin-bottom: 0; }

.industry-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.industry-list span {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  font-weight: 750;
  background: #fff;
}

.why-section { background: var(--navy); color: var(--white); }
.why-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check-grid div {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  color: #dfe8ec;
}

.contact-section { background: #eef5f4; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.contact-details { margin-top: 26px; }
.contact-details p { margin: 7px 0; }
.contact-details a { color: var(--teal-dark); font-weight: 750; }
.placeholder-note { color: var(--muted); font-size: .84rem; max-width: 420px; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: white;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 7px; font-size: .9rem; font-weight: 750; }
.contact-form label:nth-of-type(5) { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid #cbd6db;
  border-radius: 9px;
  padding: 12px 13px;
  font: inherit;
  color: var(--text);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid rgba(32,208,194,.35);
  border-color: var(--teal-dark);
}
.contact-form .button { grid-column: 1 / -1; }
.hidden { display: none; }

.site-footer { background: #04101a; color: #c4d0d6; padding: 30px 0; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-wrap p { margin: 4px 0 0; font-size: .9rem; }
.footer-wrap strong { color: white; }

@media (max-width: 900px) {
  .hero-grid, .split, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-list { grid-template-columns: repeat(2, 1fr); }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px; left: 20px; right: 20px;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    padding: 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding: 70px 0 62px; }
  .section { padding: 68px 0; }
  .card-grid, .industry-list, .check-grid, .contact-form { grid-template-columns: 1fr; }
  .contact-form label:nth-of-type(5), .contact-form .button { grid-column: auto; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
  .brand small { display: none; }
  .brand strong { font-size: .92rem; }
}
