
:root {
  --navy: #0a2540;
  --navy2: #0a2647;
  --blue: #0084d1;
  --blue-bright: #0094ff;
  --blue-dark: #006bb0;
  --cyan: #2bb6e0;
  --ink: #0a2540;
  --body: #111827;
  --muted: #4b5563;
  --line: #e2e8f0;
  --white: #ffffff;
  --ok: #16a34a;
  --danger: #dc2626;
  --radius: 12px;
  --wrap: 1200px;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --soft: #f0f7fc;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; background: #fff; color: var(--body); }
body { font-size: 1rem; line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-bright); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.25; font-weight: 800; }
h1 { font-size: clamp(2rem, 3.8vw, 2.9rem); margin-bottom: 14px; }
h2 { font-size: clamp(1.6rem, 2.7vw, 2.2rem); margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: 24px; }
.center { text-align: center; }
.eyebrow { display: inline-block; color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .84rem; margin-bottom: 8px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: .55em; font-weight: 700; border-radius: 999px; padding: 12px 26px; font-size: 1.02rem; text-decoration: none; cursor: pointer; transition: all .2s ease; border: 2px solid transparent; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-call { background: linear-gradient(135deg, #0084d1, #005a96); color: #fff; box-shadow: 0 4px 14px rgba(0,107,176,.35); }
.btn-call:hover { background: linear-gradient(135deg, #0095ea, #006bb0); color: #fff; box-shadow: 0 6px 20px rgba(0,107,176,.45); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.25); color: #fff; border-color: #fff; }

/* ICONS */
.icon { width: 1.2em; height: 1.2em; vertical-align: -0.2em; fill: currentColor; }

/* TOP BAR */
.topbar { background: #06192e; color: #d3e6f4; font-size: .85rem; padding-block: 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: #fff; font-weight: 700; }
.topbar a:hover { color: var(--cyan); }

/* SITE HEADER */
header.site { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow-sm); }
.header-wrap { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff; display: flex; align-items: center; justify-content: center; }
.brand .mark .icon { width: 24px; height: 24px; }
.brand .txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand .txt b { font-size: 1.22rem; color: var(--navy); font-weight: 800; }
.brand .txt span { font-size: .68rem; font-weight: 800; color: var(--blue); letter-spacing: .09em; text-transform: uppercase; }

.nav-desktop { display: none; align-items: center; gap: 1.6rem; font-weight: 600; font-size: 0.96rem; }
.nav-link { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--ink); text-decoration: none; padding: 0.4rem 0; transition: color .15s ease; }
.nav-link:hover { color: var(--blue); text-decoration: none; }
.nav-chevron { transition: transform 0.2s ease; }
.nav-dropdown { position: relative; }
.nav-panel {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 540px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(10, 37, 64, 0.15);
  padding: 1.15rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 60;
}
.nav-dropdown:hover > .nav-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.nav-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem; max-height: 380px; overflow-y: auto; padding-right: 4px; }
.nav-panel-item { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.7rem 0.8rem; border-radius: 9px; text-decoration: none; color: var(--ink); transition: background 0.15s ease; }
.nav-panel-item:hover { background: var(--soft); text-decoration: none; }
.nav-panel-icon { flex: 0 0 34px; width: 34px; height: 34px; background: rgba(0, 132, 209, 0.12); border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; color: var(--blue); }
.nav-panel-icon .icon { width: 20px; height: 20px; }
.nav-panel-text { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 0.18rem; }
.nav-panel-title { font-weight: 700; font-size: 0.92rem; line-height: 1.25; color: var(--ink); }
.nav-panel-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-weight: 400; }
.nav-panel-all { display: block; margin-top: 0.85rem; padding-top: 0.75rem; border-top: 1px solid var(--line); font-weight: 700; font-size: 0.88rem; color: var(--blue); text-decoration: none; }
.nav-panel-all:hover { color: var(--navy); text-decoration: none; }

.header-right { display: flex; align-items: center; gap: 0.85rem; }
.header-phone-btn { display: inline-flex; align-items: center; gap: 0.45rem; padding: 10px 18px; font-size: 0.98rem; white-space: nowrap !important; flex-shrink: 0; }
.header-phone-num { white-space: nowrap !important; }
.nav-toggle-btn { background: #fff; border: 1px solid var(--line); color: var(--navy); width: 42px; height: 42px; border-radius: 8px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background .15s ease; flex-shrink: 0; }
.nav-toggle-btn:hover { background: var(--soft); }

@media(min-width: 1024px) {
  .nav-desktop { display: flex !important; }
  .nav-toggle-btn { display: none !important; }
}

/* MOBILE DRAWER WITH ACCORDIONS */
.mobile-drawer {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.mobile-drawer.open {
  display: block;
}
.mobile-drawer-inner {
  padding: 1.25rem 1.5rem 1.75rem;
  max-width: var(--wrap);
  margin: 0 auto;
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  margin-bottom: 8px;
}
.mobile-drawer-title {
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
}
.mobile-drawer-close {
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-drawer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-weight: 600;
  font-size: 1rem;
}
.mobile-drawer-link {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .15s ease;
}
.mobile-drawer-link:hover {
  color: var(--cyan);
}
.mobile-accordion {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-accordion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  cursor: pointer;
  padding: 0.7rem 0;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
}
.mobile-accordion-summary::-webkit-details-marker {
  display: none;
}
.mobile-accordion-chevron {
  transition: transform 0.2s ease;
  color: var(--cyan);
}
.mobile-accordion[open] .mobile-accordion-chevron {
  transform: rotate(180deg);
}
.mobile-subnav {
  padding: 8px 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(0,0,0,.22);
  border-radius: 8px;
  margin-bottom: 10px;
  max-height: 280px;
  overflow-y: auto;
}
.mobile-subnav-all {
  color: var(--cyan) !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 5px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.1) !important;
  text-decoration: none;
}
.mobile-subnav-link {
  color: #d3e6f4 !important;
  font-size: 0.88rem !important;
  padding: 4px 0 !important;
  border-bottom: none !important;
  text-decoration: none;
  transition: color 0.15s ease;
}
.mobile-subnav-link:hover {
  color: #fff !important;
}
.mobile-drawer-call {
  margin-top: 1.35rem;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  font-size: 1.05rem;
  padding: 13px;
}

/* HERO */
.hero { background: radial-gradient(1200px 400px at 80% -10%, #12406b, transparent), linear-gradient(135deg, #0a2540, #006bb0); color: #eaf4fb; padding-block: 66px; }
.hero h1 { color: #fff; }
.hero .lead { color: #d3e6f4; font-size: 1.16rem; }
.live-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(8px); padding: 6px 14px; border-radius: 999px; font-size: .82rem; color: #fff; margin-bottom: 14px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,.7); animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.7); } 70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 20px 0 24px; padding: 0; list-style: none; }
.hero-badges li { display: flex; align-items: center; gap: .45em; font-weight: 600; color: #eaf4fb; font-size: .95rem; }
.hero-badges .icon { color: #5fd0a0; width: 1.1em; height: 1.1em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-rating { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: .88rem; color: #cde5f8; }
.hero-rating .stars { color: #fbbf24; font-size: 1.05rem; letter-spacing: 1px; }
.hero-rating b { color: #fff; }

/* TRUST STRIP */
.trust { background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 2px 10px rgba(10,37,64,.03); }
.trust .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 18px; padding-block: 15px; }
.trust span { display: inline-flex; align-items: center; gap: .55em; font-weight: 600; color: var(--ink); font-size: .92rem; background: var(--soft); border: 1px solid #d9edf8; padding: 7px 16px; border-radius: 999px; transition: all .2s ease; }
.trust span:hover { transform: translateY(-2px); background: #dff1fc; border-color: var(--blue); }
.trust .icon { color: var(--blue); }
.trust b { color: var(--ink); }

/* CARDS WITH PHOTOS */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); color: var(--body); transition: all .2s ease; }
.card h3 { margin-top: 0; color: var(--navy); }
.card p { color: var(--body); }
.card.soft { background: var(--soft); box-shadow: none; border-color: #d7ebf7; }
.svc-card { display: flex; flex-direction: column; gap: 8px; transition: all .25s cubic-bezier(.16,1,.3,1); color: var(--body); border: 1px solid #e2e8f0; background: #fff; position: relative; }
a.svc-card { color: var(--body); text-decoration: none; }
a.svc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(10,37,64,.12); border-color: #a5d8f7; text-decoration: none; }

/* CARD IMAGE THUMBNAILS (MOBILE & DESKTOP) */
.card-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 10px;
  background: var(--soft);
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
a.svc-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.svc-card .ico { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, #eaf6fc, #d5effc); color: var(--blue); display: flex; align-items: center; justify-content: center; transition: all .25s ease; margin-bottom: 4px; }
.svc-card .ico .icon { width: 22px; height: 22px; }
a.svc-card:hover .ico { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: #fff; transform: scale(1.05); }
.card-action { display: inline-flex; align-items: center; gap: 6px; color: #006bb0; font-weight: 700; font-size: .9rem; margin-top: auto; padding-top: 8px; }
.card-action .arrow { transition: transform .2s ease; }
a.svc-card:hover .card-action .arrow { transform: translateX(5px); }
.pill { display: inline-block; background: #dcefff; color: #006bb0; font-weight: 700; border-radius: 999px; padding: 4px 12px; font-size: .82rem; margin-bottom: 6px; width: fit-content; }
.process-step { display: inline-block; background: var(--blue); color: #fff; font-weight: 800; border-radius: 6px; padding: 3px 10px; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }

/* TWO COLUMNS & CHECKLIST */
.cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding-left: 32px; margin-bottom: 14px; }
.checklist li .icon { position: absolute; left: 0; top: 3px; color: #fff; background: var(--ok); border-radius: 50%; width: 21px; height: 21px; padding: 4px; }

/* PRICING TABLE */
.pricing-table-wrap { width: 100%; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 18px 0; border-radius: var(--radius); min-width: 0; }
.pricing { width: 100%; min-width: 440px; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.pricing th, .pricing td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.pricing th { background: #0a2540; color: #fff; font-weight: 800; font-size: .9rem; letter-spacing: .03em; text-transform: uppercase; }
.pricing td { font-size: .98rem; }
.pricing td:last-child { font-weight: 800; color: #006bb0; font-size: 1.06rem; white-space: nowrap; }
.pricing tr:nth-child(even) td { background: #f8fafc; }
.pricing tr:hover td { background: #eef7fd; }

/* FAQ */
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; box-shadow: var(--shadow-sm); transition: border-color .15s ease; }
.faq details:hover { border-color: #bce1f7; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--ink); padding: 16px 46px 16px 20px; list-style: none; position: relative; font-size: 1.04rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--blue); font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary::after { content: "\2212"; transform: translateY(-50%); }
.faq .faq-content { padding: 0 20px 20px; color: var(--muted); border-top: 1px solid #f1f5f9; margin-top: 4px; }
.faq .faq-content p { margin: 12px 0 0; }

/* FOOTER */
footer.site { background: #06192e; color: #c2d8eb; padding-top: 54px; padding-bottom: 24px; font-size: .95rem; }
footer.site a { color: #c2d8eb; }
footer.site a:hover { color: #fff; }
footer.site .foot-heading { color: #fff; font-weight: 800; font-size: 1rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .05em; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 10px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px; text-align: center; font-size: .86rem; color: #8da4be; }

/* FLOATING CLICK TO CALL (COMPACT & NON-INTRUSIVE) */
.float-cta { position: fixed; bottom: 18px; right: 18px; left: auto; z-index: 99; }
.float-right { right: 18px; }
.fc-pill { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, #0094ff, #0070e0); color: #fff; padding: 9px 16px; border-radius: 999px; box-shadow: 0 8px 25px rgba(0,148,255,.45); text-decoration: none; transition: transform .2s ease; white-space: nowrap; }
.fc-pill:hover { transform: scale(1.05); text-decoration: none; color: #fff; }
.fc-ico { position: relative; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.fc-ico .dot { position: absolute; top: 0; right: 0; width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }
.fc-txt { display: flex; flex-direction: column; line-height: 1.1; }
.fc-txt b { font-size: .82rem; }
.fc-txt span { font-size: .70rem; opacity: .9; }

/* RESPONSIVE LAYOUT BREAKPOINTS */
@media(max-width:900px){
  .g3, .g4 { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width:640px){
  html, body { overflow-x: hidden; }
  body { padding-bottom: 60px; }
  .wrap { padding-inline: 16px; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .cols2 { grid-template-columns: 1fr !important; }
  
  /* TOPBAR MOBILE */
  .topbar .wrap { justify-content: center; font-size: .78rem; text-align: center; gap: 4px; padding-block: 5px; }
  .topbar span:first-child { display: none; }
  
  /* HEADER MOBILE (NO OVERFLOW, SINGLE LINE PHONE) */
  .header-wrap { padding-block: 8px; gap: 6px; justify-content: space-between; }
  .brand .mark { width: 34px; height: 34px; border-radius: 8px; }
  .brand .mark .icon { width: 18px; height: 18px; }
  .brand .txt b { font-size: 0.95rem; white-space: nowrap; }
  .brand .brand-sub { display: none !important; }
  .header-right { gap: 6px; flex-shrink: 0; }
  .header-phone-btn {
    padding: 7px 11px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    border-radius: 8px !important;
    height: 36px !important;
    box-sizing: border-box;
  }
  .header-phone-btn .icon { width: 14px !important; height: 14px !important; flex-shrink: 0; }
  .header-phone-num { white-space: nowrap !important; }
  .nav-toggle-btn { width: 36px !important; height: 36px !important; border-radius: 8px; }
  
  /* HERO MOBILE */
  .hero { padding-block: 30px; }
  .hero h1 { font-size: 1.65rem; line-height: 1.22; }
  .hero .lead { font-size: 0.98rem; }
  .hero-actions { flex-direction: column; gap: 10px; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; box-sizing: border-box; font-size: 0.98rem; padding: 12px 18px; }
  .hero-badges { gap: 6px 12px; margin: 14px 0 18px; }
  .hero-badges li { font-size: .84rem; }
  
  /* TRUST STRIP MOBILE */
  .trust .wrap { gap: 6px 8px; padding-block: 8px; }
  .trust span { font-size: .78rem; padding: 4px 10px; }
  
  /* CARDS & IMAGES ON MOBILE */
  .section { padding-block: 32px; }
  .card { padding: 18px; }
  .card-img-wrap { height: 180px; margin-bottom: 10px; }
  .card-img-wrap img { height: 180px; }
  
  /* PRICING TABLE MOBILE */
  .pricing { min-width: 320px; font-size: .88rem; }
  .pricing th, .pricing td { padding: 10px 12px; font-size: .86rem; }
  
  /* FLOATING CTA MOBILE (COMPACT, DOCKED TO RIGHT, NOT COVERING HERO) */
  .float-cta { bottom: 12px; right: 12px; left: auto; width: auto; max-width: calc(100vw - 24px); }
  .fc-pill { width: auto; padding: 8px 14px; gap: 7px; box-shadow: 0 4px 16px rgba(0,0,0,.35); }
  .fc-ico { width: 20px; height: 20px; }
  .fc-ico .icon { width: 14px; height: 14px; }
  .fc-txt b { font-size: 0.78rem; }
  .fc-txt span { font-size: 0.66rem; }
}

@media(max-width:350px){
  .header-phone-num { display: none; }
  .header-phone-btn::after { content: "Call"; font-size: 0.82rem; }
}
