:root {
  --navy: #071B36;
  --navy-2: #0C2744;
  --teal: #17A5A0;
  --teal-2: #1AB3AC;
  --teal-dark: #128F8B;
  --cyan: #1A8FC0;
  --gold: #F0C014;
  --gold-ink: #2F2800;
  --mint: #E7F5F4;
  --mint-2: #D3EEEC;
  --paper: #FFFFFF;
  --ink: #0B1C33;
  --muted: #5B6574;
  --line: #E3E9EE;
  --soft: #F6FAFA;
  --shadow: 0 10px 30px rgba(7, 27, 54, .08);
  --shadow-lg: 0 22px 50px rgba(7, 27, 54, .14);
  --gutter: clamp(1.2rem, 4vw, 2.4rem);
  --wrap: 1160px;
  --section: clamp(4.2rem, 8vw, 6.5rem);
  --font-display: "Outfit", sans-serif;
  --font-body: "Figtree", sans-serif;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--teal-dark); }
::selection { background: var(--teal); color: #fff; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: .7rem 1.1rem;
}
.skip-link:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 780px; }

.section { padding-block: var(--section); }
.section-soft { background: var(--soft); }
.section-mint { background: var(--mint); }

.section-dark {
  background: var(--navy);
  color: #C5D0DC;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #A9B6C8; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--navy);
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 3.85rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.45rem); }
h3 { font-size: 1.12rem; letter-spacing: -.015em; line-height: 1.3; }
h4 { font-size: 1rem; }

.kicker {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: .85rem;
}

.section-dark .kicker { color: var(--teal-2); }

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  color: var(--muted);
  line-height: 1.65;
  max-width: 58ch;
}

