/* Altitude Nexus — shared design system (auto-extracted).
   Edit shared/site-wide styles here. Page-specific CSS stays inline per page. */

picture{display:contents}

:root {
      --navy: #073763;
      --navy-d: #052a4e;
      --navy-l: #0d4e8a;
      --blue: #1a6bcc;
      --blue-h: #1558aa;
      --blue-l: #e8f0fb;
      --white: #ffffff;
      --off: #f9f9f9;
      --mid: #f0f4f8;
      --text: #1a2332;
      --text-m: #4a5568;
      --text-l: #718096;
      --border: #e2e8f0;
      --bord-d: rgba(255, 255, 255, 0.12);
      --shadow: 0 1px 2px rgba(16, 42, 77, .04), 0 4px 12px rgba(16, 42, 77, .05);
      --shadow-h: 0 4px 12px rgba(16, 42, 77, .06), 0 18px 40px rgba(16, 42, 77, .13);
      --r: 14px;
      --r-sm: 7px;
      --maxw: 1440px;
    }

*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

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

body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 16px;
      line-height: 1.65;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

a {
      color: inherit;
      text-decoration: none;
    }

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

ul {
      list-style: none;
    }

.wrap {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 40px;
    }

.sec {
      padding: 96px 0;
    }

.sec-sm {
      padding: 56px 0;
    }

.label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--blue);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

.label::before {
      content: '';
      width: 20px;
      height: 2px;
      background: var(--blue);
      flex-shrink: 0;
    }

.label.c {
      justify-content: center;
    }

.label.c::before {
      display: none;
    }

.label.light {
      color: rgba(255, 255, 255, .65);
    }

.label.light::before {
      background: rgba(255, 255, 255, .4);
    }

.h1 {
      font-size: clamp(38px, 5vw, 68px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -1.5px;
    }

.h2 {
      font-size: clamp(26px, 3.2vw, 44px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1px;
    }

.h3 {
      font-size: 19px;
      font-weight: 700;
      line-height: 1.3;
      letter-spacing: -.3px;
    }

.sub {
      font-size: 17px;
      color: var(--text-m);
      max-width: 520px;
      margin-top: 12px;
      line-height: 1.7;
      font-weight: 400;
    }

.blue {
      color: var(--blue);
    }

.white {
      color: #fff;
    }

.btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 26px;
      border-radius: var(--r-sm);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .1px;
      cursor: pointer;
      border: none;
      transition: all .3s cubic-bezier(0.25, 1, 0.5, 1);
      white-space: nowrap;
      font-family: inherit;
    }

.btn-p {
      background: var(--blue);
      color: #fff;
    }

.btn-p:hover {
      background: var(--blue-h);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(26, 107, 204, .35);
    }

.btn-o {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid var(--navy);
    }

.btn-o:hover {
      background: var(--navy);
      color: #fff;
      transform: translateY(-1px);
    }

.btn-o-light {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, .5);
    }

.btn-o-light:hover {
      background: rgba(255, 255, 255, .1);
      border-color: rgba(255, 255, 255, .8);
    }

.btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

nav.top { position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      height: 68px;
      background: rgba(7,55,99,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--bord-d);
      transition: box-shadow .3s;
    }

nav.top.scrolled {
      box-shadow: 0 2px 20px rgba(0, 0, 0, .25);
    }

.nav-i {
      max-width: none;
      margin: 0;
      height: 68px;
      display: flex;
      align-items: center;
      gap: 0;
      padding: 0 44px;
    }

.logo {
      display: flex;
      align-items: center;
      gap: 11px;
      flex-shrink: 0;
      margin-right: 12px;
    }

.logo img {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }

.logo-text {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -.2px;
      line-height: 1.2;
    }

.logo-text small {
      display: block;
      font-size: 9px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .55);
      margin-top: 1px;
    }

.nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }

.nav-links>li {
      position: relative;
    }

.nav-links>li>a {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 8px 13px;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, .8);
      border-radius: 5px;
      transition: all .3s cubic-bezier(0.25, 1, 0.5, 1);
      cursor: pointer;
    }

.nav-links>li>a:hover,
    .nav-links>li>a.act {
      color: #fff;
      background: rgba(255, 255, 255, .1);
    }

