:root {
  --navy: #123668;
  --navy-dark: #071a35;
  --navy-deep: #041126;
  --navy-soft: #eaf0f8;
  --gold: #986b27;
  --gold-bright: #e7bd6a;
  --gold-soft: #fbf4e5;
  --ink: #17253a;
  --muted: #647287;
  --paper: #f7f7f4;
  --white: #ffffff;
  --line: rgba(7, 26, 53, 0.11);
  --line-light: rgba(255,255,255,0.13);
  --shadow-sm: 0 10px 30px rgba(7, 26, 53, 0.07);
  --shadow: 0 28px 80px rgba(7, 26, 53, 0.15);
  --radius-sm: 16px;
  --radius: 26px;
  --radius-lg: 36px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background:
    radial-gradient(circle at 12% 8%, rgba(231,189,106,.2), transparent 26%) top / 100% 930px no-repeat,
    radial-gradient(circle at 87% 13%, rgba(18,54,104,.1), transparent 24%) top / 100% 930px no-repeat,
    linear-gradient(180deg, #fff 0%, #fafaf7 82%, var(--paper) 100%) top / 100% 930px no-repeat,
    var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(184, 134, 54, .36);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: .7rem 1rem;
  border-radius: 10px;
  color: #fff;
  background: var(--navy-dark);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  padding: 14px 0;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  min-height: 68px;
  margin: 0 auto;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 36px rgba(7,26,53,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--navy-dark);
  font-weight: 850;
  letter-spacing: -.035em;
}

.brand img {
  width: 42px;
  height: 42px;
  padding: 6px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.brand.small img { width: 36px; height: 36px; border-radius: 11px; }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  padding: .7rem .9rem;
  border-radius: 12px;
  color: var(--muted);
  font-size: .91rem;
  font-weight: 700;
  transition: color .18s ease, background .18s ease;
}
.nav a:hover { color: var(--navy-dark); background: var(--navy-soft); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-left: .4rem;
  padding: .78rem 1.05rem;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: var(--navy-dark);
  cursor: pointer;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease;
}
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--navy-dark); transition: .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  width: var(--container);
  margin: 0 auto;
}

.hero { min-height: 760px; padding: 74px 0 96px; }