.section-dark .lede { color: #A9B8C8; }
.section-head { max-width: 68ch; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lede { margin-inline: auto; }
.muted { color: var(--muted); }
.grad { color: var(--teal); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .82rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 650;
  letter-spacing: -.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn:hover { transform: translateY(-1px); }

.btn-primary,
.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 18px rgba(23, 165, 160, .28);
}
.btn-primary:hover,
.btn-teal:hover { background: var(--teal-dark); color: #fff; }

.btn-ghost {
  background: #fff;
  color: var(--navy);
  border-color: #C9D4DE;
}
.btn-ghost:hover { border-color: var(--navy); background: var(--soft); }

.btn-gold {
  background: var(--gold);
  color: var(--gold-ink);
  box-shadow: 0 8px 18px rgba(240, 192, 20, .32);
}
.btn-gold:hover { background: #e3b40c; color: var(--gold-ink); }

.btn-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn-light:hover { background: rgba(255,255,255,.2); }

.btn-lg { padding: .95rem 1.7rem; font-size: 1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 650;
  font-size: .93rem;
  color: var(--teal-dark);
  text-decoration: none;
}
.textlink svg { width: 15px; height: 15px; transition: transform .2s ease; }
.textlink:hover { text-decoration: underline; text-underline-offset: 3px; }
.textlink:hover svg { transform: translateX(3px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(227, 233, 238, .8);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  margin-right: auto;
  flex: none;
}
.brand-waves { width: 46px; height: 30px; flex: none; }
.brand-lockup {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.12rem;
  letter-spacing: -.03em;
  color: var(--navy);
  line-height: 1;
}
.brand-dot { color: var(--teal); }

.nav-desk { display: flex; align-items: center; }

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

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: .5rem .72rem;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 600;
  color: #4A5563;
  text-decoration: none;
  position: relative;
}
.nav-links > li > a:hover { color: var(--navy); }
.nav-links > li > a.is-active { color: var(--teal-dark); }
.nav-links > li > a.is-active::after {
  content: "";
  position: absolute;
  left: .72rem;
  right: .72rem;
  bottom: .18rem;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.chev { width: 11px; height: 11px; opacity: .7; }

.has-sub { position: relative; }
.has-sub > .sub {
  position: absolute;
  top: calc(100% + .35rem);
  left: 0;
  min-width: 15.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: .45rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-sub:hover > .sub,
.has-sub:focus-within > .sub {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.sub a {
  display: block;
  padding: .55rem .75rem;
  border-radius: 9px;
  color: var(--navy-2);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 550;
}
.sub a:hover { background: var(--mint); color: var(--teal-dark); }

.nav-cta { margin-left: .1rem; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: -.01em;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--teal); flex: none; }
.nav-phone:hover { color: var(--teal-dark); }

@media (max-width: 1150px) {
  .nav-phone span { display: none; }
  .nav-phone { border: 1px solid var(--line); width: 40px; height: 40px; justify-content: center; padding: 0; flex: none; }
  .nav-phone svg { width: 17px; height: 17px; }
}

.nav-mobile { display: none; position: relative; }
.nav-mobile > summary {
  list-style: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  cursor: pointer;
  background: #fff;
}
.nav-mobile > summary::-webkit-details-marker { display: none; }
.nav-mobile > summary span,
.nav-mobile > summary span::before,
.nav-mobile > summary span::after {
  display: block;
  width: 16px;
  height: 1.6px;
  background: var(--navy);
  border-radius: 2px;
  position: relative;
}
.nav-mobile > summary span::before,
.nav-mobile > summary span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-mobile > summary span::before { top: -5px; }
.nav-mobile > summary span::after { top: 5px; }
.nav-drawer {
  position: fixed;
  top: calc(var(--header-h) + 8px);
  left: 12px;
  right: 12px;
  width: auto;
  max-height: calc(100dvh - var(--header-h) - 20px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: .6rem;
  display: grid;
  gap: .15rem;
}
.nav-drawer a {
  display: block;
  padding: .7rem .8rem;
  border-radius: 10px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}
.nav-drawer a:hover { background: var(--mint); }
.nav-drawer details { border-top: 1px solid var(--line); }
.nav-drawer summary {
  list-style: none;
  cursor: pointer;
  padding: .7rem .8rem;
  font-weight: 650;
  color: var(--navy);
}
.nav-drawer summary::-webkit-details-marker { display: none; }
.nav-drawer details a { font-weight: 550; color: var(--muted); padding-left: 1.2rem; }

.hero-home {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.4rem, 5vw, 3.6rem) clamp(4rem, 8vw, 6.5rem);
  background:
    linear-gradient(168deg, transparent 56%, #d5eeed 56.15%, #e7f5f4 100%),
    radial-gradient(900px 420px at 88% 12%, rgba(23,165,160,.08), transparent 60%),
    linear-gradient(180deg, #fff 0%, #f7fcfc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 5vw, 3.5rem);
  align-items: center;
}

.hero-copy h1 { max-width: none; }
.hero-copy .lede { margin-top: 1.2rem; max-width: 38ch; }
.hero-copy .btn-row { margin-top: 1.7rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.4rem;
  list-style: none;
  margin-top: 1.7rem;
  color: #4E5B6A;
  font-size: .9rem;
  font-weight: 600;
}
.hero-trust li { display: flex; align-items: center; gap: .45rem; }
.hero-trust svg { width: 16px; height: 16px; color: var(--teal); flex: none; }

.hero-phone {
  margin-top: 1.15rem;
  font-size: .95rem;
  color: var(--muted);
  font-weight: 600;
}
.hero-phone a { color: var(--navy); font-weight: 750; text-decoration: none; }
.hero-phone a:hover { color: var(--teal-dark); }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  border-radius: 8px 8px 8px 0;
  object-fit: cover;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-lg);
}
.hero-card {
  position: absolute;
  right: 1.1rem;
  bottom: 1.2rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  max-width: 19rem;
}
.hero-card p {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--navy);
}
.hero-card svg { width: 56px; height: 36px; flex: none; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 280px at 90% 0%, rgba(23,165,160,.1), transparent 60%),
    linear-gradient(180deg, #fff, var(--soft));
  padding-block: clamp(3rem, 7vw, 5rem);
}
.hero-grid-bg { display: none; }
.hero h1 { color: var(--navy); }
.hero .lede { color: var(--muted); margin-top: 1.1rem; }

.svc-band { padding-block: clamp(3.5rem, 7vw, 5.5rem); background: #fff; }
.svc-band .kicker { display: block; text-align: center; }
.svc-band h2 { text-align: center; max-width: 22ch; margin-inline: auto; }

.svc-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}
.svc-item {
  padding: 2rem 1.15rem 1.4rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.svc-item:last-child { border-right: 0; }
.svc-ico {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1.5px solid currentColor;
  background: #fff;
}
.svc-ico svg { width: 28px; height: 28px; }
.svc-item h3 { margin-bottom: .55rem; font-size: 1.05rem; }
.svc-item p { color: var(--muted); font-size: .92rem; margin-bottom: 1rem; }
.svc-item .textlink { font-size: .88rem; }
.svc-cloud { color: #3B82C4; }
.svc-cyber { color: #3BA36A; }
.svc-support { color: #D08A2A; }
.svc-managed { color: #7B6BC4; }
.svc-dev { color: #1AA3A6; }

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-split img {
  width: 100%;
  border-radius: 160px 20px 160px 20px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow);
}
.check-simple {
  list-style: none;
  display: grid;
  gap: .7rem;
  margin: 1.4rem 0 1.8rem;
}
.check-simple li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 550;
}
.check-simple svg { width: 18px; height: 18px; color: var(--teal); flex: none; margin-top: .15rem; }

.stats {
  background: linear-gradient(180deg, #eaf7f6, #dff2f1);
  padding-block: 2.4rem;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: .95rem;
}
.stat-ico {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.55);
  flex: none;
}
.stat-ico svg { width: 22px; height: 22px; }
.stat-card h3 {
  font-size: 1.15rem;
  margin-bottom: .1rem;
}
.stat-card p { font-size: .86rem; color: var(--muted); line-height: 1.4; }

.cta-split {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  background: linear-gradient(90deg, #1A84C0 0%, #1B96BA 42%, #1EAEAE 100%);
  color: #fff;
  overflow: hidden;
}
.cta-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}
.cta-copy {
  padding: clamp(2rem, 5vw, 3.4rem) clamp(1.6rem, 4vw, 3.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: .85rem;
}
.cta-copy .kicker { color: rgba(255,255,255,.8); margin-bottom: 0; }
.cta-copy h2 { color: #fff; max-width: 18ch; }
.cta-copy p { color: rgba(255,255,255,.86); max-width: 46ch; }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(2.4rem, 5vw, 3.8rem);
  background: linear-gradient(105deg, #1A84C0 0%, #1EAEAE 100%);
  color: #fff;
}
.cta-band::before { display: none; }
.cta-band h2 { color: #fff; }
.cta-band .lede { color: rgba(255,255,255,.86); margin-top: .8rem; }
.cta-band .btn-row { margin-top: 1.6rem; }

.grid { display: grid; gap: 1.15rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.55rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cfe3e2; }
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--muted); font-size: .95rem; }
.card-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--mint);
  color: var(--teal-dark);
  margin-bottom: 1rem;
}
.card-icon svg { width: 22px; height: 22px; }
.section-dark .card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
}
.section-dark .card p { color: #A9B6C8; }
.section-dark .card-icon { background: rgba(23,165,160,.16); color: var(--teal-2); }
.card-link { margin-top: 1rem; }

.tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.tag-list li {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .2rem .65rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.2rem);
  align-items: center;
}

.check-list { list-style: none; display: grid; gap: .85rem; margin-top: 1.6rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .97rem; color: var(--muted); }
.check-list strong { color: var(--navy); font-weight: 650; }
.check-list .tick {
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--mint); color: var(--teal-dark);
  display: grid; place-items: center; flex: none; margin-top: .18rem;
}
.check-list .tick svg { width: 12px; height: 12px; }
.section-dark .check-list li { color: #A9B6C8; }
.section-dark .check-list strong { color: #fff; }
.section-dark .check-list .tick { background: rgba(23,165,160,.18); color: var(--teal-2); }

.steps { counter-reset: step; }
.step {
  padding: 1.6rem 1.4rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--teal);
  margin-bottom: .75rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { font-size: .93rem; color: var(--muted); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
}
.stat { background: rgba(255,255,255,.04); padding: 1.6rem 1.3rem; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 750;
  letter-spacing: -.04em;
  color: var(--teal-2);
  line-height: 1;
}
.stat p { margin-top: .55rem; font-size: .88rem; color: #93A3B8; }

.cat {
  border-top: 1px solid var(--line);
  padding-block: clamp(2.1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  scroll-margin-top: 96px;
}
.cat:first-of-type { border-top: 0; padding-top: 0; }
.cat-head { position: sticky; top: 96px; align-self: start; }
.cat-head h2 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); margin-bottom: .55rem; }
.cat-head p { font-size: .93rem; color: var(--muted); }
.cat-num {
  display: block;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--teal);
  margin-bottom: .65rem;
}
.svc-list { list-style: none; columns: 2; column-gap: 2.2rem; }
.svc-list li {
  break-inside: avoid;
  display: flex;
  gap: .6rem;
  padding: .4rem 0;
  font-size: .94rem;
  color: var(--muted);
}
.svc-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex: none;
  margin-top: .55rem;
}

.jump { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; margin-top: 1.8rem; }
.jump a {
  display: block;
  padding: .4rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: .84rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}
.jump a:hover { color: var(--teal-dark); border-color: var(--teal); background: var(--mint); }
.hero .jump a { background: #fff; border-color: var(--line); color: var(--muted); }

.row-list { display: grid; gap: .9rem; }
.row-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1.1rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.row-item:hover { border-color: #cfe3e2; box-shadow: var(--shadow); }
.row-item h3 { margin-bottom: .3rem; }
.row-item p { font-size: .94rem; color: var(--muted); }

.quote { border-left: 3px solid var(--teal); padding-left: 1.4rem; max-width: 46rem; }
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.4;
  letter-spacing: -.02em;
  color: var(--navy);
  font-weight: 600;
}
.section-dark .quote blockquote { color: #fff; }
.quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: .9rem;
  color: var(--muted);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.contact-card .card-icon { margin-bottom: 0; }
.contact-card h3 { font-size: 1.02rem; margin-bottom: .15rem; }
.contact-card p { font-size: .92rem; color: var(--muted); }
.contact-card .value {
  display: block;
  margin-top: .4rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.hours-table { width: 100%; border-collapse: collapse; margin-top: 1.4rem; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .93rem;
}
.hours-table th { color: var(--navy); font-weight: 650; }
.hours-table td { color: var(--muted); text-align: right; }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.form h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.form .lede { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.field { display: grid; gap: .35rem; margin-bottom: .85rem; }
.field span { font-size: .82rem; font-weight: 700; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .75rem .85rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid rgba(23,165,160,.35);
  border-color: var(--teal);
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-note { margin-top: .8rem; font-size: .84rem; color: var(--muted); }
.form-status {
  margin-top: .9rem;
  padding: .75rem .9rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .92rem;
}
.form-status.ok { background: var(--mint); color: var(--teal-dark); }
.form-status.err { background: #FDECEC; color: #9B1C1C; }

.login-wrap { max-width: 30rem; }
.support-hero { padding-block: clamp(1.8rem, 3.5vw, 2.6rem); }
.support-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.support-login { padding-block: clamp(2rem, 4vw, 3rem) clamp(2.6rem, 5vw, 3.6rem); }
.support-new { padding-block: clamp(2.8rem, 5vw, 4rem); }
.support-new .section-head { margin-bottom: clamp(1.6rem, 3vw, 2.2rem); }

.faq { display: grid; gap: .85rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1.25rem 1.35rem;
}
.faq-item h3 { margin-bottom: .35rem; font-size: 1.02rem; }
.faq-item p { font-size: .94rem; color: var(--muted); }

.legal { max-width: 46rem; }
.legal p, .legal li { color: var(--muted); margin-bottom: 1rem; }
.legal h2 { font-size: 1.35rem; margin: 2rem 0 .7rem; }
.legal ul { padding-left: 1.2rem; }

.site-footer {
  background: #fff;
  color: var(--muted);
  padding-block: clamp(2.6rem, 5vw, 3.8rem) 0;
  font-size: .92rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
  padding-bottom: 2.4rem;
}
.site-footer .brand { margin-right: 0; }
.footer-about { max-width: 28ch; margin-top: .9rem; color: var(--muted); font-size: .92rem; line-height: 1.6; }
.footer-col h4 {
  color: var(--navy);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 750;
}
.footer-col ul { list-style: none; display: grid; gap: .5rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: .9rem; }
.footer-col a:hover { color: var(--teal-dark); }
.footer-contact { display: grid; gap: .55rem; }
.footer-contact li { display: flex; gap: .5rem; align-items: flex-start; }
.footer-contact svg { width: 15px; height: 15px; color: var(--teal); flex: none; margin-top: .2rem; }

.footer-bar {
  background: var(--teal);
  color: rgba(255,255,255,.9);
  font-size: .84rem;
  padding: .9rem 0;
}
.footer-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bar a { color: inherit; text-decoration: none; }
.footer-bar a:hover { text-decoration: underline; }
.footer-legal { display: flex; gap: 1.2rem; }

@keyframes rise {
  from { transform: translateY(14px); }
  to { transform: none; }
}
.rise { animation: rise .75s cubic-bezier(.22,.8,.3,1) both; }
.d1 { animation-delay: .08s; }
.d2 { animation-delay: .18s; }
.d3 { animation-delay: .28s; }
.d4 { animation-delay: .38s; }

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

@media (max-width: 1040px) {
  .svc-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .svc-item:nth-child(3) { border-right: 0; }
  .svc-item:nth-child(n+4) { border-top: 1px solid var(--line); }
  .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat { grid-template-columns: minmax(0, 1fr); }
  .cat-head { position: static; }
}

@media (max-width: 860px) {
  .nav-desk { display: none; }
  .nav-mobile { display: block; }
  .nav-cta { padding: .65rem 1rem; font-size: .88rem; }
  .hero-grid, .about-split, .split, .contact-grid, .grid-3 { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: none; }
  .hero-visual img { aspect-ratio: 16 / 11; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split img { max-height: 240px; }
  .svc-list { columns: 1; }
}

@media (max-width: 620px) {
  .nav { gap: .5rem; }
  .brand { gap: .5rem; }
  .brand-waves { width: 38px; height: 25px; }
  .brand-lockup { font-size: 1rem; }
  .nav-mobile > summary { width: 40px; height: 40px; }
  .nav-phone { width: 38px; height: 38px; }
  .nav-cta { padding: .55rem .9rem; font-size: .84rem; }
  .svc-row { grid-template-columns: 1fr 1fr; }
  .svc-item { border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .svc-item:nth-child(2n) { border-right: 0; }
  .svc-item:nth-child(-n+2) { border-top: 0; }
  .stats-row, .grid-2, .grid-4, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card { position: static; margin-top: 1rem; max-width: none; }
  .about-split img { border-radius: 24px; }
}

@media (max-width: 380px) {
  .brand-lockup { display: none; }
}