.nav-links>li>a .arr {
      transition: transform .2s;
      flex-shrink: 0;
    }

.drop-wrap {
      position: absolute;
      top: 100%;
      left: 0;
      padding-top: 6px;
      min-width: 220px;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-4px);
      transition: all .3s cubic-bezier(0.25, 1, 0.5, 1);
      z-index: 100;
    }

.nav-links>li:hover .drop-wrap,
    .nav-links>li:focus-within .drop-wrap {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

.nav-links>li:hover>a .arr,
    .nav-links>li:focus-within>a .arr {
      transform: rotate(180deg);
    }

.drop { background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 6px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .12), 0 2px 6px rgba(0, 0, 0, .08);
    }

.drop a {
      display: block;
      padding: 9px 13px;
      font-size: 13.5px;
      color: var(--text);
      border-radius: var(--r-sm);
      transition: all .3s cubic-bezier(0.25, 1, 0.5, 1);
      font-weight: 400;
    }

.drop a:hover {
      color: var(--blue);
      background: var(--blue-l);
    }

.drop-div {
      height: 1px;
      background: var(--border);
      margin: 5px 6px;
    }

.nav-right {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 10px;
    }

.nav-cta {
      background: #fff;
      color: var(--navy);
      padding: 7px 15px;
      border-radius: var(--r-sm);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .1px;
      transition: all .3s cubic-bezier(0.25, 1, 0.5, 1);
      white-space: nowrap;
    }

.nav-cta:hover {
      background: #e8f0fb;
      color: var(--blue);
    }

.ham {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      margin-left: auto;
    }

.ham span {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all .22s;
    }

.mob {
      display: none;
      position: absolute;
      top: 68px;
      left: 0;
      right: 0;
      background: var(--navy);
      border-bottom: 1px solid var(--bord-d);
      padding: 16px 24px 24px;
      z-index: 999;
      max-height: calc(100vh - 68px);
      overflow-y: auto;
    }

.mob a {
      display: block;
      padding: 9px 0;
      color: rgba(255, 255, 255, .8);
      font-size: 14px;
      font-weight: 500;
      border-bottom: 1px solid var(--bord-d);
      transition: color .15s;
    }

.mob a:hover {
      color: #fff;
    }

.mob a.indent {
      padding-left: 16px;
      font-size: 13.5px;
      font-weight: 400;
    }

.nav-sp {
      height: 68px;
    }

.hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: var(--navy)
    }

.hero-bg {
      position: absolute;
      inset: 0
    }

.hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(.52) saturate(.85)
    }

.hero-grad {
      position: absolute;
      inset: 0;
      background: linear-gradient(to left, rgba(7, 55, 99, .88) 0%, rgba(7, 55, 99, .58) 42%, rgba(7, 55, 99, .10) 100%)
    }

.hero-grad-b {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 20%;
      background: linear-gradient(to top, var(--white), transparent)
    }

.hero-bg::after, .ph-bg::after { content: ""; position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(26,107,204,0.15) 0%, transparent 65%); transform: translate(-50%, -50%); pointer-events: none; mix-blend-mode: screen; opacity: 0.8; }

.hero-content {
      position: relative;
      z-index: 1;
      padding: 120px 0 100px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      text-align: right;
    }

.hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 13px;
      margin-bottom: 22px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .85)
    }

.hero-dot {
      width: 6px;
      height: 6px;
      background: #fff;
      border-radius: 50%;
      opacity: .8
    }

@keyframes fu {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

.fu0 {
      animation: fu .65s 0s both
    }

.fu1 {
      animation: fu .65s .10s both
    }

.fu2 {
      animation: fu .65s .20s both
    }

.fu3 {
      animation: fu .65s .30s both
    }

.ph {
      position: relative;
      overflow: hidden;
      background: var(--navy);
      padding: 100px 0 64px;
    }

.ph-bg {
      position: absolute;
      inset: 0;
    }

.ph-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(.6) saturate(.8);
    }

.ph-grad {
      position: absolute;
      inset: 0;
      background: rgba(7, 55, 99, 1);
      opacity: .3;
    }

.ph-grad-b {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 25%;
      background: linear-gradient(to top, var(--white), transparent);
    }

