:root {
  --navy: #061a35;
  --navy-2: #0b2d55;
  --blue: #0788e8;
  --ice: #43c8ff;
  --orange: #ff6b00;
  --red: #df170c;
  --steel: #7d8a98;
  --mist: #edf4f8;
  --white: #ffffff;
  --ink: #0c2138;
  --shadow: 0 24px 70px rgba(3, 24, 49, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: fixed; left: 16px; top: -80px; background: white; color: var(--navy); padding: 10px 14px; z-index: 100; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.topbar { background: #031226; color: #dce9f5; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.topbar .container { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar strong { color: white; }
.topbar a:hover, .topbar a:focus-visible { color: var(--ice); }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(6,26,53,.08); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; color: var(--navy); }
.brand img { width: 64px; height: 64px; object-fit: contain; }
.brand-copy { line-height: 1.02; letter-spacing: .12em; }
.brand-copy span { display: block; font-size: .68rem; color: #526170; letter-spacing: .24em; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-weight: 750; font-size: .94rem; }
.main-nav a:not(.button) { position: relative; }
.main-nav a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--orange); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.menu-button { display: none; background: none; border: 0; padding: 9px; color: var(--navy); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 20px; border-radius: 5px; border: 1px solid transparent; background: linear-gradient(135deg, var(--orange), var(--red)); color: white; font-weight: 850; box-shadow: 0 10px 26px rgba(223,23,12,.2); cursor: pointer; }
.button:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(223,23,12,.28); }
.button.secondary { background: transparent; color: white; border-color: rgba(255,255,255,.48); box-shadow: none; }
.button.dark { background: var(--navy); box-shadow: none; }

.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 74% 30%, rgba(27,156,239,.22), transparent 28%), linear-gradient(122deg, #031329 0%, #082c55 70%, #084276 100%); color: white; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(112deg, transparent 53%, rgba(255,255,255,.055) 53.2%, transparent 54%), repeating-linear-gradient(135deg, transparent 0 42px, rgba(255,255,255,.025) 42px 43px); }
.hero-grid { position: relative; min-height: 650px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 60px; padding: 80px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 20px; color: #9ddcff; font-size: .79rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--orange); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 7vw, 6.1rem); max-width: 900px; }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); color: var(--navy); }
h3 { font-size: 1.32rem; color: var(--navy); }
.hero h1 em { font-style: normal; color: #9de1ff; }
.hero-lead { max-width: 680px; margin: 24px 0 32px; color: #dbe9f5; font-size: clamp(1.05rem, 2vw, 1.23rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.proof-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; color: #c6d8e7; font-size: .9rem; font-weight: 750; }
.proof-row span { display: flex; align-items: center; gap: 8px; }
.proof-row span::before { content: "✓"; color: #65d8ff; font-weight: 900; }
.hero-mark { position: relative; background: white; padding: 18px; box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.hero-mark::before { content: ""; position: absolute; inset: 14% 8%; border-radius: 50%; background: rgba(255,255,255,.12); filter: blur(45px); }
.hero-mark img { position: relative; width: 100%; }

.service-strip { background: #fff; margin-top: -1px; border-bottom: 1px solid #dfe8ef; }
.service-strip .container { display: grid; grid-template-columns: repeat(3,1fr); }
.strip-item { padding: 26px 26px 27px; border-right: 1px solid #dfe8ef; display: flex; gap: 15px; align-items: flex-start; }
.strip-item:first-child { border-left: 1px solid #dfe8ef; }
.icon-box { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 8px; display: grid; place-items: center; background: #e9f7ff; color: var(--blue); font-size: 1.25rem; font-weight: 900; }
.strip-item p { margin: 5px 0 0; color: #5a6876; font-size: .9rem; }

.section { padding: 96px 0; }
.section.soft { background: var(--mist); }
.section.dark { background: var(--navy); color: white; }
.section.dark h2, .section.dark h3 { color: white; }
.section-intro { max-width: 720px; margin: 0 0 44px; }
.section-intro p { color: #5a6876; font-size: 1.08rem; margin: 20px 0 0; }
.dark .section-intro p { color: #c5d5e4; }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card { min-height: 290px; padding: 30px; border: 1px solid #d9e5ec; background: white; box-shadow: 0 12px 35px rgba(6,26,53,.05); position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; left: 0; top: 0; width: 5px; height: 58px; background: linear-gradient(var(--orange), var(--red)); }
.service-card:nth-child(even)::before { background: linear-gradient(var(--ice), var(--blue)); }
.service-card .number { color: #95a2ad; font-size: .78rem; font-weight: 900; letter-spacing: .16em; }
.service-card h3 { margin-top: 42px; }
.service-card p { color: #5c6975; }
.text-link { color: var(--blue); font-weight: 850; }
.text-link:hover { color: var(--orange); }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: center; }
.story-panel { min-height: 480px; padding: 48px; background: linear-gradient(150deg, #082e59, #04172f); color: white; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.story-panel::after { content: "20+"; position: absolute; right: -20px; bottom: -45px; font-size: 12rem; font-weight: 950; color: rgba(255,255,255,.06); line-height: 1; }
.story-panel .big-number { font-size: 6.3rem; font-weight: 950; line-height: .9; letter-spacing: -.08em; color: #8bdcff; }
.story-panel .label { max-width: 240px; margin-top: 15px; color: #d6e7f4; font-weight: 800; letter-spacing: .04em; }
.story-panel blockquote { margin: 52px 0 0; padding-left: 20px; border-left: 3px solid var(--orange); font-size: 1.12rem; color: #dcebf6; }
.copy p { color: #556473; font-size: 1.05rem; }
.value-list { margin: 30px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.value { border-top: 1px solid #cddbe4; padding-top: 13px; font-weight: 820; color: var(--navy); }

.process { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.process-step { padding: 38px; background: #082846; }
.process-step span { color: #70d4ff; font-size: .78rem; font-weight: 900; letter-spacing: .15em; }
.process-step h3 { margin: 20px 0 12px; }
.process-step p { margin: 0; color: #c3d5e3; }

.cta { margin: 0 auto 96px; background: linear-gradient(110deg, var(--orange), #f13a00 60%, #c8160b); color: white; box-shadow: 0 25px 65px rgba(220,43,0,.2); }
.cta .container { padding: 54px 0; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta h2 { color: white; font-size: clamp(2rem,4vw,3.35rem); }
.cta p { margin: 12px 0 0; color: #fff2e8; }
.cta .button { background: white; color: var(--navy); box-shadow: none; flex: 0 0 auto; }

.page-hero { background: linear-gradient(125deg, #031329, #0b3c6e); color: white; padding: 90px 0 82px; position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; width:460px; height:460px; border:90px solid rgba(73,199,255,.08); border-radius:50%; right:-140px; top:-190px; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.5rem); max-width: 850px; }
.page-hero p { max-width: 700px; color: #d4e4f1; font-size: 1.15rem; margin: 22px 0 0; }
.service-detail { display: grid; grid-template-columns: 120px 1fr; gap: 30px; padding: 38px 0; border-top: 1px solid #d5e1e8; }
.service-detail:last-child { border-bottom: 1px solid #d5e1e8; }
.service-detail .index { color: var(--blue); font-size: .8rem; font-weight: 900; letter-spacing: .17em; }
.service-detail p { color: #586774; max-width: 770px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.pill { padding: 7px 12px; background: #eaf4fa; color: var(--navy); border-radius: 999px; font-size: .84rem; font-weight: 750; }

.bio-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: 65px; align-items: start; }
.bio-card { background: var(--navy); color: white; padding: 40px; position: sticky; top: 120px; }
.bio-card h3 { color: white; font-size: 2rem; }
.bio-card p { color: #c5d9e9; }
.bio-card .role { color: #6dd6ff; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
.timeline { margin-top: 34px; }
.timeline-item { padding: 0 0 28px 28px; border-left: 2px solid #d5e2ea; position: relative; }
.timeline-item::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); position: absolute; left: -7px; top: 4px; }
.timeline-item h3 { font-size: 1.12rem; }
.timeline-item p { color: #5a6875; margin: 8px 0 0; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.contact-panel { background: var(--navy); color: white; padding: 42px; }
.contact-panel h2 { color: white; }
.contact-panel p { color: #c8dae8; }
.contact-item { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-item small { color: #76d6ff; display: block; font-weight: 850; text-transform: uppercase; letter-spacing: .13em; }
.contact-item strong { display: block; margin-top: 6px; font-size: 1.12rem; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; color: var(--navy); }
.field input, .field textarea, .field select { width: 100%; min-height: 50px; border: 1px solid #c8d7e1; background: white; padding: 11px 13px; border-radius: 4px; color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid rgba(7,136,232,.18); border-color: var(--blue); }
.form-status { grid-column: 1/-1; min-height: 26px; color: #4d5f6e; }
.form-help { margin: 9px 0 0; color: #60717e; font-size: .9rem; }

.site-footer { background: #020e1e; color: #aebfcd; padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .8fr; gap: 56px; }
.footer-brand { max-width: 460px; }
.footer-brand h3 { color: white; font-size: 1.45rem; letter-spacing: .02em; }
.footer-brand p { color: #9fb2c1; }
.footer-brand .business-credentials { color: #d7e5ef; overflow-wrap: anywhere; }
.business-credentials a:hover, .business-credentials a:focus-visible { color: #65d2ff; }
.footer-nav { display: grid; gap: 12px; }
.footer-nav strong { color: white; margin-bottom: 6px; }
.footer-nav a:hover { color: #65d2ff; }
.footer-bottom { margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; font-size: .85rem; }

@media (max-width: 900px) {
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 82px; background: white; padding: 24px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .main-nav.open { display: flex; }
  .menu-button { display: block; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 72px 0; }
  .hero-mark { display: none; }
  .service-strip .container, .card-grid, .process { grid-template-columns: 1fr; }
  .strip-item, .strip-item:first-child { border: 0; border-bottom: 1px solid #dfe8ef; }
  .split, .bio-layout, .contact-grid { grid-template-columns: 1fr; }
  .bio-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar .container { justify-content: center; text-align: center; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 52px; height: 52px; }
  .brand-copy { font-size: .87rem; }
  .main-nav { top: 72px; }
  h1 { font-size: 3.15rem; }
  .section { padding: 72px 0; }
  .story-panel { padding: 34px 28px; min-height: 410px; }
  .story-panel .big-number { font-size: 5rem; }
  .value-list, .form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .service-detail { grid-template-columns: 1fr; gap: 10px; }
  .cta { margin-bottom: 72px; }
  .cta .container { padding: 42px 14px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
