:root {
  --ink: #09141e;
  --blue: #1296f3;
  --pale-blue: #eaf5fe;
  --off-white: #f6f8fa;
  --muted: #52606d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: Arial, Helvetica, sans-serif; line-height: 1.55; }
a { color: inherit; text-decoration: none; }

.site-header { min-height: 86px; display: flex; align-items: center; justify-content: space-between; padding: 12px 7vw; border-bottom: 1px solid #e7edf2; background: #fff; }
.brand img { display: block; width: 178px; height: 60px; object-fit: contain; }
nav { display: flex; align-items: center; gap: 25px; font-size: .91rem; font-weight: 700; }
nav a { transition: color .2s ease; }
nav a:hover { color: var(--blue); }
.nav-contact { padding: 10px 15px; color: #fff; background: var(--ink); }

.hero { min-height: 600px; display: grid; grid-template-columns: 1.25fr .75fr; padding: 92px 7vw; background: linear-gradient(112deg, var(--ink) 0%, #101d29 65%, var(--blue) 190%); color: #fff; overflow: hidden; }
.hero-content { max-width: 760px; }
.eyebrow { margin: 0 0 16px; color: var(--blue); font-size: .77rem; font-weight: 800; letter-spacing: .15em; }
.hero .eyebrow { color: #76c6ff; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6vw, 5.9rem); max-width: 850px; }
.intro { max-width: 630px; margin: 28px 0 32px; color: #d8e2e9; font-size: 1.17rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-block; padding: 13px 19px; font-size: .88rem; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.primary { background: var(--blue); color: #fff; }
.secondary { border: 1px solid #6d8191; color: #fff; }
.hero-mark { align-self: end; justify-self: end; padding: 24px 0 25px 28px; width: 220px; border-left: 1px solid #66839a; }
.hero-mark span { color: var(--blue); font-size: 5.5rem; font-weight: 900; letter-spacing: -.08em; line-height: .8; }
.hero-mark p { margin: 18px 0 0; font-size: .79rem; font-weight: 800; letter-spacing: .12em; }

.statement { max-width: 890px; padding: 105px 7vw 94px; }
h2 { font-size: clamp(2.1rem, 4.4vw, 4rem); }
.statement > p:last-child { max-width: 695px; margin: 28px 0 0; color: var(--muted); font-size: 1.08rem; }

.services { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--off-white); }
.services article { min-height: 280px; padding: 47px 7vw 44px; border-right: 1px solid #dce6ed; }
.services article:last-child { border: 0; }
.number { display: block; margin-bottom: 54px; color: var(--blue); font-size: 1rem; font-weight: 800; }
h3 { font-size: 1.4rem; }
.services p { max-width: 290px; color: var(--muted); font-size: .94rem; }

.inventory { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: 84px 7vw; background: var(--pale-blue); }
.inventory h2 { max-width: 650px; font-size: clamp(2rem, 3.5vw, 3.3rem); }
.inventory p:not(.eyebrow) { max-width: 650px; color: var(--muted); }

.advice { display: grid; grid-template-columns: .55fr 1.45fr; gap: 56px; align-items: center; padding: 95px 7vw; }
.advice-accent { color: var(--blue); font-size: clamp(6rem, 16vw, 14rem); font-weight: 900; font-style: italic; letter-spacing: -.14em; line-height: .8; }
.advice h2 { margin-bottom: 24px; }
.advice p:not(.eyebrow) { max-width: 700px; color: var(--muted); font-size: 1.03rem; }

.contact { padding: 100px 7vw; background: var(--ink); color: #fff; text-align: center; }
.contact p:not(.eyebrow) { max-width: 560px; margin: 22px auto 30px; color: #c9d5dd; }
.email { display: inline-block; color: var(--blue); border-bottom: 2px solid var(--blue); font-size: clamp(1.2rem, 2.5vw, 2rem); font-weight: 800; }
footer { display: flex; align-items: center; justify-content: space-between; padding: 18px 7vw; background: #fff; color: var(--muted); font-size: .78rem; }
footer img { width: 122px; height: 40px; object-fit: contain; }

@media (max-width: 800px) {
  .site-header { padding: 12px 5vw; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: 540px; padding: 72px 7vw 48px; }
  .hero-mark { justify-self: start; align-self: end; margin-top: 55px; }
  .statement, .advice { padding: 72px 7vw; }
  .services { grid-template-columns: 1fr; }
  .services article { min-height: auto; padding: 38px 7vw; border-right: 0; border-bottom: 1px solid #dce6ed; }
  .services article:last-child { border-bottom: 0; }
  .number { margin-bottom: 22px; }
  .inventory { display: block; padding: 68px 7vw; }
  .inventory .button { margin-top: 14px; }
  .advice { grid-template-columns: 1fr; gap: 30px; }
  footer { padding: 18px 5vw; }
}