.ph-in {
      position: relative;
      z-index: 1;
    }

.bc {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .8px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .55);
      margin-bottom: 16px;
    }

.bc a {
      color: rgba(255, 255, 255, .75);
      transition: color .15s;
    }

.bc a:hover {
      color: #fff;
    }

.bc-sep {
      opacity: .4;
    }

.ph-t {
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 14px;
      max-width: 900px;
    }

.ph-d {
      font-size: 17px;
      color: rgba(255, 255, 255, .75);
      max-width: 820px;
      line-height: 1.7;
      font-weight: 400;
    }

.card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 28px;
      box-shadow: var(--shadow);
      transition: all .35s cubic-bezier(0.25, 1, 0.5, 1);
    }

.card:hover {
      box-shadow: var(--shadow-h);
      transform: translateY(-3px);
      border-color: #b9d3f0;
    }

.card-img {
      width: 100%;
      height: 210px;
      object-fit: cover;
      border-radius: calc(var(--r) - 1px) calc(var(--r) - 1px) 0 0;
      display: block;
    }

.card-img-wrap {
      margin: -28px -28px 24px -28px;
      overflow: hidden;
      border-radius: calc(var(--r) - 1px) calc(var(--r) - 1px) 0 0;
    }

.card-img-wrap img {
      width: 100%;
      height: 210px;
      object-fit: cover;
      transition: transform .5s cubic-bezier(0.25, 1, 0.5, 1);
    }

.card:hover .card-img-wrap img {
      transform: scale(1.03);
    }

.card-icon {
      width: 44px;
      height: 44px;
      background: var(--blue-l);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      flex-shrink: 0;
    }

.card-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 16px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--blue);
      transition: gap .18s;
    }

.card-link:hover {
      gap: 9px;
    }

.g2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

.g3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

.g4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

.stats-bar {
      background: var(--navy);
      padding: 44px 0;
    }

.stats-g {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

.stat {
      text-align: center;
      padding: 10px 16px;
      position: relative;
    }

.stat:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 10%;
      height: 80%;
      width: 1px;
      background: rgba(255, 255, 255, .15);
    }

.stat-n {
      font-size: 42px;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      margin-bottom: 6px;
      letter-spacing: -1px;
    }

.stat-l {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .55);
    }

.cta-band {
      padding: 80px 0;
      background: var(--navy);
      text-align: center;
    }

.cta-band-inner {
      position: relative;
      z-index: 1;
    }

.cta-band-t {
      font-size: clamp(24px, 3vw, 42px);
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
      letter-spacing: -1px;
    }

.cta-band-s {
      color: rgba(255, 255, 255, .7);
      font-size: 17px;
      margin-bottom: 32px;
    }

.sec-dark {
      background: var(--navy);
    }

.sec-dark .h2 {
      color: #fff;
    }

.sec-dark .sub {
      color: rgba(255, 255, 255, .7);
    }

.sec-dark .label {
      color: rgba(255, 255, 255, .65);
    }

.sec-dark .label::before {
      background: rgba(255, 255, 255, .35);
    }

.sec-off {
      background: var(--off);
    }

.tag {
      display: inline-block;
      padding: 2px 9px;
      background: var(--blue-l);
      border: 1px solid #c3d9f5;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .8px;
      text-transform: uppercase;
      color: var(--blue);
    }

.tag-navy {
      background: rgba(7, 55, 99, .1);
      border-color: rgba(7, 55, 99, .2);
      color: var(--navy);
    }

.tag-green {
      background: #e6f4ea;
      border-color: #a8d5b5;
      color: #1d7a3b;
    }

.fl {
      display: grid;
      gap: 14px;
    }

.fi {
      display: flex;
      gap: 13px;
      align-items: flex-start;
    }

.fic {
      width: 30px;
      height: 30px;
      flex-shrink: 0;
      background: var(--blue-l);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }

.fit {
      font-size: 14.5px;
      font-weight: 600;
      margin-bottom: 2px;
    }

.fid {
      font-size: 13.5px;
      color: var(--text-m);
      line-height: 1.55;
    }

.chklist {
      list-style: none;
      display: grid;
      gap: 0;
    }