.availability {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.6rem;
  padding: .42rem .68rem;
  border: 1px solid rgba(47,122,79,.14);
  border-radius: 999px;
  color: #2f6d49;
  background: #eff8f2;
  font-size: .76rem;
  font-weight: 800;
}
.availability span { width: 7px; height: 7px; border-radius: 50%; background: #43a66d; box-shadow: 0 0 0 4px rgba(67,166,109,.12); }

.eyebrow {
  margin: 0 0 .85rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; color: var(--navy-dark); line-height: 1.08; letter-spacing: -.045em; }
h1 { max-width: 680px; font-size: clamp(3.15rem, 5.5vw, 5rem); }
h1 span { color: var(--navy); }
h2 { font-size: clamp(2.2rem, 4vw, 3.45rem); }
h3 { font-size: 1.48rem; letter-spacing: -.03em; }

.hero-text { max-width: 620px; margin: 1.35rem 0 0; color: var(--muted); font-size: clamp(1.03rem, 1.3vw, 1.16rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 54px;
  padding: .88rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-icon { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: rgba(255,255,255,.13); }
.button.primary { color: #fff; background: linear-gradient(135deg, var(--navy), var(--navy-dark)); box-shadow: 0 15px 35px rgba(7,26,53,.2); }
.button.primary:hover { box-shadow: 0 18px 40px rgba(7,26,53,.28); }
.button.secondary { color: var(--navy-dark); border-color: var(--line); background: rgba(255,255,255,.65); }
.button.secondary:hover { border-color: rgba(18,54,104,.23); background: #fff; box-shadow: var(--shadow-sm); }
.button:disabled { cursor: wait; opacity: .68; transform: none; }

.trust-row { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 1.65rem; }
.trust-row span { display: inline-flex; align-items: center; gap: .42rem; color: var(--muted); font-size: .81rem; font-weight: 700; }
.trust-row i { display: grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; color: var(--navy); background: var(--navy-soft); font-size: .65rem; font-style: normal; }

.hero-showcase {
  position: relative;
  min-height: 590px;
  padding: 58px 18px 34px;
  border-radius: 42px;
  background: linear-gradient(145deg, #123a72, var(--navy-deep));
  box-shadow: 0 32px 90px rgba(7,26,53,.25);
  isolation: isolate;
}
.hero-showcase::before { content: ""; position: absolute; inset: 16px; z-index: -1; border: 1px solid var(--line-light); border-radius: 30px; }
.hero-showcase::after { content: ""; position: absolute; z-index: -2; right: -9%; bottom: -8%; width: 45%; height: 34%; border-radius: 50%; background: rgba(231,189,106,.24); filter: blur(55px); }
.showcase-glow { position: absolute; z-index: -2; top: -7%; right: -4%; width: 280px; height: 280px; border-radius: 50%; background: rgba(231,189,106,.27); filter: blur(50px); }

.dashboard-window {
  position: relative;
  z-index: 1;
  width: min(100%, 455px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 23px;
  background: #f8fafc;
  box-shadow: 0 30px 65px rgba(0,0,0,.27);
  transform: rotate(-1.2deg);
}
.dashboard-topbar { display: flex; align-items: center; justify-content: space-between; height: 56px; padding: 0 16px; border-bottom: 1px solid #e5e9ef; background: #fff; }
.mini-brand { display: flex; align-items: center; gap: .5rem; color: var(--navy-dark); font-size: .7rem; font-weight: 850; }
.mini-brand img { width: 27px; height: 27px; padding: 4px; border: 1px solid var(--line); border-radius: 8px; }
.window-actions { display: flex; gap: 5px; }
.window-actions span { width: 7px; height: 7px; border-radius: 50%; background: #d9dee6; }
.dashboard-body { padding: 22px; }
.dashboard-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dashboard-heading div { display: grid; }
.dashboard-heading small { color: #8791a1; font-size: .62rem; }
.dashboard-heading strong { color: var(--navy-dark); font-size: 1rem; }
.live-badge { display: inline-flex; align-items: center; gap: .3rem; padding: .28rem .48rem; border-radius: 999px; color: #2f7a4f; background: #e8f6ed; font-size: .55rem; font-weight: 800; }
.live-badge i { width: 5px; height: 5px; border-radius: 50%; background: #3ba768; }
.stat-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 10px; }
.stat-card { min-height: 115px; padding: 14px; border: 1px solid #e7eaf0; border-radius: 14px; background: #fff; box-shadow: 0 6px 16px rgba(7,26,53,.04); }
.stat-card > span { display: block; color: #7b8798; font-size: .6rem; font-weight: 700; }
.stat-card > strong { display: block; margin-top: 8px; color: var(--navy-dark); font-size: 1.34rem; letter-spacing: -.035em; }
.stat-card > strong small { font-size: .55rem; letter-spacing: 0; }
.stat-card em { display: inline-block; margin-top: 7px; color: #31865a; font-size: .57rem; font-style: normal; font-weight: 800; }
.stat-card.featured { color: #fff; border-color: transparent; background: linear-gradient(135deg, #19457f, var(--navy-dark)); }
.stat-card.featured > span, .stat-card.featured > strong { color: #fff; }
.stat-card.featured > span { opacity: .72; }
.stat-card.featured em { color: #a9e0bd; }
.mini-bars { display: flex; align-items: flex-end; gap: 4px; height: 32px; margin-top: 13px; }
.mini-bars i { flex: 1; height: 42%; border-radius: 3px 3px 1px 1px; background: #ccd8e8; }
.mini-bars i:nth-child(2) { height: 68%; }.mini-bars i:nth-child(3) { height: 52%; }.mini-bars i:nth-child(4) { height: 85%; background: var(--gold-bright); }.mini-bars i:nth-child(5) { height: 72%; }
.activity-card { margin-top: 10px; padding: 14px; border: 1px solid #e7eaf0; border-radius: 14px; background: #fff; }
.activity-head { display: flex; justify-content: space-between; padding-bottom: 8px; }
.activity-head strong { color: var(--navy-dark); font-size: .7rem; }.activity-head > span { color: #8c96a5; font-size: .55rem; }
.activity-item { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 8px; padding: 9px 0; border-top: 1px solid #edf0f4; }
.activity-icon { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; font-size: .65rem; font-style: normal; font-weight: 900; }
.activity-icon.gold { color: #936616; background: #fbf1db; }.activity-icon.blue { color: #234f86; background: #e9f0f8; }
.activity-item div { display: grid; }.activity-item strong { color: #2d3b4e; font-size: .62rem; }.activity-item small { color: #9099a6; font-size: .51rem; }
.activity-item time { color: #9aa2af; font-size: .52rem; }

.floating-card { position: absolute; z-index: 3; border: 1px solid rgba(255,255,255,.72); border-radius: 16px; background: rgba(255,255,255,.93); box-shadow: 0 18px 42px rgba(0,0,0,.19); backdrop-filter: blur(10px); }
.floating-top { top: 30px; right: -25px; display: grid; min-width: 122px; padding: 12px 14px; }
.floating-top span { color: var(--muted); font-size: .58rem; font-weight: 700; }.floating-top strong { color: var(--navy-dark); font-size: 1.45rem; line-height: 1.2; }.floating-top small { font-size: .6rem; }
.floating-bottom { left: -32px; bottom: 35px; display: flex; align-items: center; gap: 9px; padding: 11px 13px; }
.floating-bottom > i { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 9px; color: #2f7a4f; background: #e8f6ed; font-size: .7rem; font-style: normal; }
.floating-bottom > span { display: grid; }.floating-bottom strong { color: var(--navy-dark); font-size: .65rem; }.floating-bottom small { color: var(--muted); font-size: .52rem; }

/* Minimal hero artwork */
.hero-showcase {
  display: grid;
  place-items: center;
  padding: 52px;
  overflow: hidden;
}
.showcase-glow { width: 320px; height: 320px; top: -8%; right: -8%; filter: blur(58px); }
.showcase-orbit { position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.orbit-one { width: 380px; height: 380px; }
.orbit-two { width: 500px; height: 500px; border-color: rgba(255,255,255,.055); }
.showcase-mark { position: relative; display: grid; place-items: center; width: 190px; height: 190px; border: 1px solid rgba(255,255,255,.14); border-radius: 44px; background: rgba(255,255,255,.06); box-shadow: 0 28px 70px rgba(0,0,0,.2); backdrop-filter: blur(10px); }
.showcase-mark::before { content: ""; position: absolute; inset: -11px; border: 1px solid rgba(231,189,106,.2); border-radius: 52px; }
.showcase-mark img { width: 132px; height: 132px; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(0,0,0,.28)); }
.showcase-caption { position: absolute; bottom: 42px; left: 42px; }
.showcase-caption span { color: var(--gold-bright); font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.showcase-caption p { margin: .55rem 0 0; color: rgba(255,255,255,.78); font-size: .9rem; line-height: 1.5; }
.showcase-index { position: absolute; right: 42px; bottom: 44px; color: rgba(255,255,255,.35); font-size: .64rem; font-weight: 800; letter-spacing: .12em; }

.proof-strip { display: flex; align-items: center; justify-content: center; gap: clamp(1.2rem, 4vw, 3.5rem); width: var(--container); margin: 0 auto; padding: 1.25rem 2rem; border-block: 1px solid var(--line); color: var(--muted); }
.proof-strip p { margin: 0; font-size: .78rem; font-weight: 800; letter-spacing: .02em; text-align: center; }
.proof-strip > span { width: 4px; height: 4px; flex: 0 0 auto; border-radius: 50%; background: var(--gold); }

.services, .contact { width: var(--container); margin: 0 auto; padding: 112px 0; }
.section-heading { max-width: 780px; margin-bottom: 3rem; }
.section-heading > p:not(.eyebrow), .process-copy > p { color: var(--muted); font-size: 1.04rem; line-height: 1.75; }
.section-heading.compact { max-width: 670px; }
.split-heading { display: grid; grid-template-columns: 1.1fr .65fr; align-items: end; gap: clamp(2rem, 7vw, 7rem); max-width: none; }
.split-heading > p { margin: 0 0 .2rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { position: relative; min-height: 410px; padding: 1.7rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.74); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.service-card::after { content: ""; position: absolute; right: -55px; bottom: -75px; width: 170px; height: 170px; border: 1px solid rgba(18,54,104,.08); border-radius: 50%; box-shadow: 0 0 0 25px rgba(18,54,104,.025), 0 0 0 50px rgba(18,54,104,.02); }
.service-card:hover { z-index: 1; border-color: rgba(184,134,54,.35); box-shadow: var(--shadow); transform: translateY(-7px); }
.service-card-featured { border-color: transparent; background: linear-gradient(145deg, #143d74, var(--navy-dark)); box-shadow: 0 18px 50px rgba(7,26,53,.16); }
.service-card-featured h3 { color: #fff; }.service-card-featured p { color: rgba(255,255,255,.67); }.service-card-featured .service-icon { color: var(--gold-bright); border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.08); }.service-card-featured .card-number { color: rgba(255,255,255,.34); }.service-card-featured .feature-list { color: rgba(255,255,255,.78); border-color: rgba(255,255,255,.1); }.service-card-featured .feature-list li::before { background: var(--gold-bright); }
.card-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4.8rem; }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 14px; color: var(--navy); background: var(--navy-soft); }
.service-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.card-number { color: #9ba5b4; font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.service-card > p { margin: .9rem 0 0; color: var(--muted); line-height: 1.7; }
.feature-list { position: relative; z-index: 1; display: grid; gap: .42rem; margin: 1.4rem 0 0; padding: 1.15rem 0 0; border-top: 1px solid var(--line); color: var(--ink); font-size: .82rem; font-weight: 700; list-style: none; }
.feature-list li { display: flex; align-items: center; gap: .55rem; }.feature-list li::before { content: ""; width: 5px; height: 5px; flex: 0 0 auto; border-radius: 50%; background: var(--gold); }

.process-wrap { padding: 108px 0; background: #fff; }
.reverse { grid-template-columns: minmax(430px, .98fr) minmax(0, 1.02fr); }
.process-visual { position: relative; display: grid; gap: .85rem; padding: 18px 0; }
.process-line { position: absolute; top: 0; bottom: 0; left: 44px; width: 1px; background: linear-gradient(transparent, rgba(184,134,54,.38) 15%, rgba(184,134,54,.38) 85%, transparent); }
.process-step { position: relative; display: grid; grid-template-columns: 58px 1fr; gap: 1.15rem; min-height: 135px; padding: 1.4rem; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease; }
.process-step:hover { border-color: rgba(184,134,54,.34); transform: translateX(5px); }
.process-step > span { position: relative; z-index: 1; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; color: var(--gold); background: var(--gold-soft); font-size: .72rem; font-weight: 900; }
.process-step > div { padding-top: 5px; }.process-step strong { display: block; color: var(--navy-dark); font-size: 1.17rem; }.process-step p { margin: .35rem 0 0; color: var(--muted); font-size: .88rem; line-height: 1.6; }
.process-copy { max-width: 560px; justify-self: end; }
.process-copy > p { margin: 1.3rem 0 0; }
.process-note { display: flex; gap: .85rem; margin-top: 1.6rem; padding: 1rem; border: 1px solid rgba(184,134,54,.16); border-radius: 16px; background: var(--gold-soft); }
.process-note > span { color: var(--gold); }.process-note p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.55; }.process-note strong { color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: .65rem; margin-top: 1.5rem; padding: 0 0 .28rem; border: 0; border-bottom: 1px solid rgba(18,54,104,.3); color: var(--navy); background: transparent; cursor: pointer; font-weight: 900; }
.text-link span { transition: transform .18s ease; }.text-link:hover span { transform: translateX(4px); }

.cta-band { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 3rem; width: var(--container); margin: 112px auto 0; padding: clamp(2rem, 5vw, 4.3rem); overflow: hidden; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(130deg, #16467f, var(--navy-deep)); box-shadow: var(--shadow); }
.cta-band::before { content: ""; position: absolute; top: -160px; right: 4%; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,255,255,.025), 0 0 0 130px rgba(255,255,255,.02); }
.cta-band::after { content: ""; position: absolute; right: 18%; bottom: -110px; width: 260px; height: 260px; border-radius: 50%; background: rgba(231,189,106,.18); filter: blur(40px); }
.cta-copy { position: relative; z-index: 1; max-width: 710px; }.cta-band h2 { color: #fff; }.cta-copy > p:last-child { margin: .9rem 0 0; color: rgba(255,255,255,.65); }.cta-band .eyebrow { color: var(--gold-bright); }.button.inverted { position: relative; z-index: 1; flex: 0 0 auto; color: var(--navy-dark); background: #fff; box-shadow: 0 15px 35px rgba(0,0,0,.18); }.button.inverted .button-icon { color: #fff; background: var(--navy-dark); }

.contact { padding-bottom: 100px; }
.contact-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: .9rem; }
.contact-card { display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; align-items: center; gap: .9rem; min-height: 112px; padding: 1.15rem; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.76); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.contact-card:hover { border-color: rgba(184,134,54,.35); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.contact-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: var(--navy); background: var(--navy-soft); font-weight: 900; }.contact-card > div { display: grid; min-width: 0; }.contact-card small { color: var(--gold); font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }.contact-card strong { overflow: hidden; color: var(--navy-dark); font-size: .88rem; text-overflow: ellipsis; }.contact-card > i { color: #9aa5b4; font-style: normal; }

.footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; width: var(--container); margin: 0 auto; padding: 2rem 0 2.6rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }.footer p { margin: 0; }.footer p:last-child { justify-self: end; }

body.modal-open, body.menu-open { overflow: hidden; }
.modal-backdrop { position: fixed; z-index: 50; inset: 0; display: grid; place-items: center; padding: 1.25rem; overflow-y: auto; background: rgba(4,17,38,.78); backdrop-filter: blur(12px); opacity: 0; pointer-events: none; transition: opacity .22s ease; }
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.modal-card { position: relative; width: min(100%, 620px); margin: auto; padding: clamp(1.35rem, 4vw, 2.1rem); border: 1px solid rgba(255,255,255,.7); border-radius: 28px; background: #fafaf8; box-shadow: 0 35px 100px rgba(0,0,0,.3); transform: translateY(15px) scale(.98); transition: transform .22s ease; }
.modal-backdrop.is-open .modal-card { transform: none; }
.modal-card:focus { outline: none; }
.modal-close { position: absolute; top: 1rem; right: 1rem; display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 1px solid var(--line); border-radius: 12px; color: var(--navy-dark); background: #fff; cursor: pointer; font-size: 1.25rem; transition: transform .18s ease, background .18s ease; }.modal-close:hover { background: var(--navy-soft); transform: rotate(90deg); }
.modal-header { padding-right: 3rem; }.modal-header h3 { max-width: 480px; font-size: clamp(1.55rem, 4vw, 2rem); }.modal-header > p:last-child { margin: .65rem 0 0; color: var(--muted); font-size: .9rem; }
.lead-form { display: grid; gap: .85rem; margin-top: 1.45rem; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.field { display: grid; gap: .38rem; color: var(--navy-dark); font-weight: 750; }.field > span { font-size: .78rem; }.field > span small { float: right; color: #98a1ae; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; padding: .82rem .9rem; border: 1px solid rgba(7,26,53,.14); border-radius: 12px; color: var(--ink); background: #fff; line-height: 1.4; transition: border-color .17s ease, box-shadow .17s ease; }.field textarea { min-height: 86px; resize: vertical; }.field input::placeholder, .field textarea::placeholder { color: #9ca5b2; }.field select:invalid { color: #9ca5b2; }.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: rgba(184,134,54,.75); box-shadow: 0 0 0 4px rgba(184,134,54,.12); }
.submit-button { width: 100%; margin-top: .25rem; }.form-status { min-height: 1.2rem; margin: 0; font-size: .82rem; font-weight: 750; text-align: center; }.form-status.is-loading { color: var(--navy); }.form-status.is-success { color: #2f7a4f; }.form-status.is-error { color: #ad3737; }

@media (max-width: 980px) {
  :root { --container: min(100% - 32px, 720px); }
  .site-header { padding-top: 10px; }
  .header-shell { position: relative; min-height: 64px; }
  .menu-toggle { display: block; }
  .nav { position: absolute; top: calc(100% + 9px); right: 0; left: 0; display: grid; gap: .25rem; padding: .65rem; border: 1px solid rgba(255,255,255,.8); border-radius: 18px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease; }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: .85rem; }
  .nav-cta { justify-content: center; margin: .25rem 0 0; }
  .section-grid, .reverse { grid-template-columns: 1fr; }
  .hero { gap: 4rem; min-height: auto; padding: 70px 0 100px; }
  .hero-copy { max-width: 680px; }
  .hero-showcase { width: min(100%, 570px); margin: 0 auto; }
  .split-heading { grid-template-columns: 1fr; gap: 1.2rem; }
  .split-heading > p { max-width: 640px; }
  .service-grid { grid-template-columns: 1fr 1fr; }.service-card:last-child { grid-column: 1 / -1; min-height: 340px; }
  .process-copy { grid-row: 1; justify-self: start; }.process-visual { width: 100%; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr 1fr; }.contact-card-main { grid-column: 1 / -1; }
  .footer { grid-template-columns: 1fr 1fr; }.footer > p:nth-child(2) { display: none; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 24px); }
  html { scroll-padding-top: 90px; }
  .site-header { padding: 8px 0; }
  .header-shell { min-height: 60px; padding-left: 10px; border-radius: 17px; }
  .brand img { width: 38px; height: 38px; }.brand span { font-size: .93rem; }.menu-toggle { width: 42px; height: 42px; }
  .hero { padding: 48px 0 76px; gap: 3rem; }
  .availability { margin-bottom: 1.3rem; }
  h1 { font-size: clamp(2.65rem, 13vw, 3.55rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 2.75rem); }
  .hero-text { font-size: 1rem; }
  .hero-actions { display: grid; }.hero-actions .button { width: 100%; }
  .trust-row { display: grid; gap: .65rem; }
  .hero-showcase { min-height: 450px; padding: 43px 12px 24px; border-radius: 29px; }
  .hero-showcase::before { inset: 10px; border-radius: 22px; }
  .orbit-one { width: 290px; height: 290px; }.orbit-two { width: 390px; height: 390px; }
  .showcase-mark { width: 150px; height: 150px; border-radius: 36px; }.showcase-mark::before { border-radius: 44px; }.showcase-mark img { width: 102px; height: 102px; }
  .showcase-caption { bottom: 28px; left: 26px; }.showcase-index { right: 26px; bottom: 30px; }
  .proof-strip { justify-content: flex-start; gap: .8rem; padding: 1rem .25rem; overflow-x: auto; scrollbar-width: none; }.proof-strip::-webkit-scrollbar { display: none; }.proof-strip p { flex: 0 0 auto; }
  .services, .contact { padding: 80px 0; }.section-heading { margin-bottom: 2rem; }
  .service-grid { grid-template-columns: 1fr; }.service-card, .service-card:last-child { grid-column: auto; min-height: 370px; }.card-topline { margin-bottom: 3.5rem; }
  .process-wrap { padding: 80px 0; }.process { gap: 2.5rem; }.process-step { grid-template-columns: 48px 1fr; gap: .75rem; padding: 1.1rem; }.process-line { left: 33px; }.process-step > span { width: 40px; height: 40px; }.process-step p { font-size: .82rem; }
  .cta-band { gap: 2rem; margin-top: 80px; padding: 2rem 1.35rem; border-radius: 27px; }.cta-band .button { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }.contact-card-main { grid-column: auto; }.contact-card strong { font-size: .83rem; }
  .footer { padding: 1.6rem 0 2rem; }.footer p:last-child { font-size: .7rem; }
  .modal-backdrop { align-items: end; padding: .5rem; }.modal-card { width: 100%; max-height: calc(100dvh - 1rem); overflow-y: auto; border-radius: 24px; }.form-row { grid-template-columns: 1fr; }.modal-header { padding-right: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