.chklist li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 14px;
      color: var(--text-m);
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      line-height: 1.5;
    }

.chklist li:last-child {
      border-bottom: none;
    }

.chk-ico {
      flex-shrink: 0;
      margin-top: 1px;
    }

.divider {
      height: 1px;
      background: var(--border);
    }

.divider-dark {
      height: 1px;
      background: var(--bord-d);
    }

footer.ft {
      background: var(--navy);
      padding: 60px 0 28px;
    }

.ft-g {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 44px;
    }

.ft-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

.ft-logo img {
      width: 32px;
      height: 32px;
      object-fit: contain;
    }

.ft-logo-text {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
    }

.ft-tagline {
      font-size: 13px;
      color: rgba(255, 255, 255, .5);
      line-height: 1.65;
      max-width: 220px;
      margin-bottom: 20px;
    }

.ft-col-h {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 14px;
    }

.ft-links {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

.ft-links a {
      font-size: 13px;
      color: rgba(255, 255, 255, .6);
      transition: color .15s;
    }

.ft-links a:hover {
      color: #fff;
    }

.ft-bot {
      border-top: 1px solid var(--bord-d);
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

.ft-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, .35);
    }

.rv {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .55s ease, transform .55s ease;
    }

.rv.vis {
      opacity: 1;
      transform: translateY(0);
    }

.d1 {
      transition-delay: .08s;
    }

.d2 {
      transition-delay: .16s;
    }

.d3 {
      transition-delay: .24s;
    }

@media (max-width: 1024px) {
      .ft-g {
        grid-template-columns: 1fr 1fr;
      }

      .g4 {
        grid-template-columns: repeat(2, 1fr);
      }
    }

@media (max-width: 800px) {
      .nav-i {
        padding: 0 18px;
      }

      .logo {
        min-width: 0;
        max-width: calc(100vw - 82px);
        gap: 9px;
      }

      .logo img {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
      }

      .logo-text {
        min-width: 0;
        font-size: 15px;
        line-height: 1.15;
      }

      .logo-text small {
        font-size: 8px;
        letter-spacing: 1.2px;
        white-space: nowrap;
      }

      .sec {
        padding: 64px 0;
      }

      .g2,
      .g3 {
        grid-template-columns: 1fr;
      }

      .stats-g {
        grid-template-columns: repeat(2, 1fr);
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .ham {
        display: flex;
      }

      .hero-content {
        padding: 100px 0 80px;
        align-items: flex-start;
        text-align: left;
      }

      .hero-grad {
        background: rgba(7, 55, 99, .9);
      }
    }

@media (max-width: 600px) {
      .ft-g {
        grid-template-columns: 1fr;
      }

      .btn {
        font-size: 13.5px;
        padding: 11px 18px;
      }

      .wrap {
        padding: 0 18px;
      }
    }

.ft-li-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      color: rgba(255, 255, 255, .6);
      transition: color .18s;
    }

.ft-li-link:hover {
      color: rgba(255, 255, 255, .85);
    }

.svc-split {
      grid-template-columns: 2fr 1fr;
    }

.svc-sidebar {
      position: sticky;
      top: 84px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

.svc-content-img {
      width: 100%;
      border-radius: var(--r);
      margin-bottom: 36px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
      display: block;
    }

@media(max-width:820px) {
      .svc-split {
        grid-template-columns: 1fr;
      }

      .svc-sidebar {
        position: static;
        top: auto;
      }
    }

.con-split {
      grid-template-columns: 1fr 2fr;
    }

.form-row2 {
      grid-template-columns: 1fr 1fr;
    }

@media(max-width:820px) {
      .con-split {
        grid-template-columns: 1fr;
      }
    }

@media(max-width:560px) {
      .form-row2 {
        grid-template-columns: 1fr;
      }
    }

.lang-toggle {
      display: flex;
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 4px;
      overflow: hidden
    }

.lang-toggle a {
      padding: 4px 10px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .5px;
      color: rgba(255, 255, 255, .55);
      transition: all .3s cubic-bezier(0.25, 1, 0.5, 1);
      text-decoration: none
    }

.lang-active {
      background: var(--blue) !important;
      color: #fff !important
    }

.lang-en:hover,
    .lang-es:hover {
      color: #fff
    }
